Multi-target support
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
b811d2c2 3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
268a13a5 71#include "gdbsupport/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
268a13a5
TT
75#include "gdbsupport/scoped_restore.h"
76#include "gdbsupport/environ.h"
77#include "gdbsupport/byte-vector.h"
39ef2f62 78#include <algorithm>
9d6eea31 79#include <unordered_map>
35b1e5cc 80
f6ac5f3d
PA
81/* The remote target. */
82
d9f719f1
PA
83static const char remote_doc[] = N_("\
84Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85Specify the serial device it is connected to\n\
86(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87
6b8edb51
PA
88#define OPAQUETHREADBYTES 8
89
90/* a 64 bit opaque identifier */
91typedef unsigned char threadref[OPAQUETHREADBYTES];
92
93struct gdb_ext_thread_info;
94struct threads_listing_context;
95typedef int (*rmt_thread_action) (threadref *ref, void *context);
96struct protocol_feature;
97struct packet_reg;
98
99struct stop_reply;
32603266 100typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
101
102/* Generic configuration support for packets the stub optionally
103 supports. Allows the user to specify the use of the packet as well
104 as allowing GDB to auto-detect support in the remote stub. */
105
106enum packet_support
107 {
108 PACKET_SUPPORT_UNKNOWN = 0,
109 PACKET_ENABLE,
110 PACKET_DISABLE
111 };
112
113/* Analyze a packet's return value and update the packet config
114 accordingly. */
115
116enum packet_result
117{
118 PACKET_ERROR,
119 PACKET_OK,
120 PACKET_UNKNOWN
121};
122
123struct threads_listing_context;
3c69da40
PA
124
125/* Stub vCont actions support.
126
127 Each field is a boolean flag indicating whether the stub reports
128 support for the corresponding action. */
129
130struct vCont_action_support
131{
132 /* vCont;t */
133 bool t = false;
134
135 /* vCont;r */
136 bool r = false;
137
138 /* vCont;s */
139 bool s = false;
140
141 /* vCont;S */
142 bool S = false;
143};
144
405feb71 145/* About this many threadids fit in a packet. */
3c69da40
PA
146
147#define MAXTHREADLISTRESULTS 32
148
149/* Data for the vFile:pread readahead cache. */
150
151struct readahead_cache
152{
153 /* Invalidate the readahead cache. */
154 void invalidate ();
155
156 /* Invalidate the readahead cache if it is holding data for FD. */
157 void invalidate_fd (int fd);
158
159 /* Serve pread from the readahead cache. Returns number of bytes
160 read, or 0 if the request can't be served from the cache. */
161 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
162
163 /* The file descriptor for the file that is being cached. -1 if the
164 cache is invalid. */
165 int fd = -1;
166
167 /* The offset into the file that the cache buffer corresponds
168 to. */
169 ULONGEST offset = 0;
170
171 /* The buffer holding the cache contents. */
172 gdb_byte *buf = nullptr;
173 /* The buffer's size. We try to read as much as fits into a packet
174 at a time. */
175 size_t bufsize = 0;
176
177 /* Cache hit and miss counters. */
178 ULONGEST hit_count = 0;
179 ULONGEST miss_count = 0;
180};
181
182/* Description of the remote protocol for a given architecture. */
183
184struct packet_reg
185{
186 long offset; /* Offset into G packet. */
187 long regnum; /* GDB's internal register number. */
188 LONGEST pnum; /* Remote protocol register number. */
189 int in_g_packet; /* Always part of G packet. */
190 /* long size in bytes; == register_size (target_gdbarch (), regnum);
191 at present. */
192 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
193 at present. */
194};
195
196struct remote_arch_state
197{
198 explicit remote_arch_state (struct gdbarch *gdbarch);
199
200 /* Description of the remote protocol registers. */
201 long sizeof_g_packet;
202
203 /* Description of the remote protocol registers indexed by REGNUM
204 (making an array gdbarch_num_regs in size). */
205 std::unique_ptr<packet_reg[]> regs;
206
207 /* This is the size (in chars) of the first response to the ``g''
208 packet. It is used as a heuristic when determining the maximum
209 size of memory-read and memory-write packets. A target will
210 typically only reserve a buffer large enough to hold the ``g''
211 packet. The size does not include packet overhead (headers and
212 trailers). */
213 long actual_register_packet_size;
214
215 /* This is the maximum size (in chars) of a non read/write packet.
216 It is also used as a cap on the size of read/write packets. */
217 long remote_packet_size;
218};
219
220/* Description of the remote protocol state for the currently
221 connected target. This is per-target state, and independent of the
222 selected architecture. */
223
224class remote_state
225{
226public:
227
228 remote_state ();
229 ~remote_state ();
230
231 /* Get the remote arch state for GDBARCH. */
232 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
233
234public: /* data */
235
236 /* A buffer to use for incoming packets, and its current size. The
237 buffer is grown dynamically for larger incoming packets.
238 Outgoing packets may also be constructed in this buffer.
8d64371b 239 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
240 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
241 packets. */
8d64371b 242 gdb::char_vector buf;
3c69da40
PA
243
244 /* True if we're going through initial connection setup (finding out
245 about the remote side's threads, relocating symbols, etc.). */
246 bool starting_up = false;
247
248 /* If we negotiated packet size explicitly (and thus can bypass
249 heuristics for the largest packet size that will not overflow
250 a buffer in the stub), this will be set to that packet size.
251 Otherwise zero, meaning to use the guessed size. */
252 long explicit_packet_size = 0;
253
254 /* remote_wait is normally called when the target is running and
255 waits for a stop reply packet. But sometimes we need to call it
256 when the target is already stopped. We can send a "?" packet
257 and have remote_wait read the response. Or, if we already have
258 the response, we can stash it in BUF and tell remote_wait to
259 skip calling getpkt. This flag is set when BUF contains a
260 stop reply packet and the target is not waiting. */
261 int cached_wait_status = 0;
262
263 /* True, if in no ack mode. That is, neither GDB nor the stub will
264 expect acks from each other. The connection is assumed to be
265 reliable. */
266 bool noack_mode = false;
267
268 /* True if we're connected in extended remote mode. */
269 bool extended = false;
270
271 /* True if we resumed the target and we're waiting for the target to
272 stop. In the mean time, we can't start another command/query.
273 The remote server wouldn't be ready to process it, so we'd
274 timeout waiting for a reply that would never come and eventually
275 we'd close the connection. This can happen in asynchronous mode
276 because we allow GDB commands while the target is running. */
277 bool waiting_for_stop_reply = false;
278
279 /* The status of the stub support for the various vCont actions. */
280 vCont_action_support supports_vCont;
5b6d1e4f
PA
281 /* Whether vCont support was probed already. This is a workaround
282 until packet_support is per-connection. */
283 bool supports_vCont_probed;
3c69da40
PA
284
285 /* True if the user has pressed Ctrl-C, but the target hasn't
286 responded to that. */
287 bool ctrlc_pending_p = false;
288
289 /* True if we saw a Ctrl-C while reading or writing from/to the
290 remote descriptor. At that point it is not safe to send a remote
291 interrupt packet, so we instead remember we saw the Ctrl-C and
292 process it once we're done with sending/receiving the current
293 packet, which should be shortly. If however that takes too long,
294 and the user presses Ctrl-C again, we offer to disconnect. */
295 bool got_ctrlc_during_io = false;
296
297 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
298 remote_open knows that we don't have a file open when the program
299 starts. */
300 struct serial *remote_desc = nullptr;
301
302 /* These are the threads which we last sent to the remote system. The
303 TID member will be -1 for all or -2 for not sent yet. */
304 ptid_t general_thread = null_ptid;
305 ptid_t continue_thread = null_ptid;
306
307 /* This is the traceframe which we last selected on the remote system.
308 It will be -1 if no traceframe is selected. */
309 int remote_traceframe_number = -1;
310
311 char *last_pass_packet = nullptr;
312
313 /* The last QProgramSignals packet sent to the target. We bypass
314 sending a new program signals list down to the target if the new
315 packet is exactly the same as the last we sent. IOW, we only let
316 the target know about program signals list changes. */
317 char *last_program_signals_packet = nullptr;
318
319 gdb_signal last_sent_signal = GDB_SIGNAL_0;
320
321 bool last_sent_step = false;
322
323 /* The execution direction of the last resume we got. */
324 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
325
326 char *finished_object = nullptr;
327 char *finished_annex = nullptr;
328 ULONGEST finished_offset = 0;
329
330 /* Should we try the 'ThreadInfo' query packet?
331
332 This variable (NOT available to the user: auto-detect only!)
333 determines whether GDB will use the new, simpler "ThreadInfo"
334 query or the older, more complex syntax for thread queries.
335 This is an auto-detect variable (set to true at each connect,
336 and set to false when the target fails to recognize it). */
337 bool use_threadinfo_query = false;
338 bool use_threadextra_query = false;
339
340 threadref echo_nextthread {};
341 threadref nextthread {};
342 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
343
344 /* The state of remote notification. */
345 struct remote_notif_state *notif_state = nullptr;
346
347 /* The branch trace configuration. */
348 struct btrace_config btrace_config {};
349
350 /* The argument to the last "vFile:setfs:" packet we sent, used
351 to avoid sending repeated unnecessary "vFile:setfs:" packets.
352 Initialized to -1 to indicate that no "vFile:setfs:" packet
353 has yet been sent. */
354 int fs_pid = -1;
355
356 /* A readahead cache for vFile:pread. Often, reading a binary
357 involves a sequence of small reads. E.g., when parsing an ELF
358 file. A readahead cache helps mostly the case of remote
359 debugging on a connection with higher latency, due to the
360 request/reply nature of the RSP. We only cache data for a single
361 file descriptor at a time. */
362 struct readahead_cache readahead_cache;
363
364 /* The list of already fetched and acknowledged stop events. This
365 queue is used for notification Stop, and other notifications
366 don't need queue for their events, because the notification
367 events of Stop can't be consumed immediately, so that events
368 should be queued first, and be consumed by remote_wait_{ns,as}
369 one per time. Other notifications can consume their events
370 immediately, so queue is not needed for them. */
953edf2b 371 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
372
373 /* Asynchronous signal handle registered as event loop source for
374 when we have pending events ready to be passed to the core. */
375 struct async_event_handler *remote_async_inferior_event_token = nullptr;
376
377 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
378 ``forever'' still use the normal timeout mechanism. This is
379 currently used by the ASYNC code to guarentee that target reads
380 during the initial connect always time-out. Once getpkt has been
381 modified to return a timeout indication and, in turn
382 remote_wait()/wait_for_inferior() have gained a timeout parameter
383 this can go away. */
384 int wait_forever_enabled_p = 1;
385
386private:
387 /* Mapping of remote protocol data for each gdbarch. Usually there
388 is only one entry here, though we may see more with stubs that
389 support multi-process. */
390 std::unordered_map<struct gdbarch *, remote_arch_state>
391 m_arch_states;
392};
6b8edb51 393
d9f719f1
PA
394static const target_info remote_target_info = {
395 "remote",
396 N_("Remote serial target in gdb-specific protocol"),
397 remote_doc
398};
399
3b3dac9b 400class remote_target : public process_stratum_target
f6ac5f3d
PA
401{
402public:
3b3dac9b 403 remote_target () = default;
6b8edb51 404 ~remote_target () override;
f6ac5f3d 405
d9f719f1
PA
406 const target_info &info () const override
407 { return remote_target_info; }
f6ac5f3d
PA
408
409 thread_control_capabilities get_thread_control_capabilities () override
410 { return tc_schedlock; }
411
d9f719f1
PA
412 /* Open a remote connection. */
413 static void open (const char *, int);
414
f6ac5f3d
PA
415 void close () override;
416
417 void detach (inferior *, int) override;
418 void disconnect (const char *, int) override;
419
420 void commit_resume () override;
421 void resume (ptid_t, int, enum gdb_signal) override;
422 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
423
424 void fetch_registers (struct regcache *, int) override;
425 void store_registers (struct regcache *, int) override;
426 void prepare_to_store (struct regcache *) override;
427
428 void files_info () override;
429
430 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
431
432 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
433 enum remove_bp_reason) override;
434
435
57810aa7
PA
436 bool stopped_by_sw_breakpoint () override;
437 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 438
57810aa7 439 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 440
57810aa7 441 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 442
57810aa7 443 bool stopped_by_watchpoint () override;
f6ac5f3d 444
57810aa7 445 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 446
57810aa7 447 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
448
449 int can_use_hw_breakpoint (enum bptype, int, int) override;
450
451 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
452
453 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
454
455 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
456
457 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
458 struct expression *) override;
459
460 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
461 struct expression *) override;
462
463 void kill () override;
464
465 void load (const char *, int) override;
466
467 void mourn_inferior () override;
468
adc6a863 469 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
470
471 int set_syscall_catchpoint (int, bool, int,
472 gdb::array_view<const int>) override;
473
adc6a863 474 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 475
57810aa7 476 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
477
478 const char *thread_name (struct thread_info *) override;
479
480 void update_thread_list () override;
481
a068643d 482 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
483
484 const char *extra_thread_info (struct thread_info *) override;
485
486 ptid_t get_ada_task_ptid (long lwp, long thread) override;
487
488 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
489 int handle_len,
490 inferior *inf) override;
491
3d6c6204
KB
492 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
493 override;
494
f6ac5f3d
PA
495 void stop (ptid_t) override;
496
497 void interrupt () override;
498
499 void pass_ctrlc () override;
500
501 enum target_xfer_status xfer_partial (enum target_object object,
502 const char *annex,
503 gdb_byte *readbuf,
504 const gdb_byte *writebuf,
505 ULONGEST offset, ULONGEST len,
506 ULONGEST *xfered_len) override;
507
508 ULONGEST get_memory_xfer_limit () override;
509
510 void rcmd (const char *command, struct ui_file *output) override;
511
512 char *pid_to_exec_file (int pid) override;
513
514 void log_command (const char *cmd) override
515 {
516 serial_log_command (this, cmd);
517 }
518
519 CORE_ADDR get_thread_local_address (ptid_t ptid,
520 CORE_ADDR load_module_addr,
521 CORE_ADDR offset) override;
522
57810aa7 523 bool can_execute_reverse () override;
f6ac5f3d
PA
524
525 std::vector<mem_region> memory_map () override;
526
527 void flash_erase (ULONGEST address, LONGEST length) override;
528
529 void flash_done () override;
530
531 const struct target_desc *read_description () override;
532
533 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
534 const gdb_byte *pattern, ULONGEST pattern_len,
535 CORE_ADDR *found_addrp) override;
536
57810aa7 537 bool can_async_p () override;
f6ac5f3d 538
57810aa7 539 bool is_async_p () override;
f6ac5f3d
PA
540
541 void async (int) override;
542
5b6d1e4f
PA
543 int async_wait_fd () override;
544
f6ac5f3d
PA
545 void thread_events (int) override;
546
547 int can_do_single_step () override;
548
549 void terminal_inferior () override;
550
551 void terminal_ours () override;
552
57810aa7 553 bool supports_non_stop () override;
f6ac5f3d 554
57810aa7 555 bool supports_multi_process () override;
f6ac5f3d 556
57810aa7 557 bool supports_disable_randomization () override;
f6ac5f3d 558
57810aa7 559 bool filesystem_is_local () override;
f6ac5f3d
PA
560
561
562 int fileio_open (struct inferior *inf, const char *filename,
563 int flags, int mode, int warn_if_slow,
564 int *target_errno) override;
565
566 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
567 ULONGEST offset, int *target_errno) override;
568
569 int fileio_pread (int fd, gdb_byte *read_buf, int len,
570 ULONGEST offset, int *target_errno) override;
571
572 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
573
574 int fileio_close (int fd, int *target_errno) override;
575
576 int fileio_unlink (struct inferior *inf,
577 const char *filename,
578 int *target_errno) override;
579
580 gdb::optional<std::string>
581 fileio_readlink (struct inferior *inf,
582 const char *filename,
583 int *target_errno) override;
584
57810aa7 585 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 586
57810aa7 587 bool supports_string_tracing () override;
f6ac5f3d 588
57810aa7 589 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 590
57810aa7 591 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
592
593 void trace_init () override;
594
595 void download_tracepoint (struct bp_location *location) override;
596
57810aa7 597 bool can_download_tracepoint () override;
f6ac5f3d
PA
598
599 void download_trace_state_variable (const trace_state_variable &tsv) override;
600
601 void enable_tracepoint (struct bp_location *location) override;
602
603 void disable_tracepoint (struct bp_location *location) override;
604
605 void trace_set_readonly_regions () override;
606
607 void trace_start () override;
608
609 int get_trace_status (struct trace_status *ts) override;
610
611 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
612 override;
613
614 void trace_stop () override;
615
616 int trace_find (enum trace_find_type type, int num,
617 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
618
57810aa7 619 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
620
621 int save_trace_data (const char *filename) override;
622
623 int upload_tracepoints (struct uploaded_tp **utpp) override;
624
625 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
626
627 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
628
629 int get_min_fast_tracepoint_insn_len () override;
630
631 void set_disconnected_tracing (int val) override;
632
633 void set_circular_trace_buffer (int val) override;
634
635 void set_trace_buffer_size (LONGEST val) override;
636
57810aa7
PA
637 bool set_trace_notes (const char *user, const char *notes,
638 const char *stopnotes) override;
f6ac5f3d
PA
639
640 int core_of_thread (ptid_t ptid) override;
641
642 int verify_memory (const gdb_byte *data,
643 CORE_ADDR memaddr, ULONGEST size) override;
644
645
57810aa7 646 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
647
648 void set_permissions () override;
649
650 bool static_tracepoint_marker_at (CORE_ADDR,
651 struct static_tracepoint_marker *marker)
652 override;
653
654 std::vector<static_tracepoint_marker>
655 static_tracepoint_markers_by_strid (const char *id) override;
656
657 traceframe_info_up traceframe_info () override;
658
57810aa7
PA
659 bool use_agent (bool use) override;
660 bool can_use_agent () override;
f6ac5f3d
PA
661
662 struct btrace_target_info *enable_btrace (ptid_t ptid,
663 const struct btrace_config *conf) override;
664
665 void disable_btrace (struct btrace_target_info *tinfo) override;
666
667 void teardown_btrace (struct btrace_target_info *tinfo) override;
668
669 enum btrace_error read_btrace (struct btrace_data *data,
670 struct btrace_target_info *btinfo,
671 enum btrace_read_type type) override;
672
673 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 674 bool augmented_libraries_svr4_read () override;
f6ac5f3d 675 int follow_fork (int, int) override;
4ca51187 676 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
677 int insert_fork_catchpoint (int) override;
678 int remove_fork_catchpoint (int) override;
679 int insert_vfork_catchpoint (int) override;
680 int remove_vfork_catchpoint (int) override;
681 int insert_exec_catchpoint (int) override;
682 int remove_exec_catchpoint (int) override;
683 enum exec_direction_kind execution_direction () override;
684
6b8edb51
PA
685public: /* Remote specific methods. */
686
687 void remote_download_command_source (int num, ULONGEST addr,
688 struct command_line *cmds);
689
690 void remote_file_put (const char *local_file, const char *remote_file,
691 int from_tty);
692 void remote_file_get (const char *remote_file, const char *local_file,
693 int from_tty);
694 void remote_file_delete (const char *remote_file, int from_tty);
695
696 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
697 ULONGEST offset, int *remote_errno);
698 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
699 ULONGEST offset, int *remote_errno);
700 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
701 ULONGEST offset, int *remote_errno);
702
703 int remote_hostio_send_command (int command_bytes, int which_packet,
704 int *remote_errno, char **attachment,
705 int *attachment_len);
706 int remote_hostio_set_filesystem (struct inferior *inf,
707 int *remote_errno);
708 /* We should get rid of this and use fileio_open directly. */
709 int remote_hostio_open (struct inferior *inf, const char *filename,
710 int flags, int mode, int warn_if_slow,
711 int *remote_errno);
712 int remote_hostio_close (int fd, int *remote_errno);
713
714 int remote_hostio_unlink (inferior *inf, const char *filename,
715 int *remote_errno);
716
717 struct remote_state *get_remote_state ();
718
719 long get_remote_packet_size (void);
720 long get_memory_packet_size (struct memory_packet_config *config);
721
722 long get_memory_write_packet_size ();
723 long get_memory_read_packet_size ();
724
725 char *append_pending_thread_resumptions (char *p, char *endp,
726 ptid_t ptid);
d9f719f1 727 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 728 void start_remote (int from_tty, int extended_p);
00431a78 729 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
730
731 char *append_resumption (char *p, char *endp,
732 ptid_t ptid, int step, gdb_signal siggnal);
733 int remote_resume_with_vcont (ptid_t ptid, int step,
734 gdb_signal siggnal);
735
736 void add_current_inferior_and_thread (char *wait_status);
737
738 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
739 int options);
740 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
741 int options);
742
743 ptid_t process_stop_reply (struct stop_reply *stop_reply,
744 target_waitstatus *status);
745
746 void remote_notice_new_inferior (ptid_t currthread, int executing);
747
748 void process_initial_stop_replies (int from_tty);
749
00431a78 750 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
751
752 void btrace_sync_conf (const btrace_config *conf);
753
754 void remote_btrace_maybe_reopen ();
755
756 void remove_new_fork_children (threads_listing_context *context);
757 void kill_new_fork_children (int pid);
758 void discard_pending_stop_replies (struct inferior *inf);
759 int stop_reply_queue_length ();
760
761 void check_pending_events_prevent_wildcard_vcont
762 (int *may_global_wildcard_vcont);
763
764 void discard_pending_stop_replies_in_queue ();
765 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
766 struct stop_reply *queued_stop_reply (ptid_t ptid);
767 int peek_stop_reply (ptid_t ptid);
bb277751 768 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
769
770 void remote_stop_ns (ptid_t ptid);
771 void remote_interrupt_as ();
772 void remote_interrupt_ns ();
773
774 char *remote_get_noisy_reply ();
775 int remote_query_attached (int pid);
9ab8741a 776 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
777 int try_open_exec);
778
779 ptid_t remote_current_thread (ptid_t oldpid);
780 ptid_t get_current_thread (char *wait_status);
781
782 void set_thread (ptid_t ptid, int gen);
783 void set_general_thread (ptid_t ptid);
784 void set_continue_thread (ptid_t ptid);
785 void set_general_process ();
786
787 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
788
789 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
790 gdb_ext_thread_info *info);
791 int remote_get_threadinfo (threadref *threadid, int fieldset,
792 gdb_ext_thread_info *info);
793
794 int parse_threadlist_response (char *pkt, int result_limit,
795 threadref *original_echo,
796 threadref *resultlist,
797 int *doneflag);
798 int remote_get_threadlist (int startflag, threadref *nextthread,
799 int result_limit, int *done, int *result_count,
800 threadref *threadlist);
801
802 int remote_threadlist_iterator (rmt_thread_action stepfunction,
803 void *context, int looplimit);
804
805 int remote_get_threads_with_ql (threads_listing_context *context);
806 int remote_get_threads_with_qxfer (threads_listing_context *context);
807 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
808
809 void extended_remote_restart ();
810
811 void get_offsets ();
812
813 void remote_check_symbols ();
814
815 void remote_supported_packet (const struct protocol_feature *feature,
816 enum packet_support support,
817 const char *argument);
818
819 void remote_query_supported ();
820
821 void remote_packet_size (const protocol_feature *feature,
822 packet_support support, const char *value);
823
824 void remote_serial_quit_handler ();
825
826 void remote_detach_pid (int pid);
827
828 void remote_vcont_probe ();
829
830 void remote_resume_with_hc (ptid_t ptid, int step,
831 gdb_signal siggnal);
832
833 void send_interrupt_sequence ();
834 void interrupt_query ();
835
836 void remote_notif_get_pending_events (notif_client *nc);
837
838 int fetch_register_using_p (struct regcache *regcache,
839 packet_reg *reg);
840 int send_g_packet ();
841 void process_g_packet (struct regcache *regcache);
842 void fetch_registers_using_g (struct regcache *regcache);
843 int store_register_using_P (const struct regcache *regcache,
844 packet_reg *reg);
845 void store_registers_using_G (const struct regcache *regcache);
846
847 void set_remote_traceframe ();
848
849 void check_binary_download (CORE_ADDR addr);
850
851 target_xfer_status remote_write_bytes_aux (const char *header,
852 CORE_ADDR memaddr,
853 const gdb_byte *myaddr,
854 ULONGEST len_units,
855 int unit_size,
856 ULONGEST *xfered_len_units,
857 char packet_format,
858 int use_length);
859
860 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
861 const gdb_byte *myaddr, ULONGEST len,
862 int unit_size, ULONGEST *xfered_len);
863
864 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
865 ULONGEST len_units,
866 int unit_size, ULONGEST *xfered_len_units);
867
868 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
869 ULONGEST memaddr,
870 ULONGEST len,
871 int unit_size,
872 ULONGEST *xfered_len);
873
874 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
875 gdb_byte *myaddr, ULONGEST len,
876 int unit_size,
877 ULONGEST *xfered_len);
878
879 packet_result remote_send_printf (const char *format, ...)
880 ATTRIBUTE_PRINTF (2, 3);
881
882 target_xfer_status remote_flash_write (ULONGEST address,
883 ULONGEST length, ULONGEST *xfered_len,
884 const gdb_byte *data);
885
886 int readchar (int timeout);
887
888 void remote_serial_write (const char *str, int len);
889
890 int putpkt (const char *buf);
891 int putpkt_binary (const char *buf, int cnt);
892
8d64371b
TT
893 int putpkt (const gdb::char_vector &buf)
894 {
895 return putpkt (buf.data ());
896 }
897
6b8edb51 898 void skip_frame ();
8d64371b
TT
899 long read_frame (gdb::char_vector *buf_p);
900 void getpkt (gdb::char_vector *buf, int forever);
901 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 902 int expecting_notif, int *is_notif);
8d64371b
TT
903 int getpkt_sane (gdb::char_vector *buf, int forever);
904 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
905 int *is_notif);
906 int remote_vkill (int pid);
907 void remote_kill_k ();
908
909 void extended_remote_disable_randomization (int val);
910 int extended_remote_run (const std::string &args);
911
912 void send_environment_packet (const char *action,
913 const char *packet,
914 const char *value);
915
916 void extended_remote_environment_support ();
3c69da40 917 void extended_remote_set_inferior_cwd ();
80152258 918
3c69da40
PA
919 target_xfer_status remote_write_qxfer (const char *object_name,
920 const char *annex,
921 const gdb_byte *writebuf,
922 ULONGEST offset, LONGEST len,
923 ULONGEST *xfered_len,
924 struct packet_config *packet);
43c3a0e4 925
3c69da40
PA
926 target_xfer_status remote_read_qxfer (const char *object_name,
927 const char *annex,
928 gdb_byte *readbuf, ULONGEST offset,
929 LONGEST len,
930 ULONGEST *xfered_len,
931 struct packet_config *packet);
43c3a0e4 932
3c69da40 933 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 934
3c69da40 935 bool vcont_r_supported ();
43c3a0e4 936
3c69da40 937 void packet_command (const char *args, int from_tty);
43c3a0e4 938
3c69da40 939private: /* data fields */
43c3a0e4 940
3c69da40
PA
941 /* The remote state. Don't reference this directly. Use the
942 get_remote_state method instead. */
943 remote_state m_remote_state;
43c3a0e4
PA
944};
945
3c69da40
PA
946static const target_info extended_remote_target_info = {
947 "extended-remote",
948 N_("Extended remote serial target in gdb-specific protocol"),
949 remote_doc
950};
ea9c271d 951
3c69da40
PA
952/* Set up the extended remote target by extending the standard remote
953 target and adding to it. */
954
955class extended_remote_target final : public remote_target
ea9c271d 956{
9d6eea31 957public:
3c69da40
PA
958 const target_info &info () const override
959 { return extended_remote_target_info; }
9d6eea31 960
3c69da40
PA
961 /* Open an extended-remote connection. */
962 static void open (const char *, int);
de44f5a7 963
3c69da40
PA
964 bool can_create_inferior () override { return true; }
965 void create_inferior (const char *, const std::string &,
966 char **, int) override;
9d6eea31 967
3c69da40 968 void detach (inferior *, int) override;
9d6eea31 969
3c69da40
PA
970 bool can_attach () override { return true; }
971 void attach (const char *, int) override;
be2a5f71 972
3c69da40
PA
973 void post_attach (int) override;
974 bool supports_disable_randomization () override;
975};
1e51243a 976
3c69da40 977/* Per-program-space data key. */
7b4a314f
TT
978static const struct program_space_key<char, gdb::xfree_deleter<char>>
979 remote_pspace_data;
2d717e4f 980
3c69da40
PA
981/* The variable registered as the control variable used by the
982 remote exec-file commands. While the remote exec-file setting is
983 per-program-space, the set/show machinery uses this as the
984 location of the remote exec-file value. */
985static char *remote_exec_file_var;
a6f3e723 986
3c69da40
PA
987/* The size to align memory write packets, when practical. The protocol
988 does not guarantee any alignment, and gdb will generate short
989 writes and unaligned writes, but even as a best-effort attempt this
990 can improve bulk transfers. For instance, if a write is misaligned
991 relative to the target's data bus, the stub may need to make an extra
992 round trip fetching data from the target. This doesn't make a
993 huge difference, but it's easy to do, so we try to be helpful.
82f73884 994
3c69da40
PA
995 The alignment chosen is arbitrary; usually data bus width is
996 important here, not the possibly larger cache line size. */
997enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 998
3c69da40 999/* Prototypes for local functions. */
74531fed 1000
3c69da40 1001static int hexnumlen (ULONGEST num);
782b2b07 1002
3c69da40 1003static int stubhex (int ch);
5d93a237 1004
3c69da40 1005static int hexnumstr (char *, ULONGEST);
048094ac 1006
3c69da40 1007static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1008
3c69da40 1009static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1010
3c69da40 1011static void print_packet (const char *);
747dc59d 1012
3c69da40 1013static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1014
3c69da40 1015struct packet_config;
b73be471 1016
3c69da40 1017static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1018
3c69da40
PA
1019static void show_remote_protocol_packet_cmd (struct ui_file *file,
1020 int from_tty,
1021 struct cmd_list_element *c,
1022 const char *value);
8e88304f 1023
3c69da40 1024static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1025
3c69da40 1026static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1027
eefce37f 1028static bool remote_read_description_p (struct target_ops *target);
88b496c3 1029
05be00a8 1030static void remote_console_output (const char *msg);
5965e028 1031
3c69da40 1032static void remote_btrace_reset (remote_state *rs);
f4abbc16 1033
5b6d1e4f 1034static void remote_unpush_and_throw (remote_target *target);
15a201c8 1035
3c69da40 1036/* For "remote". */
80152258 1037
3c69da40 1038static struct cmd_list_element *remote_cmdlist;
9d6eea31 1039
3c69da40 1040/* For "set remote" and "show remote". */
6b8edb51 1041
3c69da40
PA
1042static struct cmd_list_element *remote_set_cmdlist;
1043static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1044
3c69da40 1045/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1046
491144b5 1047static bool use_range_stepping = true;
3c69da40 1048
7aabaf9d
SM
1049/* Private data that we'll store in (struct thread_info)->priv. */
1050struct remote_thread_info : public private_thread_info
dc146f7c 1051{
7aabaf9d
SM
1052 std::string extra;
1053 std::string name;
1054 int core = -1;
799a2abe 1055
f6327dcb
KB
1056 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1057 sequence of bytes. */
7aabaf9d 1058 gdb::byte_vector thread_handle;
f6327dcb 1059
799a2abe 1060 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1061 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1062
1063 /* This is set to the data address of the access causing the target
1064 to stop for a watchpoint. */
7aabaf9d 1065 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1066
1067 /* Fields used by the vCont action coalescing implemented in
1068 remote_resume / remote_commit_resume. remote_resume stores each
1069 thread's last resume request in these fields, so that a later
1070 remote_commit_resume knows which is the proper action for this
1071 thread to include in the vCont packet. */
1072
1073 /* True if the last target_resume call for this thread was a step
1074 request, false if a continue request. */
7aabaf9d 1075 int last_resume_step = 0;
85ad3aaf
PA
1076
1077 /* The signal specified in the last target_resume call for this
1078 thread. */
7aabaf9d 1079 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1080
1081 /* Whether this thread was already vCont-resumed on the remote
1082 side. */
7aabaf9d 1083 int vcont_resumed = 0;
dc146f7c
VP
1084};
1085
de44f5a7 1086remote_state::remote_state ()
8d64371b 1087 : buf (400)
de44f5a7 1088{
de44f5a7
PA
1089}
1090
1091remote_state::~remote_state ()
1092{
1093 xfree (this->last_pass_packet);
1094 xfree (this->last_program_signals_packet);
de44f5a7
PA
1095 xfree (this->finished_object);
1096 xfree (this->finished_annex);
cf792862
TT
1097}
1098
35b1e5cc
SS
1099/* Utility: generate error from an incoming stub packet. */
1100static void
1101trace_error (char *buf)
1102{
1103 if (*buf++ != 'E')
1104 return; /* not an error msg */
1105 switch (*buf)
1106 {
1107 case '1': /* malformed packet error */
1108 if (*++buf == '0') /* general case: */
1109 error (_("remote.c: error in outgoing packet."));
1110 else
1111 error (_("remote.c: error in outgoing packet at field #%ld."),
1112 strtol (buf, NULL, 16));
35b1e5cc
SS
1113 default:
1114 error (_("Target returns error code '%s'."), buf);
1115 }
1116}
1117
1118/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1119
6b8edb51
PA
1120char *
1121remote_target::remote_get_noisy_reply ()
35b1e5cc 1122{
b6bb3468
PA
1123 struct remote_state *rs = get_remote_state ();
1124
35b1e5cc
SS
1125 do /* Loop on reply from remote stub. */
1126 {
1127 char *buf;
a744cf53 1128
0df8b418 1129 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1130 getpkt (&rs->buf, 0);
1131 buf = rs->buf.data ();
ad91cd99 1132 if (buf[0] == 'E')
35b1e5cc 1133 trace_error (buf);
61012eef 1134 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1135 {
1136 ULONGEST ul;
1137 CORE_ADDR from, to, org_to;
256642e8 1138 const char *p, *pp;
dde08ee1 1139 int adjusted_size = 0;
7556d4a4 1140 int relocated = 0;
dde08ee1
PA
1141
1142 p = buf + strlen ("qRelocInsn:");
1143 pp = unpack_varlen_hex (p, &ul);
1144 if (*pp != ';')
cb91c06a 1145 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1146 from = ul;
1147
1148 p = pp + 1;
a9cbf802 1149 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1150 to = ul;
1151
1152 org_to = to;
1153
a70b8144 1154 try
dde08ee1 1155 {
f5656ead 1156 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1157 relocated = 1;
dde08ee1 1158 }
230d2906 1159 catch (const gdb_exception &ex)
7556d4a4
PA
1160 {
1161 if (ex.error == MEMORY_ERROR)
1162 {
1163 /* Propagate memory errors silently back to the
1164 target. The stub may have limited the range of
1165 addresses we can write to, for example. */
1166 }
1167 else
1168 {
1169 /* Something unexpectedly bad happened. Be verbose
1170 so we can tell what, and propagate the error back
1171 to the stub, so it doesn't get stuck waiting for
1172 a response. */
1173 exception_fprintf (gdb_stderr, ex,
1174 _("warning: relocating instruction: "));
1175 }
1176 putpkt ("E01");
1177 }
1178
1179 if (relocated)
dde08ee1
PA
1180 {
1181 adjusted_size = to - org_to;
1182
8d64371b 1183 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1184 putpkt (buf);
1185 }
dde08ee1 1186 }
ad91cd99 1187 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1188 remote_console_output (buf + 1); /* 'O' message from stub */
1189 else
0df8b418 1190 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1191 }
1192 while (1);
1193}
3c3bea1c 1194
9d6eea31
PA
1195struct remote_arch_state *
1196remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1197{
43c3a0e4
PA
1198 remote_arch_state *rsa;
1199
1200 auto it = this->m_arch_states.find (gdbarch);
1201 if (it == this->m_arch_states.end ())
9d6eea31 1202 {
43c3a0e4
PA
1203 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1204 std::forward_as_tuple (gdbarch),
1205 std::forward_as_tuple (gdbarch));
1206 rsa = &p.first->second;
9d6eea31
PA
1207
1208 /* Make sure that the packet buffer is plenty big enough for
1209 this architecture. */
8d64371b
TT
1210 if (this->buf.size () < rsa->remote_packet_size)
1211 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1212 }
43c3a0e4
PA
1213 else
1214 rsa = &it->second;
1215
1216 return rsa;
d01949b6
AC
1217}
1218
0b83947e
DJ
1219/* Fetch the global remote target state. */
1220
6b8edb51
PA
1221remote_state *
1222remote_target::get_remote_state ()
0b83947e
DJ
1223{
1224 /* Make sure that the remote architecture state has been
1225 initialized, because doing so might reallocate rs->buf. Any
1226 function which calls getpkt also needs to be mindful of changes
1227 to rs->buf, but this call limits the number of places which run
1228 into trouble. */
3c69da40 1229 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1230
3c69da40 1231 return &m_remote_state;
0b83947e
DJ
1232}
1233
94585166
DB
1234/* Fetch the remote exec-file from the current program space. */
1235
1236static const char *
1237get_remote_exec_file (void)
1238{
1239 char *remote_exec_file;
1240
7b4a314f 1241 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1242 if (remote_exec_file == NULL)
1243 return "";
1244
1245 return remote_exec_file;
1246}
1247
1248/* Set the remote exec file for PSPACE. */
1249
1250static void
1251set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1252 const char *remote_exec_file)
94585166 1253{
7b4a314f 1254 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1255
1256 xfree (old_file);
7b4a314f 1257 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1258}
1259
1260/* The "set/show remote exec-file" set command hook. */
1261
1262static void
eb4c3f4a 1263set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1264 struct cmd_list_element *c)
1265{
1266 gdb_assert (remote_exec_file_var != NULL);
1267 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1268}
1269
1270/* The "set/show remote exec-file" show command hook. */
1271
1272static void
1273show_remote_exec_file (struct ui_file *file, int from_tty,
1274 struct cmd_list_element *cmd, const char *value)
1275{
acdf84a6 1276 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1277}
1278
c21236dc
PA
1279static int
1280map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1281{
74ca34ce 1282 int regnum, num_remote_regs, offset;
74ca34ce 1283 struct packet_reg **remote_regs;
ea9c271d 1284
4a22f64d 1285 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1286 {
c21236dc 1287 struct packet_reg *r = &regs[regnum];
baef701f 1288
4a22f64d 1289 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1290 /* Do not try to fetch zero-sized (placeholder) registers. */
1291 r->pnum = -1;
1292 else
1293 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1294
b323314b 1295 r->regnum = regnum;
74ca34ce
DJ
1296 }
1297
1298 /* Define the g/G packet format as the contents of each register
1299 with a remote protocol number, in order of ascending protocol
1300 number. */
1301
224c3ddb 1302 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1303 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1304 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1305 regnum++)
c21236dc
PA
1306 if (regs[regnum].pnum != -1)
1307 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1308
39ef2f62
CB
1309 std::sort (remote_regs, remote_regs + num_remote_regs,
1310 [] (const packet_reg *a, const packet_reg *b)
1311 { return a->pnum < b->pnum; });
74ca34ce
DJ
1312
1313 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1314 {
1315 remote_regs[regnum]->in_g_packet = 1;
1316 remote_regs[regnum]->offset = offset;
4a22f64d 1317 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1318 }
1319
c21236dc
PA
1320 return offset;
1321}
1322
1323/* Given the architecture described by GDBARCH, return the remote
1324 protocol register's number and the register's offset in the g/G
1325 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1326 If the target does not have a mapping for REGNUM, return false,
1327 otherwise, return true. */
1328
1329int
1330remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1331 int *pnum, int *poffset)
1332{
c21236dc
PA
1333 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1334
b80406ac 1335 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1336
b80406ac 1337 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1338
1339 *pnum = regs[regnum].pnum;
1340 *poffset = regs[regnum].offset;
1341
c21236dc
PA
1342 return *pnum != -1;
1343}
1344
9d6eea31 1345remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1346{
c21236dc
PA
1347 /* Use the architecture to build a regnum<->pnum table, which will be
1348 1:1 unless a feature set specifies otherwise. */
9d6eea31 1349 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1350
74ca34ce
DJ
1351 /* Record the maximum possible size of the g packet - it may turn out
1352 to be smaller. */
9d6eea31
PA
1353 this->sizeof_g_packet
1354 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1355
0df8b418 1356 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1357 remote stubs have a hardwired buffer size of 400 bytes
1358 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1359 as the maximum packet-size to ensure that the packet and an extra
1360 NUL character can always fit in the buffer. This stops GDB
1361 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1362 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1363 this->remote_packet_size = 400 - 1;
d01949b6 1364
ea9c271d 1365 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1366 this->actual_register_packet_size = 0;
ea9c271d
DJ
1367
1368 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1369 default, adjust the size accordingly. Remember that each byte is
1370 encoded as two characters. 32 is the overhead for the packet
1371 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1372 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1373 little. */
9d6eea31
PA
1374 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1375 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1376}
1377
6b8edb51
PA
1378/* Get a pointer to the current remote target. If not connected to a
1379 remote target, return NULL. */
1380
1381static remote_target *
1382get_current_remote_target ()
1383{
5b6d1e4f 1384 target_ops *proc_target = current_inferior ()->process_target ();
6b8edb51
PA
1385 return dynamic_cast<remote_target *> (proc_target);
1386}
1387
ea9c271d
DJ
1388/* Return the current allowed size of a remote packet. This is
1389 inferred from the current architecture, and should be used to
1390 limit the length of outgoing packets. */
6b8edb51
PA
1391long
1392remote_target::get_remote_packet_size ()
ea9c271d 1393{
be2a5f71 1394 struct remote_state *rs = get_remote_state ();
9d6eea31 1395 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1396
be2a5f71
DJ
1397 if (rs->explicit_packet_size)
1398 return rs->explicit_packet_size;
1399
ea9c271d 1400 return rsa->remote_packet_size;
d01949b6
AC
1401}
1402
ad10f812 1403static struct packet_reg *
5cd63fda
PA
1404packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1405 long regnum)
ad10f812 1406{
5cd63fda 1407 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1408 return NULL;
1409 else
ad10f812 1410 {
ea9c271d 1411 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1412
b323314b
AC
1413 gdb_assert (r->regnum == regnum);
1414 return r;
ad10f812 1415 }
ad10f812
AC
1416}
1417
1418static struct packet_reg *
5cd63fda
PA
1419packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1420 LONGEST pnum)
ad10f812 1421{
b323314b 1422 int i;
a744cf53 1423
5cd63fda 1424 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1425 {
ea9c271d 1426 struct packet_reg *r = &rsa->regs[i];
a744cf53 1427
b323314b
AC
1428 if (r->pnum == pnum)
1429 return r;
ad10f812
AC
1430 }
1431 return NULL;
d01949b6
AC
1432}
1433
9a7071a8
JB
1434/* Allow the user to specify what sequence to send to the remote
1435 when he requests a program interruption: Although ^C is usually
1436 what remote systems expect (this is the default, here), it is
1437 sometimes preferable to send a break. On other systems such
1438 as the Linux kernel, a break followed by g, which is Magic SysRq g
1439 is required in order to interrupt the execution. */
1440const char interrupt_sequence_control_c[] = "Ctrl-C";
1441const char interrupt_sequence_break[] = "BREAK";
1442const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1443static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1444 {
1445 interrupt_sequence_control_c,
1446 interrupt_sequence_break,
1447 interrupt_sequence_break_g,
1448 NULL
1449 };
1450static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1451
1452static void
1453show_interrupt_sequence (struct ui_file *file, int from_tty,
1454 struct cmd_list_element *c,
1455 const char *value)
1456{
1457 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1458 fprintf_filtered (file,
1459 _("Send the ASCII ETX character (Ctrl-c) "
1460 "to the remote target to interrupt the "
1461 "execution of the program.\n"));
1462 else if (interrupt_sequence_mode == interrupt_sequence_break)
1463 fprintf_filtered (file,
1464 _("send a break signal to the remote target "
1465 "to interrupt the execution of the program.\n"));
1466 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1467 fprintf_filtered (file,
1468 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1469 "the remote target to interrupt the execution "
1470 "of Linux kernel.\n"));
1471 else
1472 internal_error (__FILE__, __LINE__,
1473 _("Invalid value for interrupt_sequence_mode: %s."),
1474 interrupt_sequence_mode);
1475}
6426a772 1476
9a7071a8
JB
1477/* This boolean variable specifies whether interrupt_sequence is sent
1478 to the remote target when gdb connects to it.
1479 This is mostly needed when you debug the Linux kernel: The Linux kernel
1480 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1481static bool interrupt_on_connect = false;
c906108c 1482
9a7071a8
JB
1483/* This variable is used to implement the "set/show remotebreak" commands.
1484 Since these commands are now deprecated in favor of "set/show remote
1485 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1486static bool remote_break;
c906108c 1487
9a7071a8 1488static void
eb4c3f4a 1489set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1490{
1491 if (remote_break)
1492 interrupt_sequence_mode = interrupt_sequence_break;
1493 else
1494 interrupt_sequence_mode = interrupt_sequence_control_c;
1495}
1496
1497static void
1498show_remotebreak (struct ui_file *file, int from_tty,
1499 struct cmd_list_element *c,
1500 const char *value)
1501{
1502}
1503
c906108c
SS
1504/* This variable sets the number of bits in an address that are to be
1505 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1506 leading zeros, the entire address would be sent. This variable
c906108c
SS
1507 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1508 initial implementation of remote.c restricted the address sent in
1509 memory packets to ``host::sizeof long'' bytes - (typically 32
1510 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1511 address was never sent. Since fixing this bug may cause a break in
85102364 1512 some remote targets this variable is principally provided to
23860348 1513 facilitate backward compatibility. */
c906108c 1514
883b9c6c 1515static unsigned int remote_address_size;
c906108c 1516
11cf8741 1517\f
11cf8741 1518/* User configurable variables for the number of characters in a
ea9c271d
DJ
1519 memory read/write packet. MIN (rsa->remote_packet_size,
1520 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1521 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1522 (speed up transfers). The variables ``preferred_*'' (the user
1523 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1524 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1525
1526struct memory_packet_config
1527{
a121b7c1 1528 const char *name;
11cf8741
JM
1529 long size;
1530 int fixed_p;
1531};
1532
cc0be08f
PA
1533/* The default max memory-write-packet-size, when the setting is
1534 "fixed". The 16k is historical. (It came from older GDB's using
1535 alloca for buffers and the knowledge (folklore?) that some hosts
1536 don't cope very well with large alloca calls.) */
1537#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1538
1539/* The minimum remote packet size for memory transfers. Ensures we
1540 can write at least one byte. */
1541#define MIN_MEMORY_PACKET_SIZE 20
1542
cc0be08f
PA
1543/* Get the memory packet size, assuming it is fixed. */
1544
1545static long
1546get_fixed_memory_packet_size (struct memory_packet_config *config)
1547{
1548 gdb_assert (config->fixed_p);
1549
1550 if (config->size <= 0)
1551 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1552 else
1553 return config->size;
1554}
1555
11cf8741
JM
1556/* Compute the current size of a read/write packet. Since this makes
1557 use of ``actual_register_packet_size'' the computation is dynamic. */
1558
6b8edb51
PA
1559long
1560remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1561{
d01949b6 1562 struct remote_state *rs = get_remote_state ();
9d6eea31 1563 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1564
11cf8741
JM
1565 long what_they_get;
1566 if (config->fixed_p)
cc0be08f 1567 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1568 else
1569 {
ea9c271d 1570 what_they_get = get_remote_packet_size ();
23860348 1571 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1572 if (config->size > 0
1573 && what_they_get > config->size)
1574 what_they_get = config->size;
be2a5f71
DJ
1575
1576 /* Limit it to the size of the targets ``g'' response unless we have
1577 permission from the stub to use a larger packet size. */
1578 if (rs->explicit_packet_size == 0
1579 && rsa->actual_register_packet_size > 0
1580 && what_they_get > rsa->actual_register_packet_size)
1581 what_they_get = rsa->actual_register_packet_size;
11cf8741 1582 }
a5c0808e
PA
1583 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1584 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1585
1586 /* Make sure there is room in the global buffer for this packet
1587 (including its trailing NUL byte). */
8d64371b
TT
1588 if (rs->buf.size () < what_they_get + 1)
1589 rs->buf.resize (2 * what_they_get);
6d820c5c 1590
11cf8741
JM
1591 return what_they_get;
1592}
1593
0df8b418 1594/* Update the size of a read/write packet. If they user wants
23860348 1595 something really big then do a sanity check. */
11cf8741
JM
1596
1597static void
ac88e2de 1598set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1599{
1600 int fixed_p = config->fixed_p;
1601 long size = config->size;
a744cf53 1602
11cf8741 1603 if (args == NULL)
8a3fe4f8 1604 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1605 else if (strcmp (args, "hard") == 0
1606 || strcmp (args, "fixed") == 0)
1607 fixed_p = 1;
1608 else if (strcmp (args, "soft") == 0
1609 || strcmp (args, "limit") == 0)
1610 fixed_p = 0;
1611 else
1612 {
1613 char *end;
a744cf53 1614
11cf8741
JM
1615 size = strtoul (args, &end, 0);
1616 if (args == end)
8a3fe4f8 1617 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1618
1619 /* Instead of explicitly capping the size of a packet to or
1620 disallowing it, the user is allowed to set the size to
1621 something arbitrarily large. */
11cf8741 1622 }
a5c0808e 1623
23860348 1624 /* Extra checks? */
11cf8741
JM
1625 if (fixed_p && !config->fixed_p)
1626 {
cc0be08f
PA
1627 /* So that the query shows the correct value. */
1628 long query_size = (size <= 0
1629 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1630 : size);
1631
e2e0b3e5
AC
1632 if (! query (_("The target may not be able to correctly handle a %s\n"
1633 "of %ld bytes. Change the packet size? "),
cc0be08f 1634 config->name, query_size))
8a3fe4f8 1635 error (_("Packet size not changed."));
11cf8741 1636 }
23860348 1637 /* Update the config. */
11cf8741
JM
1638 config->fixed_p = fixed_p;
1639 config->size = size;
1640}
1641
1642static void
1643show_memory_packet_size (struct memory_packet_config *config)
1644{
cc0be08f
PA
1645 if (config->size == 0)
1646 printf_filtered (_("The %s is 0 (default). "), config->name);
1647 else
1648 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1649 if (config->fixed_p)
a3f17187 1650 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1651 get_fixed_memory_packet_size (config));
11cf8741 1652 else
cc0be08f 1653 {
6b8edb51 1654 remote_target *remote = get_current_remote_target ();
cc0be08f 1655
6b8edb51 1656 if (remote != NULL)
cc0be08f 1657 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1658 remote->get_memory_packet_size (config));
cc0be08f
PA
1659 else
1660 puts_filtered ("The actual limit will be further reduced "
1661 "dependent on the target.\n");
1662 }
11cf8741
JM
1663}
1664
5b6d1e4f 1665/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1666static struct memory_packet_config memory_write_packet_config =
1667{
1668 "memory-write-packet-size",
1669};
1670
1671static void
ac88e2de 1672set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1673{
1674 set_memory_packet_size (args, &memory_write_packet_config);
1675}
1676
1677static void
ac88e2de 1678show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1679{
1680 show_memory_packet_size (&memory_write_packet_config);
1681}
1682
055303e2
AB
1683/* Show the number of hardware watchpoints that can be used. */
1684
1685static void
1686show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1687 struct cmd_list_element *c,
1688 const char *value)
1689{
1690 fprintf_filtered (file, _("The maximum number of target hardware "
1691 "watchpoints is %s.\n"), value);
1692}
1693
1694/* Show the length limit (in bytes) for hardware watchpoints. */
1695
1696static void
1697show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1698 struct cmd_list_element *c,
1699 const char *value)
1700{
1701 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1702 "hardware watchpoint is %s.\n"), value);
1703}
1704
1705/* Show the number of hardware breakpoints that can be used. */
1706
1707static void
1708show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1709 struct cmd_list_element *c,
1710 const char *value)
1711{
1712 fprintf_filtered (file, _("The maximum number of target hardware "
1713 "breakpoints is %s.\n"), value);
1714}
1715
6cc8564b
LM
1716/* Controls the maximum number of characters to display in the debug output
1717 for each remote packet. The remaining characters are omitted. */
1718
1719static int remote_packet_max_chars = 512;
1720
1721/* Show the maximum number of characters to display for each remote packet
1722 when remote debugging is enabled. */
1723
1724static void
1725show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1726 struct cmd_list_element *c,
1727 const char *value)
1728{
1729 fprintf_filtered (file, _("Number of remote packet characters to "
1730 "display is %s.\n"), value);
1731}
1732
6b8edb51
PA
1733long
1734remote_target::get_memory_write_packet_size ()
11cf8741
JM
1735{
1736 return get_memory_packet_size (&memory_write_packet_config);
1737}
1738
5b6d1e4f 1739/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1740static struct memory_packet_config memory_read_packet_config =
1741{
1742 "memory-read-packet-size",
1743};
1744
1745static void
ac88e2de 1746set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1747{
1748 set_memory_packet_size (args, &memory_read_packet_config);
1749}
1750
1751static void
ac88e2de 1752show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1753{
1754 show_memory_packet_size (&memory_read_packet_config);
1755}
1756
6b8edb51
PA
1757long
1758remote_target::get_memory_read_packet_size ()
11cf8741
JM
1759{
1760 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1761
11cf8741
JM
1762 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1763 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1764 increased beyond this. */
1765 if (size > get_remote_packet_size ())
1766 size = get_remote_packet_size ();
11cf8741
JM
1767 return size;
1768}
1769
11cf8741 1770\f
5a2468f5 1771
5a2468f5
JM
1772struct packet_config
1773 {
bb572ddd
DJ
1774 const char *name;
1775 const char *title;
4082afcc
PA
1776
1777 /* If auto, GDB auto-detects support for this packet or feature,
1778 either through qSupported, or by trying the packet and looking
1779 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1780 packet. If false, the packet is disabled. Configs that don't
1781 have an associated command always have this set to auto. */
7f19b9a2 1782 enum auto_boolean detect;
4082afcc
PA
1783
1784 /* Does the target support this packet? */
5a2468f5
JM
1785 enum packet_support support;
1786 };
1787
4082afcc
PA
1788static enum packet_support packet_config_support (struct packet_config *config);
1789static enum packet_support packet_support (int packet);
5a2468f5
JM
1790
1791static void
fba45db2 1792show_packet_config_cmd (struct packet_config *config)
5a2468f5 1793{
a121b7c1 1794 const char *support = "internal-error";
a744cf53 1795
4082afcc 1796 switch (packet_config_support (config))
5a2468f5
JM
1797 {
1798 case PACKET_ENABLE:
1799 support = "enabled";
1800 break;
1801 case PACKET_DISABLE:
1802 support = "disabled";
1803 break;
1804 case PACKET_SUPPORT_UNKNOWN:
1805 support = "unknown";
1806 break;
1807 }
1808 switch (config->detect)
1809 {
7f19b9a2 1810 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1811 printf_filtered (_("Support for the `%s' packet "
1812 "is auto-detected, currently %s.\n"),
37a105a1 1813 config->name, support);
5a2468f5 1814 break;
7f19b9a2
AC
1815 case AUTO_BOOLEAN_TRUE:
1816 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1817 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1818 config->name, support);
8e248173 1819 break;
5a2468f5
JM
1820 }
1821}
1822
1823static void
bb572ddd
DJ
1824add_packet_config_cmd (struct packet_config *config, const char *name,
1825 const char *title, int legacy)
d471ea57 1826{
5a2468f5
JM
1827 char *set_doc;
1828 char *show_doc;
d471ea57 1829 char *cmd_name;
3ed07be4 1830
5a2468f5
JM
1831 config->name = name;
1832 config->title = title;
590042fc 1833 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1834 name, title);
3e43a32a 1835 show_doc = xstrprintf ("Show current use of remote "
590042fc 1836 "protocol `%s' (%s) packet.",
b435e160 1837 name, title);
d471ea57 1838 /* set/show TITLE-packet {auto,on,off} */
b435e160 1839 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1840 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1841 &config->detect, set_doc,
1842 show_doc, NULL, /* help_doc */
4082afcc 1843 NULL,
bb572ddd
DJ
1844 show_remote_protocol_packet_cmd,
1845 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1846 /* The command code copies the documentation strings. */
1847 xfree (set_doc);
1848 xfree (show_doc);
23860348 1849 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1850 if (legacy)
1851 {
1852 char *legacy_name;
a744cf53 1853
b435e160 1854 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1855 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1856 &remote_set_cmdlist);
d471ea57 1857 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1858 &remote_show_cmdlist);
d471ea57 1859 }
5a2468f5
JM
1860}
1861
d471ea57 1862static enum packet_result
a76d924d 1863packet_check_result (const char *buf)
5a2468f5 1864{
d471ea57 1865 if (buf[0] != '\0')
5a2468f5 1866 {
d471ea57 1867 /* The stub recognized the packet request. Check that the
23860348 1868 operation succeeded. */
a76d924d
DJ
1869 if (buf[0] == 'E'
1870 && isxdigit (buf[1]) && isxdigit (buf[2])
1871 && buf[3] == '\0')
85102364 1872 /* "Enn" - definitely an error. */
a76d924d
DJ
1873 return PACKET_ERROR;
1874
1875 /* Always treat "E." as an error. This will be used for
1876 more verbose error messages, such as E.memtypes. */
1877 if (buf[0] == 'E' && buf[1] == '.')
1878 return PACKET_ERROR;
1879
1880 /* The packet may or may not be OK. Just assume it is. */
1881 return PACKET_OK;
1882 }
1883 else
1884 /* The stub does not support the packet. */
1885 return PACKET_UNKNOWN;
1886}
1887
8d64371b
TT
1888static enum packet_result
1889packet_check_result (const gdb::char_vector &buf)
1890{
1891 return packet_check_result (buf.data ());
1892}
1893
a76d924d
DJ
1894static enum packet_result
1895packet_ok (const char *buf, struct packet_config *config)
1896{
1897 enum packet_result result;
1898
4082afcc
PA
1899 if (config->detect != AUTO_BOOLEAN_TRUE
1900 && config->support == PACKET_DISABLE)
1901 internal_error (__FILE__, __LINE__,
1902 _("packet_ok: attempt to use a disabled packet"));
1903
a76d924d
DJ
1904 result = packet_check_result (buf);
1905 switch (result)
1906 {
1907 case PACKET_OK:
1908 case PACKET_ERROR:
1909 /* The stub recognized the packet request. */
4082afcc 1910 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1911 {
d471ea57
AC
1912 if (remote_debug)
1913 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1914 "Packet %s (%s) is supported\n",
1915 config->name, config->title);
d471ea57 1916 config->support = PACKET_ENABLE;
d471ea57 1917 }
a76d924d
DJ
1918 break;
1919 case PACKET_UNKNOWN:
23860348 1920 /* The stub does not support the packet. */
4082afcc
PA
1921 if (config->detect == AUTO_BOOLEAN_AUTO
1922 && config->support == PACKET_ENABLE)
d471ea57 1923 {
4082afcc
PA
1924 /* If the stub previously indicated that the packet was
1925 supported then there is a protocol error. */
1926 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1927 config->name, config->title);
1928 }
1929 else if (config->detect == AUTO_BOOLEAN_TRUE)
1930 {
1931 /* The user set it wrong. */
1932 error (_("Enabled packet %s (%s) not recognized by stub"),
1933 config->name, config->title);
d471ea57 1934 }
4082afcc
PA
1935
1936 if (remote_debug)
1937 fprintf_unfiltered (gdb_stdlog,
1938 "Packet %s (%s) is NOT supported\n",
1939 config->name, config->title);
1940 config->support = PACKET_DISABLE;
a76d924d 1941 break;
5a2468f5 1942 }
a76d924d
DJ
1943
1944 return result;
5a2468f5
JM
1945}
1946
8d64371b
TT
1947static enum packet_result
1948packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1949{
1950 return packet_ok (buf.data (), config);
1951}
1952
444abaca
DJ
1953enum {
1954 PACKET_vCont = 0,
1955 PACKET_X,
1956 PACKET_qSymbol,
1957 PACKET_P,
1958 PACKET_p,
1959 PACKET_Z0,
1960 PACKET_Z1,
1961 PACKET_Z2,
1962 PACKET_Z3,
1963 PACKET_Z4,
15a201c8 1964 PACKET_vFile_setfs,
a6b151f1
DJ
1965 PACKET_vFile_open,
1966 PACKET_vFile_pread,
1967 PACKET_vFile_pwrite,
1968 PACKET_vFile_close,
1969 PACKET_vFile_unlink,
b9e7b9c3 1970 PACKET_vFile_readlink,
0a93529c 1971 PACKET_vFile_fstat,
0876f84a 1972 PACKET_qXfer_auxv,
23181151 1973 PACKET_qXfer_features,
c78fa86a 1974 PACKET_qXfer_exec_file,
cfa9d6d9 1975 PACKET_qXfer_libraries,
2268b414 1976 PACKET_qXfer_libraries_svr4,
fd79ecee 1977 PACKET_qXfer_memory_map,
07e059b5 1978 PACKET_qXfer_osdata,
dc146f7c 1979 PACKET_qXfer_threads,
0fb4aa4b 1980 PACKET_qXfer_statictrace_read,
b3b9301e 1981 PACKET_qXfer_traceframe_info,
169081d0 1982 PACKET_qXfer_uib,
711e434b 1983 PACKET_qGetTIBAddr,
444abaca 1984 PACKET_qGetTLSAddr,
be2a5f71 1985 PACKET_qSupported,
bd3eecc3 1986 PACKET_qTStatus,
89be2091 1987 PACKET_QPassSignals,
82075af2 1988 PACKET_QCatchSyscalls,
9b224c5e 1989 PACKET_QProgramSignals,
bc3b087d 1990 PACKET_QSetWorkingDir,
aefd8b33 1991 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1992 PACKET_QEnvironmentHexEncoded,
1993 PACKET_QEnvironmentReset,
1994 PACKET_QEnvironmentUnset,
936d2992 1995 PACKET_qCRC,
08388c79 1996 PACKET_qSearch_memory,
2d717e4f
DJ
1997 PACKET_vAttach,
1998 PACKET_vRun,
a6f3e723 1999 PACKET_QStartNoAckMode,
82f73884 2000 PACKET_vKill,
4aa995e1
PA
2001 PACKET_qXfer_siginfo_read,
2002 PACKET_qXfer_siginfo_write,
0b16c5cf 2003 PACKET_qAttached,
4082afcc
PA
2004
2005 /* Support for conditional tracepoints. */
782b2b07 2006 PACKET_ConditionalTracepoints,
4082afcc
PA
2007
2008 /* Support for target-side breakpoint conditions. */
3788aec7 2009 PACKET_ConditionalBreakpoints,
4082afcc
PA
2010
2011 /* Support for target-side breakpoint commands. */
d3ce09f5 2012 PACKET_BreakpointCommands,
4082afcc
PA
2013
2014 /* Support for fast tracepoints. */
7a697b8d 2015 PACKET_FastTracepoints,
4082afcc
PA
2016
2017 /* Support for static tracepoints. */
0fb4aa4b 2018 PACKET_StaticTracepoints,
4082afcc
PA
2019
2020 /* Support for installing tracepoints while a trace experiment is
2021 running. */
1e4d1764 2022 PACKET_InstallInTrace,
4082afcc 2023
40ab02ce
MS
2024 PACKET_bc,
2025 PACKET_bs,
409873ef 2026 PACKET_TracepointSource,
d914c394 2027 PACKET_QAllow,
78d85199 2028 PACKET_qXfer_fdpic,
03583c20 2029 PACKET_QDisableRandomization,
d1feda86 2030 PACKET_QAgent,
f6f899bf 2031 PACKET_QTBuffer_size,
9accd112
MM
2032 PACKET_Qbtrace_off,
2033 PACKET_Qbtrace_bts,
b20a6524 2034 PACKET_Qbtrace_pt,
9accd112 2035 PACKET_qXfer_btrace,
4082afcc
PA
2036
2037 /* Support for the QNonStop packet. */
2038 PACKET_QNonStop,
2039
65706a29
PA
2040 /* Support for the QThreadEvents packet. */
2041 PACKET_QThreadEvents,
2042
4082afcc
PA
2043 /* Support for multi-process extensions. */
2044 PACKET_multiprocess_feature,
2045
2046 /* Support for enabling and disabling tracepoints while a trace
2047 experiment is running. */
2048 PACKET_EnableDisableTracepoints_feature,
2049
2050 /* Support for collecting strings using the tracenz bytecode. */
2051 PACKET_tracenz_feature,
2052
2053 /* Support for continuing to run a trace experiment while GDB is
2054 disconnected. */
2055 PACKET_DisconnectedTracing_feature,
2056
2057 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2058 PACKET_augmented_libraries_svr4_read_feature,
2059
f4abbc16
MM
2060 /* Support for the qXfer:btrace-conf:read packet. */
2061 PACKET_qXfer_btrace_conf,
2062
d33501a5
MM
2063 /* Support for the Qbtrace-conf:bts:size packet. */
2064 PACKET_Qbtrace_conf_bts_size,
2065
f7e6eed5
PA
2066 /* Support for swbreak+ feature. */
2067 PACKET_swbreak_feature,
2068
2069 /* Support for hwbreak+ feature. */
2070 PACKET_hwbreak_feature,
2071
89245bc0
DB
2072 /* Support for fork events. */
2073 PACKET_fork_event_feature,
2074
2075 /* Support for vfork events. */
2076 PACKET_vfork_event_feature,
2077
b20a6524
MM
2078 /* Support for the Qbtrace-conf:pt:size packet. */
2079 PACKET_Qbtrace_conf_pt_size,
2080
94585166
DB
2081 /* Support for exec events. */
2082 PACKET_exec_event_feature,
2083
750ce8d1
YQ
2084 /* Support for query supported vCont actions. */
2085 PACKET_vContSupported,
2086
de979965
PA
2087 /* Support remote CTRL-C. */
2088 PACKET_vCtrlC,
2089
f2faf941
PA
2090 /* Support TARGET_WAITKIND_NO_RESUMED. */
2091 PACKET_no_resumed,
2092
444abaca
DJ
2093 PACKET_MAX
2094};
506fb367 2095
5b6d1e4f
PA
2096/* FIXME: needs to be per-remote-target. Ignoring this for now,
2097 assuming all remote targets are the same server (thus all support
2098 the same packets). */
444abaca 2099static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2100
f7e6eed5
PA
2101/* Returns the packet's corresponding "set remote foo-packet" command
2102 state. See struct packet_config for more details. */
2103
2104static enum auto_boolean
2105packet_set_cmd_state (int packet)
2106{
2107 return remote_protocol_packets[packet].detect;
2108}
2109
4082afcc
PA
2110/* Returns whether a given packet or feature is supported. This takes
2111 into account the state of the corresponding "set remote foo-packet"
2112 command, which may be used to bypass auto-detection. */
dc8acb97 2113
4082afcc
PA
2114static enum packet_support
2115packet_config_support (struct packet_config *config)
2116{
2117 switch (config->detect)
444abaca 2118 {
4082afcc
PA
2119 case AUTO_BOOLEAN_TRUE:
2120 return PACKET_ENABLE;
2121 case AUTO_BOOLEAN_FALSE:
2122 return PACKET_DISABLE;
2123 case AUTO_BOOLEAN_AUTO:
2124 return config->support;
2125 default:
2126 gdb_assert_not_reached (_("bad switch"));
444abaca 2127 }
4082afcc
PA
2128}
2129
2130/* Same as packet_config_support, but takes the packet's enum value as
2131 argument. */
2132
2133static enum packet_support
2134packet_support (int packet)
2135{
2136 struct packet_config *config = &remote_protocol_packets[packet];
2137
2138 return packet_config_support (config);
dc8acb97
MS
2139}
2140
5a2468f5 2141static void
444abaca
DJ
2142show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2143 struct cmd_list_element *c,
2144 const char *value)
5a2468f5 2145{
444abaca 2146 struct packet_config *packet;
5a2468f5 2147
444abaca
DJ
2148 for (packet = remote_protocol_packets;
2149 packet < &remote_protocol_packets[PACKET_MAX];
2150 packet++)
2151 {
2152 if (&packet->detect == c->var)
2153 {
2154 show_packet_config_cmd (packet);
2155 return;
2156 }
2157 }
9b20d036 2158 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2159 c->name);
5a2468f5
JM
2160}
2161
d471ea57
AC
2162/* Should we try one of the 'Z' requests? */
2163
2164enum Z_packet_type
2165{
2166 Z_PACKET_SOFTWARE_BP,
2167 Z_PACKET_HARDWARE_BP,
2168 Z_PACKET_WRITE_WP,
2169 Z_PACKET_READ_WP,
2170 Z_PACKET_ACCESS_WP,
2171 NR_Z_PACKET_TYPES
2172};
96baa820 2173
d471ea57 2174/* For compatibility with older distributions. Provide a ``set remote
23860348 2175 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2176
7f19b9a2 2177static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2178
2179static void
eb4c3f4a 2180set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2181 struct cmd_list_element *c)
96baa820 2182{
d471ea57 2183 int i;
a744cf53 2184
d471ea57 2185 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2186 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2187}
2188
2189static void
08546159
AC
2190show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2191 struct cmd_list_element *c,
2192 const char *value)
96baa820 2193{
d471ea57 2194 int i;
a744cf53 2195
d471ea57
AC
2196 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2197 {
444abaca 2198 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2199 }
96baa820
JM
2200}
2201
4082afcc
PA
2202/* Returns true if the multi-process extensions are in effect. */
2203
2204static int
2205remote_multi_process_p (struct remote_state *rs)
2206{
2207 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2208}
2209
de0d863e
DB
2210/* Returns true if fork events are supported. */
2211
2212static int
2213remote_fork_event_p (struct remote_state *rs)
2214{
2215 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2216}
2217
c269dbdb
DB
2218/* Returns true if vfork events are supported. */
2219
2220static int
2221remote_vfork_event_p (struct remote_state *rs)
2222{
2223 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2224}
2225
d46addbb
DB
2226/* Returns true if exec events are supported. */
2227
2228static int
2229remote_exec_event_p (struct remote_state *rs)
2230{
2231 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2232}
2233
cbb8991c
DB
2234/* Insert fork catchpoint target routine. If fork events are enabled
2235 then return success, nothing more to do. */
2236
f6ac5f3d
PA
2237int
2238remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2239{
2240 struct remote_state *rs = get_remote_state ();
2241
2242 return !remote_fork_event_p (rs);
2243}
2244
2245/* Remove fork catchpoint target routine. Nothing to do, just
2246 return success. */
2247
f6ac5f3d
PA
2248int
2249remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2250{
2251 return 0;
2252}
2253
2254/* Insert vfork catchpoint target routine. If vfork events are enabled
2255 then return success, nothing more to do. */
2256
f6ac5f3d
PA
2257int
2258remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2259{
2260 struct remote_state *rs = get_remote_state ();
2261
2262 return !remote_vfork_event_p (rs);
2263}
2264
2265/* Remove vfork catchpoint target routine. Nothing to do, just
2266 return success. */
2267
f6ac5f3d
PA
2268int
2269remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2270{
2271 return 0;
2272}
2273
d46addbb
DB
2274/* Insert exec catchpoint target routine. If exec events are
2275 enabled, just return success. */
2276
f6ac5f3d
PA
2277int
2278remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2279{
2280 struct remote_state *rs = get_remote_state ();
2281
2282 return !remote_exec_event_p (rs);
2283}
2284
2285/* Remove exec catchpoint target routine. Nothing to do, just
2286 return success. */
2287
f6ac5f3d
PA
2288int
2289remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2290{
2291 return 0;
2292}
2293
c906108c
SS
2294\f
2295
ffdd69cf
TT
2296/* Take advantage of the fact that the TID field is not used, to tag
2297 special ptids with it set to != 0. */
2298static const ptid_t magic_null_ptid (42000, -1, 1);
2299static const ptid_t not_sent_ptid (42000, -2, 1);
2300static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2301
0b16c5cf
PA
2302/* Find out if the stub attached to PID (and hence GDB should offer to
2303 detach instead of killing it when bailing out). */
2304
6b8edb51
PA
2305int
2306remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2307{
2308 struct remote_state *rs = get_remote_state ();
bba74b36 2309 size_t size = get_remote_packet_size ();
0b16c5cf 2310
4082afcc 2311 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2312 return 0;
2313
2314 if (remote_multi_process_p (rs))
8d64371b 2315 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2316 else
8d64371b 2317 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2318
2319 putpkt (rs->buf);
8d64371b 2320 getpkt (&rs->buf, 0);
0b16c5cf
PA
2321
2322 switch (packet_ok (rs->buf,
1554e9be 2323 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2324 {
2325 case PACKET_OK:
8d64371b 2326 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2327 return 1;
2328 break;
2329 case PACKET_ERROR:
8d64371b 2330 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2331 break;
2332 case PACKET_UNKNOWN:
2333 break;
2334 }
2335
2336 return 0;
2337}
2338
49c62f2e
PA
2339/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2340 has been invented by GDB, instead of reported by the target. Since
2341 we can be connected to a remote system before before knowing about
2342 any inferior, mark the target with execution when we find the first
2343 inferior. If ATTACHED is 1, then we had just attached to this
2344 inferior. If it is 0, then we just created this inferior. If it
2345 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2346 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2347 attempt to open this inferior's executable as the main executable
2348 if no main executable is open already. */
1941c569 2349
6b8edb51 2350inferior *
9ab8741a 2351remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2352 int try_open_exec)
1941c569 2353{
1941c569
PA
2354 struct inferior *inf;
2355
0b16c5cf
PA
2356 /* Check whether this process we're learning about is to be
2357 considered attached, or if is to be considered to have been
2358 spawned by the stub. */
2359 if (attached == -1)
2360 attached = remote_query_attached (pid);
2361
f5656ead 2362 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2363 {
2364 /* If the target shares code across all inferiors, then every
2365 attach adds a new inferior. */
2366 inf = add_inferior (pid);
2367
2368 /* ... and every inferior is bound to the same program space.
2369 However, each inferior may still have its own address
2370 space. */
2371 inf->aspace = maybe_new_address_space ();
2372 inf->pspace = current_program_space;
2373 }
2374 else
2375 {
2376 /* In the traditional debugging scenario, there's a 1-1 match
2377 between program/address spaces. We simply bind the inferior
2378 to the program space's address space. */
2379 inf = current_inferior ();
78f2c40a
PA
2380
2381 /* However, if the current inferior is already bound to a
2382 process, find some other empty inferior. */
2383 if (inf->pid != 0)
2384 {
2385 inf = nullptr;
2386 for (inferior *it : all_inferiors ())
2387 if (it->pid == 0)
2388 {
2389 inf = it;
2390 break;
2391 }
2392 }
2393 if (inf == nullptr)
2394 {
2395 /* Since all inferiors were already bound to a process, add
2396 a new inferior. */
2397 inf = add_inferior_with_spaces ();
2398 }
2399 switch_to_inferior_no_thread (inf);
5b6d1e4f 2400 push_target (this);
6c95b8df
PA
2401 inferior_appeared (inf, pid);
2402 }
1941c569 2403
0b16c5cf 2404 inf->attach_flag = attached;
49c62f2e 2405 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2406
1b6e6f5c
GB
2407 /* If no main executable is currently open then attempt to
2408 open the file that was executed to create this inferior. */
835205d0 2409 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2410 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2411
1941c569
PA
2412 return inf;
2413}
2414
7aabaf9d 2415static remote_thread_info *get_remote_thread_info (thread_info *thread);
5b6d1e4f
PA
2416static remote_thread_info *get_remote_thread_info (remote_target *target,
2417 ptid_t ptid);
85ad3aaf 2418
1941c569
PA
2419/* Add thread PTID to GDB's thread list. Tag it as executing/running
2420 according to RUNNING. */
2421
00431a78 2422thread_info *
6b8edb51 2423remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2424{
b7ea362b 2425 struct remote_state *rs = get_remote_state ();
85ad3aaf 2426 struct thread_info *thread;
b7ea362b
PA
2427
2428 /* GDB historically didn't pull threads in the initial connection
2429 setup. If the remote target doesn't even have a concept of
2430 threads (e.g., a bare-metal target), even if internally we
2431 consider that a single-threaded target, mentioning a new thread
2432 might be confusing to the user. Be silent then, preserving the
2433 age old behavior. */
2434 if (rs->starting_up)
5b6d1e4f 2435 thread = add_thread_silent (this, ptid);
b7ea362b 2436 else
5b6d1e4f 2437 thread = add_thread (this, ptid);
1941c569 2438
7aabaf9d 2439 get_remote_thread_info (thread)->vcont_resumed = executing;
5b6d1e4f
PA
2440 set_executing (this, ptid, executing);
2441 set_running (this, ptid, running);
00431a78
PA
2442
2443 return thread;
1941c569
PA
2444}
2445
2446/* Come here when we learn about a thread id from the remote target.
2447 It may be the first time we hear about such thread, so take the
2448 opportunity to add it to GDB's thread list. In case this is the
2449 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2450 GDB's inferior list as well. EXECUTING indicates whether the
2451 thread is (internally) executing or stopped. */
1941c569 2452
6b8edb51
PA
2453void
2454remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2455{
0d5b594f
PA
2456 /* In non-stop mode, we assume new found threads are (externally)
2457 running until proven otherwise with a stop reply. In all-stop,
2458 we can only get here if all threads are stopped. */
2459 int running = target_is_non_stop_p () ? 1 : 0;
2460
c906108c
SS
2461 /* If this is a new thread, add it to GDB's thread list.
2462 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2463
5b6d1e4f 2464 thread_info *tp = find_thread_ptid (this, currthread);
00431a78 2465 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2466 {
2467 /* We're seeing an event on a thread id we knew had exited.
2468 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2469 remote_add_thread (currthread, running, executing);
82f73884
PA
2470 return;
2471 }
2472
5b6d1e4f 2473 if (!in_thread_list (this, currthread))
c0a2216e 2474 {
1941c569 2475 struct inferior *inf = NULL;
e99b03dc 2476 int pid = currthread.pid ();
1941c569 2477
0e998d96 2478 if (inferior_ptid.is_pid ()
e99b03dc 2479 && pid == inferior_ptid.pid ())
c0a2216e
PA
2480 {
2481 /* inferior_ptid has no thread member yet. This can happen
2482 with the vAttach -> remote_wait,"TAAthread:" path if the
2483 stub doesn't support qC. This is the first stop reported
2484 after an attach, so this is the main thread. Update the
2485 ptid in the thread list. */
5b6d1e4f
PA
2486 if (in_thread_list (this, ptid_t (pid)))
2487 thread_change_ptid (this, inferior_ptid, currthread);
bad34192
PA
2488 else
2489 {
0d5b594f 2490 remote_add_thread (currthread, running, executing);
bad34192
PA
2491 inferior_ptid = currthread;
2492 }
dc146f7c 2493 return;
c0a2216e 2494 }
82f73884 2495
d7e15655 2496 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2497 {
2498 /* inferior_ptid is not set yet. This can happen with the
2499 vRun -> remote_wait,"TAAthread:" path if the stub
2500 doesn't support qC. This is the first stop reported
2501 after an attach, so this is the main thread. Update the
2502 ptid in the thread list. */
5b6d1e4f 2503 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2504 return;
c0a2216e 2505 }
82f73884 2506
29c87f7f
PA
2507 /* When connecting to a target remote, or to a target
2508 extended-remote which already was debugging an inferior, we
2509 may not know about it yet. Add it before adding its child
2510 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2511 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2512 {
2513 struct remote_state *rs = get_remote_state ();
9ab8741a 2514 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2515
2516 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2517 currthread.pid (), -1, 1);
49c62f2e 2518 }
29c87f7f 2519
82f73884 2520 /* This is really a new thread. Add it. */
00431a78
PA
2521 thread_info *new_thr
2522 = remote_add_thread (currthread, running, executing);
1941c569
PA
2523
2524 /* If we found a new inferior, let the common code do whatever
2525 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2526 breakpoints), unless we're just setting up an all-stop
2527 connection. */
1941c569 2528 if (inf != NULL)
b7ea362b
PA
2529 {
2530 struct remote_state *rs = get_remote_state ();
2531
6efcd9a8 2532 if (!rs->starting_up)
00431a78 2533 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2534 }
c0a2216e 2535 }
c906108c
SS
2536}
2537
85ad3aaf 2538/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2539
7aabaf9d
SM
2540static remote_thread_info *
2541get_remote_thread_info (thread_info *thread)
dc146f7c 2542{
85ad3aaf 2543 gdb_assert (thread != NULL);
dc146f7c 2544
85ad3aaf 2545 if (thread->priv == NULL)
7aabaf9d 2546 thread->priv.reset (new remote_thread_info);
dc146f7c 2547
7aabaf9d 2548 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2549}
2550
5b6d1e4f
PA
2551/* Return PTID's private thread data, creating it if necessary. */
2552
7aabaf9d 2553static remote_thread_info *
5b6d1e4f 2554get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2555{
5b6d1e4f 2556 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2557 return get_remote_thread_info (thr);
dc146f7c
VP
2558}
2559
74531fed
PA
2560/* Call this function as a result of
2561 1) A halt indication (T packet) containing a thread id
2562 2) A direct query of currthread
0df8b418 2563 3) Successful execution of set thread */
74531fed
PA
2564
2565static void
47f8a51d 2566record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2567{
47f8a51d 2568 rs->general_thread = currthread;
74531fed
PA
2569}
2570
89be2091
DJ
2571/* If 'QPassSignals' is supported, tell the remote stub what signals
2572 it can simply pass through to the inferior without reporting. */
2573
f6ac5f3d 2574void
adc6a863 2575remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2576{
4082afcc 2577 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2578 {
2579 char *pass_packet, *p;
adc6a863 2580 int count = 0;
747dc59d 2581 struct remote_state *rs = get_remote_state ();
89be2091 2582
adc6a863
PA
2583 gdb_assert (pass_signals.size () < 256);
2584 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2585 {
2455069d 2586 if (pass_signals[i])
89be2091
DJ
2587 count++;
2588 }
224c3ddb 2589 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2590 strcpy (pass_packet, "QPassSignals:");
2591 p = pass_packet + strlen (pass_packet);
adc6a863 2592 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2593 {
2455069d 2594 if (pass_signals[i])
89be2091
DJ
2595 {
2596 if (i >= 16)
2597 *p++ = tohex (i >> 4);
2598 *p++ = tohex (i & 15);
2599 if (count)
2600 *p++ = ';';
2601 else
2602 break;
2603 count--;
2604 }
2605 }
2606 *p = 0;
747dc59d 2607 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2608 {
89be2091 2609 putpkt (pass_packet);
8d64371b 2610 getpkt (&rs->buf, 0);
8dc5b319 2611 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2612 if (rs->last_pass_packet)
2613 xfree (rs->last_pass_packet);
2614 rs->last_pass_packet = pass_packet;
89be2091
DJ
2615 }
2616 else
2617 xfree (pass_packet);
2618 }
2619}
2620
82075af2
JS
2621/* If 'QCatchSyscalls' is supported, tell the remote stub
2622 to report syscalls to GDB. */
2623
f6ac5f3d
PA
2624int
2625remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2626 gdb::array_view<const int> syscall_counts)
82075af2 2627{
b80406ac 2628 const char *catch_packet;
82075af2
JS
2629 enum packet_result result;
2630 int n_sysno = 0;
2631
2632 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2633 {
2634 /* Not supported. */
2635 return 1;
2636 }
2637
649a140c 2638 if (needed && any_count == 0)
82075af2 2639 {
649a140c
PA
2640 /* Count how many syscalls are to be caught. */
2641 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2642 {
649a140c 2643 if (syscall_counts[i] != 0)
82075af2
JS
2644 n_sysno++;
2645 }
2646 }
2647
2648 if (remote_debug)
2649 {
2650 fprintf_unfiltered (gdb_stdlog,
2651 "remote_set_syscall_catchpoint "
2652 "pid %d needed %d any_count %d n_sysno %d\n",
2653 pid, needed, any_count, n_sysno);
2654 }
2655
1b81856f 2656 std::string built_packet;
82075af2
JS
2657 if (needed)
2658 {
2659 /* Prepare a packet with the sysno list, assuming max 8+1
2660 characters for a sysno. If the resulting packet size is too
2661 big, fallback on the non-selective packet. */
2662 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2663 built_packet.reserve (maxpktsz);
2664 built_packet = "QCatchSyscalls:1";
649a140c 2665 if (any_count == 0)
82075af2 2666 {
649a140c
PA
2667 /* Add in each syscall to be caught. */
2668 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2669 {
649a140c
PA
2670 if (syscall_counts[i] != 0)
2671 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2672 }
2673 }
1b81856f 2674 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2675 {
2676 /* catch_packet too big. Fallback to less efficient
2677 non selective mode, with GDB doing the filtering. */
b80406ac 2678 catch_packet = "QCatchSyscalls:1";
82075af2 2679 }
b80406ac 2680 else
1b81856f 2681 catch_packet = built_packet.c_str ();
82075af2
JS
2682 }
2683 else
b80406ac 2684 catch_packet = "QCatchSyscalls:0";
82075af2 2685
b80406ac 2686 struct remote_state *rs = get_remote_state ();
82075af2 2687
b80406ac 2688 putpkt (catch_packet);
8d64371b 2689 getpkt (&rs->buf, 0);
b80406ac
TT
2690 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2691 if (result == PACKET_OK)
2692 return 0;
2693 else
2694 return -1;
82075af2
JS
2695}
2696
9b224c5e
PA
2697/* If 'QProgramSignals' is supported, tell the remote stub what
2698 signals it should pass through to the inferior when detaching. */
2699
f6ac5f3d 2700void
adc6a863 2701remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2702{
4082afcc 2703 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2704 {
2705 char *packet, *p;
adc6a863 2706 int count = 0;
5e4a05c4 2707 struct remote_state *rs = get_remote_state ();
9b224c5e 2708
adc6a863
PA
2709 gdb_assert (signals.size () < 256);
2710 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2711 {
2712 if (signals[i])
2713 count++;
2714 }
224c3ddb 2715 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2716 strcpy (packet, "QProgramSignals:");
2717 p = packet + strlen (packet);
adc6a863 2718 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2719 {
2720 if (signal_pass_state (i))
2721 {
2722 if (i >= 16)
2723 *p++ = tohex (i >> 4);
2724 *p++ = tohex (i & 15);
2725 if (count)
2726 *p++ = ';';
2727 else
2728 break;
2729 count--;
2730 }
2731 }
2732 *p = 0;
5e4a05c4
TT
2733 if (!rs->last_program_signals_packet
2734 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2735 {
9b224c5e 2736 putpkt (packet);
8d64371b 2737 getpkt (&rs->buf, 0);
8dc5b319 2738 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2739 xfree (rs->last_program_signals_packet);
2740 rs->last_program_signals_packet = packet;
9b224c5e
PA
2741 }
2742 else
2743 xfree (packet);
2744 }
2745}
2746
79d7f229
PA
2747/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2748 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2749 thread. If GEN is set, set the general thread, if not, then set
2750 the step/continue thread. */
6b8edb51
PA
2751void
2752remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2753{
d01949b6 2754 struct remote_state *rs = get_remote_state ();
47f8a51d 2755 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2756 char *buf = rs->buf.data ();
2757 char *endbuf = buf + get_remote_packet_size ();
c906108c 2758
d7e15655 2759 if (state == ptid)
c906108c
SS
2760 return;
2761
79d7f229
PA
2762 *buf++ = 'H';
2763 *buf++ = gen ? 'g' : 'c';
d7e15655 2764 if (ptid == magic_null_ptid)
79d7f229 2765 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2766 else if (ptid == any_thread_ptid)
79d7f229 2767 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2768 else if (ptid == minus_one_ptid)
79d7f229
PA
2769 xsnprintf (buf, endbuf - buf, "-1");
2770 else
82f73884 2771 write_ptid (buf, endbuf, ptid);
79d7f229 2772 putpkt (rs->buf);
8d64371b 2773 getpkt (&rs->buf, 0);
c906108c 2774 if (gen)
47f8a51d 2775 rs->general_thread = ptid;
c906108c 2776 else
47f8a51d 2777 rs->continue_thread = ptid;
c906108c 2778}
79d7f229 2779
6b8edb51
PA
2780void
2781remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2782{
2783 set_thread (ptid, 1);
2784}
2785
6b8edb51
PA
2786void
2787remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2788{
2789 set_thread (ptid, 0);
2790}
2791
3c9c4b83
PA
2792/* Change the remote current process. Which thread within the process
2793 ends up selected isn't important, as long as it is the same process
2794 as what INFERIOR_PTID points to.
2795
2796 This comes from that fact that there is no explicit notion of
2797 "selected process" in the protocol. The selected process for
2798 general operations is the process the selected general thread
2799 belongs to. */
2800
6b8edb51
PA
2801void
2802remote_target::set_general_process ()
3c9c4b83
PA
2803{
2804 struct remote_state *rs = get_remote_state ();
2805
2806 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2807 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2808 return;
2809
2810 /* We only need to change the remote current thread if it's pointing
2811 at some other process. */
e99b03dc 2812 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2813 set_general_thread (inferior_ptid);
2814}
2815
c906108c 2816\f
7d1a114c
PA
2817/* Return nonzero if this is the main thread that we made up ourselves
2818 to model non-threaded targets as single-threaded. */
c906108c
SS
2819
2820static int
f6ac5f3d 2821remote_thread_always_alive (ptid_t ptid)
c906108c 2822{
d7e15655 2823 if (ptid == magic_null_ptid)
c0a2216e
PA
2824 /* The main thread is always alive. */
2825 return 1;
2826
e38504b3 2827 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2828 /* The main thread is always alive. This can happen after a
2829 vAttach, if the remote side doesn't support
2830 multi-threading. */
2831 return 1;
2832
7d1a114c
PA
2833 return 0;
2834}
2835
2836/* Return nonzero if the thread PTID is still alive on the remote
2837 system. */
2838
57810aa7 2839bool
f6ac5f3d 2840remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2841{
2842 struct remote_state *rs = get_remote_state ();
2843 char *p, *endp;
2844
2845 /* Check if this is a thread that we made up ourselves to model
2846 non-threaded targets as single-threaded. */
f6ac5f3d 2847 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2848 return 1;
2849
8d64371b
TT
2850 p = rs->buf.data ();
2851 endp = p + get_remote_packet_size ();
82f73884
PA
2852
2853 *p++ = 'T';
2854 write_ptid (p, endp, ptid);
2855
2e9f7625 2856 putpkt (rs->buf);
8d64371b 2857 getpkt (&rs->buf, 0);
2e9f7625 2858 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2859}
2860
79efa585
SM
2861/* Return a pointer to a thread name if we know it and NULL otherwise.
2862 The thread_info object owns the memory for the name. */
2863
f6ac5f3d
PA
2864const char *
2865remote_target::thread_name (struct thread_info *info)
79efa585
SM
2866{
2867 if (info->priv != NULL)
a9334058
SM
2868 {
2869 const std::string &name = get_remote_thread_info (info)->name;
2870 return !name.empty () ? name.c_str () : NULL;
2871 }
79efa585
SM
2872
2873 return NULL;
2874}
2875
c906108c
SS
2876/* About these extended threadlist and threadinfo packets. They are
2877 variable length packets but, the fields within them are often fixed
30baf67b 2878 length. They are redundant enough to send over UDP as is the
c906108c
SS
2879 remote protocol in general. There is a matching unit test module
2880 in libstub. */
2881
23860348 2882/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2883 libstub protocol encoding, and remote.c. It is not particularly
23860348 2884 changable. */
cce74817
JM
2885
2886/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2887 Plan to fix this. */
cce74817 2888
23860348 2889typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2890
9d1f7ab2 2891/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2892 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2893
2894struct gdb_ext_thread_info
c5aa993b 2895 {
23860348 2896 threadref threadid; /* External form of thread reference. */
2bc416ba 2897 int active; /* Has state interesting to GDB?
23860348 2898 regs, stack. */
2bc416ba 2899 char display[256]; /* Brief state display, name,
cedea757 2900 blocked/suspended. */
23860348 2901 char shortname[32]; /* To be used to name threads. */
2bc416ba 2902 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2903 whatever. */
c5aa993b 2904 };
cce74817
JM
2905
2906/* The volume of remote transfers can be limited by submitting
2907 a mask containing bits specifying the desired information.
2908 Use a union of these values as the 'selection' parameter to
0df8b418 2909 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2910
2911#define TAG_THREADID 1
2912#define TAG_EXISTS 2
2913#define TAG_DISPLAY 4
2914#define TAG_THREADNAME 8
c5aa993b 2915#define TAG_MOREDISPLAY 16
cce74817 2916
23860348 2917#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2918
a14ed312 2919static char *unpack_nibble (char *buf, int *val);
cce74817 2920
a14ed312 2921static char *unpack_byte (char *buf, int *value);
cce74817 2922
a14ed312 2923static char *pack_int (char *buf, int value);
cce74817 2924
a14ed312 2925static char *unpack_int (char *buf, int *value);
cce74817 2926
a14ed312 2927static char *unpack_string (char *src, char *dest, int length);
cce74817 2928
23860348 2929static char *pack_threadid (char *pkt, threadref *id);
cce74817 2930
23860348 2931static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2932
23860348 2933void int_to_threadref (threadref *id, int value);
cce74817 2934
23860348 2935static int threadref_to_int (threadref *ref);
cce74817 2936
23860348 2937static void copy_threadref (threadref *dest, threadref *src);
cce74817 2938
23860348 2939static int threadmatch (threadref *dest, threadref *src);
cce74817 2940
2bc416ba 2941static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2942 threadref *id);
cce74817 2943
a14ed312
KB
2944static char *pack_threadlist_request (char *pkt, int startflag,
2945 int threadcount,
23860348 2946 threadref *nextthread);
cce74817 2947
23860348 2948static int remote_newthread_step (threadref *ref, void *context);
cce74817 2949
82f73884
PA
2950
2951/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2952 buffer we're allowed to write to. Returns
2953 BUF+CHARACTERS_WRITTEN. */
2954
6b8edb51
PA
2955char *
2956remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2957{
2958 int pid, tid;
2959 struct remote_state *rs = get_remote_state ();
2960
2961 if (remote_multi_process_p (rs))
2962 {
e99b03dc 2963 pid = ptid.pid ();
82f73884
PA
2964 if (pid < 0)
2965 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2966 else
2967 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2968 }
e38504b3 2969 tid = ptid.lwp ();
82f73884
PA
2970 if (tid < 0)
2971 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2972 else
2973 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2974
2975 return buf;
2976}
2977
256642e8
PA
2978/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2979 last parsed char. Returns null_ptid if no thread id is found, and
2980 throws an error if the thread id has an invalid format. */
82f73884
PA
2981
2982static ptid_t
256642e8 2983read_ptid (const char *buf, const char **obuf)
82f73884 2984{
256642e8
PA
2985 const char *p = buf;
2986 const char *pp;
82f73884 2987 ULONGEST pid = 0, tid = 0;
82f73884
PA
2988
2989 if (*p == 'p')
2990 {
2991 /* Multi-process ptid. */
2992 pp = unpack_varlen_hex (p + 1, &pid);
2993 if (*pp != '.')
b37520b6 2994 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2995
2996 p = pp;
2997 pp = unpack_varlen_hex (p + 1, &tid);
2998 if (obuf)
2999 *obuf = pp;
fd79271b 3000 return ptid_t (pid, tid, 0);
82f73884
PA
3001 }
3002
3003 /* No multi-process. Just a tid. */
3004 pp = unpack_varlen_hex (p, &tid);
3005
c9f35b34
KB
3006 /* Return null_ptid when no thread id is found. */
3007 if (p == pp)
3008 {
3009 if (obuf)
3010 *obuf = pp;
3011 return null_ptid;
3012 }
3013
82f73884 3014 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3015 what's in inferior_ptid, unless it's null at this point. If so,
3016 then since there's no way to know the pid of the reported
3017 threads, use the magic number. */
d7e15655 3018 if (inferior_ptid == null_ptid)
e99b03dc 3019 pid = magic_null_ptid.pid ();
ca19bf23 3020 else
e99b03dc 3021 pid = inferior_ptid.pid ();
82f73884
PA
3022
3023 if (obuf)
3024 *obuf = pp;
fd79271b 3025 return ptid_t (pid, tid, 0);
82f73884
PA
3026}
3027
c906108c 3028static int
fba45db2 3029stubhex (int ch)
c906108c
SS
3030{
3031 if (ch >= 'a' && ch <= 'f')
3032 return ch - 'a' + 10;
3033 if (ch >= '0' && ch <= '9')
3034 return ch - '0';
3035 if (ch >= 'A' && ch <= 'F')
3036 return ch - 'A' + 10;
3037 return -1;
3038}
3039
3040static int
fba45db2 3041stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3042{
3043 int nibble;
3044 int retval = 0;
3045
3046 while (fieldlength)
3047 {
3048 nibble = stubhex (*buff++);
3049 retval |= nibble;
3050 fieldlength--;
3051 if (fieldlength)
3052 retval = retval << 4;
3053 }
3054 return retval;
3055}
3056
c906108c 3057static char *
fba45db2 3058unpack_nibble (char *buf, int *val)
c906108c 3059{
b7589f7d 3060 *val = fromhex (*buf++);
c906108c
SS
3061 return buf;
3062}
3063
c906108c 3064static char *
fba45db2 3065unpack_byte (char *buf, int *value)
c906108c
SS
3066{
3067 *value = stub_unpack_int (buf, 2);
3068 return buf + 2;
3069}
3070
3071static char *
fba45db2 3072pack_int (char *buf, int value)
c906108c
SS
3073{
3074 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3075 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3076 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3077 buf = pack_hex_byte (buf, (value & 0xff));
3078 return buf;
3079}
3080
3081static char *
fba45db2 3082unpack_int (char *buf, int *value)
c906108c
SS
3083{
3084 *value = stub_unpack_int (buf, 8);
3085 return buf + 8;
3086}
3087
23860348 3088#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3089static char *pack_string (char *pkt, char *string);
c906108c
SS
3090
3091static char *
fba45db2 3092pack_string (char *pkt, char *string)
c906108c
SS
3093{
3094 char ch;
3095 int len;
3096
3097 len = strlen (string);
3098 if (len > 200)
23860348 3099 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3100 pkt = pack_hex_byte (pkt, len);
3101 while (len-- > 0)
3102 {
3103 ch = *string++;
3104 if ((ch == '\0') || (ch == '#'))
23860348 3105 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3106 *pkt++ = ch;
3107 }
3108 return pkt;
3109}
3110#endif /* 0 (unused) */
3111
3112static char *
fba45db2 3113unpack_string (char *src, char *dest, int length)
c906108c
SS
3114{
3115 while (length--)
3116 *dest++ = *src++;
3117 *dest = '\0';
3118 return src;
3119}
3120
3121static char *
fba45db2 3122pack_threadid (char *pkt, threadref *id)
c906108c
SS
3123{
3124 char *limit;
3125 unsigned char *altid;
3126
3127 altid = (unsigned char *) id;
3128 limit = pkt + BUF_THREAD_ID_SIZE;
3129 while (pkt < limit)
3130 pkt = pack_hex_byte (pkt, *altid++);
3131 return pkt;
3132}
3133
3134
3135static char *
fba45db2 3136unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3137{
3138 char *altref;
3139 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3140 int x, y;
3141
3142 altref = (char *) id;
3143
3144 while (inbuf < limit)
3145 {
3146 x = stubhex (*inbuf++);
3147 y = stubhex (*inbuf++);
3148 *altref++ = (x << 4) | y;
3149 }
3150 return inbuf;
3151}
3152
3153/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3154 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3155 to use 64bit thread references internally. This is an adapter
3156 function. */
3157
3158void
fba45db2 3159int_to_threadref (threadref *id, int value)
c906108c
SS
3160{
3161 unsigned char *scan;
3162
3163 scan = (unsigned char *) id;
3164 {
3165 int i = 4;
3166 while (i--)
3167 *scan++ = 0;
3168 }
3169 *scan++ = (value >> 24) & 0xff;
3170 *scan++ = (value >> 16) & 0xff;
3171 *scan++ = (value >> 8) & 0xff;
3172 *scan++ = (value & 0xff);
3173}
3174
3175static int
fba45db2 3176threadref_to_int (threadref *ref)
c906108c
SS
3177{
3178 int i, value = 0;
3179 unsigned char *scan;
3180
cfd77fa1 3181 scan = *ref;
c906108c
SS
3182 scan += 4;
3183 i = 4;
3184 while (i-- > 0)
3185 value = (value << 8) | ((*scan++) & 0xff);
3186 return value;
3187}
3188
3189static void
fba45db2 3190copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3191{
3192 int i;
3193 unsigned char *csrc, *cdest;
3194
3195 csrc = (unsigned char *) src;
3196 cdest = (unsigned char *) dest;
3197 i = 8;
3198 while (i--)
3199 *cdest++ = *csrc++;
3200}
3201
3202static int
fba45db2 3203threadmatch (threadref *dest, threadref *src)
c906108c 3204{
23860348 3205 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3206#if 0
3207 unsigned char *srcp, *destp;
3208 int i, result;
3209 srcp = (char *) src;
3210 destp = (char *) dest;
3211
3212 result = 1;
3213 while (i-- > 0)
3214 result &= (*srcp++ == *destp++) ? 1 : 0;
3215 return result;
3216#endif
3217 return 1;
3218}
3219
3220/*
c5aa993b
JM
3221 threadid:1, # always request threadid
3222 context_exists:2,
3223 display:4,
3224 unique_name:8,
3225 more_display:16
3226 */
c906108c
SS
3227
3228/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3229
3230static char *
fba45db2 3231pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3232{
23860348
MS
3233 *pkt++ = 'q'; /* Info Query */
3234 *pkt++ = 'P'; /* process or thread info */
3235 pkt = pack_int (pkt, mode); /* mode */
c906108c 3236 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3237 *pkt = '\0'; /* terminate */
c906108c
SS
3238 return pkt;
3239}
3240
23860348 3241/* These values tag the fields in a thread info response packet. */
c906108c 3242/* Tagging the fields allows us to request specific fields and to
23860348 3243 add more fields as time goes by. */
c906108c 3244
23860348 3245#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3246#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3247 fetch registers and its stack? */
c5aa993b 3248#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3249#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3250#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3251 the process. */
c906108c 3252
6b8edb51
PA
3253int
3254remote_target::remote_unpack_thread_info_response (char *pkt,
3255 threadref *expectedref,
3256 gdb_ext_thread_info *info)
c906108c 3257{
d01949b6 3258 struct remote_state *rs = get_remote_state ();
c906108c 3259 int mask, length;
cfd77fa1 3260 int tag;
c906108c 3261 threadref ref;
8d64371b 3262 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3263 int retval = 1;
3264
23860348 3265 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3266 info->active = 0;
3267 info->display[0] = '\0';
3268 info->shortname[0] = '\0';
3269 info->more_display[0] = '\0';
3270
23860348
MS
3271 /* Assume the characters indicating the packet type have been
3272 stripped. */
c906108c
SS
3273 pkt = unpack_int (pkt, &mask); /* arg mask */
3274 pkt = unpack_threadid (pkt, &ref);
3275
3276 if (mask == 0)
8a3fe4f8 3277 warning (_("Incomplete response to threadinfo request."));
c906108c 3278 if (!threadmatch (&ref, expectedref))
23860348 3279 { /* This is an answer to a different request. */
8a3fe4f8 3280 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3281 return 0;
3282 }
3283 copy_threadref (&info->threadid, &ref);
3284
405feb71 3285 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3286
23860348
MS
3287 /* Packets are terminated with nulls. */
3288 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3289 {
3290 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3291 pkt = unpack_byte (pkt, &length); /* length */
3292 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3293 {
8a3fe4f8 3294 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3295 retval = 0;
3296 break;
3297 }
3298 if (tag == TAG_THREADID)
3299 {
3300 if (length != 16)
3301 {
8a3fe4f8 3302 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3303 retval = 0;
3304 break;
3305 }
3306 pkt = unpack_threadid (pkt, &ref);
3307 mask = mask & ~TAG_THREADID;
3308 continue;
3309 }
3310 if (tag == TAG_EXISTS)
3311 {
3312 info->active = stub_unpack_int (pkt, length);
3313 pkt += length;
3314 mask = mask & ~(TAG_EXISTS);
3315 if (length > 8)
3316 {
8a3fe4f8 3317 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3318 retval = 0;
3319 break;
3320 }
3321 continue;
3322 }
3323 if (tag == TAG_THREADNAME)
3324 {
3325 pkt = unpack_string (pkt, &info->shortname[0], length);
3326 mask = mask & ~TAG_THREADNAME;
3327 continue;
3328 }
3329 if (tag == TAG_DISPLAY)
3330 {
3331 pkt = unpack_string (pkt, &info->display[0], length);
3332 mask = mask & ~TAG_DISPLAY;
3333 continue;
3334 }
3335 if (tag == TAG_MOREDISPLAY)
3336 {
3337 pkt = unpack_string (pkt, &info->more_display[0], length);
3338 mask = mask & ~TAG_MOREDISPLAY;
3339 continue;
3340 }
8a3fe4f8 3341 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3342 break; /* Not a tag we know about. */
c906108c
SS
3343 }
3344 return retval;
3345}
3346
6b8edb51
PA
3347int
3348remote_target::remote_get_threadinfo (threadref *threadid,
3349 int fieldset,
3350 gdb_ext_thread_info *info)
c906108c 3351{
d01949b6 3352 struct remote_state *rs = get_remote_state ();
c906108c 3353 int result;
c906108c 3354
8d64371b 3355 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3356 putpkt (rs->buf);
8d64371b 3357 getpkt (&rs->buf, 0);
3084dd77
PA
3358
3359 if (rs->buf[0] == '\0')
3360 return 0;
3361
8d64371b 3362 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3363 threadid, info);
c906108c
SS
3364 return result;
3365}
3366
c906108c
SS
3367/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3368
3369static char *
fba45db2
KB
3370pack_threadlist_request (char *pkt, int startflag, int threadcount,
3371 threadref *nextthread)
c906108c
SS
3372{
3373 *pkt++ = 'q'; /* info query packet */
3374 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3375 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3376 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3377 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3378 *pkt = '\0';
3379 return pkt;
3380}
3381
3382/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3383
6b8edb51
PA
3384int
3385remote_target::parse_threadlist_response (char *pkt, int result_limit,
3386 threadref *original_echo,
3387 threadref *resultlist,
3388 int *doneflag)
c906108c 3389{
d01949b6 3390 struct remote_state *rs = get_remote_state ();
c906108c
SS
3391 char *limit;
3392 int count, resultcount, done;
3393
3394 resultcount = 0;
3395 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3396 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3397 /* done parse past here */
c906108c
SS
3398 pkt = unpack_byte (pkt, &count); /* count field */
3399 pkt = unpack_nibble (pkt, &done);
3400 /* The first threadid is the argument threadid. */
3401 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3402 while ((count-- > 0) && (pkt < limit))
3403 {
3404 pkt = unpack_threadid (pkt, resultlist++);
3405 if (resultcount++ >= result_limit)
3406 break;
3407 }
3408 if (doneflag)
3409 *doneflag = done;
3410 return resultcount;
3411}
3412
6dc54d91
PA
3413/* Fetch the next batch of threads from the remote. Returns -1 if the
3414 qL packet is not supported, 0 on error and 1 on success. */
3415
6b8edb51
PA
3416int
3417remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3418 int result_limit, int *done, int *result_count,
3419 threadref *threadlist)
c906108c 3420{
d01949b6 3421 struct remote_state *rs = get_remote_state ();
c906108c
SS
3422 int result = 1;
3423
405feb71 3424 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3425 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3426 >= get_remote_packet_size ())
ea9c271d 3427 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3428
8d64371b
TT
3429 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3430 nextthread);
6d820c5c 3431 putpkt (rs->buf);
8d64371b
TT
3432 getpkt (&rs->buf, 0);
3433 if (rs->buf[0] == '\0')
6dc54d91
PA
3434 {
3435 /* Packet not supported. */
3436 return -1;
3437 }
3438
3439 *result_count =
8d64371b 3440 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3441 &rs->echo_nextthread, threadlist, done);
c906108c 3442
0d031856 3443 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3444 {
23860348 3445 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3446 /* Possibly, there is a duplicate response. */
3447 /* Possibilities :
c906108c
SS
3448 retransmit immediatly - race conditions
3449 retransmit after timeout - yes
3450 exit
3451 wait for packet, then exit
3452 */
8a3fe4f8 3453 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3454 return 0; /* I choose simply exiting. */
c906108c
SS
3455 }
3456 if (*result_count <= 0)
3457 {
3458 if (*done != 1)
3459 {
8a3fe4f8 3460 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3461 result = 0;
3462 }
3463 return result; /* break; */
3464 }
3465 if (*result_count > result_limit)
3466 {
3467 *result_count = 0;
8a3fe4f8 3468 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3469 return 0;
3470 }
3471 return result;
3472}
3473
6dc54d91
PA
3474/* Fetch the list of remote threads, with the qL packet, and call
3475 STEPFUNCTION for each thread found. Stops iterating and returns 1
3476 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3477 STEPFUNCTION returns false. If the packet is not supported,
3478 returns -1. */
c906108c 3479
6b8edb51
PA
3480int
3481remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3482 void *context, int looplimit)
c906108c 3483{
0d031856 3484 struct remote_state *rs = get_remote_state ();
c906108c
SS
3485 int done, i, result_count;
3486 int startflag = 1;
3487 int result = 1;
3488 int loopcount = 0;
c906108c
SS
3489
3490 done = 0;
3491 while (!done)
3492 {
3493 if (loopcount++ > looplimit)
3494 {
3495 result = 0;
8a3fe4f8 3496 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3497 break;
3498 }
6dc54d91
PA
3499 result = remote_get_threadlist (startflag, &rs->nextthread,
3500 MAXTHREADLISTRESULTS,
3501 &done, &result_count,
3502 rs->resultthreadlist);
3503 if (result <= 0)
3504 break;
23860348 3505 /* Clear for later iterations. */
c906108c
SS
3506 startflag = 0;
3507 /* Setup to resume next batch of thread references, set nextthread. */
3508 if (result_count >= 1)
0d031856
TT
3509 copy_threadref (&rs->nextthread,
3510 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3511 i = 0;
3512 while (result_count--)
6dc54d91
PA
3513 {
3514 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3515 {
3516 result = 0;
3517 break;
3518 }
3519 }
c906108c
SS
3520 }
3521 return result;
3522}
3523
6dc54d91
PA
3524/* A thread found on the remote target. */
3525
21fe1c75 3526struct thread_item
6dc54d91 3527{
21fe1c75
SM
3528 explicit thread_item (ptid_t ptid_)
3529 : ptid (ptid_)
3530 {}
3531
3532 thread_item (thread_item &&other) = default;
3533 thread_item &operator= (thread_item &&other) = default;
3534
3535 DISABLE_COPY_AND_ASSIGN (thread_item);
3536
6dc54d91
PA
3537 /* The thread's PTID. */
3538 ptid_t ptid;
3539
21fe1c75
SM
3540 /* The thread's extra info. */
3541 std::string extra;
6dc54d91 3542
21fe1c75
SM
3543 /* The thread's name. */
3544 std::string name;
79efa585 3545
6dc54d91 3546 /* The core the thread was running on. -1 if not known. */
21fe1c75 3547 int core = -1;
f6327dcb
KB
3548
3549 /* The thread handle associated with the thread. */
21fe1c75 3550 gdb::byte_vector thread_handle;
21fe1c75 3551};
6dc54d91
PA
3552
3553/* Context passed around to the various methods listing remote
3554 threads. As new threads are found, they're added to the ITEMS
3555 vector. */
3556
3557struct threads_listing_context
3558{
21fe1c75
SM
3559 /* Return true if this object contains an entry for a thread with ptid
3560 PTID. */
6dc54d91 3561
21fe1c75
SM
3562 bool contains_thread (ptid_t ptid) const
3563 {
3564 auto match_ptid = [&] (const thread_item &item)
3565 {
3566 return item.ptid == ptid;
3567 };
80134cf5 3568
21fe1c75
SM
3569 auto it = std::find_if (this->items.begin (),
3570 this->items.end (),
3571 match_ptid);
80134cf5 3572
21fe1c75
SM
3573 return it != this->items.end ();
3574 }
80134cf5 3575
21fe1c75 3576 /* Remove the thread with ptid PTID. */
80134cf5 3577
21fe1c75
SM
3578 void remove_thread (ptid_t ptid)
3579 {
3580 auto match_ptid = [&] (const thread_item &item)
3581 {
3582 return item.ptid == ptid;
3583 };
cbb8991c 3584
21fe1c75
SM
3585 auto it = std::remove_if (this->items.begin (),
3586 this->items.end (),
3587 match_ptid);
cbb8991c 3588
21fe1c75
SM
3589 if (it != this->items.end ())
3590 this->items.erase (it);
3591 }
3592
3593 /* The threads found on the remote target. */
3594 std::vector<thread_item> items;
3595};
cbb8991c 3596
c906108c 3597static int
6dc54d91 3598remote_newthread_step (threadref *ref, void *data)
c906108c 3599{
19ba03f4
SM
3600 struct threads_listing_context *context
3601 = (struct threads_listing_context *) data;
21fe1c75
SM
3602 int pid = inferior_ptid.pid ();
3603 int lwp = threadref_to_int (ref);
3604 ptid_t ptid (pid, lwp);
6dc54d91 3605
21fe1c75 3606 context->items.emplace_back (ptid);
6dc54d91 3607
c906108c
SS
3608 return 1; /* continue iterator */
3609}
3610
3611#define CRAZY_MAX_THREADS 1000
3612
6b8edb51
PA
3613ptid_t
3614remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3615{
d01949b6 3616 struct remote_state *rs = get_remote_state ();
c906108c
SS
3617
3618 putpkt ("qC");
8d64371b 3619 getpkt (&rs->buf, 0);
2e9f7625 3620 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3621 {
256642e8 3622 const char *obuf;
c9f35b34
KB
3623 ptid_t result;
3624
3625 result = read_ptid (&rs->buf[2], &obuf);
3626 if (*obuf != '\0' && remote_debug)
3627 fprintf_unfiltered (gdb_stdlog,
3628 "warning: garbage in qC reply\n");
3629
3630 return result;
3631 }
c906108c
SS
3632 else
3633 return oldpid;
3634}
3635
6dc54d91 3636/* List remote threads using the deprecated qL packet. */
cce74817 3637
6b8edb51
PA
3638int
3639remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3640{
6dc54d91
PA
3641 if (remote_threadlist_iterator (remote_newthread_step, context,
3642 CRAZY_MAX_THREADS) >= 0)
3643 return 1;
3644
3645 return 0;
c906108c
SS
3646}
3647
dc146f7c
VP
3648#if defined(HAVE_LIBEXPAT)
3649
dc146f7c
VP
3650static void
3651start_thread (struct gdb_xml_parser *parser,
3652 const struct gdb_xml_element *element,
4d0fdd9b
SM
3653 void *user_data,
3654 std::vector<gdb_xml_value> &attributes)
dc146f7c 3655{
19ba03f4
SM
3656 struct threads_listing_context *data
3657 = (struct threads_listing_context *) user_data;
3d2c1d41 3658 struct gdb_xml_value *attr;
dc146f7c 3659
4d0fdd9b 3660 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3661 ptid_t ptid = read_ptid (id, NULL);
3662
3663 data->items.emplace_back (ptid);
3664 thread_item &item = data->items.back ();
dc146f7c 3665
3d2c1d41
PA
3666 attr = xml_find_attribute (attributes, "core");
3667 if (attr != NULL)
4d0fdd9b 3668 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3669
79efa585 3670 attr = xml_find_attribute (attributes, "name");
21fe1c75 3671 if (attr != NULL)
4d0fdd9b 3672 item.name = (const char *) attr->value.get ();
79efa585 3673
f6327dcb
KB
3674 attr = xml_find_attribute (attributes, "handle");
3675 if (attr != NULL)
4d0fdd9b 3676 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3677}
3678
3679static void
3680end_thread (struct gdb_xml_parser *parser,
3681 const struct gdb_xml_element *element,
3682 void *user_data, const char *body_text)
3683{
19ba03f4
SM
3684 struct threads_listing_context *data
3685 = (struct threads_listing_context *) user_data;
dc146f7c 3686
21fe1c75
SM
3687 if (body_text != NULL && *body_text != '\0')
3688 data->items.back ().extra = body_text;
dc146f7c
VP
3689}
3690
3691const struct gdb_xml_attribute thread_attributes[] = {
3692 { "id", GDB_XML_AF_NONE, NULL, NULL },
3693 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3694 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3695 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3696 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3697};
3698
3699const struct gdb_xml_element thread_children[] = {
3700 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3701};
3702
3703const struct gdb_xml_element threads_children[] = {
3704 { "thread", thread_attributes, thread_children,
3705 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3706 start_thread, end_thread },
3707 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3708};
3709
3710const struct gdb_xml_element threads_elements[] = {
3711 { "threads", NULL, threads_children,
3712 GDB_XML_EF_NONE, NULL, NULL },
3713 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3714};
3715
3716#endif
3717
6dc54d91 3718/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3719
6b8edb51
PA
3720int
3721remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3722{
dc146f7c 3723#if defined(HAVE_LIBEXPAT)
4082afcc 3724 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3725 {
9018be22 3726 gdb::optional<gdb::char_vector> xml
6b8edb51 3727 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3728
9018be22 3729 if (xml && (*xml)[0] != '\0')
dc146f7c 3730 {
6dc54d91 3731 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3732 threads_elements, xml->data (), context);
dc146f7c
VP
3733 }
3734
6dc54d91 3735 return 1;
dc146f7c
VP
3736 }
3737#endif
3738
6dc54d91
PA
3739 return 0;
3740}
3741
3742/* List remote threads using qfThreadInfo/qsThreadInfo. */
3743
6b8edb51
PA
3744int
3745remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3746{
3747 struct remote_state *rs = get_remote_state ();
3748
b80fafe3 3749 if (rs->use_threadinfo_query)
9d1f7ab2 3750 {
256642e8 3751 const char *bufp;
6dc54d91 3752
9d1f7ab2 3753 putpkt ("qfThreadInfo");
8d64371b
TT
3754 getpkt (&rs->buf, 0);
3755 bufp = rs->buf.data ();
9d1f7ab2 3756 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3757 {
9d1f7ab2
MS
3758 while (*bufp++ == 'm') /* reply contains one or more TID */
3759 {
3760 do
3761 {
21fe1c75
SM
3762 ptid_t ptid = read_ptid (bufp, &bufp);
3763 context->items.emplace_back (ptid);
9d1f7ab2
MS
3764 }
3765 while (*bufp++ == ','); /* comma-separated list */
3766 putpkt ("qsThreadInfo");
8d64371b
TT
3767 getpkt (&rs->buf, 0);
3768 bufp = rs->buf.data ();
9d1f7ab2 3769 }
6dc54d91
PA
3770 return 1;
3771 }
3772 else
3773 {
3774 /* Packet not recognized. */
3775 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3776 }
3777 }
3778
6dc54d91
PA
3779 return 0;
3780}
3781
e8032dde 3782/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3783 targets. */
3784
f6ac5f3d
PA
3785void
3786remote_target::update_thread_list ()
6dc54d91 3787{
6dc54d91 3788 struct threads_listing_context context;
ab970af1 3789 int got_list = 0;
e8032dde 3790
6dc54d91
PA
3791 /* We have a few different mechanisms to fetch the thread list. Try
3792 them all, starting with the most preferred one first, falling
3793 back to older methods. */
6b8edb51
PA
3794 if (remote_get_threads_with_qxfer (&context)
3795 || remote_get_threads_with_qthreadinfo (&context)
3796 || remote_get_threads_with_ql (&context))
6dc54d91 3797 {
ab970af1
PA
3798 got_list = 1;
3799
21fe1c75 3800 if (context.items.empty ()
f6ac5f3d 3801 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3802 {
3803 /* Some targets don't really support threads, but still
3804 reply an (empty) thread list in response to the thread
3805 listing packets, instead of replying "packet not
3806 supported". Exit early so we don't delete the main
3807 thread. */
7d1a114c
PA
3808 return;
3809 }
3810
ab970af1
PA
3811 /* CONTEXT now holds the current thread list on the remote
3812 target end. Delete GDB-side threads no longer found on the
3813 target. */
08036331 3814 for (thread_info *tp : all_threads_safe ())
cbb8991c 3815 {
5b6d1e4f
PA
3816 if (tp->inf->process_target () != this)
3817 continue;
3818
21fe1c75 3819 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3820 {
3821 /* Not found. */
00431a78 3822 delete_thread (tp);
ab970af1 3823 }
cbb8991c
DB
3824 }
3825
3826 /* Remove any unreported fork child threads from CONTEXT so
3827 that we don't interfere with follow fork, which is where
3828 creation of such threads is handled. */
3829 remove_new_fork_children (&context);
74531fed 3830
ab970af1 3831 /* And now add threads we don't know about yet to our list. */
21fe1c75 3832 for (thread_item &item : context.items)
6dc54d91 3833 {
21fe1c75 3834 if (item.ptid != null_ptid)
6dc54d91 3835 {
6dc54d91 3836 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3837 executing until proven otherwise with a stop reply.
3838 In all-stop, we can only get here if all threads are
6dc54d91 3839 stopped. */
0d5b594f 3840 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3841
21fe1c75 3842 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3843
5b6d1e4f 3844 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3845 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3846 info->core = item.core;
7aabaf9d
SM
3847 info->extra = std::move (item.extra);
3848 info->name = std::move (item.name);
3849 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3850 }
3851 }
3852 }
3853
ab970af1
PA
3854 if (!got_list)
3855 {
3856 /* If no thread listing method is supported, then query whether
3857 each known thread is alive, one by one, with the T packet.
3858 If the target doesn't support threads at all, then this is a
3859 no-op. See remote_thread_alive. */
3860 prune_threads ();
3861 }
9d1f7ab2
MS
3862}
3863
802188a7 3864/*
9d1f7ab2
MS
3865 * Collect a descriptive string about the given thread.
3866 * The target may say anything it wants to about the thread
3867 * (typically info about its blocked / runnable state, name, etc.).
3868 * This string will appear in the info threads display.
802188a7 3869 *
9d1f7ab2
MS
3870 * Optional: targets are not required to implement this function.
3871 */
3872
f6ac5f3d
PA
3873const char *
3874remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3875{
d01949b6 3876 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3877 int set;
3878 threadref id;
3879 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3880
5d93a237 3881 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3882 internal_error (__FILE__, __LINE__,
e2e0b3e5 3883 _("remote_threads_extra_info"));
9d1f7ab2 3884
d7e15655 3885 if (tp->ptid == magic_null_ptid
e38504b3 3886 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3887 /* This is the main thread which was added by GDB. The remote
3888 server doesn't know about it. */
3889 return NULL;
3890
c76a8ea3
PA
3891 std::string &extra = get_remote_thread_info (tp)->extra;
3892
3893 /* If already have cached info, use it. */
3894 if (!extra.empty ())
3895 return extra.c_str ();
3896
4082afcc 3897 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3898 {
c76a8ea3
PA
3899 /* If we're using qXfer:threads:read, then the extra info is
3900 included in the XML. So if we didn't have anything cached,
3901 it's because there's really no extra info. */
3902 return NULL;
dc146f7c
VP
3903 }
3904
b80fafe3 3905 if (rs->use_threadextra_query)
9d1f7ab2 3906 {
8d64371b
TT
3907 char *b = rs->buf.data ();
3908 char *endb = b + get_remote_packet_size ();
82f73884
PA
3909
3910 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3911 b += strlen (b);
3912 write_ptid (b, endb, tp->ptid);
3913
2e9f7625 3914 putpkt (rs->buf);
8d64371b 3915 getpkt (&rs->buf, 0);
2e9f7625 3916 if (rs->buf[0] != 0)
9d1f7ab2 3917 {
8d64371b
TT
3918 extra.resize (strlen (rs->buf.data ()) / 2);
3919 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3920 return extra.c_str ();
9d1f7ab2 3921 }
0f71a2f6 3922 }
9d1f7ab2
MS
3923
3924 /* If the above query fails, fall back to the old method. */
b80fafe3 3925 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3926 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3927 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3928 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3929 if (remote_get_threadinfo (&id, set, &threadinfo))
3930 if (threadinfo.active)
0f71a2f6 3931 {
9d1f7ab2 3932 if (*threadinfo.shortname)
c76a8ea3 3933 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3934 if (*threadinfo.display)
c76a8ea3
PA
3935 {
3936 if (!extra.empty ())
3937 extra += ',';
3938 string_appendf (extra, " State: %s", threadinfo.display);
3939 }
9d1f7ab2 3940 if (*threadinfo.more_display)
c5aa993b 3941 {
c76a8ea3
PA
3942 if (!extra.empty ())
3943 extra += ',';
3944 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3945 }
c76a8ea3 3946 return extra.c_str ();
0f71a2f6 3947 }
9d1f7ab2 3948 return NULL;
0f71a2f6 3949}
c906108c 3950\f
c5aa993b 3951
f6ac5f3d
PA
3952bool
3953remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3954 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3955{
3956 struct remote_state *rs = get_remote_state ();
8d64371b 3957 char *p = rs->buf.data ();
0fb4aa4b 3958
bba74b36 3959 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3960 p += strlen (p);
3961 p += hexnumstr (p, addr);
3962 putpkt (rs->buf);
8d64371b
TT
3963 getpkt (&rs->buf, 0);
3964 p = rs->buf.data ();
0fb4aa4b
PA
3965
3966 if (*p == 'E')
3967 error (_("Remote failure reply: %s"), p);
3968
3969 if (*p++ == 'm')
3970 {
256642e8 3971 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3972 return true;
0fb4aa4b
PA
3973 }
3974
5d9310c4 3975 return false;
0fb4aa4b
PA
3976}
3977
f6ac5f3d
PA
3978std::vector<static_tracepoint_marker>
3979remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3980{
3981 struct remote_state *rs = get_remote_state ();
5d9310c4 3982 std::vector<static_tracepoint_marker> markers;
256642e8 3983 const char *p;
5d9310c4 3984 static_tracepoint_marker marker;
0fb4aa4b
PA
3985
3986 /* Ask for a first packet of static tracepoint marker
3987 definition. */
3988 putpkt ("qTfSTM");
8d64371b
TT
3989 getpkt (&rs->buf, 0);
3990 p = rs->buf.data ();
0fb4aa4b
PA
3991 if (*p == 'E')
3992 error (_("Remote failure reply: %s"), p);
3993
0fb4aa4b
PA
3994 while (*p++ == 'm')
3995 {
0fb4aa4b
PA
3996 do
3997 {
5d9310c4 3998 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3999
5d9310c4
SM
4000 if (strid == NULL || marker.str_id == strid)
4001 markers.push_back (std::move (marker));
0fb4aa4b
PA
4002 }
4003 while (*p++ == ','); /* comma-separated list */
4004 /* Ask for another packet of static tracepoint definition. */
4005 putpkt ("qTsSTM");
8d64371b
TT
4006 getpkt (&rs->buf, 0);
4007 p = rs->buf.data ();
0fb4aa4b
PA
4008 }
4009
0fb4aa4b
PA
4010 return markers;
4011}
4012
4013\f
10760264
JB
4014/* Implement the to_get_ada_task_ptid function for the remote targets. */
4015
f6ac5f3d
PA
4016ptid_t
4017remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4018{
e99b03dc 4019 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4020}
4021\f
4022
24b06219 4023/* Restart the remote side; this is an extended protocol operation. */
c906108c 4024
6b8edb51
PA
4025void
4026remote_target::extended_remote_restart ()
c906108c 4027{
d01949b6 4028 struct remote_state *rs = get_remote_state ();
c906108c
SS
4029
4030 /* Send the restart command; for reasons I don't understand the
4031 remote side really expects a number after the "R". */
8d64371b 4032 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4033 putpkt (rs->buf);
c906108c 4034
ad9a8f3f 4035 remote_fileio_reset ();
c906108c
SS
4036}
4037\f
4038/* Clean up connection to a remote debugger. */
4039
f6ac5f3d
PA
4040void
4041remote_target::close ()
c906108c 4042{
048094ac 4043 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4044 terminal_ours ();
ce5ce7ed 4045
6b8edb51
PA
4046 trace_reset_local_state ();
4047
4048 delete this;
4049}
4050
4051remote_target::~remote_target ()
4052{
4053 struct remote_state *rs = get_remote_state ();
4054
4055 /* Check for NULL because we may get here with a partially
4056 constructed target/connection. */
4057 if (rs->remote_desc == nullptr)
4058 return;
4059
4060 serial_close (rs->remote_desc);
4061
4062 /* We are destroying the remote target, so we should discard
f48ff2a7 4063 everything of this target. */
6b8edb51 4064 discard_pending_stop_replies_in_queue ();
74531fed 4065
6b8edb51
PA
4066 if (rs->remote_async_inferior_event_token)
4067 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4068
97dfbadd 4069 delete rs->notif_state;
c906108c
SS
4070}
4071
23860348 4072/* Query the remote side for the text, data and bss offsets. */
c906108c 4073
6b8edb51
PA
4074void
4075remote_target::get_offsets ()
c906108c 4076{
d01949b6 4077 struct remote_state *rs = get_remote_state ();
2e9f7625 4078 char *buf;
085dd6e6 4079 char *ptr;
31d99776
DJ
4080 int lose, num_segments = 0, do_sections, do_segments;
4081 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776
DJ
4082 struct symfile_segment_data *data;
4083
4084 if (symfile_objfile == NULL)
4085 return;
c906108c
SS
4086
4087 putpkt ("qOffsets");
8d64371b
TT
4088 getpkt (&rs->buf, 0);
4089 buf = rs->buf.data ();
c906108c
SS
4090
4091 if (buf[0] == '\000')
4092 return; /* Return silently. Stub doesn't support
23860348 4093 this command. */
c906108c
SS
4094 if (buf[0] == 'E')
4095 {
8a3fe4f8 4096 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4097 return;
4098 }
4099
4100 /* Pick up each field in turn. This used to be done with scanf, but
4101 scanf will make trouble if CORE_ADDR size doesn't match
4102 conversion directives correctly. The following code will work
4103 with any size of CORE_ADDR. */
4104 text_addr = data_addr = bss_addr = 0;
4105 ptr = buf;
4106 lose = 0;
4107
61012eef 4108 if (startswith (ptr, "Text="))
c906108c
SS
4109 {
4110 ptr += 5;
4111 /* Don't use strtol, could lose on big values. */
4112 while (*ptr && *ptr != ';')
4113 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4114
61012eef 4115 if (startswith (ptr, ";Data="))
31d99776
DJ
4116 {
4117 ptr += 6;
4118 while (*ptr && *ptr != ';')
4119 data_addr = (data_addr << 4) + fromhex (*ptr++);
4120 }
4121 else
4122 lose = 1;
4123
61012eef 4124 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4125 {
4126 ptr += 5;
4127 while (*ptr && *ptr != ';')
4128 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4129
31d99776
DJ
4130 if (bss_addr != data_addr)
4131 warning (_("Target reported unsupported offsets: %s"), buf);
4132 }
4133 else
4134 lose = 1;
4135 }
61012eef 4136 else if (startswith (ptr, "TextSeg="))
c906108c 4137 {
31d99776
DJ
4138 ptr += 8;
4139 /* Don't use strtol, could lose on big values. */
c906108c 4140 while (*ptr && *ptr != ';')
31d99776
DJ
4141 text_addr = (text_addr << 4) + fromhex (*ptr++);
4142 num_segments = 1;
4143
61012eef 4144 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4145 {
4146 ptr += 9;
4147 while (*ptr && *ptr != ';')
4148 data_addr = (data_addr << 4) + fromhex (*ptr++);
4149 num_segments++;
4150 }
c906108c
SS
4151 }
4152 else
4153 lose = 1;
4154
4155 if (lose)
8a3fe4f8 4156 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4157 else if (*ptr != '\0')
4158 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4159
6a053cb1 4160 section_offsets offs = symfile_objfile->section_offsets;
c906108c 4161
31d99776
DJ
4162 data = get_symfile_segment_data (symfile_objfile->obfd);
4163 do_segments = (data != NULL);
4164 do_sections = num_segments == 0;
c906108c 4165
28c32713 4166 if (num_segments > 0)
31d99776 4167 {
31d99776
DJ
4168 segments[0] = text_addr;
4169 segments[1] = data_addr;
4170 }
28c32713
JB
4171 /* If we have two segments, we can still try to relocate everything
4172 by assuming that the .text and .data offsets apply to the whole
4173 text and data segments. Convert the offsets given in the packet
4174 to base addresses for symfile_map_offsets_to_segments. */
4175 else if (data && data->num_segments == 2)
4176 {
4177 segments[0] = data->segment_bases[0] + text_addr;
4178 segments[1] = data->segment_bases[1] + data_addr;
4179 num_segments = 2;
4180 }
8d385431
DJ
4181 /* If the object file has only one segment, assume that it is text
4182 rather than data; main programs with no writable data are rare,
4183 but programs with no code are useless. Of course the code might
4184 have ended up in the data segment... to detect that we would need
4185 the permissions here. */
4186 else if (data && data->num_segments == 1)
4187 {
4188 segments[0] = data->segment_bases[0] + text_addr;
4189 num_segments = 1;
4190 }
28c32713
JB
4191 /* There's no way to relocate by segment. */
4192 else
4193 do_segments = 0;
31d99776
DJ
4194
4195 if (do_segments)
4196 {
4197 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4198 offs, num_segments, segments);
4199
4200 if (ret == 0 && !do_sections)
3e43a32a
MS
4201 error (_("Can not handle qOffsets TextSeg "
4202 "response with this symbol file"));
31d99776
DJ
4203
4204 if (ret > 0)
4205 do_sections = 0;
4206 }
c906108c 4207
9ef895d6
DJ
4208 if (data)
4209 free_symfile_segment_data (data);
31d99776
DJ
4210
4211 if (do_sections)
4212 {
6a053cb1 4213 offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
31d99776 4214
3e43a32a
MS
4215 /* This is a temporary kludge to force data and bss to use the
4216 same offsets because that's what nlmconv does now. The real
4217 solution requires changes to the stub and remote.c that I
4218 don't have time to do right now. */
31d99776 4219
6a053cb1
TT
4220 offs[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4221 offs[SECT_OFF_BSS (symfile_objfile)] = data_addr;
31d99776 4222 }
c906108c
SS
4223
4224 objfile_relocate (symfile_objfile, offs);
4225}
4226
9a7071a8 4227/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4228
4229void
4230remote_target::send_interrupt_sequence ()
9a7071a8 4231{
5d93a237
TT
4232 struct remote_state *rs = get_remote_state ();
4233
9a7071a8 4234 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4235 remote_serial_write ("\x03", 1);
9a7071a8 4236 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4237 serial_send_break (rs->remote_desc);
9a7071a8
JB
4238 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4239 {
5d93a237 4240 serial_send_break (rs->remote_desc);
c33e31fd 4241 remote_serial_write ("g", 1);
9a7071a8
JB
4242 }
4243 else
4244 internal_error (__FILE__, __LINE__,
4245 _("Invalid value for interrupt_sequence_mode: %s."),
4246 interrupt_sequence_mode);
4247}
4248
3405876a
PA
4249
4250/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4251 and extract the PTID. Returns NULL_PTID if not found. */
4252
4253static ptid_t
4254stop_reply_extract_thread (char *stop_reply)
4255{
4256 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4257 {
256642e8 4258 const char *p;
3405876a
PA
4259
4260 /* Txx r:val ; r:val (...) */
4261 p = &stop_reply[3];
4262
4263 /* Look for "register" named "thread". */
4264 while (*p != '\0')
4265 {
256642e8 4266 const char *p1;
3405876a
PA
4267
4268 p1 = strchr (p, ':');
4269 if (p1 == NULL)
4270 return null_ptid;
4271
4272 if (strncmp (p, "thread", p1 - p) == 0)
4273 return read_ptid (++p1, &p);
4274
4275 p1 = strchr (p, ';');
4276 if (p1 == NULL)
4277 return null_ptid;
4278 p1++;
4279
4280 p = p1;
4281 }
4282 }
4283
4284 return null_ptid;
4285}
4286
b7ea362b
PA
4287/* Determine the remote side's current thread. If we have a stop
4288 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4289 "thread" register we can extract the current thread from. If not,
4290 ask the remote which is the current thread with qC. The former
4291 method avoids a roundtrip. */
4292
6b8edb51
PA
4293ptid_t
4294remote_target::get_current_thread (char *wait_status)
b7ea362b 4295{
6a49a997 4296 ptid_t ptid = null_ptid;
b7ea362b
PA
4297
4298 /* Note we don't use remote_parse_stop_reply as that makes use of
4299 the target architecture, which we haven't yet fully determined at
4300 this point. */
4301 if (wait_status != NULL)
4302 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4303 if (ptid == null_ptid)
b7ea362b
PA
4304 ptid = remote_current_thread (inferior_ptid);
4305
4306 return ptid;
4307}
4308
49c62f2e
PA
4309/* Query the remote target for which is the current thread/process,
4310 add it to our tables, and update INFERIOR_PTID. The caller is
4311 responsible for setting the state such that the remote end is ready
3405876a
PA
4312 to return the current thread.
4313
4314 This function is called after handling the '?' or 'vRun' packets,
4315 whose response is a stop reply from which we can also try
4316 extracting the thread. If the target doesn't support the explicit
4317 qC query, we infer the current thread from that stop reply, passed
4318 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4319
6b8edb51
PA
4320void
4321remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4322{
4323 struct remote_state *rs = get_remote_state ();
9ab8741a 4324 bool fake_pid_p = false;
49c62f2e
PA
4325
4326 inferior_ptid = null_ptid;
4327
b7ea362b 4328 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4329 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4330
87215ad1 4331 if (curr_ptid != null_ptid)
49c62f2e
PA
4332 {
4333 if (!remote_multi_process_p (rs))
9ab8741a 4334 fake_pid_p = true;
49c62f2e
PA
4335 }
4336 else
4337 {
4338 /* Without this, some commands which require an active target
4339 (such as kill) won't work. This variable serves (at least)
4340 double duty as both the pid of the target process (if it has
4341 such), and as a flag indicating that a target is active. */
87215ad1 4342 curr_ptid = magic_null_ptid;
9ab8741a 4343 fake_pid_p = true;
49c62f2e
PA
4344 }
4345
e99b03dc 4346 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4347
87215ad1
SDJ
4348 /* Add the main thread and switch to it. Don't try reading
4349 registers yet, since we haven't fetched the target description
4350 yet. */
5b6d1e4f 4351 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4352 switch_to_thread_no_regs (tp);
49c62f2e
PA
4353}
4354
6efcd9a8
PA
4355/* Print info about a thread that was found already stopped on
4356 connection. */
4357
4358static void
4359print_one_stopped_thread (struct thread_info *thread)
4360{
4361 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4362
00431a78 4363 switch_to_thread (thread);
f2ffa92b 4364 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4365 set_current_sal_from_frame (get_current_frame ());
4366
4367 thread->suspend.waitstatus_pending_p = 0;
4368
4369 if (ws->kind == TARGET_WAITKIND_STOPPED)
4370 {
4371 enum gdb_signal sig = ws->value.sig;
4372
4373 if (signal_print_state (sig))
76727919 4374 gdb::observers::signal_received.notify (sig);
6efcd9a8 4375 }
76727919 4376 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4377}
4378
221e1a37
PA
4379/* Process all initial stop replies the remote side sent in response
4380 to the ? packet. These indicate threads that were already stopped
4381 on initial connection. We mark these threads as stopped and print
4382 their current frame before giving the user the prompt. */
4383
6b8edb51
PA
4384void
4385remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4386{
4387 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4388 struct thread_info *selected = NULL;
4389 struct thread_info *lowest_stopped = NULL;
4390 struct thread_info *first = NULL;
221e1a37
PA
4391
4392 /* Consume the initial pending events. */
4393 while (pending_stop_replies-- > 0)
4394 {
4395 ptid_t waiton_ptid = minus_one_ptid;
4396 ptid_t event_ptid;
4397 struct target_waitstatus ws;
4398 int ignore_event = 0;
4399
4400 memset (&ws, 0, sizeof (ws));
4401 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4402 if (remote_debug)
4403 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4404
4405 switch (ws.kind)
4406 {
4407 case TARGET_WAITKIND_IGNORE:
4408 case TARGET_WAITKIND_NO_RESUMED:
4409 case TARGET_WAITKIND_SIGNALLED:
4410 case TARGET_WAITKIND_EXITED:
4411 /* We shouldn't see these, but if we do, just ignore. */
4412 if (remote_debug)
4413 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4414 ignore_event = 1;
4415 break;
4416
4417 case TARGET_WAITKIND_EXECD:
4418 xfree (ws.value.execd_pathname);
4419 break;
4420 default:
4421 break;
4422 }
4423
4424 if (ignore_event)
4425 continue;
4426
5b6d1e4f 4427 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4428
4429 if (ws.kind == TARGET_WAITKIND_STOPPED)
4430 {
4431 enum gdb_signal sig = ws.value.sig;
4432
4433 /* Stubs traditionally report SIGTRAP as initial signal,
4434 instead of signal 0. Suppress it. */
4435 if (sig == GDB_SIGNAL_TRAP)
4436 sig = GDB_SIGNAL_0;
b926417a 4437 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4438 ws.value.sig = sig;
4439 }
221e1a37 4440
b926417a 4441 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4442
4443 if (ws.kind != TARGET_WAITKIND_STOPPED
4444 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4445 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4446
5b6d1e4f
PA
4447 set_executing (this, event_ptid, 0);
4448 set_running (this, event_ptid, 0);
b926417a 4449 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4450 }
4451
4452 /* "Notice" the new inferiors before anything related to
4453 registers/memory. */
5b6d1e4f 4454 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4455 {
6efcd9a8
PA
4456 inf->needs_setup = 1;
4457
4458 if (non_stop)
4459 {
08036331 4460 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4461 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4462 from_tty);
4463 }
4464 }
4465
4466 /* If all-stop on top of non-stop, pause all threads. Note this
4467 records the threads' stop pc, so must be done after "noticing"
4468 the inferiors. */
4469 if (!non_stop)
4470 {
4471 stop_all_threads ();
4472
4473 /* If all threads of an inferior were already stopped, we
4474 haven't setup the inferior yet. */
5b6d1e4f 4475 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4476 {
6efcd9a8
PA
4477 if (inf->needs_setup)
4478 {
08036331 4479 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4480 switch_to_thread_no_regs (thread);
4481 setup_inferior (0);
4482 }
4483 }
221e1a37 4484 }
6efcd9a8
PA
4485
4486 /* Now go over all threads that are stopped, and print their current
4487 frame. If all-stop, then if there's a signalled thread, pick
4488 that as current. */
5b6d1e4f 4489 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4490 {
6efcd9a8
PA
4491 if (first == NULL)
4492 first = thread;
4493
4494 if (!non_stop)
00431a78 4495 thread->set_running (false);
6efcd9a8
PA
4496 else if (thread->state != THREAD_STOPPED)
4497 continue;
4498
6efcd9a8
PA
4499 if (selected == NULL
4500 && thread->suspend.waitstatus_pending_p)
4501 selected = thread;
4502
5d5658a1
PA
4503 if (lowest_stopped == NULL
4504 || thread->inf->num < lowest_stopped->inf->num
4505 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4506 lowest_stopped = thread;
4507
4508 if (non_stop)
4509 print_one_stopped_thread (thread);
4510 }
4511
4512 /* In all-stop, we only print the status of one thread, and leave
4513 others with their status pending. */
4514 if (!non_stop)
4515 {
08036331 4516 thread_info *thread = selected;
6efcd9a8
PA
4517 if (thread == NULL)
4518 thread = lowest_stopped;
4519 if (thread == NULL)
4520 thread = first;
4521
4522 print_one_stopped_thread (thread);
4523 }
4524
4525 /* For "info program". */
08036331 4526 thread_info *thread = inferior_thread ();
6efcd9a8 4527 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4528 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4529}
4530
048094ac
PA
4531/* Start the remote connection and sync state. */
4532
f6ac5f3d
PA
4533void
4534remote_target::start_remote (int from_tty, int extended_p)
c906108c 4535{
c8d104ad
PA
4536 struct remote_state *rs = get_remote_state ();
4537 struct packet_config *noack_config;
2d717e4f 4538 char *wait_status = NULL;
8621d6a9 4539
048094ac
PA
4540 /* Signal other parts that we're going through the initial setup,
4541 and so things may not be stable yet. E.g., we don't try to
4542 install tracepoints until we've relocated symbols. Also, a
4543 Ctrl-C before we're connected and synced up can't interrupt the
4544 target. Instead, it offers to drop the (potentially wedged)
4545 connection. */
4546 rs->starting_up = 1;
4547
522002f9 4548 QUIT;
c906108c 4549
9a7071a8
JB
4550 if (interrupt_on_connect)
4551 send_interrupt_sequence ();
4552
57e12211 4553 /* Ack any packet which the remote side has already sent. */
048094ac 4554 remote_serial_write ("+", 1);
1e51243a 4555
c8d104ad
PA
4556 /* The first packet we send to the target is the optional "supported
4557 packets" request. If the target can answer this, it will tell us
4558 which later probes to skip. */
4559 remote_query_supported ();
4560
d914c394 4561 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4562 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4563 set_permissions ();
d914c394 4564
57809e5e
JK
4565 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4566 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4567 as a reply to known packet. For packet "vFile:setfs:" it is an
4568 invalid reply and GDB would return error in
4569 remote_hostio_set_filesystem, making remote files access impossible.
4570 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4571 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4572 {
4573 const char v_mustreplyempty[] = "vMustReplyEmpty";
4574
4575 putpkt (v_mustreplyempty);
8d64371b
TT
4576 getpkt (&rs->buf, 0);
4577 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4578 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4579 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4580 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4581 rs->buf.data ());
57809e5e
JK
4582 }
4583
c8d104ad
PA
4584 /* Next, we possibly activate noack mode.
4585
4586 If the QStartNoAckMode packet configuration is set to AUTO,
4587 enable noack mode if the stub reported a wish for it with
4588 qSupported.
4589
4590 If set to TRUE, then enable noack mode even if the stub didn't
4591 report it in qSupported. If the stub doesn't reply OK, the
4592 session ends with an error.
4593
4594 If FALSE, then don't activate noack mode, regardless of what the
4595 stub claimed should be the default with qSupported. */
4596
4597 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4598 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4599 {
4600 putpkt ("QStartNoAckMode");
8d64371b 4601 getpkt (&rs->buf, 0);
c8d104ad
PA
4602 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4603 rs->noack_mode = 1;
4604 }
4605
04bd08de 4606 if (extended_p)
5fe04517
PA
4607 {
4608 /* Tell the remote that we are using the extended protocol. */
4609 putpkt ("!");
8d64371b 4610 getpkt (&rs->buf, 0);
5fe04517
PA
4611 }
4612
9b224c5e
PA
4613 /* Let the target know which signals it is allowed to pass down to
4614 the program. */
4615 update_signals_program_target ();
4616
d962ef82
DJ
4617 /* Next, if the target can specify a description, read it. We do
4618 this before anything involving memory or registers. */
4619 target_find_description ();
4620
6c95b8df
PA
4621 /* Next, now that we know something about the target, update the
4622 address spaces in the program spaces. */
4623 update_address_spaces ();
4624
50c71eaf
PA
4625 /* On OSs where the list of libraries is global to all
4626 processes, we fetch them early. */
f5656ead 4627 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4628 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4629
6efcd9a8 4630 if (target_is_non_stop_p ())
74531fed 4631 {
4082afcc 4632 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4633 error (_("Non-stop mode requested, but remote "
4634 "does not support non-stop"));
74531fed
PA
4635
4636 putpkt ("QNonStop:1");
8d64371b 4637 getpkt (&rs->buf, 0);
74531fed 4638
8d64371b
TT
4639 if (strcmp (rs->buf.data (), "OK") != 0)
4640 error (_("Remote refused setting non-stop mode with: %s"),
4641 rs->buf.data ());
74531fed
PA
4642
4643 /* Find about threads and processes the stub is already
4644 controlling. We default to adding them in the running state.
4645 The '?' query below will then tell us about which threads are
4646 stopped. */
f6ac5f3d 4647 this->update_thread_list ();
74531fed 4648 }
4082afcc 4649 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4650 {
4651 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4652 Request it explicitly. */
74531fed 4653 putpkt ("QNonStop:0");
8d64371b 4654 getpkt (&rs->buf, 0);
74531fed 4655
8d64371b
TT
4656 if (strcmp (rs->buf.data (), "OK") != 0)
4657 error (_("Remote refused setting all-stop mode with: %s"),
4658 rs->buf.data ());
74531fed
PA
4659 }
4660
a0743c90
YQ
4661 /* Upload TSVs regardless of whether the target is running or not. The
4662 remote stub, such as GDBserver, may have some predefined or builtin
4663 TSVs, even if the target is not running. */
f6ac5f3d 4664 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4665 {
4666 struct uploaded_tsv *uploaded_tsvs = NULL;
4667
f6ac5f3d 4668 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4669 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4670 }
4671
2d717e4f
DJ
4672 /* Check whether the target is running now. */
4673 putpkt ("?");
8d64371b 4674 getpkt (&rs->buf, 0);
2d717e4f 4675
6efcd9a8 4676 if (!target_is_non_stop_p ())
2d717e4f 4677 {
74531fed 4678 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4679 {
04bd08de 4680 if (!extended_p)
74531fed 4681 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4682
4683 /* We're connected, but not running. Drop out before we
4684 call start_remote. */
e278ad5b 4685 rs->starting_up = 0;
c35b1492 4686 return;
2d717e4f
DJ
4687 }
4688 else
74531fed 4689 {
74531fed 4690 /* Save the reply for later. */
8d64371b
TT
4691 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4692 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4693 }
4694
b7ea362b 4695 /* Fetch thread list. */
e8032dde 4696 target_update_thread_list ();
b7ea362b 4697
74531fed
PA
4698 /* Let the stub know that we want it to return the thread. */
4699 set_continue_thread (minus_one_ptid);
4700
5b6d1e4f 4701 if (thread_count (this) == 0)
b7ea362b
PA
4702 {
4703 /* Target has no concept of threads at all. GDB treats
4704 non-threaded target as single-threaded; add a main
4705 thread. */
4706 add_current_inferior_and_thread (wait_status);
4707 }
4708 else
4709 {
4710 /* We have thread information; select the thread the target
4711 says should be current. If we're reconnecting to a
4712 multi-threaded program, this will ideally be the thread
4713 that last reported an event before GDB disconnected. */
75c6c844
PA
4714 ptid_t curr_thread = get_current_thread (wait_status);
4715 if (curr_thread == null_ptid)
b7ea362b
PA
4716 {
4717 /* Odd... The target was able to list threads, but not
4718 tell us which thread was current (no "thread"
4719 register in T stop reply?). Just pick the first
4720 thread in the thread list then. */
c9f35b34
KB
4721
4722 if (remote_debug)
4723 fprintf_unfiltered (gdb_stdlog,
4724 "warning: couldn't determine remote "
4725 "current thread; picking first in list.\n");
4726
5b6d1e4f
PA
4727 for (thread_info *tp : all_non_exited_threads (this,
4728 minus_one_ptid))
75c6c844
PA
4729 {
4730 switch_to_thread (tp);
4731 break;
4732 }
b7ea362b 4733 }
75c6c844 4734 else
5b6d1e4f 4735 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4736 }
74531fed 4737
6e586cc5
YQ
4738 /* init_wait_for_inferior should be called before get_offsets in order
4739 to manage `inserted' flag in bp loc in a correct state.
4740 breakpoint_init_inferior, called from init_wait_for_inferior, set
4741 `inserted' flag to 0, while before breakpoint_re_set, called from
4742 start_remote, set `inserted' flag to 1. In the initialization of
4743 inferior, breakpoint_init_inferior should be called first, and then
4744 breakpoint_re_set can be called. If this order is broken, state of
4745 `inserted' flag is wrong, and cause some problems on breakpoint
4746 manipulation. */
4747 init_wait_for_inferior ();
4748
74531fed
PA
4749 get_offsets (); /* Get text, data & bss offsets. */
4750
d962ef82
DJ
4751 /* If we could not find a description using qXfer, and we know
4752 how to do it some other way, try again. This is not
4753 supported for non-stop; it could be, but it is tricky if
4754 there are no stopped threads when we connect. */
f6ac5f3d 4755 if (remote_read_description_p (this)
f5656ead 4756 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4757 {
4758 target_clear_description ();
4759 target_find_description ();
4760 }
4761
74531fed
PA
4762 /* Use the previously fetched status. */
4763 gdb_assert (wait_status != NULL);
8d64371b 4764 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4765 rs->cached_wait_status = 1;
4766
f6ac5f3d 4767 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4768 }
4769 else
4770 {
68c97600
PA
4771 /* Clear WFI global state. Do this before finding about new
4772 threads and inferiors, and setting the current inferior.
4773 Otherwise we would clear the proceed status of the current
4774 inferior when we want its stop_soon state to be preserved
4775 (see notice_new_inferior). */
4776 init_wait_for_inferior ();
4777
74531fed
PA
4778 /* In non-stop, we will either get an "OK", meaning that there
4779 are no stopped threads at this time; or, a regular stop
4780 reply. In the latter case, there may be more than one thread
4781 stopped --- we pull them all out using the vStopped
4782 mechanism. */
8d64371b 4783 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4784 {
722247f1 4785 struct notif_client *notif = &notif_client_stop;
2d717e4f 4786
722247f1
YQ
4787 /* remote_notif_get_pending_replies acks this one, and gets
4788 the rest out. */
f48ff2a7 4789 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4790 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4791 remote_notif_get_pending_events (notif);
74531fed 4792 }
2d717e4f 4793
5b6d1e4f 4794 if (thread_count (this) == 0)
74531fed 4795 {
04bd08de 4796 if (!extended_p)
74531fed 4797 error (_("The target is not running (try extended-remote?)"));
82f73884 4798
c35b1492
PA
4799 /* We're connected, but not running. Drop out before we
4800 call start_remote. */
e278ad5b 4801 rs->starting_up = 0;
c35b1492
PA
4802 return;
4803 }
74531fed 4804
74531fed
PA
4805 /* In non-stop mode, any cached wait status will be stored in
4806 the stop reply queue. */
4807 gdb_assert (wait_status == NULL);
f0223081 4808
2455069d 4809 /* Report all signals during attach/startup. */
adc6a863 4810 pass_signals ({});
221e1a37
PA
4811
4812 /* If there are already stopped threads, mark them stopped and
4813 report their stops before giving the prompt to the user. */
6efcd9a8 4814 process_initial_stop_replies (from_tty);
221e1a37
PA
4815
4816 if (target_can_async_p ())
4817 target_async (1);
74531fed 4818 }
c8d104ad 4819
c8d104ad
PA
4820 /* If we connected to a live target, do some additional setup. */
4821 if (target_has_execution)
4822 {
f4ccffad 4823 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4824 remote_check_symbols ();
c8d104ad 4825 }
50c71eaf 4826
d5551862
SS
4827 /* Possibly the target has been engaged in a trace run started
4828 previously; find out where things are at. */
f6ac5f3d 4829 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4830 {
00bf0b85 4831 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4832
00bf0b85
SS
4833 if (current_trace_status ()->running)
4834 printf_filtered (_("Trace is already running on the target.\n"));
4835
f6ac5f3d 4836 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4837
4838 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4839 }
4840
c0272db5
TW
4841 /* Possibly the target has been engaged in a btrace record started
4842 previously; find out where things are at. */
4843 remote_btrace_maybe_reopen ();
4844
1e51243a
PA
4845 /* The thread and inferior lists are now synchronized with the
4846 target, our symbols have been relocated, and we're merged the
4847 target's tracepoints with ours. We're done with basic start
4848 up. */
4849 rs->starting_up = 0;
4850
a25a5a45
PA
4851 /* Maybe breakpoints are global and need to be inserted now. */
4852 if (breakpoints_should_be_inserted_now ())
50c71eaf 4853 insert_breakpoints ();
c906108c
SS
4854}
4855
4856/* Open a connection to a remote debugger.
4857 NAME is the filename used for communication. */
4858
f6ac5f3d
PA
4859void
4860remote_target::open (const char *name, int from_tty)
c906108c 4861{
f6ac5f3d 4862 open_1 (name, from_tty, 0);
43ff13b4
JM
4863}
4864
c906108c
SS
4865/* Open a connection to a remote debugger using the extended
4866 remote gdb protocol. NAME is the filename used for communication. */
4867
f6ac5f3d
PA
4868void
4869extended_remote_target::open (const char *name, int from_tty)
c906108c 4870{
f6ac5f3d 4871 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4872}
4873
ca4f7f8b
PA
4874/* Reset all packets back to "unknown support". Called when opening a
4875 new connection to a remote target. */
c906108c 4876
d471ea57 4877static void
ca4f7f8b 4878reset_all_packet_configs_support (void)
d471ea57
AC
4879{
4880 int i;
a744cf53 4881
444abaca 4882 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4883 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4884}
4885
ca4f7f8b
PA
4886/* Initialize all packet configs. */
4887
4888static void
4889init_all_packet_configs (void)
4890{
4891 int i;
4892
4893 for (i = 0; i < PACKET_MAX; i++)
4894 {
4895 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4896 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4897 }
4898}
4899
23860348 4900/* Symbol look-up. */
dc8acb97 4901
6b8edb51
PA
4902void
4903remote_target::remote_check_symbols ()
dc8acb97 4904{
8d64371b 4905 char *tmp;
dc8acb97
MS
4906 int end;
4907
63154eca
PA
4908 /* The remote side has no concept of inferiors that aren't running
4909 yet, it only knows about running processes. If we're connected
4910 but our current inferior is not running, we should not invite the
4911 remote target to request symbol lookups related to its
4912 (unrelated) current process. */
4913 if (!target_has_execution)
4914 return;
4915
4082afcc 4916 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4917 return;
4918
63154eca
PA
4919 /* Make sure the remote is pointing at the right process. Note
4920 there's no way to select "no process". */
3c9c4b83
PA
4921 set_general_process ();
4922
6d820c5c
DJ
4923 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4924 because we need both at the same time. */
66644cd3 4925 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4926 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4927
23860348 4928 /* Invite target to request symbol lookups. */
dc8acb97
MS
4929
4930 putpkt ("qSymbol::");
8d64371b 4931 getpkt (&reply, 0);
28170b88 4932 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4933
8d64371b 4934 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4935 {
77e371c0
TT
4936 struct bound_minimal_symbol sym;
4937
dc8acb97 4938 tmp = &reply[8];
66644cd3
AB
4939 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4940 strlen (tmp) / 2);
dc8acb97 4941 msg[end] = '\0';
66644cd3 4942 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4943 if (sym.minsym == NULL)
66644cd3
AB
4944 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4945 &reply[8]);
dc8acb97 4946 else
2bbe3cc1 4947 {
f5656ead 4948 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4949 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4950
4951 /* If this is a function address, return the start of code
4952 instead of any data function descriptor. */
f5656ead 4953 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4954 sym_addr,
8b88a78e 4955 current_top_target ());
2bbe3cc1 4956
66644cd3 4957 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4958 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4959 }
66644cd3
AB
4960
4961 putpkt (msg.data ());
8d64371b 4962 getpkt (&reply, 0);
dc8acb97
MS
4963 }
4964}
4965
9db8d71f 4966static struct serial *
baa336ce 4967remote_serial_open (const char *name)
9db8d71f
DJ
4968{
4969 static int udp_warning = 0;
4970
4971 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4972 of in ser-tcp.c, because it is the remote protocol assuming that the
4973 serial connection is reliable and not the serial connection promising
4974 to be. */
61012eef 4975 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4976 {
3e43a32a
MS
4977 warning (_("The remote protocol may be unreliable over UDP.\n"
4978 "Some events may be lost, rendering further debugging "
4979 "impossible."));
9db8d71f
DJ
4980 udp_warning = 1;
4981 }
4982
4983 return serial_open (name);
4984}
4985
d914c394
SS
4986/* Inform the target of our permission settings. The permission flags
4987 work without this, but if the target knows the settings, it can do
4988 a couple things. First, it can add its own check, to catch cases
4989 that somehow manage to get by the permissions checks in target
4990 methods. Second, if the target is wired to disallow particular
4991 settings (for instance, a system in the field that is not set up to
4992 be able to stop at a breakpoint), it can object to any unavailable
4993 permissions. */
4994
4995void
f6ac5f3d 4996remote_target::set_permissions ()
d914c394
SS
4997{
4998 struct remote_state *rs = get_remote_state ();
4999
8d64371b 5000 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5001 "WriteReg:%x;WriteMem:%x;"
5002 "InsertBreak:%x;InsertTrace:%x;"
5003 "InsertFastTrace:%x;Stop:%x",
5004 may_write_registers, may_write_memory,
5005 may_insert_breakpoints, may_insert_tracepoints,
5006 may_insert_fast_tracepoints, may_stop);
d914c394 5007 putpkt (rs->buf);
8d64371b 5008 getpkt (&rs->buf, 0);
d914c394
SS
5009
5010 /* If the target didn't like the packet, warn the user. Do not try
5011 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5012 if (strcmp (rs->buf.data (), "OK") != 0)
5013 warning (_("Remote refused setting permissions with: %s"),
5014 rs->buf.data ());
d914c394
SS
5015}
5016
be2a5f71
DJ
5017/* This type describes each known response to the qSupported
5018 packet. */
5019struct protocol_feature
5020{
5021 /* The name of this protocol feature. */
5022 const char *name;
5023
5024 /* The default for this protocol feature. */
5025 enum packet_support default_support;
5026
5027 /* The function to call when this feature is reported, or after
5028 qSupported processing if the feature is not supported.
5029 The first argument points to this structure. The second
5030 argument indicates whether the packet requested support be
5031 enabled, disabled, or probed (or the default, if this function
5032 is being called at the end of processing and this feature was
5033 not reported). The third argument may be NULL; if not NULL, it
5034 is a NUL-terminated string taken from the packet following
5035 this feature's name and an equals sign. */
6b8edb51
PA
5036 void (*func) (remote_target *remote, const struct protocol_feature *,
5037 enum packet_support, const char *);
be2a5f71
DJ
5038
5039 /* The corresponding packet for this feature. Only used if
5040 FUNC is remote_supported_packet. */
5041 int packet;
5042};
5043
be2a5f71 5044static void
6b8edb51
PA
5045remote_supported_packet (remote_target *remote,
5046 const struct protocol_feature *feature,
be2a5f71
DJ
5047 enum packet_support support,
5048 const char *argument)
5049{
5050 if (argument)
5051 {
5052 warning (_("Remote qSupported response supplied an unexpected value for"
5053 " \"%s\"."), feature->name);
5054 return;
5055 }
5056
4082afcc 5057 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5058}
be2a5f71 5059
6b8edb51
PA
5060void
5061remote_target::remote_packet_size (const protocol_feature *feature,
5062 enum packet_support support, const char *value)
be2a5f71
DJ
5063{
5064 struct remote_state *rs = get_remote_state ();
5065
5066 int packet_size;
5067 char *value_end;
5068
5069 if (support != PACKET_ENABLE)
5070 return;
5071
5072 if (value == NULL || *value == '\0')
5073 {
5074 warning (_("Remote target reported \"%s\" without a size."),
5075 feature->name);
5076 return;
5077 }
5078
5079 errno = 0;
5080 packet_size = strtol (value, &value_end, 16);
5081 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5082 {
5083 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5084 feature->name, value);
5085 return;
5086 }
5087
be2a5f71
DJ
5088 /* Record the new maximum packet size. */
5089 rs->explicit_packet_size = packet_size;
5090}
5091
cb8c24b6 5092static void
6b8edb51
PA
5093remote_packet_size (remote_target *remote, const protocol_feature *feature,
5094 enum packet_support support, const char *value)
5095{
5096 remote->remote_packet_size (feature, support, value);
5097}
5098
dc473cfb 5099static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5100 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5101 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5102 PACKET_qXfer_auxv },
c78fa86a
GB
5103 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5104 PACKET_qXfer_exec_file },
23181151
DJ
5105 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5106 PACKET_qXfer_features },
cfa9d6d9
DJ
5107 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5108 PACKET_qXfer_libraries },
2268b414
JK
5109 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5110 PACKET_qXfer_libraries_svr4 },
ced63ec0 5111 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5112 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5113 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5114 PACKET_qXfer_memory_map },
07e059b5
VP
5115 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5116 PACKET_qXfer_osdata },
dc146f7c
VP
5117 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_qXfer_threads },
b3b9301e
PA
5119 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_qXfer_traceframe_info },
89be2091
DJ
5121 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_QPassSignals },
82075af2
JS
5123 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_QCatchSyscalls },
9b224c5e
PA
5125 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_QProgramSignals },
bc3b087d
SDJ
5127 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5129 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5131 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5132 PACKET_QEnvironmentHexEncoded },
5133 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5134 PACKET_QEnvironmentReset },
5135 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5136 PACKET_QEnvironmentUnset },
a6f3e723
SL
5137 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_QStartNoAckMode },
4082afcc
PA
5139 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5140 PACKET_multiprocess_feature },
5141 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5142 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5143 PACKET_qXfer_siginfo_read },
5144 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5145 PACKET_qXfer_siginfo_write },
4082afcc 5146 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5147 PACKET_ConditionalTracepoints },
4082afcc 5148 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5149 PACKET_ConditionalBreakpoints },
4082afcc 5150 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5151 PACKET_BreakpointCommands },
4082afcc 5152 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5153 PACKET_FastTracepoints },
4082afcc 5154 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5155 PACKET_StaticTracepoints },
4082afcc 5156 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5157 PACKET_InstallInTrace},
4082afcc
PA
5158 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5159 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5160 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5161 PACKET_bc },
5162 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5163 PACKET_bs },
409873ef
SS
5164 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5165 PACKET_TracepointSource },
d914c394
SS
5166 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5167 PACKET_QAllow },
4082afcc
PA
5168 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5169 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5170 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5171 PACKET_qXfer_fdpic },
169081d0
TG
5172 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5173 PACKET_qXfer_uib },
03583c20
UW
5174 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5175 PACKET_QDisableRandomization },
d1feda86 5176 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5177 { "QTBuffer:size", PACKET_DISABLE,
5178 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5179 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5180 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5181 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5182 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5183 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5184 PACKET_qXfer_btrace },
5185 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5186 PACKET_qXfer_btrace_conf },
5187 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5188 PACKET_Qbtrace_conf_bts_size },
5189 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5190 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5191 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5192 PACKET_fork_event_feature },
5193 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5194 PACKET_vfork_event_feature },
94585166
DB
5195 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5196 PACKET_exec_event_feature },
b20a6524 5197 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5198 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5199 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5200 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5201 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5202};
5203
c8d5aac9
L
5204static char *remote_support_xml;
5205
5206/* Register string appended to "xmlRegisters=" in qSupported query. */
5207
5208void
6e39997a 5209register_remote_support_xml (const char *xml)
c8d5aac9
L
5210{
5211#if defined(HAVE_LIBEXPAT)
5212 if (remote_support_xml == NULL)
c4f7c687 5213 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5214 else
5215 {
5216 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5217 char *saveptr;
5218 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5219
5220 do
5221 {
5222 if (strcmp (p, xml) == 0)
5223 {
5224 /* already there */
5225 xfree (copy);
5226 return;
5227 }
5228 }
ca3a04f6 5229 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5230 xfree (copy);
5231
94b0dee1
PA
5232 remote_support_xml = reconcat (remote_support_xml,
5233 remote_support_xml, ",", xml,
5234 (char *) NULL);
c8d5aac9
L
5235 }
5236#endif
5237}
5238
69b6ecb0
TT
5239static void
5240remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5241{
69b6ecb0
TT
5242 if (!msg->empty ())
5243 msg->append (";");
5244 msg->append (append);
c8d5aac9
L
5245}
5246
6b8edb51
PA
5247void
5248remote_target::remote_query_supported ()
be2a5f71
DJ
5249{
5250 struct remote_state *rs = get_remote_state ();
5251 char *next;
5252 int i;
5253 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5254
5255 /* The packet support flags are handled differently for this packet
5256 than for most others. We treat an error, a disabled packet, and
5257 an empty response identically: any features which must be reported
5258 to be used will be automatically disabled. An empty buffer
5259 accomplishes this, since that is also the representation for a list
5260 containing no features. */
5261
5262 rs->buf[0] = 0;
4082afcc 5263 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5264 {
69b6ecb0 5265 std::string q;
c8d5aac9 5266
73b8c1fd 5267 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5268 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5269
f7e6eed5 5270 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5271 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5272 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5273 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5274
69b6ecb0 5275 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5276
8020350c
DB
5277 if (packet_set_cmd_state (PACKET_fork_event_feature)
5278 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5279 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5280 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5281 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5282 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5283 if (packet_set_cmd_state (PACKET_exec_event_feature)
5284 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5285 remote_query_supported_append (&q, "exec-events+");
89245bc0 5286
750ce8d1 5287 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5288 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5289
65706a29 5290 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5291 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5292
f2faf941 5293 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5294 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5295
b35d5edb
PA
5296 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5297 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5298 if (remote_support_xml != NULL
5299 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5300 remote_query_supported_append (&q, remote_support_xml);
82f73884 5301
69b6ecb0
TT
5302 q = "qSupported:" + q;
5303 putpkt (q.c_str ());
94b0dee1 5304
8d64371b 5305 getpkt (&rs->buf, 0);
be2a5f71
DJ
5306
5307 /* If an error occured, warn, but do not return - just reset the
5308 buffer to empty and go on to disable features. */
5309 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5310 == PACKET_ERROR)
5311 {
8d64371b 5312 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5313 rs->buf[0] = 0;
5314 }
5315 }
5316
5317 memset (seen, 0, sizeof (seen));
5318
8d64371b 5319 next = rs->buf.data ();
be2a5f71
DJ
5320 while (*next)
5321 {
5322 enum packet_support is_supported;
5323 char *p, *end, *name_end, *value;
5324
5325 /* First separate out this item from the rest of the packet. If
5326 there's another item after this, we overwrite the separator
5327 (terminated strings are much easier to work with). */
5328 p = next;
5329 end = strchr (p, ';');
5330 if (end == NULL)
5331 {
5332 end = p + strlen (p);
5333 next = end;
5334 }
5335 else
5336 {
89be2091
DJ
5337 *end = '\0';
5338 next = end + 1;
5339
be2a5f71
DJ
5340 if (end == p)
5341 {
5342 warning (_("empty item in \"qSupported\" response"));
5343 continue;
5344 }
be2a5f71
DJ
5345 }
5346
5347 name_end = strchr (p, '=');
5348 if (name_end)
5349 {
5350 /* This is a name=value entry. */
5351 is_supported = PACKET_ENABLE;
5352 value = name_end + 1;
5353 *name_end = '\0';
5354 }
5355 else
5356 {
5357 value = NULL;
5358 switch (end[-1])
5359 {
5360 case '+':
5361 is_supported = PACKET_ENABLE;
5362 break;
5363
5364 case '-':
5365 is_supported = PACKET_DISABLE;
5366 break;
5367
5368 case '?':
5369 is_supported = PACKET_SUPPORT_UNKNOWN;
5370 break;
5371
5372 default:
3e43a32a
MS
5373 warning (_("unrecognized item \"%s\" "
5374 "in \"qSupported\" response"), p);
be2a5f71
DJ
5375 continue;
5376 }
5377 end[-1] = '\0';
5378 }
5379
5380 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5381 if (strcmp (remote_protocol_features[i].name, p) == 0)
5382 {
5383 const struct protocol_feature *feature;
5384
5385 seen[i] = 1;
5386 feature = &remote_protocol_features[i];
6b8edb51 5387 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5388 break;
5389 }
5390 }
5391
5392 /* If we increased the packet size, make sure to increase the global
5393 buffer size also. We delay this until after parsing the entire
5394 qSupported packet, because this is the same buffer we were
5395 parsing. */
8d64371b
TT
5396 if (rs->buf.size () < rs->explicit_packet_size)
5397 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5398
5399 /* Handle the defaults for unmentioned features. */
5400 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5401 if (!seen[i])
5402 {
5403 const struct protocol_feature *feature;
5404
5405 feature = &remote_protocol_features[i];
6b8edb51 5406 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5407 }
5408}
5409
048094ac
PA
5410/* Serial QUIT handler for the remote serial descriptor.
5411
5412 Defers handling a Ctrl-C until we're done with the current
5413 command/response packet sequence, unless:
5414
5415 - We're setting up the connection. Don't send a remote interrupt
5416 request, as we're not fully synced yet. Quit immediately
5417 instead.
5418
5419 - The target has been resumed in the foreground
223ffa71 5420 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5421 packet, and we're blocked waiting for the stop reply, thus a
5422 Ctrl-C should be immediately sent to the target.
5423
5424 - We get a second Ctrl-C while still within the same serial read or
5425 write. In that case the serial is seemingly wedged --- offer to
5426 quit/disconnect.
5427
5428 - We see a second Ctrl-C without target response, after having
5429 previously interrupted the target. In that case the target/stub
5430 is probably wedged --- offer to quit/disconnect.
5431*/
5432
6b8edb51
PA
5433void
5434remote_target::remote_serial_quit_handler ()
048094ac
PA
5435{
5436 struct remote_state *rs = get_remote_state ();
5437
5438 if (check_quit_flag ())
5439 {
5440 /* If we're starting up, we're not fully synced yet. Quit
5441 immediately. */
5442 if (rs->starting_up)
5443 quit ();
5444 else if (rs->got_ctrlc_during_io)
5445 {
5446 if (query (_("The target is not responding to GDB commands.\n"
5447 "Stop debugging it? ")))
5b6d1e4f 5448 remote_unpush_and_throw (this);
048094ac
PA
5449 }
5450 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5451 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5452 interrupt_query ();
5453 /* All-stop protocol, and blocked waiting for stop reply. Send
5454 an interrupt request. */
223ffa71 5455 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5456 target_interrupt ();
048094ac
PA
5457 else
5458 rs->got_ctrlc_during_io = 1;
5459 }
5460}
5461
6b8edb51
PA
5462/* The remote_target that is current while the quit handler is
5463 overridden with remote_serial_quit_handler. */
5464static remote_target *curr_quit_handler_target;
5465
5466static void
5467remote_serial_quit_handler ()
5468{
5469 curr_quit_handler_target->remote_serial_quit_handler ();
5470}
5471
5b6d1e4f
PA
5472/* Remove the remote target from the target stack of each inferior
5473 that is using it. Upper targets depend on it so remove them
5474 first. */
78a095c3
JK
5475
5476static void
5b6d1e4f 5477remote_unpush_target (remote_target *target)
78a095c3 5478{
5b6d1e4f
PA
5479 /* We have to unpush the target from all inferiors, even those that
5480 aren't running. */
5481 scoped_restore_current_inferior restore_current_inferior;
5482
5483 for (inferior *inf : all_inferiors (target))
5484 {
5485 switch_to_inferior_no_thread (inf);
5486 pop_all_targets_at_and_above (process_stratum);
5487 generic_mourn_inferior ();
5488 }
78a095c3 5489}
be2a5f71 5490
048094ac 5491static void
5b6d1e4f 5492remote_unpush_and_throw (remote_target *target)
048094ac 5493{
5b6d1e4f 5494 remote_unpush_target (target);
048094ac
PA
5495 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5496}
5497
f6ac5f3d
PA
5498void
5499remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5500{
6b8edb51 5501 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5502
c906108c 5503 if (name == 0)
8a3fe4f8 5504 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5505 "serial device is attached to the remote system\n"
8a3fe4f8 5506 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5507
2d717e4f 5508 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5509 Ask this question first, before target_preopen has a chance to kill
5510 anything. */
5b6d1e4f 5511 if (curr_remote != NULL && !target_has_execution)
2d717e4f 5512 {
78a095c3
JK
5513 if (from_tty
5514 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5515 error (_("Still connected."));
5516 }
5517
78a095c3 5518 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5519 target_preopen (from_tty);
5520
ad9a8f3f 5521 remote_fileio_reset ();
1dd41f16
NS
5522 reopen_exec_file ();
5523 reread_symbols ();
5524
6b8edb51
PA
5525 remote_target *remote
5526 = (extended_p ? new extended_remote_target () : new remote_target ());
5527 target_ops_up target_holder (remote);
5528
5529 remote_state *rs = remote->get_remote_state ();
5530
5531 /* See FIXME above. */
5532 if (!target_async_permitted)
5533 rs->wait_forever_enabled_p = 1;
5534
5d93a237
TT
5535 rs->remote_desc = remote_serial_open (name);
5536 if (!rs->remote_desc)
c906108c
SS
5537 perror_with_name (name);
5538
5539 if (baud_rate != -1)
5540 {
5d93a237 5541 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5542 {
9b74d5d3
KB
5543 /* The requested speed could not be set. Error out to
5544 top level after closing remote_desc. Take care to
5545 set remote_desc to NULL to avoid closing remote_desc
5546 more than once. */
5d93a237
TT
5547 serial_close (rs->remote_desc);
5548 rs->remote_desc = NULL;
c906108c
SS
5549 perror_with_name (name);
5550 }
5551 }
5552
236af5e3 5553 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5554 serial_raw (rs->remote_desc);
c906108c
SS
5555
5556 /* If there is something sitting in the buffer we might take it as a
5557 response to a command, which would be bad. */
5d93a237 5558 serial_flush_input (rs->remote_desc);
c906108c
SS
5559
5560 if (from_tty)
5561 {
5562 puts_filtered ("Remote debugging using ");
5563 puts_filtered (name);
5564 puts_filtered ("\n");
5565 }
d9f719f1 5566
6b8edb51 5567 /* Switch to using the remote target now. */
dea57a62 5568 push_target (std::move (target_holder));
c906108c 5569
74531fed 5570 /* Register extra event sources in the event loop. */
6b8edb51 5571 rs->remote_async_inferior_event_token
74531fed 5572 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5573 remote);
5574 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5575
be2a5f71
DJ
5576 /* Reset the target state; these things will be queried either by
5577 remote_query_supported or as they are needed. */
ca4f7f8b 5578 reset_all_packet_configs_support ();
74531fed 5579 rs->cached_wait_status = 0;
be2a5f71 5580 rs->explicit_packet_size = 0;
a6f3e723 5581 rs->noack_mode = 0;
82f73884 5582 rs->extended = extended_p;
e24a49d8 5583 rs->waiting_for_stop_reply = 0;
3a29589a 5584 rs->ctrlc_pending_p = 0;
048094ac 5585 rs->got_ctrlc_during_io = 0;
802188a7 5586
47f8a51d
TT
5587 rs->general_thread = not_sent_ptid;
5588 rs->continue_thread = not_sent_ptid;
262e1174 5589 rs->remote_traceframe_number = -1;
c906108c 5590
3a00c802
PA
5591 rs->last_resume_exec_dir = EXEC_FORWARD;
5592
9d1f7ab2 5593 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5594 rs->use_threadinfo_query = 1;
5595 rs->use_threadextra_query = 1;
9d1f7ab2 5596
dd194f6b 5597 rs->readahead_cache.invalidate ();
80152258 5598
c6ebd6cf 5599 if (target_async_permitted)
92d1e331 5600 {
92d1e331
DJ
5601 /* FIXME: cagney/1999-09-23: During the initial connection it is
5602 assumed that the target is already ready and able to respond to
0df8b418 5603 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5604 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5605 around this. Eventually a mechanism that allows
92d1e331 5606 wait_for_inferior() to expect/get timeouts will be
23860348 5607 implemented. */
6b8edb51 5608 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5609 }
5610
23860348 5611 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5612 no_shared_libraries (NULL, 0);
f78f6cf1 5613
36918e70 5614 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5615 target (we'd otherwise be in an inconsistent state) and then
5616 propogate the error on up the exception chain. This ensures that
5617 the caller doesn't stumble along blindly assuming that the
5618 function succeeded. The CLI doesn't have this problem but other
5619 UI's, such as MI do.
36918e70
AC
5620
5621 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5622 this function should return an error indication letting the
ce2826aa 5623 caller restore the previous state. Unfortunately the command
36918e70
AC
5624 ``target remote'' is directly wired to this function making that
5625 impossible. On a positive note, the CLI side of this problem has
5626 been fixed - the function set_cmd_context() makes it possible for
5627 all the ``target ....'' commands to share a common callback
5628 function. See cli-dump.c. */
109c3e39 5629 {
2d717e4f 5630
a70b8144 5631 try
04bd08de 5632 {
6b8edb51 5633 remote->start_remote (from_tty, extended_p);
04bd08de 5634 }
230d2906 5635 catch (const gdb_exception &ex)
109c3e39 5636 {
c8d104ad
PA
5637 /* Pop the partially set up target - unless something else did
5638 already before throwing the exception. */
6b8edb51 5639 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5640 remote_unpush_target (remote);
eedc3f4f 5641 throw;
109c3e39
AC
5642 }
5643 }
c906108c 5644
6b8edb51 5645 remote_btrace_reset (rs);
f4abbc16 5646
c6ebd6cf 5647 if (target_async_permitted)
6b8edb51 5648 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5649}
5650
de0d863e
DB
5651/* Detach the specified process. */
5652
6b8edb51
PA
5653void
5654remote_target::remote_detach_pid (int pid)
de0d863e
DB
5655{
5656 struct remote_state *rs = get_remote_state ();
5657
4c7333b3
PA
5658 /* This should not be necessary, but the handling for D;PID in
5659 GDBserver versions prior to 8.2 incorrectly assumes that the
5660 selected process points to the same process we're detaching,
5661 leading to misbehavior (and possibly GDBserver crashing) when it
5662 does not. Since it's easy and cheap, work around it by forcing
5663 GDBserver to select GDB's current process. */
5664 set_general_process ();
5665
de0d863e 5666 if (remote_multi_process_p (rs))
8d64371b 5667 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5668 else
8d64371b 5669 strcpy (rs->buf.data (), "D");
de0d863e
DB
5670
5671 putpkt (rs->buf);
8d64371b 5672 getpkt (&rs->buf, 0);
de0d863e
DB
5673
5674 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5675 ;
5676 else if (rs->buf[0] == '\0')
5677 error (_("Remote doesn't know how to detach"));
5678 else
5679 error (_("Can't detach process."));
5680}
5681
5682/* This detaches a program to which we previously attached, using
5683 inferior_ptid to identify the process. After this is done, GDB
5684 can be used to debug some other program. We better not have left
5685 any breakpoints in the target program or it'll die when it hits
5686 one. */
c906108c 5687
6b8edb51 5688void
00431a78 5689remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5690{
e99b03dc 5691 int pid = inferior_ptid.pid ();
d01949b6 5692 struct remote_state *rs = get_remote_state ();
de0d863e 5693 int is_fork_parent;
c906108c 5694
2d717e4f
DJ
5695 if (!target_has_execution)
5696 error (_("No process to detach from."));
5697
0f48b757 5698 target_announce_detach (from_tty);
7cee1e54 5699
c906108c 5700 /* Tell the remote target to detach. */
de0d863e 5701 remote_detach_pid (pid);
82f73884 5702
8020350c 5703 /* Exit only if this is the only active inferior. */
5b6d1e4f 5704 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5705 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5706
5b6d1e4f 5707 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5708
de0d863e
DB
5709 /* Check to see if we are detaching a fork parent. Note that if we
5710 are detaching a fork child, tp == NULL. */
5711 is_fork_parent = (tp != NULL
5712 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5713
5714 /* If doing detach-on-fork, we don't mourn, because that will delete
5715 breakpoints that should be available for the followed inferior. */
5716 if (!is_fork_parent)
f67c0c91 5717 {
249b5733
PA
5718 /* Save the pid as a string before mourning, since that will
5719 unpush the remote target, and we need the string after. */
f2907e49 5720 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5721
5722 target_mourn_inferior (inferior_ptid);
5723 if (print_inferior_events)
5724 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5725 inf->num, infpid.c_str ());
5726 }
de0d863e
DB
5727 else
5728 {
5729 inferior_ptid = null_ptid;
00431a78 5730 detach_inferior (current_inferior ());
de0d863e 5731 }
2d717e4f
DJ
5732}
5733
f6ac5f3d
PA
5734void
5735remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5736{
00431a78 5737 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5738}
5739
f6ac5f3d
PA
5740void
5741extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5742{
00431a78 5743 remote_detach_1 (inf, from_tty);
de0d863e
DB
5744}
5745
5746/* Target follow-fork function for remote targets. On entry, and
5747 at return, the current inferior is the fork parent.
5748
5749 Note that although this is currently only used for extended-remote,
5750 it is named remote_follow_fork in anticipation of using it for the
5751 remote target as well. */
5752
f6ac5f3d
PA
5753int
5754remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5755{
5756 struct remote_state *rs = get_remote_state ();
c269dbdb 5757 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5758
c269dbdb
DB
5759 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5760 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5761 {
5762 /* When following the parent and detaching the child, we detach
5763 the child here. For the case of following the child and
5764 detaching the parent, the detach is done in the target-
5765 independent follow fork code in infrun.c. We can't use
5766 target_detach when detaching an unfollowed child because
5767 the client side doesn't know anything about the child. */
5768 if (detach_fork && !follow_child)
5769 {
5770 /* Detach the fork child. */
5771 ptid_t child_ptid;
5772 pid_t child_pid;
5773
5774 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5775 child_pid = child_ptid.pid ();
de0d863e
DB
5776
5777 remote_detach_pid (child_pid);
de0d863e
DB
5778 }
5779 }
5780 return 0;
c906108c
SS
5781}
5782
94585166
DB
5783/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5784 in the program space of the new inferior. On entry and at return the
5785 current inferior is the exec'ing inferior. INF is the new exec'd
5786 inferior, which may be the same as the exec'ing inferior unless
5787 follow-exec-mode is "new". */
5788
f6ac5f3d 5789void
4ca51187 5790remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5791{
5792 /* We know that this is a target file name, so if it has the "target:"
5793 prefix we strip it off before saving it in the program space. */
5794 if (is_target_filename (execd_pathname))
5795 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5796
5797 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5798}
5799
6ad8ae5c
DJ
5800/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5801
f6ac5f3d
PA
5802void
5803remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5804{
43ff13b4 5805 if (args)
2d717e4f 5806 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5807
8020350c 5808 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5809 target_mourn_inferior won't unpush, and
5810 remote_target::mourn_inferior won't unpush if there is more than
5811 one inferior left. */
5812 remote_unpush_target (this);
2d717e4f 5813
43ff13b4
JM
5814 if (from_tty)
5815 puts_filtered ("Ending remote debugging.\n");
5816}
5817
2d717e4f
DJ
5818/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5819 be chatty about it. */
5820
f6ac5f3d
PA
5821void
5822extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5823{
5824 struct remote_state *rs = get_remote_state ();
be86555c 5825 int pid;
96ef3384 5826 char *wait_status = NULL;
2d717e4f 5827
74164c56 5828 pid = parse_pid_to_attach (args);
2d717e4f 5829
74164c56
JK
5830 /* Remote PID can be freely equal to getpid, do not check it here the same
5831 way as in other targets. */
2d717e4f 5832
4082afcc 5833 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5834 error (_("This target does not support attaching to a process"));
5835
7cee1e54
PA
5836 if (from_tty)
5837 {
d9fa87f4 5838 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5839
5840 if (exec_file)
5841 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5842 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5843 else
5844 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5845 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5846 }
5847
8d64371b 5848 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5849 putpkt (rs->buf);
8d64371b 5850 getpkt (&rs->buf, 0);
2d717e4f 5851
4082afcc
PA
5852 switch (packet_ok (rs->buf,
5853 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5854 {
4082afcc 5855 case PACKET_OK:
6efcd9a8 5856 if (!target_is_non_stop_p ())
74531fed
PA
5857 {
5858 /* Save the reply for later. */
8d64371b
TT
5859 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5860 strcpy (wait_status, rs->buf.data ());
74531fed 5861 }
8d64371b 5862 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5863 error (_("Attaching to %s failed with: %s"),
a068643d 5864 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5865 rs->buf.data ());
4082afcc
PA
5866 break;
5867 case PACKET_UNKNOWN:
5868 error (_("This target does not support attaching to a process"));
5869 default:
50fa3001
SDJ
5870 error (_("Attaching to %s failed"),
5871 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5872 }
2d717e4f 5873
9ab8741a 5874 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5875
f2907e49 5876 inferior_ptid = ptid_t (pid);
79d7f229 5877
6efcd9a8 5878 if (target_is_non_stop_p ())
bad34192
PA
5879 {
5880 struct thread_info *thread;
79d7f229 5881
bad34192 5882 /* Get list of threads. */
f6ac5f3d 5883 update_thread_list ();
82f73884 5884
00431a78 5885 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5886 if (thread)
5887 inferior_ptid = thread->ptid;
5888 else
f2907e49 5889 inferior_ptid = ptid_t (pid);
bad34192
PA
5890
5891 /* Invalidate our notion of the remote current thread. */
47f8a51d 5892 record_currthread (rs, minus_one_ptid);
bad34192 5893 }
74531fed 5894 else
bad34192
PA
5895 {
5896 /* Now, if we have thread information, update inferior_ptid. */
5897 inferior_ptid = remote_current_thread (inferior_ptid);
5898
5899 /* Add the main thread to the thread list. */
5b6d1e4f 5900 thread_info *thr = add_thread_silent (this, inferior_ptid);
00aecdcf
PA
5901 /* Don't consider the thread stopped until we've processed the
5902 saved stop reply. */
5b6d1e4f 5903 set_executing (this, thr->ptid, true);
bad34192 5904 }
c0a2216e 5905
96ef3384
UW
5906 /* Next, if the target can specify a description, read it. We do
5907 this before anything involving memory or registers. */
5908 target_find_description ();
5909
6efcd9a8 5910 if (!target_is_non_stop_p ())
74531fed
PA
5911 {
5912 /* Use the previously fetched status. */
5913 gdb_assert (wait_status != NULL);
5914
5915 if (target_can_async_p ())
5916 {
722247f1 5917 struct notif_event *reply
6b8edb51 5918 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5919
722247f1 5920 push_stop_reply ((struct stop_reply *) reply);
74531fed 5921
6a3753b3 5922 target_async (1);
74531fed
PA
5923 }
5924 else
5925 {
5926 gdb_assert (wait_status != NULL);
8d64371b 5927 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5928 rs->cached_wait_status = 1;
5929 }
5930 }
5931 else
5932 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5933}
5934
b9c1d481
AS
5935/* Implementation of the to_post_attach method. */
5936
f6ac5f3d
PA
5937void
5938extended_remote_target::post_attach (int pid)
b9c1d481 5939{
6efcd9a8
PA
5940 /* Get text, data & bss offsets. */
5941 get_offsets ();
5942
b9c1d481
AS
5943 /* In certain cases GDB might not have had the chance to start
5944 symbol lookup up until now. This could happen if the debugged
5945 binary is not using shared libraries, the vsyscall page is not
5946 present (on Linux) and the binary itself hadn't changed since the
5947 debugging process was started. */
5948 if (symfile_objfile != NULL)
5949 remote_check_symbols();
5950}
5951
c906108c 5952\f
506fb367
DJ
5953/* Check for the availability of vCont. This function should also check
5954 the response. */
c906108c 5955
6b8edb51
PA
5956void
5957remote_target::remote_vcont_probe ()
c906108c 5958{
6b8edb51 5959 remote_state *rs = get_remote_state ();
2e9f7625 5960 char *buf;
6d820c5c 5961
8d64371b 5962 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5963 putpkt (rs->buf);
8d64371b
TT
5964 getpkt (&rs->buf, 0);
5965 buf = rs->buf.data ();
c906108c 5966
506fb367 5967 /* Make sure that the features we assume are supported. */
61012eef 5968 if (startswith (buf, "vCont"))
506fb367
DJ
5969 {
5970 char *p = &buf[5];
750ce8d1 5971 int support_c, support_C;
506fb367 5972
750ce8d1
YQ
5973 rs->supports_vCont.s = 0;
5974 rs->supports_vCont.S = 0;
506fb367
DJ
5975 support_c = 0;
5976 support_C = 0;
d458bd84 5977 rs->supports_vCont.t = 0;
c1e36e3e 5978 rs->supports_vCont.r = 0;
506fb367
DJ
5979 while (p && *p == ';')
5980 {
5981 p++;
5982 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5983 rs->supports_vCont.s = 1;
506fb367 5984 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5985 rs->supports_vCont.S = 1;
506fb367
DJ
5986 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5987 support_c = 1;
5988 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5989 support_C = 1;
74531fed 5990 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5991 rs->supports_vCont.t = 1;
c1e36e3e
PA
5992 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5993 rs->supports_vCont.r = 1;
506fb367
DJ
5994
5995 p = strchr (p, ';');
5996 }
c906108c 5997
750ce8d1
YQ
5998 /* If c, and C are not all supported, we can't use vCont. Clearing
5999 BUF will make packet_ok disable the packet. */
6000 if (!support_c || !support_C)
506fb367
DJ
6001 buf[0] = 0;
6002 }
c906108c 6003
8d64371b 6004 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6005 rs->supports_vCont_probed = true;
506fb367 6006}
c906108c 6007
0d8f58ca
PA
6008/* Helper function for building "vCont" resumptions. Write a
6009 resumption to P. ENDP points to one-passed-the-end of the buffer
6010 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6011 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6012 resumed thread should be single-stepped and/or signalled. If PTID
6013 equals minus_one_ptid, then all threads are resumed; if PTID
6014 represents a process, then all threads of the process are resumed;
6015 the thread to be stepped and/or signalled is given in the global
6016 INFERIOR_PTID. */
6017
6b8edb51
PA
6018char *
6019remote_target::append_resumption (char *p, char *endp,
6020 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6021{
6022 struct remote_state *rs = get_remote_state ();
6023
a493e3e2 6024 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6025 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6026 else if (step
6027 /* GDB is willing to range step. */
6028 && use_range_stepping
6029 /* Target supports range stepping. */
6030 && rs->supports_vCont.r
6031 /* We don't currently support range stepping multiple
6032 threads with a wildcard (though the protocol allows it,
6033 so stubs shouldn't make an active effort to forbid
6034 it). */
0e998d96 6035 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6036 {
6037 struct thread_info *tp;
6038
d7e15655 6039 if (ptid == minus_one_ptid)
c1e36e3e
PA
6040 {
6041 /* If we don't know about the target thread's tid, then
6042 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6043 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6044 }
6045 else
5b6d1e4f 6046 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6047 gdb_assert (tp != NULL);
6048
6049 if (tp->control.may_range_step)
6050 {
6051 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6052
6053 p += xsnprintf (p, endp - p, ";r%s,%s",
6054 phex_nz (tp->control.step_range_start,
6055 addr_size),
6056 phex_nz (tp->control.step_range_end,
6057 addr_size));
6058 }
6059 else
6060 p += xsnprintf (p, endp - p, ";s");
6061 }
0d8f58ca
PA
6062 else if (step)
6063 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6064 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6065 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6066 else
6067 p += xsnprintf (p, endp - p, ";c");
6068
0e998d96 6069 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6070 {
6071 ptid_t nptid;
6072
6073 /* All (-1) threads of process. */
e99b03dc 6074 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6075
6076 p += xsnprintf (p, endp - p, ":");
6077 p = write_ptid (p, endp, nptid);
6078 }
d7e15655 6079 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6080 {
6081 p += xsnprintf (p, endp - p, ":");
6082 p = write_ptid (p, endp, ptid);
6083 }
6084
6085 return p;
6086}
6087
799a2abe
PA
6088/* Clear the thread's private info on resume. */
6089
6090static void
6091resume_clear_thread_private_info (struct thread_info *thread)
6092{
6093 if (thread->priv != NULL)
6094 {
7aabaf9d
SM
6095 remote_thread_info *priv = get_remote_thread_info (thread);
6096
6097 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6098 priv->watch_data_address = 0;
799a2abe
PA
6099 }
6100}
6101
e5ef252a
PA
6102/* Append a vCont continue-with-signal action for threads that have a
6103 non-zero stop signal. */
6104
6b8edb51
PA
6105char *
6106remote_target::append_pending_thread_resumptions (char *p, char *endp,
6107 ptid_t ptid)
e5ef252a 6108{
5b6d1e4f 6109 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6110 if (inferior_ptid != thread->ptid
70509625 6111 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6112 {
6113 p = append_resumption (p, endp, thread->ptid,
6114 0, thread->suspend.stop_signal);
6115 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6116 resume_clear_thread_private_info (thread);
e5ef252a
PA
6117 }
6118
6119 return p;
6120}
6121
7b68ffbb
PA
6122/* Set the target running, using the packets that use Hc
6123 (c/s/C/S). */
6124
6b8edb51
PA
6125void
6126remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6127 gdb_signal siggnal)
7b68ffbb
PA
6128{
6129 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6130 char *buf;
6131
6132 rs->last_sent_signal = siggnal;
6133 rs->last_sent_step = step;
6134
6135 /* The c/s/C/S resume packets use Hc, so set the continue
6136 thread. */
d7e15655 6137 if (ptid == minus_one_ptid)
7b68ffbb
PA
6138 set_continue_thread (any_thread_ptid);
6139 else
6140 set_continue_thread (ptid);
6141
5b6d1e4f 6142 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6143 resume_clear_thread_private_info (thread);
6144
8d64371b 6145 buf = rs->buf.data ();
6b8edb51 6146 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6147 {
6148 /* We don't pass signals to the target in reverse exec mode. */
6149 if (info_verbose && siggnal != GDB_SIGNAL_0)
6150 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6151 siggnal);
6152
6153 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6154 error (_("Remote reverse-step not supported."));
6155 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6156 error (_("Remote reverse-continue not supported."));
6157
6158 strcpy (buf, step ? "bs" : "bc");
6159 }
6160 else if (siggnal != GDB_SIGNAL_0)
6161 {
6162 buf[0] = step ? 'S' : 'C';
6163 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6164 buf[2] = tohex (((int) siggnal) & 0xf);
6165 buf[3] = '\0';
6166 }
6167 else
6168 strcpy (buf, step ? "s" : "c");
6169
6170 putpkt (buf);
6171}
6172
506fb367
DJ
6173/* Resume the remote inferior by using a "vCont" packet. The thread
6174 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6175 resumed thread should be single-stepped and/or signalled. If PTID
6176 equals minus_one_ptid, then all threads are resumed; the thread to
6177 be stepped and/or signalled is given in the global INFERIOR_PTID.
6178 This function returns non-zero iff it resumes the inferior.
44eaed12 6179
7b68ffbb
PA
6180 This function issues a strict subset of all possible vCont commands
6181 at the moment. */
44eaed12 6182
6b8edb51
PA
6183int
6184remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6185 enum gdb_signal siggnal)
506fb367
DJ
6186{
6187 struct remote_state *rs = get_remote_state ();
82f73884
PA
6188 char *p;
6189 char *endp;
44eaed12 6190
7b68ffbb 6191 /* No reverse execution actions defined for vCont. */
6b8edb51 6192 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6193 return 0;
6194
4082afcc 6195 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6196 remote_vcont_probe ();
44eaed12 6197
4082afcc 6198 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6199 return 0;
44eaed12 6200
8d64371b
TT
6201 p = rs->buf.data ();
6202 endp = p + get_remote_packet_size ();
82f73884 6203
506fb367
DJ
6204 /* If we could generate a wider range of packets, we'd have to worry
6205 about overflowing BUF. Should there be a generic
6206 "multi-part-packet" packet? */
6207
0d8f58ca
PA
6208 p += xsnprintf (p, endp - p, "vCont");
6209
d7e15655 6210 if (ptid == magic_null_ptid)
c906108c 6211 {
79d7f229
PA
6212 /* MAGIC_NULL_PTID means that we don't have any active threads,
6213 so we don't have any TID numbers the inferior will
6214 understand. Make sure to only send forms that do not specify
6215 a TID. */
a9cbf802 6216 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6217 }
d7e15655 6218 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6219 {
0d8f58ca
PA
6220 /* Resume all threads (of all processes, or of a single
6221 process), with preference for INFERIOR_PTID. This assumes
6222 inferior_ptid belongs to the set of all threads we are about
6223 to resume. */
a493e3e2 6224 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6225 {
0d8f58ca
PA
6226 /* Step inferior_ptid, with or without signal. */
6227 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6228 }
0d8f58ca 6229
e5ef252a
PA
6230 /* Also pass down any pending signaled resumption for other
6231 threads not the current. */
6232 p = append_pending_thread_resumptions (p, endp, ptid);
6233
0d8f58ca 6234 /* And continue others without a signal. */
a493e3e2 6235 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6236 }
6237 else
506fb367
DJ
6238 {
6239 /* Scheduler locking; resume only PTID. */
a9cbf802 6240 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6241 }
c906108c 6242
8d64371b 6243 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6244 putpkt (rs->buf);
506fb367 6245
6efcd9a8 6246 if (target_is_non_stop_p ())
74531fed
PA
6247 {
6248 /* In non-stop, the stub replies to vCont with "OK". The stop
6249 reply will be reported asynchronously by means of a `%Stop'
6250 notification. */
8d64371b
TT
6251 getpkt (&rs->buf, 0);
6252 if (strcmp (rs->buf.data (), "OK") != 0)
6253 error (_("Unexpected vCont reply in non-stop mode: %s"),
6254 rs->buf.data ());
74531fed
PA
6255 }
6256
506fb367 6257 return 1;
c906108c 6258}
43ff13b4 6259
506fb367
DJ
6260/* Tell the remote machine to resume. */
6261
f6ac5f3d
PA
6262void
6263remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6264{
d01949b6 6265 struct remote_state *rs = get_remote_state ();
43ff13b4 6266
85ad3aaf
PA
6267 /* When connected in non-stop mode, the core resumes threads
6268 individually. Resuming remote threads directly in target_resume
6269 would thus result in sending one packet per thread. Instead, to
6270 minimize roundtrip latency, here we just store the resume
6271 request; the actual remote resumption will be done in
6272 target_commit_resume / remote_commit_resume, where we'll be able
6273 to do vCont action coalescing. */
f6ac5f3d 6274 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6275 {
7aabaf9d 6276 remote_thread_info *remote_thr;
85ad3aaf 6277
d7e15655 6278 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6279 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6280 else
5b6d1e4f 6281 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6282
85ad3aaf
PA
6283 remote_thr->last_resume_step = step;
6284 remote_thr->last_resume_sig = siggnal;
6285 return;
6286 }
6287
722247f1
YQ
6288 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6289 (explained in remote-notif.c:handle_notification) so
6290 remote_notif_process is not called. We need find a place where
6291 it is safe to start a 'vNotif' sequence. It is good to do it
6292 before resuming inferior, because inferior was stopped and no RSP
6293 traffic at that moment. */
6efcd9a8 6294 if (!target_is_non_stop_p ())
5965e028 6295 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6296
f6ac5f3d 6297 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6298
7b68ffbb
PA
6299 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6300 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6301 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6302
2acceee2 6303 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6304 with the event loop. NOTE: this is the one place where all the
6305 execution commands end up. We could alternatively do this in each
23860348 6306 of the execution commands in infcmd.c. */
2acceee2
JM
6307 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6308 into infcmd.c in order to allow inferior function calls to work
23860348 6309 NOT asynchronously. */
362646f5 6310 if (target_can_async_p ())
6a3753b3 6311 target_async (1);
e24a49d8
PA
6312
6313 /* We've just told the target to resume. The remote server will
6314 wait for the inferior to stop, and then send a stop reply. In
6315 the mean time, we can't start another command/query ourselves
74531fed
PA
6316 because the stub wouldn't be ready to process it. This applies
6317 only to the base all-stop protocol, however. In non-stop (which
6318 only supports vCont), the stub replies with an "OK", and is
6319 immediate able to process further serial input. */
6efcd9a8 6320 if (!target_is_non_stop_p ())
74531fed 6321 rs->waiting_for_stop_reply = 1;
43ff13b4 6322}
85ad3aaf 6323
85ad3aaf
PA
6324static int is_pending_fork_parent_thread (struct thread_info *thread);
6325
6326/* Private per-inferior info for target remote processes. */
6327
089354bb 6328struct remote_inferior : public private_inferior
85ad3aaf
PA
6329{
6330 /* Whether we can send a wildcard vCont for this process. */
089354bb 6331 bool may_wildcard_vcont = true;
85ad3aaf
PA
6332};
6333
089354bb
SM
6334/* Get the remote private inferior data associated to INF. */
6335
6336static remote_inferior *
6337get_remote_inferior (inferior *inf)
6338{
6339 if (inf->priv == NULL)
6340 inf->priv.reset (new remote_inferior);
6341
6342 return static_cast<remote_inferior *> (inf->priv.get ());
6343}
6344
f5db4863 6345/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6346 outgoing packet buffer. This is used to send multiple vCont
6347 packets if we have more actions than would fit a single packet. */
6348
f5db4863 6349class vcont_builder
85ad3aaf 6350{
f5db4863 6351public:
6b8edb51
PA
6352 explicit vcont_builder (remote_target *remote)
6353 : m_remote (remote)
f5db4863
PA
6354 {
6355 restart ();
6356 }
6357
6358 void flush ();
6359 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6360
6361private:
6362 void restart ();
6363
6b8edb51
PA
6364 /* The remote target. */
6365 remote_target *m_remote;
6366
85ad3aaf
PA
6367 /* Pointer to the first action. P points here if no action has been
6368 appended yet. */
f5db4863 6369 char *m_first_action;
85ad3aaf
PA
6370
6371 /* Where the next action will be appended. */
f5db4863 6372 char *m_p;
85ad3aaf
PA
6373
6374 /* The end of the buffer. Must never write past this. */
f5db4863 6375 char *m_endp;
85ad3aaf
PA
6376};
6377
6378/* Prepare the outgoing buffer for a new vCont packet. */
6379
f5db4863
PA
6380void
6381vcont_builder::restart ()
85ad3aaf 6382{
6b8edb51 6383 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6384
8d64371b
TT
6385 m_p = rs->buf.data ();
6386 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6387 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6388 m_first_action = m_p;
85ad3aaf
PA
6389}
6390
6391/* If the vCont packet being built has any action, send it to the
6392 remote end. */
6393
f5db4863
PA
6394void
6395vcont_builder::flush ()
85ad3aaf
PA
6396{
6397 struct remote_state *rs;
6398
f5db4863 6399 if (m_p == m_first_action)
85ad3aaf
PA
6400 return;
6401
6b8edb51
PA
6402 rs = m_remote->get_remote_state ();
6403 m_remote->putpkt (rs->buf);
8d64371b
TT
6404 m_remote->getpkt (&rs->buf, 0);
6405 if (strcmp (rs->buf.data (), "OK") != 0)
6406 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6407}
6408
6409/* The largest action is range-stepping, with its two addresses. This
6410 is more than sufficient. If a new, bigger action is created, it'll
6411 quickly trigger a failed assertion in append_resumption (and we'll
6412 just bump this). */
6413#define MAX_ACTION_SIZE 200
6414
6415/* Append a new vCont action in the outgoing packet being built. If
6416 the action doesn't fit the packet along with previous actions, push
6417 what we've got so far to the remote end and start over a new vCont
6418 packet (with the new action). */
6419
f5db4863
PA
6420void
6421vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6422{
6423 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6424
6b8edb51
PA
6425 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6426 ptid, step, siggnal);
85ad3aaf
PA
6427
6428 /* Check whether this new action would fit in the vCont packet along
6429 with previous actions. If not, send what we've got so far and
6430 start a new vCont packet. */
f5db4863
PA
6431 size_t rsize = endp - buf;
6432 if (rsize > m_endp - m_p)
85ad3aaf 6433 {
f5db4863
PA
6434 flush ();
6435 restart ();
85ad3aaf
PA
6436
6437 /* Should now fit. */
f5db4863 6438 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6439 }
6440
f5db4863
PA
6441 memcpy (m_p, buf, rsize);
6442 m_p += rsize;
6443 *m_p = '\0';
85ad3aaf
PA
6444}
6445
6446/* to_commit_resume implementation. */
6447
f6ac5f3d
PA
6448void
6449remote_target::commit_resume ()
85ad3aaf 6450{
85ad3aaf
PA
6451 int any_process_wildcard;
6452 int may_global_wildcard_vcont;
85ad3aaf
PA
6453
6454 /* If connected in all-stop mode, we'd send the remote resume
6455 request directly from remote_resume. Likewise if
6456 reverse-debugging, as there are no defined vCont actions for
6457 reverse execution. */
f6ac5f3d 6458 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6459 return;
6460
6461 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6462 instead of resuming all threads of each process individually.
6463 However, if any thread of a process must remain halted, we can't
6464 send wildcard resumes and must send one action per thread.
6465
6466 Care must be taken to not resume threads/processes the server
6467 side already told us are stopped, but the core doesn't know about
6468 yet, because the events are still in the vStopped notification
6469 queue. For example:
6470
6471 #1 => vCont s:p1.1;c
6472 #2 <= OK
6473 #3 <= %Stopped T05 p1.1
6474 #4 => vStopped
6475 #5 <= T05 p1.2
6476 #6 => vStopped
6477 #7 <= OK
6478 #8 (infrun handles the stop for p1.1 and continues stepping)
6479 #9 => vCont s:p1.1;c
6480
6481 The last vCont above would resume thread p1.2 by mistake, because
6482 the server has no idea that the event for p1.2 had not been
6483 handled yet.
6484
6485 The server side must similarly ignore resume actions for the
6486 thread that has a pending %Stopped notification (and any other
6487 threads with events pending), until GDB acks the notification
6488 with vStopped. Otherwise, e.g., the following case is
6489 mishandled:
6490
6491 #1 => g (or any other packet)
6492 #2 <= [registers]
6493 #3 <= %Stopped T05 p1.2
6494 #4 => vCont s:p1.1;c
6495 #5 <= OK
6496
6497 Above, the server must not resume thread p1.2. GDB can't know
6498 that p1.2 stopped until it acks the %Stopped notification, and
6499 since from GDB's perspective all threads should be running, it
6500 sends a "c" action.
6501
6502 Finally, special care must also be given to handling fork/vfork
6503 events. A (v)fork event actually tells us that two processes
6504 stopped -- the parent and the child. Until we follow the fork,
6505 we must not resume the child. Therefore, if we have a pending
6506 fork follow, we must not send a global wildcard resume action
6507 (vCont;c). We can still send process-wide wildcards though. */
6508
6509 /* Start by assuming a global wildcard (vCont;c) is possible. */
6510 may_global_wildcard_vcont = 1;
6511
6512 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6513 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6514 {
089354bb
SM
6515 remote_inferior *priv = get_remote_inferior (inf);
6516
6517 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6518 }
6519
6520 /* Check for any pending events (not reported or processed yet) and
6521 disable process and global wildcard resumes appropriately. */
6522 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6523
5b6d1e4f 6524 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf
PA
6525 {
6526 /* If a thread of a process is not meant to be resumed, then we
6527 can't wildcard that process. */
6528 if (!tp->executing)
6529 {
089354bb 6530 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6531
6532 /* And if we can't wildcard a process, we can't wildcard
6533 everything either. */
6534 may_global_wildcard_vcont = 0;
6535 continue;
6536 }
6537
6538 /* If a thread is the parent of an unfollowed fork, then we
6539 can't do a global wildcard, as that would resume the fork
6540 child. */
6541 if (is_pending_fork_parent_thread (tp))
6542 may_global_wildcard_vcont = 0;
6543 }
6544
6545 /* Now let's build the vCont packet(s). Actions must be appended
6546 from narrower to wider scopes (thread -> process -> global). If
6547 we end up with too many actions for a single packet vcont_builder
6548 flushes the current vCont packet to the remote side and starts a
6549 new one. */
6b8edb51 6550 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6551
6552 /* Threads first. */
5b6d1e4f 6553 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6554 {
7aabaf9d 6555 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6556
6557 if (!tp->executing || remote_thr->vcont_resumed)
6558 continue;
6559
6560 gdb_assert (!thread_is_in_step_over_chain (tp));
6561
6562 if (!remote_thr->last_resume_step
6563 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6564 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6565 {
6566 /* We'll send a wildcard resume instead. */
6567 remote_thr->vcont_resumed = 1;
6568 continue;
6569 }
6570
f5db4863 6571 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6572 remote_thr->last_resume_step,
6573 remote_thr->last_resume_sig);
6574 remote_thr->vcont_resumed = 1;
6575 }
6576
6577 /* Now check whether we can send any process-wide wildcard. This is
6578 to avoid sending a global wildcard in the case nothing is
6579 supposed to be resumed. */
6580 any_process_wildcard = 0;
6581
5b6d1e4f 6582 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6583 {
089354bb 6584 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6585 {
6586 any_process_wildcard = 1;
6587 break;
6588 }
6589 }
6590
6591 if (any_process_wildcard)
6592 {
6593 /* If all processes are wildcard-able, then send a single "c"
6594 action, otherwise, send an "all (-1) threads of process"
6595 continue action for each running process, if any. */
6596 if (may_global_wildcard_vcont)
6597 {
f5db4863
PA
6598 vcont_builder.push_action (minus_one_ptid,
6599 false, GDB_SIGNAL_0);
85ad3aaf
PA
6600 }
6601 else
6602 {
5b6d1e4f 6603 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6604 {
089354bb 6605 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6606 {
f2907e49 6607 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6608 false, GDB_SIGNAL_0);
85ad3aaf
PA
6609 }
6610 }
6611 }
6612 }
6613
f5db4863 6614 vcont_builder.flush ();
85ad3aaf
PA
6615}
6616
c906108c 6617\f
43ff13b4 6618
74531fed
PA
6619/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6620 thread, all threads of a remote process, or all threads of all
6621 processes. */
6622
6b8edb51
PA
6623void
6624remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6625{
6626 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6627 char *p = rs->buf.data ();
6628 char *endp = p + get_remote_packet_size ();
74531fed 6629
5b6d1e4f
PA
6630 /* FIXME: This supports_vCont_probed check is a workaround until
6631 packet_support is per-connection. */
6632 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6633 || !rs->supports_vCont_probed)
6b8edb51 6634 remote_vcont_probe ();
74531fed 6635
d458bd84 6636 if (!rs->supports_vCont.t)
74531fed
PA
6637 error (_("Remote server does not support stopping threads"));
6638
d7e15655 6639 if (ptid == minus_one_ptid
0e998d96 6640 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6641 p += xsnprintf (p, endp - p, "vCont;t");
6642 else
6643 {
6644 ptid_t nptid;
6645
74531fed
PA
6646 p += xsnprintf (p, endp - p, "vCont;t:");
6647
0e998d96 6648 if (ptid.is_pid ())
74531fed 6649 /* All (-1) threads of process. */
e99b03dc 6650 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6651 else
6652 {
6653 /* Small optimization: if we already have a stop reply for
6654 this thread, no use in telling the stub we want this
6655 stopped. */
6656 if (peek_stop_reply (ptid))
6657 return;
6658
6659 nptid = ptid;
6660 }
6661
a9cbf802 6662 write_ptid (p, endp, nptid);
74531fed
PA
6663 }
6664
6665 /* In non-stop, we get an immediate OK reply. The stop reply will
6666 come in asynchronously by notification. */
6667 putpkt (rs->buf);
8d64371b
TT
6668 getpkt (&rs->buf, 0);
6669 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6670 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6671 rs->buf.data ());
74531fed
PA
6672}
6673
bfedc46a
PA
6674/* All-stop version of target_interrupt. Sends a break or a ^C to
6675 interrupt the remote target. It is undefined which thread of which
6676 process reports the interrupt. */
74531fed 6677
6b8edb51
PA
6678void
6679remote_target::remote_interrupt_as ()
74531fed
PA
6680{
6681 struct remote_state *rs = get_remote_state ();
6682
3a29589a
DJ
6683 rs->ctrlc_pending_p = 1;
6684
74531fed
PA
6685 /* If the inferior is stopped already, but the core didn't know
6686 about it yet, just ignore the request. The cached wait status
6687 will be collected in remote_wait. */
6688 if (rs->cached_wait_status)
6689 return;
6690
9a7071a8
JB
6691 /* Send interrupt_sequence to remote target. */
6692 send_interrupt_sequence ();
74531fed
PA
6693}
6694
de979965
PA
6695/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6696 the remote target. It is undefined which thread of which process
e42de8c7
PA
6697 reports the interrupt. Throws an error if the packet is not
6698 supported by the server. */
de979965 6699
6b8edb51
PA
6700void
6701remote_target::remote_interrupt_ns ()
de979965
PA
6702{
6703 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6704 char *p = rs->buf.data ();
6705 char *endp = p + get_remote_packet_size ();
de979965
PA
6706
6707 xsnprintf (p, endp - p, "vCtrlC");
6708
6709 /* In non-stop, we get an immediate OK reply. The stop reply will
6710 come in asynchronously by notification. */
6711 putpkt (rs->buf);
8d64371b 6712 getpkt (&rs->buf, 0);
de979965
PA
6713
6714 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6715 {
6716 case PACKET_OK:
6717 break;
6718 case PACKET_UNKNOWN:
e42de8c7 6719 error (_("No support for interrupting the remote target."));
de979965 6720 case PACKET_ERROR:
8d64371b 6721 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6722 }
de979965
PA
6723}
6724
bfedc46a 6725/* Implement the to_stop function for the remote targets. */
74531fed 6726
f6ac5f3d
PA
6727void
6728remote_target::stop (ptid_t ptid)
c906108c 6729{
7a292a7a 6730 if (remote_debug)
0f71a2f6 6731 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6732
6efcd9a8 6733 if (target_is_non_stop_p ())
74531fed 6734 remote_stop_ns (ptid);
c906108c 6735 else
bfedc46a
PA
6736 {
6737 /* We don't currently have a way to transparently pause the
6738 remote target in all-stop mode. Interrupt it instead. */
de979965 6739 remote_interrupt_as ();
bfedc46a
PA
6740 }
6741}
6742
6743/* Implement the to_interrupt function for the remote targets. */
6744
f6ac5f3d
PA
6745void
6746remote_target::interrupt ()
bfedc46a
PA
6747{
6748 if (remote_debug)
6749 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6750
e42de8c7
PA
6751 if (target_is_non_stop_p ())
6752 remote_interrupt_ns ();
bfedc46a 6753 else
e42de8c7 6754 remote_interrupt_as ();
c906108c
SS
6755}
6756
93692b58
PA
6757/* Implement the to_pass_ctrlc function for the remote targets. */
6758
f6ac5f3d
PA
6759void
6760remote_target::pass_ctrlc ()
93692b58
PA
6761{
6762 struct remote_state *rs = get_remote_state ();
6763
6764 if (remote_debug)
6765 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6766
6767 /* If we're starting up, we're not fully synced yet. Quit
6768 immediately. */
6769 if (rs->starting_up)
6770 quit ();
6771 /* If ^C has already been sent once, offer to disconnect. */
6772 else if (rs->ctrlc_pending_p)
6773 interrupt_query ();
6774 else
e671cd59 6775 target_interrupt ();
93692b58
PA
6776}
6777
c906108c
SS
6778/* Ask the user what to do when an interrupt is received. */
6779
6b8edb51
PA
6780void
6781remote_target::interrupt_query ()
c906108c 6782{
abc56d60 6783 struct remote_state *rs = get_remote_state ();
c906108c 6784
abc56d60 6785 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6786 {
abc56d60
PA
6787 if (query (_("The target is not responding to interrupt requests.\n"
6788 "Stop debugging it? ")))
74531fed 6789 {
5b6d1e4f 6790 remote_unpush_target (this);
abc56d60 6791 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6792 }
6793 }
abc56d60
PA
6794 else
6795 {
6796 if (query (_("Interrupted while waiting for the program.\n"
6797 "Give up waiting? ")))
6798 quit ();
6799 }
c906108c
SS
6800}
6801
6426a772
JM
6802/* Enable/disable target terminal ownership. Most targets can use
6803 terminal groups to control terminal ownership. Remote targets are
6804 different in that explicit transfer of ownership to/from GDB/target
23860348 6805 is required. */
6426a772 6806
f6ac5f3d
PA
6807void
6808remote_target::terminal_inferior ()
6426a772 6809{
6426a772
JM
6810 /* NOTE: At this point we could also register our selves as the
6811 recipient of all input. Any characters typed could then be
23860348 6812 passed on down to the target. */
6426a772
JM
6813}
6814
f6ac5f3d
PA
6815void
6816remote_target::terminal_ours ()
6426a772 6817{
6426a772
JM
6818}
6819
176a6961 6820static void
05be00a8 6821remote_console_output (const char *msg)
c906108c 6822{
05be00a8 6823 const char *p;
c906108c 6824
c5aa993b 6825 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6826 {
6827 char tb[2];
6828 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6829
c906108c
SS
6830 tb[0] = c;
6831 tb[1] = 0;
43ff13b4 6832 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6833 }
00db5b94
PA
6834 gdb_flush (gdb_stdtarg);
6835}
74531fed 6836
32603266 6837struct stop_reply : public notif_event
74531fed 6838{
32603266 6839 ~stop_reply ();
74531fed 6840
722247f1 6841 /* The identifier of the thread about this event */
74531fed
PA
6842 ptid_t ptid;
6843
340e3c99 6844 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6845 connection, represented by a remote_state object, is closed,
6846 all the associated stop_reply events should be released. */
6847 struct remote_state *rs;
6848
74531fed
PA
6849 struct target_waitstatus ws;
6850
5cd63fda
PA
6851 /* The architecture associated with the expedited registers. */
6852 gdbarch *arch;
6853
15148d6a
PA
6854 /* Expedited registers. This makes remote debugging a bit more
6855 efficient for those targets that provide critical registers as
6856 part of their normal status mechanism (as another roundtrip to
6857 fetch them is avoided). */
32603266 6858 std::vector<cached_reg_t> regcache;
74531fed 6859
f7e6eed5
PA
6860 enum target_stop_reason stop_reason;
6861
74531fed
PA
6862 CORE_ADDR watch_data_address;
6863
dc146f7c 6864 int core;
32603266 6865};
c906108c 6866
221e1a37
PA
6867/* Return the length of the stop reply queue. */
6868
6b8edb51
PA
6869int
6870remote_target::stop_reply_queue_length ()
221e1a37 6871{
6b8edb51 6872 remote_state *rs = get_remote_state ();
953edf2b 6873 return rs->stop_reply_queue.size ();
221e1a37
PA
6874}
6875
cb8c24b6 6876static void
6b8edb51 6877remote_notif_stop_parse (remote_target *remote,
bb277751 6878 struct notif_client *self, const char *buf,
722247f1
YQ
6879 struct notif_event *event)
6880{
6b8edb51 6881 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6882}
6883
6884static void
6b8edb51 6885remote_notif_stop_ack (remote_target *remote,
bb277751 6886 struct notif_client *self, const char *buf,
722247f1
YQ
6887 struct notif_event *event)
6888{
6889 struct stop_reply *stop_reply = (struct stop_reply *) event;
6890
6891 /* acknowledge */
6b8edb51 6892 putpkt (remote, self->ack_command);
722247f1
YQ
6893
6894 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6895 {
722247f1
YQ
6896 /* We got an unknown stop reply. */
6897 error (_("Unknown stop reply"));
6b8edb51 6898 }
722247f1 6899
6b8edb51 6900 remote->push_stop_reply (stop_reply);
722247f1
YQ
6901}
6902
6903static int
6b8edb51
PA
6904remote_notif_stop_can_get_pending_events (remote_target *remote,
6905 struct notif_client *self)
722247f1
YQ
6906{
6907 /* We can't get pending events in remote_notif_process for
6908 notification stop, and we have to do this in remote_wait_ns
6909 instead. If we fetch all queued events from stub, remote stub
6910 may exit and we have no chance to process them back in
6911 remote_wait_ns. */
6b8edb51
PA
6912 remote_state *rs = remote->get_remote_state ();
6913 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6914 return 0;
6915}
6916
32603266 6917stop_reply::~stop_reply ()
722247f1 6918{
32603266
TT
6919 for (cached_reg_t &reg : regcache)
6920 xfree (reg.data);
722247f1
YQ
6921}
6922
32603266
TT
6923static notif_event_up
6924remote_notif_stop_alloc_reply ()
722247f1 6925{
32603266 6926 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6927}
6928
6929/* A client of notification Stop. */
6930
6931struct notif_client notif_client_stop =
6932{
6933 "Stop",
6934 "vStopped",
6935 remote_notif_stop_parse,
6936 remote_notif_stop_ack,
6937 remote_notif_stop_can_get_pending_events,
6938 remote_notif_stop_alloc_reply,
f48ff2a7 6939 REMOTE_NOTIF_STOP,
722247f1
YQ
6940};
6941
85ad3aaf 6942/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6943 the pid of the process that owns the threads we want to check, or
6944 -1 if we want to check all threads. */
6945
6946static int
6947is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6948 ptid_t thread_ptid)
6949{
6950 if (ws->kind == TARGET_WAITKIND_FORKED
6951 || ws->kind == TARGET_WAITKIND_VFORKED)
6952 {
e99b03dc 6953 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6954 return 1;
6955 }
6956
6957 return 0;
6958}
6959
85ad3aaf
PA
6960/* Return the thread's pending status used to determine whether the
6961 thread is a fork parent stopped at a fork event. */
6962
6963static struct target_waitstatus *
6964thread_pending_fork_status (struct thread_info *thread)
6965{
6966 if (thread->suspend.waitstatus_pending_p)
6967 return &thread->suspend.waitstatus;
6968 else
6969 return &thread->pending_follow;
6970}
6971
6972/* Determine if THREAD is a pending fork parent thread. */
6973
6974static int
6975is_pending_fork_parent_thread (struct thread_info *thread)
6976{
6977 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6978 int pid = -1;
6979
6980 return is_pending_fork_parent (ws, pid, thread->ptid);
6981}
6982
cbb8991c
DB
6983/* If CONTEXT contains any fork child threads that have not been
6984 reported yet, remove them from the CONTEXT list. If such a
6985 thread exists it is because we are stopped at a fork catchpoint
6986 and have not yet called follow_fork, which will set up the
6987 host-side data structures for the new process. */
6988
6b8edb51
PA
6989void
6990remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6991{
cbb8991c
DB
6992 int pid = -1;
6993 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6994
6995 /* For any threads stopped at a fork event, remove the corresponding
6996 fork child threads from the CONTEXT list. */
5b6d1e4f 6997 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 6998 {
85ad3aaf 6999 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7000
7001 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7002 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7003 }
7004
7005 /* Check for any pending fork events (not reported or processed yet)
7006 in process PID and remove those fork child threads from the
7007 CONTEXT list as well. */
7008 remote_notif_get_pending_events (notif);
953edf2b
TT
7009 for (auto &event : get_remote_state ()->stop_reply_queue)
7010 if (event->ws.kind == TARGET_WAITKIND_FORKED
7011 || event->ws.kind == TARGET_WAITKIND_VFORKED
7012 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7013 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7014}
7015
7016/* Check whether any event pending in the vStopped queue would prevent
7017 a global or process wildcard vCont action. Clear
7018 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7019 and clear the event inferior's may_wildcard_vcont flag if we can't
7020 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7021
6b8edb51
PA
7022void
7023remote_target::check_pending_events_prevent_wildcard_vcont
7024 (int *may_global_wildcard)
85ad3aaf
PA
7025{
7026 struct notif_client *notif = &notif_client_stop;
7027
7028 remote_notif_get_pending_events (notif);
953edf2b
TT
7029 for (auto &event : get_remote_state ()->stop_reply_queue)
7030 {
7031 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7032 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7033 continue;
85ad3aaf 7034
953edf2b
TT
7035 if (event->ws.kind == TARGET_WAITKIND_FORKED
7036 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7037 *may_global_wildcard = 0;
722247f1 7038
5b6d1e4f 7039 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7040
953edf2b
TT
7041 /* This may be the first time we heard about this process.
7042 Regardless, we must not do a global wildcard resume, otherwise
7043 we'd resume this process too. */
7044 *may_global_wildcard = 0;
7045 if (inf != NULL)
7046 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7047 }
722247f1
YQ
7048}
7049
f48ff2a7 7050/* Discard all pending stop replies of inferior INF. */
c906108c 7051
6b8edb51
PA
7052void
7053remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7054{
f48ff2a7
YQ
7055 struct stop_reply *reply;
7056 struct remote_state *rs = get_remote_state ();
7057 struct remote_notif_state *rns = rs->notif_state;
7058
7059 /* This function can be notified when an inferior exists. When the
7060 target is not remote, the notification state is NULL. */
7061 if (rs->remote_desc == NULL)
7062 return;
7063
7064 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7065
74531fed 7066 /* Discard the in-flight notification. */
e99b03dc 7067 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7068 {
32603266 7069 delete reply;
f48ff2a7 7070 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7071 }
c906108c 7072
74531fed
PA
7073 /* Discard the stop replies we have already pulled with
7074 vStopped. */
953edf2b
TT
7075 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7076 rs->stop_reply_queue.end (),
7077 [=] (const stop_reply_up &event)
7078 {
7079 return event->ptid.pid () == inf->pid;
7080 });
7081 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7082}
7083
7084/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7085
6b8edb51
PA
7086void
7087remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7088{
6b8edb51 7089 remote_state *rs = get_remote_state ();
f48ff2a7 7090
f48ff2a7
YQ
7091 /* Discard the stop replies we have already pulled with
7092 vStopped. */
953edf2b
TT
7093 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7094 rs->stop_reply_queue.end (),
7095 [=] (const stop_reply_up &event)
7096 {
7097 return event->rs == rs;
7098 });
7099 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7100}
43ff13b4 7101
722247f1
YQ
7102/* Remove the first reply in 'stop_reply_queue' which matches
7103 PTID. */
2e9f7625 7104
6b8edb51
PA
7105struct stop_reply *
7106remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7107{
953edf2b 7108 remote_state *rs = get_remote_state ();
722247f1 7109
953edf2b
TT
7110 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7111 rs->stop_reply_queue.end (),
7112 [=] (const stop_reply_up &event)
7113 {
7114 return event->ptid.matches (ptid);
7115 });
7116 struct stop_reply *result;
7117 if (iter == rs->stop_reply_queue.end ())
7118 result = nullptr;
7119 else
7120 {
7121 result = iter->release ();
7122 rs->stop_reply_queue.erase (iter);
7123 }
722247f1 7124
722247f1
YQ
7125 if (notif_debug)
7126 fprintf_unfiltered (gdb_stdlog,
7127 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7128 target_pid_to_str (ptid).c_str ());
a744cf53 7129
953edf2b 7130 return result;
74531fed 7131}
75c99385 7132
74531fed
PA
7133/* Look for a queued stop reply belonging to PTID. If one is found,
7134 remove it from the queue, and return it. Returns NULL if none is
7135 found. If there are still queued events left to process, tell the
7136 event loop to get back to target_wait soon. */
e24a49d8 7137
6b8edb51
PA
7138struct stop_reply *
7139remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7140{
953edf2b 7141 remote_state *rs = get_remote_state ();
722247f1 7142 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7143
953edf2b 7144 if (!rs->stop_reply_queue.empty ())
6b8edb51 7145 {
6b8edb51
PA
7146 /* There's still at least an event left. */
7147 mark_async_event_handler (rs->remote_async_inferior_event_token);
7148 }
74531fed 7149
722247f1 7150 return r;
74531fed
PA
7151}
7152
7153/* Push a fully parsed stop reply in the stop reply queue. Since we
7154 know that we now have at least one queued event left to pass to the
7155 core side, tell the event loop to get back to target_wait soon. */
7156
6b8edb51
PA
7157void
7158remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7159{
6b8edb51 7160 remote_state *rs = get_remote_state ();
953edf2b 7161 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7162
722247f1
YQ
7163 if (notif_debug)
7164 fprintf_unfiltered (gdb_stdlog,
7165 "notif: push 'Stop' %s to queue %d\n",
a068643d 7166 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7167 int (rs->stop_reply_queue.size ()));
74531fed 7168
6b8edb51 7169 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7170}
7171
7172/* Returns true if we have a stop reply for PTID. */
7173
6b8edb51
PA
7174int
7175remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7176{
6b8edb51 7177 remote_state *rs = get_remote_state ();
953edf2b
TT
7178 for (auto &event : rs->stop_reply_queue)
7179 if (ptid == event->ptid
7180 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7181 return 1;
7182 return 0;
74531fed
PA
7183}
7184
26d56a93
SL
7185/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7186 starting with P and ending with PEND matches PREFIX. */
7187
7188static int
7189strprefix (const char *p, const char *pend, const char *prefix)
7190{
7191 for ( ; p < pend; p++, prefix++)
7192 if (*p != *prefix)
7193 return 0;
7194 return *prefix == '\0';
7195}
7196
74531fed
PA
7197/* Parse the stop reply in BUF. Either the function succeeds, and the
7198 result is stored in EVENT, or throws an error. */
7199
6b8edb51 7200void
bb277751 7201remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7202{
5cd63fda 7203 remote_arch_state *rsa = NULL;
74531fed 7204 ULONGEST addr;
256642e8 7205 const char *p;
94585166 7206 int skipregs = 0;
74531fed
PA
7207
7208 event->ptid = null_ptid;
bcc75809 7209 event->rs = get_remote_state ();
74531fed
PA
7210 event->ws.kind = TARGET_WAITKIND_IGNORE;
7211 event->ws.value.integer = 0;
f7e6eed5 7212 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7213 event->regcache.clear ();
dc146f7c 7214 event->core = -1;
74531fed
PA
7215
7216 switch (buf[0])
7217 {
7218 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7219 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7220 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7221 ss = signal number
7222 n... = register number
7223 r... = register contents
7224 */
7225
7226 p = &buf[3]; /* after Txx */
7227 while (*p)
7228 {
256642e8 7229 const char *p1;
cea39f65 7230 int fieldsize;
43ff13b4 7231
1f10ba14
PA
7232 p1 = strchr (p, ':');
7233 if (p1 == NULL)
7234 error (_("Malformed packet(a) (missing colon): %s\n\
7235Packet: '%s'\n"),
7236 p, buf);
7237 if (p == p1)
7238 error (_("Malformed packet(a) (missing register number): %s\n\
7239Packet: '%s'\n"),
7240 p, buf);
3c3bea1c 7241
1f10ba14
PA
7242 /* Some "registers" are actually extended stop information.
7243 Note if you're adding a new entry here: GDB 7.9 and
7244 earlier assume that all register "numbers" that start
7245 with an hex digit are real register numbers. Make sure
7246 the server only sends such a packet if it knows the
7247 client understands it. */
c8e38a49 7248
26d56a93 7249 if (strprefix (p, p1, "thread"))
1f10ba14 7250 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7251 else if (strprefix (p, p1, "syscall_entry"))
7252 {
7253 ULONGEST sysno;
7254
7255 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7256 p = unpack_varlen_hex (++p1, &sysno);
7257 event->ws.value.syscall_number = (int) sysno;
7258 }
7259 else if (strprefix (p, p1, "syscall_return"))
7260 {
7261 ULONGEST sysno;
7262
7263 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7264 p = unpack_varlen_hex (++p1, &sysno);
7265 event->ws.value.syscall_number = (int) sysno;
7266 }
26d56a93
SL
7267 else if (strprefix (p, p1, "watch")
7268 || strprefix (p, p1, "rwatch")
7269 || strprefix (p, p1, "awatch"))
cea39f65 7270 {
f7e6eed5 7271 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7272 p = unpack_varlen_hex (++p1, &addr);
7273 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7274 }
26d56a93 7275 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7276 {
7277 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7278
7279 /* Make sure the stub doesn't forget to indicate support
7280 with qSupported. */
7281 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7282 error (_("Unexpected swbreak stop reason"));
7283
7284 /* The value part is documented as "must be empty",
7285 though we ignore it, in case we ever decide to make
7286 use of it in a backward compatible way. */
8424cc97 7287 p = strchrnul (p1 + 1, ';');
f7e6eed5 7288 }
26d56a93 7289 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7290 {
7291 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7292
7293 /* Make sure the stub doesn't forget to indicate support
7294 with qSupported. */
7295 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7296 error (_("Unexpected hwbreak stop reason"));
7297
7298 /* See above. */
8424cc97 7299 p = strchrnul (p1 + 1, ';');
f7e6eed5 7300 }
26d56a93 7301 else if (strprefix (p, p1, "library"))
cea39f65 7302 {
1f10ba14 7303 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7304 p = strchrnul (p1 + 1, ';');
1f10ba14 7305 }
26d56a93 7306 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7307 {
7308 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7309 /* p1 will indicate "begin" or "end", but it makes
7310 no difference for now, so ignore it. */
8424cc97 7311 p = strchrnul (p1 + 1, ';');
1f10ba14 7312 }
26d56a93 7313 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7314 {
7315 ULONGEST c;
a744cf53 7316
1f10ba14
PA
7317 p = unpack_varlen_hex (++p1, &c);
7318 event->core = c;
cea39f65 7319 }
26d56a93 7320 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7321 {
7322 event->ws.value.related_pid = read_ptid (++p1, &p);
7323 event->ws.kind = TARGET_WAITKIND_FORKED;
7324 }
26d56a93 7325 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7326 {
7327 event->ws.value.related_pid = read_ptid (++p1, &p);
7328 event->ws.kind = TARGET_WAITKIND_VFORKED;
7329 }
26d56a93 7330 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7331 {
7332 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7333 p = strchrnul (p1 + 1, ';');
c269dbdb 7334 }
6ab24463 7335 else if (strprefix (p, p1, "exec"))
94585166
DB
7336 {
7337 ULONGEST ignored;
94585166
DB
7338 int pathlen;
7339
7340 /* Determine the length of the execd pathname. */
7341 p = unpack_varlen_hex (++p1, &ignored);
7342 pathlen = (p - p1) / 2;
7343
7344 /* Save the pathname for event reporting and for
7345 the next run command. */
c6321f19
TT
7346 gdb::unique_xmalloc_ptr<char[]> pathname
7347 ((char *) xmalloc (pathlen + 1));
7348 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7349 pathname[pathlen] = '\0';
7350
7351 /* This is freed during event handling. */
c6321f19 7352 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7353 event->ws.kind = TARGET_WAITKIND_EXECD;
7354
7355 /* Skip the registers included in this packet, since
7356 they may be for an architecture different from the
7357 one used by the original program. */
7358 skipregs = 1;
7359 }
65706a29
PA
7360 else if (strprefix (p, p1, "create"))
7361 {
7362 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7363 p = strchrnul (p1 + 1, ';');
65706a29 7364 }
cea39f65
MS
7365 else
7366 {
1f10ba14 7367 ULONGEST pnum;
256642e8 7368 const char *p_temp;
1f10ba14 7369
94585166
DB
7370 if (skipregs)
7371 {
8424cc97 7372 p = strchrnul (p1 + 1, ';');
94585166
DB
7373 p++;
7374 continue;
7375 }
7376
1f10ba14
PA
7377 /* Maybe a real ``P'' register number. */
7378 p_temp = unpack_varlen_hex (p, &pnum);
7379 /* If the first invalid character is the colon, we got a
7380 register number. Otherwise, it's an unknown stop
7381 reason. */
7382 if (p_temp == p1)
7383 {
5cd63fda
PA
7384 /* If we haven't parsed the event's thread yet, find
7385 it now, in order to find the architecture of the
7386 reported expedited registers. */
7387 if (event->ptid == null_ptid)
7388 {
7389 const char *thr = strstr (p1 + 1, ";thread:");
7390 if (thr != NULL)
7391 event->ptid = read_ptid (thr + strlen (";thread:"),
7392 NULL);
7393 else
3cada740
PA
7394 {
7395 /* Either the current thread hasn't changed,
7396 or the inferior is not multi-threaded.
7397 The event must be for the thread we last
7398 set as (or learned as being) current. */
7399 event->ptid = event->rs->general_thread;
7400 }
5cd63fda
PA
7401 }
7402
7403 if (rsa == NULL)
7404 {
5b6d1e4f
PA
7405 inferior *inf
7406 = (event->ptid == null_ptid
7407 ? NULL
7408 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7409 /* If this is the first time we learn anything
7410 about this process, skip the registers
7411 included in this packet, since we don't yet
7412 know which architecture to use to parse them.
7413 We'll determine the architecture later when
7414 we process the stop reply and retrieve the
7415 target description, via
7416 remote_notice_new_inferior ->
7417 post_create_inferior. */
7418 if (inf == NULL)
7419 {
7420 p = strchrnul (p1 + 1, ';');
7421 p++;
7422 continue;
7423 }
7424
7425 event->arch = inf->gdbarch;
9d6eea31 7426 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7427 }
7428
7429 packet_reg *reg
7430 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7431 cached_reg_t cached_reg;
43ff13b4 7432
1f10ba14
PA
7433 if (reg == NULL)
7434 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7435Packet: '%s'\n"),
1f10ba14 7436 hex_string (pnum), p, buf);
c8e38a49 7437
1f10ba14 7438 cached_reg.num = reg->regnum;
d1dff226 7439 cached_reg.data = (gdb_byte *)
5cd63fda 7440 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7441
1f10ba14
PA
7442 p = p1 + 1;
7443 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7444 register_size (event->arch, reg->regnum));
1f10ba14 7445 p += 2 * fieldsize;
5cd63fda 7446 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7447 warning (_("Remote reply is too short: %s"), buf);
74531fed 7448
32603266 7449 event->regcache.push_back (cached_reg);
1f10ba14
PA
7450 }
7451 else
7452 {
7453 /* Not a number. Silently skip unknown optional
7454 info. */
8424cc97 7455 p = strchrnul (p1 + 1, ';');
1f10ba14 7456 }
cea39f65 7457 }
c8e38a49 7458
cea39f65
MS
7459 if (*p != ';')
7460 error (_("Remote register badly formatted: %s\nhere: %s"),
7461 buf, p);
7462 ++p;
7463 }
5b5596ff
PA
7464
7465 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7466 break;
7467
c8e38a49
PA
7468 /* fall through */
7469 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7470 {
7471 int sig;
7472
7473 event->ws.kind = TARGET_WAITKIND_STOPPED;
7474 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7475 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7476 event->ws.value.sig = (enum gdb_signal) sig;
7477 else
7478 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7479 }
c8e38a49 7480 break;
65706a29
PA
7481 case 'w': /* Thread exited. */
7482 {
65706a29
PA
7483 ULONGEST value;
7484
7485 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7486 p = unpack_varlen_hex (&buf[1], &value);
7487 event->ws.value.integer = value;
7488 if (*p != ';')
7489 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7490 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7491 break;
7492 }
c8e38a49
PA
7493 case 'W': /* Target exited. */
7494 case 'X':
7495 {
c8e38a49 7496 ULONGEST value;
82f73884 7497
c8e38a49
PA
7498 /* GDB used to accept only 2 hex chars here. Stubs should
7499 only send more if they detect GDB supports multi-process
7500 support. */
7501 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7502
c8e38a49
PA
7503 if (buf[0] == 'W')
7504 {
7505 /* The remote process exited. */
74531fed
PA
7506 event->ws.kind = TARGET_WAITKIND_EXITED;
7507 event->ws.value.integer = value;
c8e38a49
PA
7508 }
7509 else
7510 {
7511 /* The remote process exited with a signal. */
74531fed 7512 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7513 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7514 event->ws.value.sig = (enum gdb_signal) value;
7515 else
7516 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7517 }
82f73884 7518
e7af6c70
TBA
7519 /* If no process is specified, return null_ptid, and let the
7520 caller figure out the right process to use. */
7521 int pid = 0;
c8e38a49
PA
7522 if (*p == '\0')
7523 ;
7524 else if (*p == ';')
7525 {
7526 p++;
7527
0b24eb2d 7528 if (*p == '\0')
82f73884 7529 ;
61012eef 7530 else if (startswith (p, "process:"))
82f73884 7531 {
c8e38a49 7532 ULONGEST upid;
a744cf53 7533
c8e38a49
PA
7534 p += sizeof ("process:") - 1;
7535 unpack_varlen_hex (p, &upid);
7536 pid = upid;
82f73884
PA
7537 }
7538 else
7539 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7540 }
c8e38a49
PA
7541 else
7542 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7543 event->ptid = ptid_t (pid);
74531fed
PA
7544 }
7545 break;
f2faf941
PA
7546 case 'N':
7547 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7548 event->ptid = minus_one_ptid;
7549 break;
74531fed
PA
7550 }
7551
d7e15655 7552 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7553 error (_("No process or thread specified in stop reply: %s"), buf);
7554}
7555
722247f1
YQ
7556/* When the stub wants to tell GDB about a new notification reply, it
7557 sends a notification (%Stop, for example). Those can come it at
7558 any time, hence, we have to make sure that any pending
7559 putpkt/getpkt sequence we're making is finished, before querying
7560 the stub for more events with the corresponding ack command
7561 (vStopped, for example). E.g., if we started a vStopped sequence
7562 immediately upon receiving the notification, something like this
7563 could happen:
74531fed
PA
7564
7565 1.1) --> Hg 1
7566 1.2) <-- OK
7567 1.3) --> g
7568 1.4) <-- %Stop
7569 1.5) --> vStopped
7570 1.6) <-- (registers reply to step #1.3)
7571
7572 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7573 query.
7574
796cb314 7575 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7576 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7577 doing whatever we were doing:
7578
7579 2.1) --> Hg 1
7580 2.2) <-- OK
7581 2.3) --> g
7582 2.4) <-- %Stop
7583 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7584 2.5) <-- (registers reply to step #2.3)
7585
85102364 7586 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7587 notices there's an event on the
7588 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7589 associated callback --- the function below. At this point, we're
7590 always safe to start a vStopped sequence. :
7591
7592 2.6) --> vStopped
7593 2.7) <-- T05 thread:2
7594 2.8) --> vStopped
7595 2.9) --> OK
7596*/
7597
722247f1 7598void
6b8edb51 7599remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7600{
7601 struct remote_state *rs = get_remote_state ();
74531fed 7602
f48ff2a7 7603 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7604 {
722247f1
YQ
7605 if (notif_debug)
7606 fprintf_unfiltered (gdb_stdlog,
7607 "notif: process: '%s' ack pending event\n",
7608 nc->name);
74531fed 7609
722247f1 7610 /* acknowledge */
8d64371b
TT
7611 nc->ack (this, nc, rs->buf.data (),
7612 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7613 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7614
7615 while (1)
7616 {
8d64371b
TT
7617 getpkt (&rs->buf, 0);
7618 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7619 break;
7620 else
8d64371b 7621 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7622 }
7623 }
722247f1
YQ
7624 else
7625 {
7626 if (notif_debug)
7627 fprintf_unfiltered (gdb_stdlog,
7628 "notif: process: '%s' no pending reply\n",
7629 nc->name);
7630 }
74531fed
PA
7631}
7632
6b8edb51
PA
7633/* Wrapper around remote_target::remote_notif_get_pending_events to
7634 avoid having to export the whole remote_target class. */
7635
7636void
7637remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7638{
7639 remote->remote_notif_get_pending_events (nc);
7640}
7641
74531fed
PA
7642/* Called when it is decided that STOP_REPLY holds the info of the
7643 event that is to be returned to the core. This function always
7644 destroys STOP_REPLY. */
7645
6b8edb51
PA
7646ptid_t
7647remote_target::process_stop_reply (struct stop_reply *stop_reply,
7648 struct target_waitstatus *status)
74531fed
PA
7649{
7650 ptid_t ptid;
7651
7652 *status = stop_reply->ws;
7653 ptid = stop_reply->ptid;
7654
7655 /* If no thread/process was reported by the stub, assume the current
7656 inferior. */
d7e15655 7657 if (ptid == null_ptid)
74531fed
PA
7658 ptid = inferior_ptid;
7659
5f3563ea 7660 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7661 && status->kind != TARGET_WAITKIND_SIGNALLED
7662 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7663 {
5f3563ea 7664 /* Expedited registers. */
32603266 7665 if (!stop_reply->regcache.empty ())
5f3563ea 7666 {
217f1f79 7667 struct regcache *regcache
5b6d1e4f 7668 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7669
32603266
TT
7670 for (cached_reg_t &reg : stop_reply->regcache)
7671 {
7672 regcache->raw_supply (reg.num, reg.data);
7673 xfree (reg.data);
7674 }
d1dff226 7675
32603266 7676 stop_reply->regcache.clear ();
5f3563ea 7677 }
74531fed 7678
1941c569 7679 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7680 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7681 remote_thr->core = stop_reply->core;
7682 remote_thr->stop_reason = stop_reply->stop_reason;
7683 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7684 remote_thr->vcont_resumed = 0;
74531fed
PA
7685 }
7686
32603266 7687 delete stop_reply;
74531fed
PA
7688 return ptid;
7689}
7690
7691/* The non-stop mode version of target_wait. */
7692
6b8edb51
PA
7693ptid_t
7694remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7695{
7696 struct remote_state *rs = get_remote_state ();
74531fed
PA
7697 struct stop_reply *stop_reply;
7698 int ret;
fee9eda9 7699 int is_notif = 0;
74531fed
PA
7700
7701 /* If in non-stop mode, get out of getpkt even if a
7702 notification is received. */
7703
8d64371b 7704 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7705 while (1)
7706 {
fee9eda9 7707 if (ret != -1 && !is_notif)
74531fed
PA
7708 switch (rs->buf[0])
7709 {
7710 case 'E': /* Error of some sort. */
7711 /* We're out of sync with the target now. Did it continue
7712 or not? We can't tell which thread it was in non-stop,
7713 so just ignore this. */
8d64371b 7714 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7715 break;
7716 case 'O': /* Console output. */
8d64371b 7717 remote_console_output (&rs->buf[1]);
74531fed
PA
7718 break;
7719 default:
8d64371b 7720 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7721 break;
7722 }
7723
7724 /* Acknowledge a pending stop reply that may have arrived in the
7725 mean time. */
f48ff2a7 7726 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7727 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7728
7729 /* If indeed we noticed a stop reply, we're done. */
7730 stop_reply = queued_stop_reply (ptid);
7731 if (stop_reply != NULL)
7732 return process_stop_reply (stop_reply, status);
7733
47608cb1 7734 /* Still no event. If we're just polling for an event, then
74531fed 7735 return to the event loop. */
47608cb1 7736 if (options & TARGET_WNOHANG)
74531fed
PA
7737 {
7738 status->kind = TARGET_WAITKIND_IGNORE;
7739 return minus_one_ptid;
7740 }
7741
47608cb1 7742 /* Otherwise do a blocking wait. */
8d64371b 7743 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7744 }
7745}
7746
31ba933e
PA
7747/* Return the first resumed thread. */
7748
7749static ptid_t
5b6d1e4f 7750first_remote_resumed_thread (remote_target *target)
31ba933e 7751{
5b6d1e4f 7752 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7753 if (tp->resumed)
7754 return tp->ptid;
7755 return null_ptid;
7756}
7757
74531fed
PA
7758/* Wait until the remote machine stops, then return, storing status in
7759 STATUS just as `wait' would. */
7760
6b8edb51
PA
7761ptid_t
7762remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7763{
7764 struct remote_state *rs = get_remote_state ();
74531fed 7765 ptid_t event_ptid = null_ptid;
cea39f65 7766 char *buf;
74531fed
PA
7767 struct stop_reply *stop_reply;
7768
47608cb1
PA
7769 again:
7770
74531fed
PA
7771 status->kind = TARGET_WAITKIND_IGNORE;
7772 status->value.integer = 0;
7773
7774 stop_reply = queued_stop_reply (ptid);
7775 if (stop_reply != NULL)
7776 return process_stop_reply (stop_reply, status);
7777
7778 if (rs->cached_wait_status)
7779 /* Use the cached wait status, but only once. */
7780 rs->cached_wait_status = 0;
7781 else
7782 {
7783 int ret;
722247f1 7784 int is_notif;
567420d1 7785 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7786 && rs->wait_forever_enabled_p);
567420d1
PA
7787
7788 if (!rs->waiting_for_stop_reply)
7789 {
7790 status->kind = TARGET_WAITKIND_NO_RESUMED;
7791 return minus_one_ptid;
7792 }
74531fed 7793
74531fed
PA
7794 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7795 _never_ wait for ever -> test on target_is_async_p().
7796 However, before we do that we need to ensure that the caller
7797 knows how to take the target into/out of async mode. */
8d64371b 7798 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7799
7800 /* GDB gets a notification. Return to core as this event is
7801 not interesting. */
7802 if (ret != -1 && is_notif)
7803 return minus_one_ptid;
567420d1
PA
7804
7805 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7806 return minus_one_ptid;
74531fed
PA
7807 }
7808
8d64371b 7809 buf = rs->buf.data ();
74531fed 7810
3a29589a
DJ
7811 /* Assume that the target has acknowledged Ctrl-C unless we receive
7812 an 'F' or 'O' packet. */
7813 if (buf[0] != 'F' && buf[0] != 'O')
7814 rs->ctrlc_pending_p = 0;
7815
74531fed
PA
7816 switch (buf[0])
7817 {
7818 case 'E': /* Error of some sort. */
7819 /* We're out of sync with the target now. Did it continue or
7820 not? Not is more likely, so report a stop. */
29090fb6
LM
7821 rs->waiting_for_stop_reply = 0;
7822
74531fed
PA
7823 warning (_("Remote failure reply: %s"), buf);
7824 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7825 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7826 break;
7827 case 'F': /* File-I/O request. */
e42e5352
YQ
7828 /* GDB may access the inferior memory while handling the File-I/O
7829 request, but we don't want GDB accessing memory while waiting
7830 for a stop reply. See the comments in putpkt_binary. Set
7831 waiting_for_stop_reply to 0 temporarily. */
7832 rs->waiting_for_stop_reply = 0;
6b8edb51 7833 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7834 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7835 /* GDB handled the File-I/O request, and the target is running
7836 again. Keep waiting for events. */
7837 rs->waiting_for_stop_reply = 1;
74531fed 7838 break;
f2faf941 7839 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7840 {
29090fb6
LM
7841 /* There is a stop reply to handle. */
7842 rs->waiting_for_stop_reply = 0;
7843
7844 stop_reply
6b8edb51
PA
7845 = (struct stop_reply *) remote_notif_parse (this,
7846 &notif_client_stop,
8d64371b 7847 rs->buf.data ());
74531fed 7848
74531fed 7849 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7850 break;
7851 }
7852 case 'O': /* Console output. */
7853 remote_console_output (buf + 1);
c8e38a49
PA
7854 break;
7855 case '\0':
b73be471 7856 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7857 {
7858 /* Zero length reply means that we tried 'S' or 'C' and the
7859 remote system doesn't support it. */
223ffa71 7860 target_terminal::ours_for_output ();
c8e38a49
PA
7861 printf_filtered
7862 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7863 gdb_signal_to_name (rs->last_sent_signal));
7864 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7865 target_terminal::inferior ();
c8e38a49 7866
f5c4fcd9
TT
7867 strcpy (buf, rs->last_sent_step ? "s" : "c");
7868 putpkt (buf);
c8e38a49 7869 break;
43ff13b4 7870 }
86a73007 7871 /* fallthrough */
c8e38a49
PA
7872 default:
7873 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7874 break;
43ff13b4 7875 }
c8e38a49 7876
f2faf941
PA
7877 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7878 return minus_one_ptid;
7879 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7880 {
7881 /* Nothing interesting happened. If we're doing a non-blocking
7882 poll, we're done. Otherwise, go back to waiting. */
7883 if (options & TARGET_WNOHANG)
7884 return minus_one_ptid;
7885 else
7886 goto again;
7887 }
74531fed
PA
7888 else if (status->kind != TARGET_WAITKIND_EXITED
7889 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7890 {
d7e15655 7891 if (event_ptid != null_ptid)
47f8a51d 7892 record_currthread (rs, event_ptid);
82f73884 7893 else
5b6d1e4f 7894 event_ptid = first_remote_resumed_thread (this);
43ff13b4 7895 }
74531fed 7896 else
e7af6c70
TBA
7897 {
7898 /* A process exit. Invalidate our notion of current thread. */
7899 record_currthread (rs, minus_one_ptid);
7900 /* It's possible that the packet did not include a pid. */
7901 if (event_ptid == null_ptid)
5b6d1e4f 7902 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
7903 /* EVENT_PTID could still be NULL_PTID. Double-check. */
7904 if (event_ptid == null_ptid)
7905 event_ptid = magic_null_ptid;
7906 }
79d7f229 7907
82f73884 7908 return event_ptid;
43ff13b4
JM
7909}
7910
74531fed
PA
7911/* Wait until the remote machine stops, then return, storing status in
7912 STATUS just as `wait' would. */
7913
f6ac5f3d
PA
7914ptid_t
7915remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7916{
7917 ptid_t event_ptid;
7918
6efcd9a8 7919 if (target_is_non_stop_p ())
6b8edb51 7920 event_ptid = wait_ns (ptid, status, options);
74531fed 7921 else
6b8edb51 7922 event_ptid = wait_as (ptid, status, options);
c8e38a49 7923
d9d41e78 7924 if (target_is_async_p ())
c8e38a49 7925 {
6b8edb51
PA
7926 remote_state *rs = get_remote_state ();
7927
74531fed
PA
7928 /* If there are are events left in the queue tell the event loop
7929 to return here. */
953edf2b 7930 if (!rs->stop_reply_queue.empty ())
6b8edb51 7931 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7932 }
c8e38a49
PA
7933
7934 return event_ptid;
7935}
7936
74ca34ce 7937/* Fetch a single register using a 'p' packet. */
c906108c 7938
6b8edb51
PA
7939int
7940remote_target::fetch_register_using_p (struct regcache *regcache,
7941 packet_reg *reg)
b96ec7ac 7942{
ac7936df 7943 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7944 struct remote_state *rs = get_remote_state ();
2e9f7625 7945 char *buf, *p;
9890e433 7946 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7947 int i;
7948
4082afcc 7949 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7950 return 0;
7951
7952 if (reg->pnum == -1)
7953 return 0;
7954
8d64371b 7955 p = rs->buf.data ();
fcad0fa4 7956 *p++ = 'p';
74ca34ce 7957 p += hexnumstr (p, reg->pnum);
fcad0fa4 7958 *p++ = '\0';
1f4437a4 7959 putpkt (rs->buf);
8d64371b 7960 getpkt (&rs->buf, 0);
3f9a994c 7961
8d64371b 7962 buf = rs->buf.data ();
2e9f7625 7963
8d64371b 7964 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7965 {
7966 case PACKET_OK:
7967 break;
7968 case PACKET_UNKNOWN:
7969 return 0;
7970 case PACKET_ERROR:
27a9c0bf 7971 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7972 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7973 reg->regnum),
7974 buf);
74ca34ce 7975 }
3f9a994c
JB
7976
7977 /* If this register is unfetchable, tell the regcache. */
7978 if (buf[0] == 'x')
8480adf2 7979 {
73e1c03f 7980 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7981 return 1;
b96ec7ac 7982 }
b96ec7ac 7983
3f9a994c
JB
7984 /* Otherwise, parse and supply the value. */
7985 p = buf;
7986 i = 0;
7987 while (p[0] != 0)
7988 {
7989 if (p[1] == 0)
74ca34ce 7990 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7991
7992 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7993 p += 2;
7994 }
73e1c03f 7995 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7996 return 1;
b96ec7ac
AC
7997}
7998
74ca34ce
DJ
7999/* Fetch the registers included in the target's 'g' packet. */
8000
6b8edb51
PA
8001int
8002remote_target::send_g_packet ()
c906108c 8003{
d01949b6 8004 struct remote_state *rs = get_remote_state ();
cea39f65 8005 int buf_len;
c906108c 8006
8d64371b 8007 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8008 putpkt (rs->buf);
8d64371b 8009 getpkt (&rs->buf, 0);
b75abf5b
AK
8010 if (packet_check_result (rs->buf) == PACKET_ERROR)
8011 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 8012 rs->buf.data ());
c906108c 8013
29709017
DJ
8014 /* We can get out of synch in various cases. If the first character
8015 in the buffer is not a hex character, assume that has happened
8016 and try to fetch another packet to read. */
8017 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8018 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8019 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8020 && rs->buf[0] != 'x') /* New: unavailable register value. */
8021 {
8022 if (remote_debug)
8023 fprintf_unfiltered (gdb_stdlog,
8024 "Bad register packet; fetching a new packet\n");
8d64371b 8025 getpkt (&rs->buf, 0);
29709017
DJ
8026 }
8027
8d64371b 8028 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8029
8030 /* Sanity check the received packet. */
8031 if (buf_len % 2 != 0)
8d64371b 8032 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8033
8034 return buf_len / 2;
8035}
8036
6b8edb51
PA
8037void
8038remote_target::process_g_packet (struct regcache *regcache)
29709017 8039{
ac7936df 8040 struct gdbarch *gdbarch = regcache->arch ();
29709017 8041 struct remote_state *rs = get_remote_state ();
9d6eea31 8042 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8043 int i, buf_len;
8044 char *p;
8045 char *regs;
8046
8d64371b 8047 buf_len = strlen (rs->buf.data ());
29709017
DJ
8048
8049 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8050 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8051 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8052 "bytes): %s"),
8053 rsa->sizeof_g_packet, buf_len / 2,
8054 rs->buf.data ());
74ca34ce
DJ
8055
8056 /* Save the size of the packet sent to us by the target. It is used
8057 as a heuristic when determining the max size of packets that the
8058 target can safely receive. */
8059 if (rsa->actual_register_packet_size == 0)
8060 rsa->actual_register_packet_size = buf_len;
8061
8062 /* If this is smaller than we guessed the 'g' packet would be,
8063 update our records. A 'g' reply that doesn't include a register's
8064 value implies either that the register is not available, or that
8065 the 'p' packet must be used. */
8066 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8067 {
9dc193c3 8068 long sizeof_g_packet = buf_len / 2;
74ca34ce 8069
4a22f64d 8070 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8071 {
9dc193c3
LF
8072 long offset = rsa->regs[i].offset;
8073 long reg_size = register_size (gdbarch, i);
8074
74ca34ce
DJ
8075 if (rsa->regs[i].pnum == -1)
8076 continue;
8077
9dc193c3 8078 if (offset >= sizeof_g_packet)
74ca34ce 8079 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8080 else if (offset + reg_size > sizeof_g_packet)
8081 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8082 else
74ca34ce 8083 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8084 }
9dc193c3
LF
8085
8086 /* Looks valid enough, we can assume this is the correct length
8087 for a 'g' packet. It's important not to adjust
8088 rsa->sizeof_g_packet if we have truncated registers otherwise
8089 this "if" won't be run the next time the method is called
8090 with a packet of the same size and one of the internal errors
8091 below will trigger instead. */
8092 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8093 }
b323314b 8094
224c3ddb 8095 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8096
8097 /* Unimplemented registers read as all bits zero. */
ea9c271d 8098 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8099
c906108c
SS
8100 /* Reply describes registers byte by byte, each byte encoded as two
8101 hex characters. Suck them all up, then supply them to the
8102 register cacheing/storage mechanism. */
8103
8d64371b 8104 p = rs->buf.data ();
ea9c271d 8105 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8106 {
74ca34ce
DJ
8107 if (p[0] == 0 || p[1] == 0)
8108 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8109 internal_error (__FILE__, __LINE__,
9b20d036 8110 _("unexpected end of 'g' packet reply"));
74ca34ce 8111
c906108c 8112 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8113 regs[i] = 0; /* 'x' */
c906108c
SS
8114 else
8115 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8116 p += 2;
8117 }
8118
a744cf53
MS
8119 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8120 {
8121 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8122 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8123
8124 if (r->in_g_packet)
8125 {
8d64371b 8126 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8127 /* This shouldn't happen - we adjusted in_g_packet above. */
8128 internal_error (__FILE__, __LINE__,
9b20d036 8129 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8130 else if (rs->buf[r->offset * 2] == 'x')
8131 {
8d64371b 8132 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8133 /* The register isn't available, mark it as such (at
8134 the same time setting the value to zero). */
73e1c03f 8135 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8136 }
8137 else
73e1c03f 8138 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8139 }
8140 }
c906108c
SS
8141}
8142
6b8edb51
PA
8143void
8144remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8145{
8146 send_g_packet ();
56be3814 8147 process_g_packet (regcache);
29709017
DJ
8148}
8149
e6e4e701
PA
8150/* Make the remote selected traceframe match GDB's selected
8151 traceframe. */
8152
6b8edb51
PA
8153void
8154remote_target::set_remote_traceframe ()
e6e4e701
PA
8155{
8156 int newnum;
262e1174 8157 struct remote_state *rs = get_remote_state ();
e6e4e701 8158
262e1174 8159 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8160 return;
8161
8162 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8163 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8164
8165 newnum = target_trace_find (tfind_number,
8166 get_traceframe_number (), 0, 0, NULL);
8167
8168 /* Should not happen. If it does, all bets are off. */
8169 if (newnum != get_traceframe_number ())
8170 warning (_("could not set remote traceframe"));
8171}
8172
f6ac5f3d
PA
8173void
8174remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8175{
ac7936df 8176 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8177 struct remote_state *rs = get_remote_state ();
8178 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8179 int i;
8180
e6e4e701 8181 set_remote_traceframe ();
222312d3 8182 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8183
8184 if (regnum >= 0)
8185 {
5cd63fda 8186 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8187
74ca34ce
DJ
8188 gdb_assert (reg != NULL);
8189
8190 /* If this register might be in the 'g' packet, try that first -
8191 we are likely to read more than one register. If this is the
8192 first 'g' packet, we might be overly optimistic about its
8193 contents, so fall back to 'p'. */
8194 if (reg->in_g_packet)
8195 {
56be3814 8196 fetch_registers_using_g (regcache);
74ca34ce
DJ
8197 if (reg->in_g_packet)
8198 return;
8199 }
8200
56be3814 8201 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8202 return;
8203
8204 /* This register is not available. */
73e1c03f 8205 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8206
8207 return;
8208 }
8209
56be3814 8210 fetch_registers_using_g (regcache);
74ca34ce 8211
5cd63fda 8212 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8213 if (!rsa->regs[i].in_g_packet)
56be3814 8214 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8215 {
8216 /* This register is not available. */
73e1c03f 8217 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8218 }
8219}
8220
c906108c
SS
8221/* Prepare to store registers. Since we may send them all (using a
8222 'G' request), we have to read out the ones we don't want to change
8223 first. */
8224
f6ac5f3d
PA
8225void
8226remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8227{
9d6eea31
PA
8228 struct remote_state *rs = get_remote_state ();
8229 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8230 int i;
cf0e1e0d 8231
c906108c 8232 /* Make sure the entire registers array is valid. */
4082afcc 8233 switch (packet_support (PACKET_P))
5a2468f5
JM
8234 {
8235 case PACKET_DISABLE:
8236 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8237 /* Make sure all the necessary registers are cached. */
ac7936df 8238 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8239 if (rsa->regs[i].in_g_packet)
0b47d985 8240 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8241 break;
8242 case PACKET_ENABLE:
8243 break;
8244 }
8245}
8246
ad10f812 8247/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8248 packet was not recognized. */
5a2468f5 8249
6b8edb51
PA
8250int
8251remote_target::store_register_using_P (const struct regcache *regcache,
8252 packet_reg *reg)
5a2468f5 8253{
ac7936df 8254 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8255 struct remote_state *rs = get_remote_state ();
5a2468f5 8256 /* Try storing a single register. */
8d64371b 8257 char *buf = rs->buf.data ();
9890e433 8258 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8259 char *p;
5a2468f5 8260
4082afcc 8261 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8262 return 0;
8263
8264 if (reg->pnum == -1)
8265 return 0;
8266
ea9c271d 8267 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8268 p = buf + strlen (buf);
34a79281 8269 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8270 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8271 putpkt (rs->buf);
8d64371b 8272 getpkt (&rs->buf, 0);
5a2468f5 8273
74ca34ce
DJ
8274 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8275 {
8276 case PACKET_OK:
8277 return 1;
8278 case PACKET_ERROR:
27a9c0bf 8279 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8280 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8281 case PACKET_UNKNOWN:
8282 return 0;
8283 default:
8284 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8285 }
c906108c
SS
8286}
8287
23860348
MS
8288/* Store register REGNUM, or all registers if REGNUM == -1, from the
8289 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8290
6b8edb51
PA
8291void
8292remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8293{
d01949b6 8294 struct remote_state *rs = get_remote_state ();
9d6eea31 8295 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8296 gdb_byte *regs;
c906108c
SS
8297 char *p;
8298
193cb69f
AC
8299 /* Extract all the registers in the regcache copying them into a
8300 local buffer. */
8301 {
b323314b 8302 int i;
a744cf53 8303
224c3ddb 8304 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8305 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8306 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8307 {
ea9c271d 8308 struct packet_reg *r = &rsa->regs[i];
a744cf53 8309
b323314b 8310 if (r->in_g_packet)
34a79281 8311 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8312 }
8313 }
c906108c
SS
8314
8315 /* Command describes registers byte by byte,
8316 each byte encoded as two hex characters. */
8d64371b 8317 p = rs->buf.data ();
193cb69f 8318 *p++ = 'G';
74ca34ce 8319 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8320 putpkt (rs->buf);
8d64371b 8321 getpkt (&rs->buf, 0);
1f4437a4 8322 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8323 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8324 rs->buf.data ());
c906108c 8325}
74ca34ce
DJ
8326
8327/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8328 of the register cache buffer. FIXME: ignores errors. */
8329
f6ac5f3d
PA
8330void
8331remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8332{
5cd63fda 8333 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8334 struct remote_state *rs = get_remote_state ();
8335 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8336 int i;
8337
e6e4e701 8338 set_remote_traceframe ();
222312d3 8339 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8340
8341 if (regnum >= 0)
8342 {
5cd63fda 8343 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8344
74ca34ce
DJ
8345 gdb_assert (reg != NULL);
8346
8347 /* Always prefer to store registers using the 'P' packet if
8348 possible; we often change only a small number of registers.
8349 Sometimes we change a larger number; we'd need help from a
8350 higher layer to know to use 'G'. */
56be3814 8351 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8352 return;
8353
8354 /* For now, don't complain if we have no way to write the
8355 register. GDB loses track of unavailable registers too
8356 easily. Some day, this may be an error. We don't have
0df8b418 8357 any way to read the register, either... */
74ca34ce
DJ
8358 if (!reg->in_g_packet)
8359 return;
8360
56be3814 8361 store_registers_using_G (regcache);
74ca34ce
DJ
8362 return;
8363 }
8364
56be3814 8365 store_registers_using_G (regcache);
74ca34ce 8366
5cd63fda 8367 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8368 if (!rsa->regs[i].in_g_packet)
56be3814 8369 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8370 /* See above for why we do not issue an error here. */
8371 continue;
8372}
c906108c
SS
8373\f
8374
8375/* Return the number of hex digits in num. */
8376
8377static int
fba45db2 8378hexnumlen (ULONGEST num)
c906108c
SS
8379{
8380 int i;
8381
8382 for (i = 0; num != 0; i++)
8383 num >>= 4;
8384
325fac50 8385 return std::max (i, 1);
c906108c
SS
8386}
8387
2df3850c 8388/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8389
8390static int
fba45db2 8391hexnumstr (char *buf, ULONGEST num)
c906108c 8392{
c906108c 8393 int len = hexnumlen (num);
a744cf53 8394
2df3850c
JM
8395 return hexnumnstr (buf, num, len);
8396}
8397
c906108c 8398
2df3850c 8399/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8400
2df3850c 8401static int
fba45db2 8402hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8403{
8404 int i;
8405
8406 buf[width] = '\0';
8407
8408 for (i = width - 1; i >= 0; i--)
c906108c 8409 {
c5aa993b 8410 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8411 num >>= 4;
8412 }
8413
2df3850c 8414 return width;
c906108c
SS
8415}
8416
23860348 8417/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8418
8419static CORE_ADDR
fba45db2 8420remote_address_masked (CORE_ADDR addr)
c906108c 8421{
883b9c6c 8422 unsigned int address_size = remote_address_size;
a744cf53 8423
911c95a5
UW
8424 /* If "remoteaddresssize" was not set, default to target address size. */
8425 if (!address_size)
f5656ead 8426 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8427
8428 if (address_size > 0
8429 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8430 {
8431 /* Only create a mask when that mask can safely be constructed
23860348 8432 in a ULONGEST variable. */
c906108c 8433 ULONGEST mask = 1;
a744cf53 8434
911c95a5 8435 mask = (mask << address_size) - 1;
c906108c
SS
8436 addr &= mask;
8437 }
8438 return addr;
8439}
8440
8441/* Determine whether the remote target supports binary downloading.
8442 This is accomplished by sending a no-op memory write of zero length
8443 to the target at the specified address. It does not suffice to send
23860348
MS
8444 the whole packet, since many stubs strip the eighth bit and
8445 subsequently compute a wrong checksum, which causes real havoc with
8446 remote_write_bytes.
7a292a7a 8447
96baa820 8448 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8449 clean. In cases like this, the user should clear "remote
23860348 8450 X-packet". */
96baa820 8451
6b8edb51
PA
8452void
8453remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8454{
d01949b6 8455 struct remote_state *rs = get_remote_state ();
24b06219 8456
4082afcc 8457 switch (packet_support (PACKET_X))
c906108c 8458 {
96baa820
JM
8459 case PACKET_DISABLE:
8460 break;
8461 case PACKET_ENABLE:
8462 break;
8463 case PACKET_SUPPORT_UNKNOWN:
8464 {
96baa820 8465 char *p;
802188a7 8466
8d64371b 8467 p = rs->buf.data ();
96baa820
JM
8468 *p++ = 'X';
8469 p += hexnumstr (p, (ULONGEST) addr);
8470 *p++ = ',';
8471 p += hexnumstr (p, (ULONGEST) 0);
8472 *p++ = ':';
8473 *p = '\0';
802188a7 8474
8d64371b
TT
8475 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8476 getpkt (&rs->buf, 0);
c906108c 8477
2e9f7625 8478 if (rs->buf[0] == '\0')
96baa820
JM
8479 {
8480 if (remote_debug)
8481 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8482 "binary downloading NOT "
8483 "supported by target\n");
444abaca 8484 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8485 }
8486 else
8487 {
8488 if (remote_debug)
8489 fprintf_unfiltered (gdb_stdlog,
64b9b334 8490 "binary downloading supported by target\n");
444abaca 8491 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8492 }
8493 break;
8494 }
c906108c
SS
8495 }
8496}
8497
124e13d9
SM
8498/* Helper function to resize the payload in order to try to get a good
8499 alignment. We try to write an amount of data such that the next write will
8500 start on an address aligned on REMOTE_ALIGN_WRITES. */
8501
8502static int
8503align_for_efficient_write (int todo, CORE_ADDR memaddr)
8504{
8505 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8506}
8507
c906108c
SS
8508/* Write memory data directly to the remote machine.
8509 This does not inform the data cache; the data cache uses this.
a76d924d 8510 HEADER is the starting part of the packet.
c906108c
SS
8511 MEMADDR is the address in the remote memory space.
8512 MYADDR is the address of the buffer in our space.
124e13d9
SM
8513 LEN_UNITS is the number of addressable units to write.
8514 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8515 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8516 should send data as binary ('X'), or hex-encoded ('M').
8517
8518 The function creates packet of the form
8519 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8520
124e13d9 8521 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8522
8523 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8524 are omitted.
8525
9b409511 8526 Return the transferred status, error or OK (an
124e13d9
SM
8527 'enum target_xfer_status' value). Save the number of addressable units
8528 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8529
8530 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8531 exchange between gdb and the stub could look like (?? in place of the
8532 checksum):
8533
8534 -> $m1000,4#??
8535 <- aaaabbbbccccdddd
8536
8537 -> $M1000,3:eeeeffffeeee#??
8538 <- OK
8539
8540 -> $m1000,4#??
8541 <- eeeeffffeeeedddd */
c906108c 8542
6b8edb51
PA
8543target_xfer_status
8544remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8545 const gdb_byte *myaddr,
8546 ULONGEST len_units,
8547 int unit_size,
8548 ULONGEST *xfered_len_units,
8549 char packet_format, int use_length)
c906108c 8550{
6d820c5c 8551 struct remote_state *rs = get_remote_state ();
cfd77fa1 8552 char *p;
a76d924d
DJ
8553 char *plen = NULL;
8554 int plenlen = 0;
124e13d9
SM
8555 int todo_units;
8556 int units_written;
8557 int payload_capacity_bytes;
8558 int payload_length_bytes;
a76d924d
DJ
8559
8560 if (packet_format != 'X' && packet_format != 'M')
8561 internal_error (__FILE__, __LINE__,
9b20d036 8562 _("remote_write_bytes_aux: bad packet format"));
c906108c 8563
124e13d9 8564 if (len_units == 0)
9b409511 8565 return TARGET_XFER_EOF;
b2182ed2 8566
124e13d9 8567 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8568
6d820c5c
DJ
8569 /* The packet buffer will be large enough for the payload;
8570 get_memory_packet_size ensures this. */
a76d924d 8571 rs->buf[0] = '\0';
c906108c 8572
a257b5bb 8573 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8574 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8575
124e13d9 8576 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8577 if (!use_length)
0df8b418 8578 /* The comma won't be used. */
124e13d9
SM
8579 payload_capacity_bytes += 1;
8580 payload_capacity_bytes -= strlen (header);
8581 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8582
a76d924d 8583 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8584
8d64371b
TT
8585 strcat (rs->buf.data (), header);
8586 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8587
8588 /* Compute a best guess of the number of bytes actually transfered. */
8589 if (packet_format == 'X')
c906108c 8590 {
23860348 8591 /* Best guess at number of bytes that will fit. */
325fac50
PA
8592 todo_units = std::min (len_units,
8593 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8594 if (use_length)
124e13d9 8595 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8596 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8597 }
8598 else
8599 {
124e13d9 8600 /* Number of bytes that will fit. */
325fac50
PA
8601 todo_units
8602 = std::min (len_units,
8603 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8604 if (use_length)
124e13d9 8605 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8606 todo_units = std::min (todo_units,
8607 (payload_capacity_bytes / unit_size) / 2);
917317f4 8608 }
a76d924d 8609
124e13d9 8610 if (todo_units <= 0)
3de11b2e 8611 internal_error (__FILE__, __LINE__,
405f8e94 8612 _("minimum packet size too small to write data"));
802188a7 8613
6765f3e5
DJ
8614 /* If we already need another packet, then try to align the end
8615 of this packet to a useful boundary. */
124e13d9
SM
8616 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8617 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8618
a257b5bb 8619 /* Append "<memaddr>". */
917317f4
JM
8620 memaddr = remote_address_masked (memaddr);
8621 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8622
a76d924d
DJ
8623 if (use_length)
8624 {
8625 /* Append ",". */
8626 *p++ = ',';
802188a7 8627
124e13d9
SM
8628 /* Append the length and retain its location and size. It may need to be
8629 adjusted once the packet body has been created. */
a76d924d 8630 plen = p;
124e13d9 8631 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8632 p += plenlen;
8633 }
a257b5bb
AC
8634
8635 /* Append ":". */
917317f4
JM
8636 *p++ = ':';
8637 *p = '\0';
802188a7 8638
a257b5bb 8639 /* Append the packet body. */
a76d924d 8640 if (packet_format == 'X')
917317f4 8641 {
917317f4
JM
8642 /* Binary mode. Send target system values byte by byte, in
8643 increasing byte addresses. Only escape certain critical
8644 characters. */
124e13d9
SM
8645 payload_length_bytes =
8646 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8647 &units_written, payload_capacity_bytes);
6765f3e5 8648
124e13d9 8649 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8650 a second try to keep the end of the packet aligned. Don't do
8651 this if the packet is tiny. */
124e13d9 8652 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8653 {
124e13d9
SM
8654 int new_todo_units;
8655
8656 new_todo_units = align_for_efficient_write (units_written, memaddr);
8657
8658 if (new_todo_units != units_written)
8659 payload_length_bytes =
8660 remote_escape_output (myaddr, new_todo_units, unit_size,
8661 (gdb_byte *) p, &units_written,
8662 payload_capacity_bytes);
6765f3e5
DJ
8663 }
8664
124e13d9
SM
8665 p += payload_length_bytes;
8666 if (use_length && units_written < todo_units)
c906108c 8667 {
802188a7 8668 /* Escape chars have filled up the buffer prematurely,
124e13d9 8669 and we have actually sent fewer units than planned.
917317f4
JM
8670 Fix-up the length field of the packet. Use the same
8671 number of characters as before. */
124e13d9
SM
8672 plen += hexnumnstr (plen, (ULONGEST) units_written,
8673 plenlen);
917317f4 8674 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8675 }
a76d924d
DJ
8676 }
8677 else
8678 {
917317f4
JM
8679 /* Normal mode: Send target system values byte by byte, in
8680 increasing byte addresses. Each byte is encoded as a two hex
8681 value. */
124e13d9
SM
8682 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8683 units_written = todo_units;
c906108c 8684 }
802188a7 8685
8d64371b
TT
8686 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8687 getpkt (&rs->buf, 0);
802188a7 8688
2e9f7625 8689 if (rs->buf[0] == 'E')
00d84524 8690 return TARGET_XFER_E_IO;
802188a7 8691
124e13d9
SM
8692 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8693 send fewer units than we'd planned. */
8694 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8695 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8696}
8697
a76d924d
DJ
8698/* Write memory data directly to the remote machine.
8699 This does not inform the data cache; the data cache uses this.
8700 MEMADDR is the address in the remote memory space.
8701 MYADDR is the address of the buffer in our space.
8702 LEN is the number of bytes.
8703
9b409511
YQ
8704 Return the transferred status, error or OK (an
8705 'enum target_xfer_status' value). Save the number of bytes
8706 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8707
6b8edb51
PA
8708target_xfer_status
8709remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8710 ULONGEST len, int unit_size,
8711 ULONGEST *xfered_len)
a76d924d 8712{
a121b7c1 8713 const char *packet_format = NULL;
a76d924d
DJ
8714
8715 /* Check whether the target supports binary download. */
8716 check_binary_download (memaddr);
8717
4082afcc 8718 switch (packet_support (PACKET_X))
a76d924d
DJ
8719 {
8720 case PACKET_ENABLE:
8721 packet_format = "X";
8722 break;
8723 case PACKET_DISABLE:
8724 packet_format = "M";
8725 break;
8726 case PACKET_SUPPORT_UNKNOWN:
8727 internal_error (__FILE__, __LINE__,
8728 _("remote_write_bytes: bad internal state"));
8729 default:
8730 internal_error (__FILE__, __LINE__, _("bad switch"));
8731 }
8732
8733 return remote_write_bytes_aux (packet_format,
124e13d9 8734 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8735 packet_format[0], 1);
a76d924d
DJ
8736}
8737
9217e74e
YQ
8738/* Read memory data directly from the remote machine.
8739 This does not use the data cache; the data cache uses this.
8740 MEMADDR is the address in the remote memory space.
8741 MYADDR is the address of the buffer in our space.
124e13d9
SM
8742 LEN_UNITS is the number of addressable memory units to read..
8743 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8744
8745 Return the transferred status, error or OK (an
8746 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8747 transferred in *XFERED_LEN_UNITS.
8748
8749 See the comment of remote_write_bytes_aux for an example of
8750 memory read/write exchange between gdb and the stub. */
9217e74e 8751
6b8edb51
PA
8752target_xfer_status
8753remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8754 ULONGEST len_units,
8755 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8756{
8757 struct remote_state *rs = get_remote_state ();
124e13d9 8758 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8759 char *p;
124e13d9
SM
8760 int todo_units;
8761 int decoded_bytes;
9217e74e 8762
124e13d9 8763 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8764 /* The packet buffer will be large enough for the payload;
8765 get_memory_packet_size ensures this. */
8766
124e13d9 8767 /* Number of units that will fit. */
325fac50
PA
8768 todo_units = std::min (len_units,
8769 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8770
8771 /* Construct "m"<memaddr>","<len>". */
8772 memaddr = remote_address_masked (memaddr);
8d64371b 8773 p = rs->buf.data ();
9217e74e
YQ
8774 *p++ = 'm';
8775 p += hexnumstr (p, (ULONGEST) memaddr);
8776 *p++ = ',';
124e13d9 8777 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8778 *p = '\0';
8779 putpkt (rs->buf);
8d64371b 8780 getpkt (&rs->buf, 0);
9217e74e
YQ
8781 if (rs->buf[0] == 'E'
8782 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8783 && rs->buf[3] == '\0')
8784 return TARGET_XFER_E_IO;
8785 /* Reply describes memory byte by byte, each byte encoded as two hex
8786 characters. */
8d64371b 8787 p = rs->buf.data ();
124e13d9 8788 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8789 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8790 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8791 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8792}
8793
b55fbac4
YQ
8794/* Using the set of read-only target sections of remote, read live
8795 read-only memory.
8acf9577
YQ
8796
8797 For interface/parameters/return description see target.h,
8798 to_xfer_partial. */
8799
6b8edb51
PA
8800target_xfer_status
8801remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8802 ULONGEST memaddr,
8803 ULONGEST len,
8804 int unit_size,
8805 ULONGEST *xfered_len)
8acf9577
YQ
8806{
8807 struct target_section *secp;
8808 struct target_section_table *table;
8809
6b8edb51 8810 secp = target_section_by_addr (this, memaddr);
8acf9577 8811 if (secp != NULL
fd361982 8812 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8813 {
8814 struct target_section *p;
8815 ULONGEST memend = memaddr + len;
8816
6b8edb51 8817 table = target_get_section_table (this);
8acf9577
YQ
8818
8819 for (p = table->sections; p < table->sections_end; p++)
8820 {
8821 if (memaddr >= p->addr)
8822 {
8823 if (memend <= p->endaddr)
8824 {
8825 /* Entire transfer is within this section. */
124e13d9 8826 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8827 xfered_len);
8acf9577
YQ
8828 }
8829 else if (memaddr >= p->endaddr)
8830 {
8831 /* This section ends before the transfer starts. */
8832 continue;
8833 }
8834 else
8835 {
8836 /* This section overlaps the transfer. Just do half. */
8837 len = p->endaddr - memaddr;
124e13d9 8838 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8839 xfered_len);
8acf9577
YQ
8840 }
8841 }
8842 }
8843 }
8844
8845 return TARGET_XFER_EOF;
8846}
8847
9217e74e
YQ
8848/* Similar to remote_read_bytes_1, but it reads from the remote stub
8849 first if the requested memory is unavailable in traceframe.
8850 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8851
6b8edb51
PA
8852target_xfer_status
8853remote_target::remote_read_bytes (CORE_ADDR memaddr,
8854 gdb_byte *myaddr, ULONGEST len, int unit_size,
8855 ULONGEST *xfered_len)
c906108c 8856{
6b6aa828 8857 if (len == 0)
96c4f946 8858 return TARGET_XFER_EOF;
b2182ed2 8859
8acf9577
YQ
8860 if (get_traceframe_number () != -1)
8861 {
a79b1bc6 8862 std::vector<mem_range> available;
8acf9577
YQ
8863
8864 /* If we fail to get the set of available memory, then the
8865 target does not support querying traceframe info, and so we
8866 attempt reading from the traceframe anyway (assuming the
8867 target implements the old QTro packet then). */
8868 if (traceframe_available_memory (&available, memaddr, len))
8869 {
a79b1bc6 8870 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8871 {
8872 enum target_xfer_status res;
8873
8874 /* Don't read into the traceframe's available
8875 memory. */
a79b1bc6 8876 if (!available.empty ())
8acf9577
YQ
8877 {
8878 LONGEST oldlen = len;
8879
a79b1bc6 8880 len = available[0].start - memaddr;
8acf9577
YQ
8881 gdb_assert (len <= oldlen);
8882 }
8883
8acf9577 8884 /* This goes through the topmost target again. */
6b8edb51 8885 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8886 len, unit_size, xfered_len);
8acf9577
YQ
8887 if (res == TARGET_XFER_OK)
8888 return TARGET_XFER_OK;
8889 else
8890 {
8891 /* No use trying further, we know some memory starting
8892 at MEMADDR isn't available. */
8893 *xfered_len = len;
92ffd475
PC
8894 return (*xfered_len != 0) ?
8895 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8896 }
8897 }
8898
8899 /* Don't try to read more than how much is available, in
8900 case the target implements the deprecated QTro packet to
8901 cater for older GDBs (the target's knowledge of read-only
8902 sections may be outdated by now). */
a79b1bc6 8903 len = available[0].length;
8acf9577
YQ
8904 }
8905 }
8906
124e13d9 8907 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8908}
74531fed 8909
c906108c 8910\f
c906108c 8911
a76d924d
DJ
8912/* Sends a packet with content determined by the printf format string
8913 FORMAT and the remaining arguments, then gets the reply. Returns
8914 whether the packet was a success, a failure, or unknown. */
8915
6b8edb51
PA
8916packet_result
8917remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8918{
8919 struct remote_state *rs = get_remote_state ();
8920 int max_size = get_remote_packet_size ();
a76d924d 8921 va_list ap;
a744cf53 8922
a76d924d
DJ
8923 va_start (ap, format);
8924
8925 rs->buf[0] = '\0';
8d64371b 8926 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8927
8928 va_end (ap);
8929
8930 if (size >= max_size)
9b20d036 8931 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8932
8933 if (putpkt (rs->buf) < 0)
8934 error (_("Communication problem with target."));
8935
8936 rs->buf[0] = '\0';
8d64371b 8937 getpkt (&rs->buf, 0);
a76d924d
DJ
8938
8939 return packet_check_result (rs->buf);
8940}
8941
a76d924d
DJ
8942/* Flash writing can take quite some time. We'll set
8943 effectively infinite timeout for flash operations.
8944 In future, we'll need to decide on a better approach. */
8945static const int remote_flash_timeout = 1000;
8946
f6ac5f3d
PA
8947void
8948remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8949{
f5656ead 8950 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8951 enum packet_result ret;
2ec845e7
TT
8952 scoped_restore restore_timeout
8953 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8954
8955 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8956 phex (address, addr_size),
a76d924d
DJ
8957 phex (length, 4));
8958 switch (ret)
8959 {
8960 case PACKET_UNKNOWN:
8961 error (_("Remote target does not support flash erase"));
8962 case PACKET_ERROR:
8963 error (_("Error erasing flash with vFlashErase packet"));
8964 default:
8965 break;
8966 }
a76d924d
DJ
8967}
8968
6b8edb51
PA
8969target_xfer_status
8970remote_target::remote_flash_write (ULONGEST address,
8971 ULONGEST length, ULONGEST *xfered_len,
8972 const gdb_byte *data)
a76d924d 8973{
2ec845e7
TT
8974 scoped_restore restore_timeout
8975 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8976 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8977 xfered_len,'X', 0);
a76d924d
DJ
8978}
8979
f6ac5f3d
PA
8980void
8981remote_target::flash_done ()
a76d924d 8982{
a76d924d 8983 int ret;
a76d924d 8984
2ec845e7
TT
8985 scoped_restore restore_timeout
8986 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8987
a76d924d 8988 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8989
8990 switch (ret)
8991 {
8992 case PACKET_UNKNOWN:
8993 error (_("Remote target does not support vFlashDone"));
8994 case PACKET_ERROR:
8995 error (_("Error finishing flash operation"));
8996 default:
8997 break;
8998 }
8999}
9000
f6ac5f3d
PA
9001void
9002remote_target::files_info ()
c906108c
SS
9003{
9004 puts_filtered ("Debugging a target over a serial line.\n");
9005}
9006\f
9007/* Stuff for dealing with the packets which are part of this protocol.
9008 See comment at top of file for details. */
9009
1927e618
PA
9010/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9011 error to higher layers. Called when a serial error is detected.
9012 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9013 the system error message for errno at function entry and final dot
9014 for output compatibility with throw_perror_with_name. */
1927e618
PA
9015
9016static void
5b6d1e4f 9017unpush_and_perror (remote_target *target, const char *string)
1927e618 9018{
d6cb50a2 9019 int saved_errno = errno;
1927e618 9020
5b6d1e4f 9021 remote_unpush_target (target);
d6cb50a2
JK
9022 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9023 safe_strerror (saved_errno));
1927e618
PA
9024}
9025
048094ac
PA
9026/* Read a single character from the remote end. The current quit
9027 handler is overridden to avoid quitting in the middle of packet
9028 sequence, as that would break communication with the remote server.
9029 See remote_serial_quit_handler for more detail. */
c906108c 9030
6b8edb51
PA
9031int
9032remote_target::readchar (int timeout)
c906108c
SS
9033{
9034 int ch;
5d93a237 9035 struct remote_state *rs = get_remote_state ();
048094ac 9036
2ec845e7 9037 {
6b8edb51
PA
9038 scoped_restore restore_quit_target
9039 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9040 scoped_restore restore_quit
6b8edb51 9041 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9042
2ec845e7 9043 rs->got_ctrlc_during_io = 0;
c906108c 9044
2ec845e7 9045 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9046
2ec845e7
TT
9047 if (rs->got_ctrlc_during_io)
9048 set_quit_flag ();
9049 }
048094ac 9050
2acceee2 9051 if (ch >= 0)
0876f84a 9052 return ch;
2acceee2
JM
9053
9054 switch ((enum serial_rc) ch)
c906108c
SS
9055 {
9056 case SERIAL_EOF:
5b6d1e4f 9057 remote_unpush_target (this);
598d3636 9058 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9059 /* no return */
c906108c 9060 case SERIAL_ERROR:
5b6d1e4f
PA
9061 unpush_and_perror (this, _("Remote communication error. "
9062 "Target disconnected."));
2acceee2 9063 /* no return */
c906108c 9064 case SERIAL_TIMEOUT:
2acceee2 9065 break;
c906108c 9066 }
2acceee2 9067 return ch;
c906108c
SS
9068}
9069
c33e31fd 9070/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9071 writing fails. The current quit handler is overridden to avoid
9072 quitting in the middle of packet sequence, as that would break
9073 communication with the remote server. See
9074 remote_serial_quit_handler for more detail. */
c33e31fd 9075
6b8edb51
PA
9076void
9077remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9078{
5d93a237 9079 struct remote_state *rs = get_remote_state ();
048094ac 9080
6b8edb51
PA
9081 scoped_restore restore_quit_target
9082 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9083 scoped_restore restore_quit
6b8edb51 9084 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9085
9086 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9087
9088 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9089 {
5b6d1e4f
PA
9090 unpush_and_perror (this, _("Remote communication error. "
9091 "Target disconnected."));
c33e31fd 9092 }
048094ac
PA
9093
9094 if (rs->got_ctrlc_during_io)
9095 set_quit_flag ();
c33e31fd
PA
9096}
9097
b3ced9ba
PA
9098/* Return a string representing an escaped version of BUF, of len N.
9099 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9100
b3ced9ba 9101static std::string
6e5abd65
PA
9102escape_buffer (const char *buf, int n)
9103{
d7e74731 9104 string_file stb;
6e5abd65 9105
d7e74731
PA
9106 stb.putstrn (buf, n, '\\');
9107 return std::move (stb.string ());
6e5abd65
PA
9108}
9109
c906108c
SS
9110/* Display a null-terminated packet on stdout, for debugging, using C
9111 string notation. */
9112
9113static void
baa336ce 9114print_packet (const char *buf)
c906108c
SS
9115{
9116 puts_filtered ("\"");
43e526b9 9117 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9118 puts_filtered ("\"");
9119}
9120
9121int
6b8edb51 9122remote_target::putpkt (const char *buf)
c906108c
SS
9123{
9124 return putpkt_binary (buf, strlen (buf));
9125}
9126
6b8edb51
PA
9127/* Wrapper around remote_target::putpkt to avoid exporting
9128 remote_target. */
9129
9130int
9131putpkt (remote_target *remote, const char *buf)
9132{
9133 return remote->putpkt (buf);
9134}
9135
c906108c 9136/* Send a packet to the remote machine, with error checking. The data
23860348 9137 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9138 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9139 and for a possible /0 if we are debugging (remote_debug) and want
9140 to print the sent packet as a string. */
c906108c 9141
6b8edb51
PA
9142int
9143remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9144{
2d717e4f 9145 struct remote_state *rs = get_remote_state ();
c906108c
SS
9146 int i;
9147 unsigned char csum = 0;
b80406ac
TT
9148 gdb::def_vector<char> data (cnt + 6);
9149 char *buf2 = data.data ();
085dd6e6 9150
c906108c
SS
9151 int ch;
9152 int tcount = 0;
9153 char *p;
9154
e24a49d8
PA
9155 /* Catch cases like trying to read memory or listing threads while
9156 we're waiting for a stop reply. The remote server wouldn't be
9157 ready to handle this request, so we'd hang and timeout. We don't
9158 have to worry about this in synchronous mode, because in that
9159 case it's not possible to issue a command while the target is
74531fed
PA
9160 running. This is not a problem in non-stop mode, because in that
9161 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9162 if (!target_is_non_stop_p ()
9163 && target_is_async_p ()
9164 && rs->waiting_for_stop_reply)
9597b22a
DE
9165 {
9166 error (_("Cannot execute this command while the target is running.\n"
9167 "Use the \"interrupt\" command to stop the target\n"
9168 "and then try again."));
9169 }
e24a49d8 9170
2d717e4f
DJ
9171 /* We're sending out a new packet. Make sure we don't look at a
9172 stale cached response. */
9173 rs->cached_wait_status = 0;
9174
c906108c
SS
9175 /* Copy the packet into buffer BUF2, encapsulating it
9176 and giving it a checksum. */
9177
c906108c
SS
9178 p = buf2;
9179 *p++ = '$';
9180
9181 for (i = 0; i < cnt; i++)
9182 {
9183 csum += buf[i];
9184 *p++ = buf[i];
9185 }
9186 *p++ = '#';
9187 *p++ = tohex ((csum >> 4) & 0xf);
9188 *p++ = tohex (csum & 0xf);
9189
9190 /* Send it over and over until we get a positive ack. */
9191
9192 while (1)
9193 {
9194 int started_error_output = 0;
9195
9196 if (remote_debug)
9197 {
9198 *p = '\0';
b3ced9ba 9199
6f8976bf 9200 int len = (int) (p - buf2);
6cc8564b
LM
9201 int max_chars;
9202
9203 if (remote_packet_max_chars < 0)
9204 max_chars = len;
9205 else
9206 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9207
9208 std::string str
6cc8564b 9209 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9210
9211 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9212
6cc8564b 9213 if (len > max_chars)
567a3e54 9214 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9215 len - max_chars);
6f8976bf
YQ
9216
9217 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9218
0f71a2f6 9219 gdb_flush (gdb_stdlog);
c906108c 9220 }
c33e31fd 9221 remote_serial_write (buf2, p - buf2);
c906108c 9222
a6f3e723
SL
9223 /* If this is a no acks version of the remote protocol, send the
9224 packet and move on. */
9225 if (rs->noack_mode)
9226 break;
9227
74531fed
PA
9228 /* Read until either a timeout occurs (-2) or '+' is read.
9229 Handle any notification that arrives in the mean time. */
c906108c
SS
9230 while (1)
9231 {
9232 ch = readchar (remote_timeout);
9233
c5aa993b 9234 if (remote_debug)
c906108c
SS
9235 {
9236 switch (ch)
9237 {
9238 case '+':
1216fa2c 9239 case '-':
c906108c
SS
9240 case SERIAL_TIMEOUT:
9241 case '$':
74531fed 9242 case '%':
c906108c
SS
9243 if (started_error_output)
9244 {
9245 putchar_unfiltered ('\n');
9246 started_error_output = 0;
9247 }
9248 }
9249 }
9250
9251 switch (ch)
9252 {
9253 case '+':
9254 if (remote_debug)
0f71a2f6 9255 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9256 return 1;
1216fa2c
AC
9257 case '-':
9258 if (remote_debug)
9259 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9260 /* FALLTHROUGH */
c906108c 9261 case SERIAL_TIMEOUT:
c5aa993b 9262 tcount++;
c906108c 9263 if (tcount > 3)
b80406ac 9264 return 0;
23860348 9265 break; /* Retransmit buffer. */
c906108c
SS
9266 case '$':
9267 {
40e3f985 9268 if (remote_debug)
2bc416ba 9269 fprintf_unfiltered (gdb_stdlog,
23860348 9270 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9271 /* It's probably an old response sent because an ACK
9272 was lost. Gobble up the packet and ack it so it
9273 doesn't get retransmitted when we resend this
9274 packet. */
6d820c5c 9275 skip_frame ();
c33e31fd 9276 remote_serial_write ("+", 1);
23860348 9277 continue; /* Now, go look for +. */
c906108c 9278 }
74531fed
PA
9279
9280 case '%':
9281 {
9282 int val;
9283
9284 /* If we got a notification, handle it, and go back to looking
9285 for an ack. */
9286 /* We've found the start of a notification. Now
9287 collect the data. */
8d64371b 9288 val = read_frame (&rs->buf);
74531fed
PA
9289 if (val >= 0)
9290 {
9291 if (remote_debug)
9292 {
8d64371b 9293 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9294
6e5abd65
PA
9295 fprintf_unfiltered (gdb_stdlog,
9296 " Notification received: %s\n",
b3ced9ba 9297 str.c_str ());
74531fed 9298 }
8d64371b 9299 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9300 /* We're in sync now, rewait for the ack. */
9301 tcount = 0;
9302 }
9303 else
9304 {
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);
8d64371b 9313 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9314 }
9315 }
9316 continue;
9317 }
9318 /* fall-through */
c906108c
SS
9319 default:
9320 if (remote_debug)
9321 {
9322 if (!started_error_output)
9323 {
9324 started_error_output = 1;
0f71a2f6 9325 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9326 }
0f71a2f6 9327 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9328 }
9329 continue;
9330 }
23860348 9331 break; /* Here to retransmit. */
c906108c
SS
9332 }
9333
9334#if 0
9335 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9336 able to get out next time we call QUIT, without anything as
9337 violent as interrupt_query. If we want to provide a way out of
9338 here without getting to the next QUIT, it should be based on
9339 hitting ^C twice as in remote_wait. */
c906108c
SS
9340 if (quit_flag)
9341 {
9342 quit_flag = 0;
9343 interrupt_query ();
9344 }
9345#endif
9346 }
a5c0808e 9347
a6f3e723 9348 return 0;
c906108c
SS
9349}
9350
6d820c5c
DJ
9351/* Come here after finding the start of a frame when we expected an
9352 ack. Do our best to discard the rest of this packet. */
9353
6b8edb51
PA
9354void
9355remote_target::skip_frame ()
6d820c5c
DJ
9356{
9357 int c;
9358
9359 while (1)
9360 {
9361 c = readchar (remote_timeout);
9362 switch (c)
9363 {
9364 case SERIAL_TIMEOUT:
9365 /* Nothing we can do. */
9366 return;
9367 case '#':
9368 /* Discard the two bytes of checksum and stop. */
9369 c = readchar (remote_timeout);
9370 if (c >= 0)
9371 c = readchar (remote_timeout);
9372
9373 return;
9374 case '*': /* Run length encoding. */
9375 /* Discard the repeat count. */
9376 c = readchar (remote_timeout);
9377 if (c < 0)
9378 return;
9379 break;
9380 default:
9381 /* A regular character. */
9382 break;
9383 }
9384 }
9385}
9386
c906108c 9387/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9388 into *BUF, verifying the checksum, length, and handling run-length
9389 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9390 expand *BUF.
c906108c 9391
c2d11a7d
JM
9392 Returns -1 on error, number of characters in buffer (ignoring the
9393 trailing NULL) on success. (could be extended to return one of the
23860348 9394 SERIAL status indications). */
c2d11a7d 9395
6b8edb51 9396long
8d64371b 9397remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9398{
9399 unsigned char csum;
c2d11a7d 9400 long bc;
c906108c 9401 int c;
8d64371b 9402 char *buf = buf_p->data ();
a6f3e723 9403 struct remote_state *rs = get_remote_state ();
c906108c
SS
9404
9405 csum = 0;
c2d11a7d 9406 bc = 0;
c906108c
SS
9407
9408 while (1)
9409 {
9410 c = readchar (remote_timeout);
c906108c
SS
9411 switch (c)
9412 {
9413 case SERIAL_TIMEOUT:
9414 if (remote_debug)
0f71a2f6 9415 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9416 return -1;
c906108c
SS
9417 case '$':
9418 if (remote_debug)
0f71a2f6
JM
9419 fputs_filtered ("Saw new packet start in middle of old one\n",
9420 gdb_stdlog);
23860348 9421 return -1; /* Start a new packet, count retries. */
c906108c
SS
9422 case '#':
9423 {
9424 unsigned char pktcsum;
e1b09194
AC
9425 int check_0 = 0;
9426 int check_1 = 0;
c906108c 9427
c2d11a7d 9428 buf[bc] = '\0';
c906108c 9429
e1b09194
AC
9430 check_0 = readchar (remote_timeout);
9431 if (check_0 >= 0)
9432 check_1 = readchar (remote_timeout);
802188a7 9433
e1b09194
AC
9434 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9435 {
9436 if (remote_debug)
2bc416ba 9437 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9438 gdb_stdlog);
e1b09194
AC
9439 return -1;
9440 }
9441 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9442 {
9443 if (remote_debug)
2bc416ba 9444 fputs_filtered ("Communication error in checksum\n",
23860348 9445 gdb_stdlog);
40e3f985
FN
9446 return -1;
9447 }
c906108c 9448
a6f3e723
SL
9449 /* Don't recompute the checksum; with no ack packets we
9450 don't have any way to indicate a packet retransmission
9451 is necessary. */
9452 if (rs->noack_mode)
9453 return bc;
9454
e1b09194 9455 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9456 if (csum == pktcsum)
c2d11a7d 9457 return bc;
c906108c 9458
c5aa993b 9459 if (remote_debug)
c906108c 9460 {
b3ced9ba 9461 std::string str = escape_buffer (buf, bc);
6e5abd65 9462
6e5abd65 9463 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9464 "Bad checksum, sentsum=0x%x, "
9465 "csum=0x%x, buf=%s\n",
b3ced9ba 9466 pktcsum, csum, str.c_str ());
c906108c 9467 }
c2d11a7d 9468 /* Number of characters in buffer ignoring trailing
23860348 9469 NULL. */
c2d11a7d 9470 return -1;
c906108c 9471 }
23860348 9472 case '*': /* Run length encoding. */
c2c6d25f
JM
9473 {
9474 int repeat;
c906108c 9475
a744cf53 9476 csum += c;
b4501125
AC
9477 c = readchar (remote_timeout);
9478 csum += c;
23860348 9479 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9480
23860348 9481 /* The character before ``*'' is repeated. */
c2d11a7d 9482
6d820c5c 9483 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9484 {
8d64371b 9485 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9486 {
9487 /* Make some more room in the buffer. */
8d64371b
TT
9488 buf_p->resize (buf_p->size () + repeat);
9489 buf = buf_p->data ();
6d820c5c
DJ
9490 }
9491
c2d11a7d
JM
9492 memset (&buf[bc], buf[bc - 1], repeat);
9493 bc += repeat;
c2c6d25f
JM
9494 continue;
9495 }
9496
c2d11a7d 9497 buf[bc] = '\0';
6d820c5c 9498 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9499 return -1;
c2c6d25f 9500 }
c906108c 9501 default:
8d64371b 9502 if (bc >= buf_p->size () - 1)
c906108c 9503 {
6d820c5c 9504 /* Make some more room in the buffer. */
8d64371b
TT
9505 buf_p->resize (buf_p->size () * 2);
9506 buf = buf_p->data ();
c906108c
SS
9507 }
9508
6d820c5c
DJ
9509 buf[bc++] = c;
9510 csum += c;
9511 continue;
c906108c
SS
9512 }
9513 }
9514}
9515
ed2b7c17
TT
9516/* Set this to the maximum number of seconds to wait instead of waiting forever
9517 in target_wait(). If this timer times out, then it generates an error and
9518 the command is aborted. This replaces most of the need for timeouts in the
9519 GDB test suite, and makes it possible to distinguish between a hung target
9520 and one with slow communications. */
9521
9522static int watchdog = 0;
9523static void
9524show_watchdog (struct ui_file *file, int from_tty,
9525 struct cmd_list_element *c, const char *value)
9526{
9527 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9528}
9529
c906108c 9530/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9531 store it in *BUF. Resize *BUF if necessary to hold the result. If
9532 FOREVER, wait forever rather than timing out; this is used (in
9533 synchronous mode) to wait for a target that is is executing user
9534 code to stop. */
d9fcf2fb
JM
9535/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9536 don't have to change all the calls to getpkt to deal with the
9537 return value, because at the moment I don't know what the right
23860348 9538 thing to do it for those. */
6b8edb51 9539
c906108c 9540void
8d64371b 9541remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9542{
8d64371b 9543 getpkt_sane (buf, forever);
d9fcf2fb
JM
9544}
9545
9546
9547/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9548 store it in *BUF. Resize *BUF if necessary to hold the result. If
9549 FOREVER, wait forever rather than timing out; this is used (in
9550 synchronous mode) to wait for a target that is is executing user
9551 code to stop. If FOREVER == 0, this function is allowed to time
9552 out gracefully and return an indication of this to the caller.
9553 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9554 consider receiving a notification enough reason to return to the
9555 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9556 holds a notification or not (a regular packet). */
74531fed 9557
6b8edb51 9558int
8d64371b 9559remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9560 int forever, int expecting_notif,
9561 int *is_notif)
c906108c 9562{
2d717e4f 9563 struct remote_state *rs = get_remote_state ();
c906108c
SS
9564 int c;
9565 int tries;
9566 int timeout;
df4b58fe 9567 int val = -1;
c906108c 9568
2d717e4f
DJ
9569 /* We're reading a new response. Make sure we don't look at a
9570 previously cached response. */
9571 rs->cached_wait_status = 0;
9572
8d64371b 9573 strcpy (buf->data (), "timeout");
c906108c
SS
9574
9575 if (forever)
74531fed
PA
9576 timeout = watchdog > 0 ? watchdog : -1;
9577 else if (expecting_notif)
9578 timeout = 0; /* There should already be a char in the buffer. If
9579 not, bail out. */
c906108c
SS
9580 else
9581 timeout = remote_timeout;
9582
9583#define MAX_TRIES 3
9584
74531fed
PA
9585 /* Process any number of notifications, and then return when
9586 we get a packet. */
9587 for (;;)
c906108c 9588 {
d9c43928 9589 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9590 times. */
9591 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9592 {
74531fed
PA
9593 /* This can loop forever if the remote side sends us
9594 characters continuously, but if it pauses, we'll get
9595 SERIAL_TIMEOUT from readchar because of timeout. Then
9596 we'll count that as a retry.
9597
9598 Note that even when forever is set, we will only wait
9599 forever prior to the start of a packet. After that, we
9600 expect characters to arrive at a brisk pace. They should
9601 show up within remote_timeout intervals. */
9602 do
9603 c = readchar (timeout);
9604 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9605
9606 if (c == SERIAL_TIMEOUT)
9607 {
74531fed
PA
9608 if (expecting_notif)
9609 return -1; /* Don't complain, it's normal to not get
9610 anything in this case. */
9611
23860348 9612 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9613 {
5b6d1e4f 9614 remote_unpush_target (this);
598d3636
JK
9615 throw_error (TARGET_CLOSE_ERROR,
9616 _("Watchdog timeout has expired. "
9617 "Target detached."));
c906108c 9618 }
c906108c 9619 if (remote_debug)
0f71a2f6 9620 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9621 }
74531fed
PA
9622 else
9623 {
9624 /* We've found the start of a packet or notification.
9625 Now collect the data. */
8d64371b 9626 val = read_frame (buf);
74531fed
PA
9627 if (val >= 0)
9628 break;
9629 }
9630
c33e31fd 9631 remote_serial_write ("-", 1);
c906108c 9632 }
c906108c 9633
74531fed
PA
9634 if (tries > MAX_TRIES)
9635 {
9636 /* We have tried hard enough, and just can't receive the
9637 packet/notification. Give up. */
9638 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9639
74531fed
PA
9640 /* Skip the ack char if we're in no-ack mode. */
9641 if (!rs->noack_mode)
c33e31fd 9642 remote_serial_write ("+", 1);
74531fed
PA
9643 return -1;
9644 }
c906108c 9645
74531fed
PA
9646 /* If we got an ordinary packet, return that to our caller. */
9647 if (c == '$')
c906108c
SS
9648 {
9649 if (remote_debug)
43e526b9 9650 {
6cc8564b
LM
9651 int max_chars;
9652
9653 if (remote_packet_max_chars < 0)
9654 max_chars = val;
9655 else
9656 max_chars = remote_packet_max_chars;
9657
6f8976bf 9658 std::string str
8d64371b 9659 = escape_buffer (buf->data (),
6cc8564b 9660 std::min (val, max_chars));
6f8976bf
YQ
9661
9662 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9663 str.c_str ());
9664
6cc8564b 9665 if (val > max_chars)
567a3e54 9666 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9667 val - max_chars);
6e5abd65 9668
6f8976bf 9669 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9670 }
a6f3e723
SL
9671
9672 /* Skip the ack char if we're in no-ack mode. */
9673 if (!rs->noack_mode)
c33e31fd 9674 remote_serial_write ("+", 1);
fee9eda9
YQ
9675 if (is_notif != NULL)
9676 *is_notif = 0;
0876f84a 9677 return val;
c906108c
SS
9678 }
9679
74531fed
PA
9680 /* If we got a notification, handle it, and go back to looking
9681 for a packet. */
9682 else
9683 {
9684 gdb_assert (c == '%');
9685
9686 if (remote_debug)
9687 {
8d64371b 9688 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9689
6e5abd65
PA
9690 fprintf_unfiltered (gdb_stdlog,
9691 " Notification received: %s\n",
b3ced9ba 9692 str.c_str ());
74531fed 9693 }
fee9eda9
YQ
9694 if (is_notif != NULL)
9695 *is_notif = 1;
c906108c 9696
8d64371b 9697 handle_notification (rs->notif_state, buf->data ());
c906108c 9698
74531fed 9699 /* Notifications require no acknowledgement. */
a6f3e723 9700
74531fed 9701 if (expecting_notif)
fee9eda9 9702 return val;
74531fed
PA
9703 }
9704 }
9705}
9706
6b8edb51 9707int
8d64371b 9708remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9709{
8d64371b 9710 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9711}
9712
6b8edb51 9713int
8d64371b 9714remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9715 int *is_notif)
74531fed 9716{
8d64371b 9717 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9718}
74531fed 9719
cbb8991c
DB
9720/* Kill any new fork children of process PID that haven't been
9721 processed by follow_fork. */
9722
6b8edb51
PA
9723void
9724remote_target::kill_new_fork_children (int pid)
cbb8991c 9725{
6b8edb51 9726 remote_state *rs = get_remote_state ();
cbb8991c 9727 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9728
9729 /* Kill the fork child threads of any threads in process PID
9730 that are stopped at a fork event. */
5b6d1e4f 9731 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9732 {
9733 struct target_waitstatus *ws = &thread->pending_follow;
9734
9735 if (is_pending_fork_parent (ws, pid, thread->ptid))
9736 {
953edf2b 9737 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9738 int res;
9739
6b8edb51 9740 res = remote_vkill (child_pid);
cbb8991c
DB
9741 if (res != 0)
9742 error (_("Can't kill fork child process %d"), child_pid);
9743 }
9744 }
9745
9746 /* Check for any pending fork events (not reported or processed yet)
9747 in process PID and kill those fork child threads as well. */
9748 remote_notif_get_pending_events (notif);
953edf2b
TT
9749 for (auto &event : rs->stop_reply_queue)
9750 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9751 {
9752 int child_pid = event->ws.value.related_pid.pid ();
9753 int res;
9754
9755 res = remote_vkill (child_pid);
9756 if (res != 0)
9757 error (_("Can't kill fork child process %d"), child_pid);
9758 }
cbb8991c
DB
9759}
9760
c906108c 9761\f
8020350c
DB
9762/* Target hook to kill the current inferior. */
9763
f6ac5f3d
PA
9764void
9765remote_target::kill ()
43ff13b4 9766{
8020350c 9767 int res = -1;
e99b03dc 9768 int pid = inferior_ptid.pid ();
8020350c 9769 struct remote_state *rs = get_remote_state ();
0fdf84ca 9770
8020350c 9771 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9772 {
8020350c
DB
9773 /* If we're stopped while forking and we haven't followed yet,
9774 kill the child task. We need to do this before killing the
9775 parent task because if this is a vfork then the parent will
9776 be sleeping. */
6b8edb51 9777 kill_new_fork_children (pid);
8020350c 9778
6b8edb51 9779 res = remote_vkill (pid);
8020350c 9780 if (res == 0)
0fdf84ca 9781 {
bc1e6c81 9782 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9783 return;
9784 }
8020350c 9785 }
0fdf84ca 9786
8020350c
DB
9787 /* If we are in 'target remote' mode and we are killing the only
9788 inferior, then we will tell gdbserver to exit and unpush the
9789 target. */
9790 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 9791 && number_of_live_inferiors (this) == 1)
8020350c
DB
9792 {
9793 remote_kill_k ();
9794
9795 /* We've killed the remote end, we get to mourn it. If we are
9796 not in extended mode, mourning the inferior also unpushes
9797 remote_ops from the target stack, which closes the remote
9798 connection. */
bc1e6c81 9799 target_mourn_inferior (inferior_ptid);
8020350c
DB
9800
9801 return;
0fdf84ca 9802 }
43ff13b4 9803
8020350c 9804 error (_("Can't kill process"));
43ff13b4
JM
9805}
9806
8020350c
DB
9807/* Send a kill request to the target using the 'vKill' packet. */
9808
6b8edb51
PA
9809int
9810remote_target::remote_vkill (int pid)
82f73884 9811{
4082afcc 9812 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9813 return -1;
9814
6b8edb51
PA
9815 remote_state *rs = get_remote_state ();
9816
82f73884 9817 /* Tell the remote target to detach. */
8d64371b 9818 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9819 putpkt (rs->buf);
8d64371b 9820 getpkt (&rs->buf, 0);
82f73884 9821
4082afcc
PA
9822 switch (packet_ok (rs->buf,
9823 &remote_protocol_packets[PACKET_vKill]))
9824 {
9825 case PACKET_OK:
9826 return 0;
9827 case PACKET_ERROR:
9828 return 1;
9829 case PACKET_UNKNOWN:
9830 return -1;
9831 default:
9832 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9833 }
82f73884
PA
9834}
9835
8020350c
DB
9836/* Send a kill request to the target using the 'k' packet. */
9837
6b8edb51
PA
9838void
9839remote_target::remote_kill_k ()
82f73884 9840{
8020350c
DB
9841 /* Catch errors so the user can quit from gdb even when we
9842 aren't on speaking terms with the remote system. */
a70b8144 9843 try
82f73884 9844 {
82f73884 9845 putpkt ("k");
82f73884 9846 }
230d2906 9847 catch (const gdb_exception_error &ex)
8020350c
DB
9848 {
9849 if (ex.error == TARGET_CLOSE_ERROR)
9850 {
9851 /* If we got an (EOF) error that caused the target
9852 to go away, then we're done, that's what we wanted.
9853 "k" is susceptible to cause a premature EOF, given
9854 that the remote server isn't actually required to
9855 reply to "k", and it can happen that it doesn't
9856 even get to reply ACK to the "k". */
9857 return;
9858 }
82f73884 9859
8020350c
DB
9860 /* Otherwise, something went wrong. We didn't actually kill
9861 the target. Just propagate the exception, and let the
9862 user or higher layers decide what to do. */
eedc3f4f 9863 throw;
8020350c 9864 }
82f73884
PA
9865}
9866
f6ac5f3d
PA
9867void
9868remote_target::mourn_inferior ()
c906108c 9869{
8020350c 9870 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9871
9607784a
PA
9872 /* We're no longer interested in notification events of an inferior
9873 that exited or was killed/detached. */
9874 discard_pending_stop_replies (current_inferior ());
9875
8020350c 9876 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 9877 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 9878 {
5b6d1e4f 9879 remote_unpush_target (this);
8020350c
DB
9880 return;
9881 }
c906108c 9882
e24a49d8
PA
9883 /* In case we got here due to an error, but we're going to stay
9884 connected. */
9885 rs->waiting_for_stop_reply = 0;
9886
dc1981d7
PA
9887 /* If the current general thread belonged to the process we just
9888 detached from or has exited, the remote side current general
9889 thread becomes undefined. Considering a case like this:
9890
9891 - We just got here due to a detach.
9892 - The process that we're detaching from happens to immediately
9893 report a global breakpoint being hit in non-stop mode, in the
9894 same thread we had selected before.
9895 - GDB attaches to this process again.
9896 - This event happens to be the next event we handle.
9897
9898 GDB would consider that the current general thread didn't need to
9899 be set on the stub side (with Hg), since for all it knew,
9900 GENERAL_THREAD hadn't changed.
9901
9902 Notice that although in all-stop mode, the remote server always
9903 sets the current thread to the thread reporting the stop event,
9904 that doesn't happen in non-stop mode; in non-stop, the stub *must
9905 not* change the current thread when reporting a breakpoint hit,
9906 due to the decoupling of event reporting and event handling.
9907
9908 To keep things simple, we always invalidate our notion of the
9909 current thread. */
47f8a51d 9910 record_currthread (rs, minus_one_ptid);
dc1981d7 9911
8020350c 9912 /* Call common code to mark the inferior as not running. */
48aa3c27 9913 generic_mourn_inferior ();
2d717e4f 9914}
c906108c 9915
57810aa7 9916bool
f6ac5f3d 9917extended_remote_target::supports_disable_randomization ()
03583c20 9918{
4082afcc 9919 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9920}
9921
6b8edb51
PA
9922void
9923remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9924{
9925 struct remote_state *rs = get_remote_state ();
9926 char *reply;
9927
8d64371b
TT
9928 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9929 "QDisableRandomization:%x", val);
03583c20 9930 putpkt (rs->buf);
b6bb3468 9931 reply = remote_get_noisy_reply ();
03583c20
UW
9932 if (*reply == '\0')
9933 error (_("Target does not support QDisableRandomization."));
9934 if (strcmp (reply, "OK") != 0)
9935 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9936}
9937
6b8edb51
PA
9938int
9939remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9940{
9941 struct remote_state *rs = get_remote_state ();
2d717e4f 9942 int len;
94585166 9943 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9944
2d717e4f
DJ
9945 /* If the user has disabled vRun support, or we have detected that
9946 support is not available, do not try it. */
4082afcc 9947 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9948 return -1;
424163ea 9949
8d64371b
TT
9950 strcpy (rs->buf.data (), "vRun;");
9951 len = strlen (rs->buf.data ());
c906108c 9952
2d717e4f
DJ
9953 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9954 error (_("Remote file name too long for run packet"));
8d64371b 9955 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9956 strlen (remote_exec_file));
2d717e4f 9957
7c5ded6a 9958 if (!args.empty ())
2d717e4f 9959 {
2d717e4f 9960 int i;
2d717e4f 9961
773a1edc 9962 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9963 for (i = 0; argv[i] != NULL; i++)
9964 {
9965 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9966 error (_("Argument list too long for run packet"));
9967 rs->buf[len++] = ';';
8d64371b 9968 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9969 strlen (argv[i]));
2d717e4f 9970 }
2d717e4f
DJ
9971 }
9972
9973 rs->buf[len++] = '\0';
9974
9975 putpkt (rs->buf);
8d64371b 9976 getpkt (&rs->buf, 0);
2d717e4f 9977
4082afcc 9978 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9979 {
4082afcc 9980 case PACKET_OK:
3405876a 9981 /* We have a wait response. All is well. */
2d717e4f 9982 return 0;
4082afcc
PA
9983 case PACKET_UNKNOWN:
9984 return -1;
9985 case PACKET_ERROR:
2d717e4f
DJ
9986 if (remote_exec_file[0] == '\0')
9987 error (_("Running the default executable on the remote target failed; "
9988 "try \"set remote exec-file\"?"));
9989 else
9990 error (_("Running \"%s\" on the remote target failed"),
9991 remote_exec_file);
4082afcc
PA
9992 default:
9993 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9994 }
c906108c
SS
9995}
9996
0a2dde4a
SDJ
9997/* Helper function to send set/unset environment packets. ACTION is
9998 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9999 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10000 sent. */
10001
6b8edb51
PA
10002void
10003remote_target::send_environment_packet (const char *action,
10004 const char *packet,
10005 const char *value)
0a2dde4a 10006{
6b8edb51
PA
10007 remote_state *rs = get_remote_state ();
10008
0a2dde4a
SDJ
10009 /* Convert the environment variable to an hex string, which
10010 is the best format to be transmitted over the wire. */
10011 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10012 strlen (value));
10013
8d64371b 10014 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10015 "%s:%s", packet, encoded_value.c_str ());
10016
10017 putpkt (rs->buf);
8d64371b
TT
10018 getpkt (&rs->buf, 0);
10019 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10020 warning (_("Unable to %s environment variable '%s' on remote."),
10021 action, value);
10022}
10023
10024/* Helper function to handle the QEnvironment* packets. */
10025
6b8edb51
PA
10026void
10027remote_target::extended_remote_environment_support ()
0a2dde4a 10028{
6b8edb51
PA
10029 remote_state *rs = get_remote_state ();
10030
0a2dde4a
SDJ
10031 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10032 {
10033 putpkt ("QEnvironmentReset");
8d64371b
TT
10034 getpkt (&rs->buf, 0);
10035 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10036 warning (_("Unable to reset environment on remote."));
10037 }
10038
10039 gdb_environ *e = &current_inferior ()->environment;
10040
10041 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10042 for (const std::string &el : e->user_set_env ())
6b8edb51 10043 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10044 el.c_str ());
10045
10046 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10047 for (const std::string &el : e->user_unset_env ())
6b8edb51 10048 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10049}
10050
bc3b087d
SDJ
10051/* Helper function to set the current working directory for the
10052 inferior in the remote target. */
10053
6b8edb51
PA
10054void
10055remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10056{
10057 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10058 {
10059 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10060 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10061
10062 if (inferior_cwd != NULL)
10063 {
10064 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10065 strlen (inferior_cwd));
10066
8d64371b 10067 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10068 "QSetWorkingDir:%s", hexpath.c_str ());
10069 }
10070 else
10071 {
10072 /* An empty inferior_cwd means that the user wants us to
10073 reset the remote server's inferior's cwd. */
8d64371b 10074 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10075 "QSetWorkingDir:");
10076 }
10077
10078 putpkt (rs->buf);
8d64371b 10079 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10080 if (packet_ok (rs->buf,
10081 &remote_protocol_packets[PACKET_QSetWorkingDir])
10082 != PACKET_OK)
10083 error (_("\
10084Remote replied unexpectedly while setting the inferior's working\n\
10085directory: %s"),
8d64371b 10086 rs->buf.data ());
bc3b087d
SDJ
10087
10088 }
10089}
10090
2d717e4f
DJ
10091/* In the extended protocol we want to be able to do things like
10092 "run" and have them basically work as expected. So we need
10093 a special create_inferior function. We support changing the
10094 executable file and the command line arguments, but not the
10095 environment. */
10096
f6ac5f3d
PA
10097void
10098extended_remote_target::create_inferior (const char *exec_file,
10099 const std::string &args,
10100 char **env, int from_tty)
43ff13b4 10101{
3405876a
PA
10102 int run_worked;
10103 char *stop_reply;
10104 struct remote_state *rs = get_remote_state ();
94585166 10105 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10106
43ff13b4 10107 /* If running asynchronously, register the target file descriptor
23860348 10108 with the event loop. */
75c99385 10109 if (target_can_async_p ())
6a3753b3 10110 target_async (1);
43ff13b4 10111
03583c20 10112 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10113 if (supports_disable_randomization ())
03583c20
UW
10114 extended_remote_disable_randomization (disable_randomization);
10115
aefd8b33
SDJ
10116 /* If startup-with-shell is on, we inform gdbserver to start the
10117 remote inferior using a shell. */
10118 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10119 {
8d64371b 10120 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10121 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10122 putpkt (rs->buf);
8d64371b
TT
10123 getpkt (&rs->buf, 0);
10124 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10125 error (_("\
10126Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10127 rs->buf.data ());
aefd8b33
SDJ
10128 }
10129
6b8edb51 10130 extended_remote_environment_support ();
0a2dde4a 10131
6b8edb51 10132 extended_remote_set_inferior_cwd ();
bc3b087d 10133
43ff13b4 10134 /* Now restart the remote server. */
3405876a
PA
10135 run_worked = extended_remote_run (args) != -1;
10136 if (!run_worked)
2d717e4f
DJ
10137 {
10138 /* vRun was not supported. Fail if we need it to do what the
10139 user requested. */
10140 if (remote_exec_file[0])
10141 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10142 if (!args.empty ())
65e65158 10143 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10144
2d717e4f
DJ
10145 /* Fall back to "R". */
10146 extended_remote_restart ();
10147 }
424163ea 10148
3405876a 10149 /* vRun's success return is a stop reply. */
8d64371b 10150 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10151 add_current_inferior_and_thread (stop_reply);
c0a2216e 10152
2d717e4f
DJ
10153 /* Get updated offsets, if the stub uses qOffsets. */
10154 get_offsets ();
2d717e4f 10155}
c906108c 10156\f
c5aa993b 10157
b775012e
LM
10158/* Given a location's target info BP_TGT and the packet buffer BUF, output
10159 the list of conditions (in agent expression bytecode format), if any, the
10160 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10161 started from BUF and ended at BUF_END. */
b775012e
LM
10162
10163static int
10164remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10165 struct bp_target_info *bp_tgt, char *buf,
10166 char *buf_end)
b775012e 10167{
3cde5c42 10168 if (bp_tgt->conditions.empty ())
b775012e
LM
10169 return 0;
10170
10171 buf += strlen (buf);
bba74b36 10172 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10173 buf++;
10174
83621223 10175 /* Send conditions to the target. */
d538e36d 10176 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10177 {
bba74b36 10178 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10179 buf += strlen (buf);
3cde5c42 10180 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10181 buf = pack_hex_byte (buf, aexpr->buf[i]);
10182 *buf = '\0';
10183 }
b775012e
LM
10184 return 0;
10185}
10186
d3ce09f5
SS
10187static void
10188remote_add_target_side_commands (struct gdbarch *gdbarch,
10189 struct bp_target_info *bp_tgt, char *buf)
10190{
3cde5c42 10191 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10192 return;
10193
10194 buf += strlen (buf);
10195
10196 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10197 buf += strlen (buf);
10198
10199 /* Concatenate all the agent expressions that are commands into the
10200 cmds parameter. */
df97be55 10201 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10202 {
10203 sprintf (buf, "X%x,", aexpr->len);
10204 buf += strlen (buf);
3cde5c42 10205 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10206 buf = pack_hex_byte (buf, aexpr->buf[i]);
10207 *buf = '\0';
10208 }
d3ce09f5
SS
10209}
10210
8181d85f
DJ
10211/* Insert a breakpoint. On targets that have software breakpoint
10212 support, we ask the remote target to do the work; on targets
10213 which don't, we insert a traditional memory breakpoint. */
c906108c 10214
f6ac5f3d
PA
10215int
10216remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10217 struct bp_target_info *bp_tgt)
c906108c 10218{
d471ea57
AC
10219 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10220 If it succeeds, then set the support to PACKET_ENABLE. If it
10221 fails, and the user has explicitly requested the Z support then
23860348 10222 report an error, otherwise, mark it disabled and go on. */
802188a7 10223
4082afcc 10224 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10225 {
0d5ed153 10226 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10227 struct remote_state *rs;
bba74b36 10228 char *p, *endbuf;
4fff2411 10229
28439a30
PA
10230 /* Make sure the remote is pointing at the right process, if
10231 necessary. */
10232 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10233 set_general_process ();
10234
4fff2411 10235 rs = get_remote_state ();
8d64371b
TT
10236 p = rs->buf.data ();
10237 endbuf = p + get_remote_packet_size ();
802188a7 10238
96baa820
JM
10239 *(p++) = 'Z';
10240 *(p++) = '0';
10241 *(p++) = ',';
7c0f6dcc 10242 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10243 p += hexnumstr (p, addr);
579c6ad9 10244 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10245
f6ac5f3d 10246 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10247 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10248
f6ac5f3d 10249 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10250 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10251
6d820c5c 10252 putpkt (rs->buf);
8d64371b 10253 getpkt (&rs->buf, 0);
96baa820 10254
6d820c5c 10255 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10256 {
d471ea57
AC
10257 case PACKET_ERROR:
10258 return -1;
10259 case PACKET_OK:
10260 return 0;
10261 case PACKET_UNKNOWN:
10262 break;
96baa820
JM
10263 }
10264 }
c906108c 10265
0000e5cc
PA
10266 /* If this breakpoint has target-side commands but this stub doesn't
10267 support Z0 packets, throw error. */
3cde5c42 10268 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10269 throw_error (NOT_SUPPORTED_ERROR, _("\
10270Target doesn't support breakpoints that have target side commands."));
10271
f6ac5f3d 10272 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10273}
10274
f6ac5f3d
PA
10275int
10276remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10277 struct bp_target_info *bp_tgt,
10278 enum remove_bp_reason reason)
c906108c 10279{
8181d85f 10280 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10281 struct remote_state *rs = get_remote_state ();
96baa820 10282
4082afcc 10283 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10284 {
8d64371b
TT
10285 char *p = rs->buf.data ();
10286 char *endbuf = p + get_remote_packet_size ();
802188a7 10287
28439a30
PA
10288 /* Make sure the remote is pointing at the right process, if
10289 necessary. */
10290 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10291 set_general_process ();
10292
96baa820
JM
10293 *(p++) = 'z';
10294 *(p++) = '0';
10295 *(p++) = ',';
10296
8181d85f
DJ
10297 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10298 p += hexnumstr (p, addr);
579c6ad9 10299 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10300
6d820c5c 10301 putpkt (rs->buf);
8d64371b 10302 getpkt (&rs->buf, 0);
96baa820 10303
6d820c5c 10304 return (rs->buf[0] == 'E');
96baa820
JM
10305 }
10306
f6ac5f3d 10307 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10308}
10309
f486487f 10310static enum Z_packet_type
d471ea57
AC
10311watchpoint_to_Z_packet (int type)
10312{
10313 switch (type)
10314 {
10315 case hw_write:
bb858e6a 10316 return Z_PACKET_WRITE_WP;
d471ea57
AC
10317 break;
10318 case hw_read:
bb858e6a 10319 return Z_PACKET_READ_WP;
d471ea57
AC
10320 break;
10321 case hw_access:
bb858e6a 10322 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10323 break;
10324 default:
8e65ff28 10325 internal_error (__FILE__, __LINE__,
e2e0b3e5 10326 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10327 }
10328}
10329
f6ac5f3d
PA
10330int
10331remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10332 enum target_hw_bp_type type, struct expression *cond)
96baa820 10333{
d01949b6 10334 struct remote_state *rs = get_remote_state ();
8d64371b 10335 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10336 char *p;
d471ea57 10337 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10338
4082afcc 10339 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10340 return 1;
802188a7 10341
28439a30
PA
10342 /* Make sure the remote is pointing at the right process, if
10343 necessary. */
10344 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10345 set_general_process ();
10346
8d64371b
TT
10347 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10348 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10349 addr = remote_address_masked (addr);
10350 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10351 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10352
6d820c5c 10353 putpkt (rs->buf);
8d64371b 10354 getpkt (&rs->buf, 0);
96baa820 10355
6d820c5c 10356 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10357 {
10358 case PACKET_ERROR:
d471ea57 10359 return -1;
85d721b8
PA
10360 case PACKET_UNKNOWN:
10361 return 1;
d471ea57
AC
10362 case PACKET_OK:
10363 return 0;
10364 }
8e65ff28 10365 internal_error (__FILE__, __LINE__,
e2e0b3e5 10366 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10367}
10368
57810aa7 10369bool
f6ac5f3d
PA
10370remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10371 CORE_ADDR start, int length)
283002cf
MR
10372{
10373 CORE_ADDR diff = remote_address_masked (addr - start);
10374
10375 return diff < length;
10376}
10377
d471ea57 10378
f6ac5f3d
PA
10379int
10380remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10381 enum target_hw_bp_type type, struct expression *cond)
96baa820 10382{
d01949b6 10383 struct remote_state *rs = get_remote_state ();
8d64371b 10384 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10385 char *p;
d471ea57
AC
10386 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10387
4082afcc 10388 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10389 return -1;
802188a7 10390
28439a30
PA
10391 /* Make sure the remote is pointing at the right process, if
10392 necessary. */
10393 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10394 set_general_process ();
10395
8d64371b
TT
10396 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10397 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10398 addr = remote_address_masked (addr);
10399 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10400 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10401 putpkt (rs->buf);
8d64371b 10402 getpkt (&rs->buf, 0);
96baa820 10403
6d820c5c 10404 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10405 {
10406 case PACKET_ERROR:
10407 case PACKET_UNKNOWN:
10408 return -1;
10409 case PACKET_OK:
10410 return 0;
10411 }
8e65ff28 10412 internal_error (__FILE__, __LINE__,
e2e0b3e5 10413 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10414}
10415
3c3bea1c 10416
60fcc1c3
TT
10417static int remote_hw_watchpoint_limit = -1;
10418static int remote_hw_watchpoint_length_limit = -1;
10419static int remote_hw_breakpoint_limit = -1;
d471ea57 10420
f6ac5f3d
PA
10421int
10422remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10423{
10424 if (remote_hw_watchpoint_length_limit == 0)
10425 return 0;
10426 else if (remote_hw_watchpoint_length_limit < 0)
10427 return 1;
10428 else if (len <= remote_hw_watchpoint_length_limit)
10429 return 1;
10430 else
10431 return 0;
10432}
10433
f6ac5f3d
PA
10434int
10435remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10436{
3c3bea1c
GS
10437 if (type == bp_hardware_breakpoint)
10438 {
10439 if (remote_hw_breakpoint_limit == 0)
10440 return 0;
501eef12
AC
10441 else if (remote_hw_breakpoint_limit < 0)
10442 return 1;
3c3bea1c
GS
10443 else if (cnt <= remote_hw_breakpoint_limit)
10444 return 1;
10445 }
10446 else
10447 {
10448 if (remote_hw_watchpoint_limit == 0)
10449 return 0;
501eef12
AC
10450 else if (remote_hw_watchpoint_limit < 0)
10451 return 1;
3c3bea1c
GS
10452 else if (ot)
10453 return -1;
10454 else if (cnt <= remote_hw_watchpoint_limit)
10455 return 1;
10456 }
10457 return -1;
10458}
10459
f7e6eed5
PA
10460/* The to_stopped_by_sw_breakpoint method of target remote. */
10461
57810aa7 10462bool
f6ac5f3d 10463remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10464{
799a2abe 10465 struct thread_info *thread = inferior_thread ();
f7e6eed5 10466
799a2abe 10467 return (thread->priv != NULL
7aabaf9d
SM
10468 && (get_remote_thread_info (thread)->stop_reason
10469 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10470}
10471
10472/* The to_supports_stopped_by_sw_breakpoint method of target
10473 remote. */
10474
57810aa7 10475bool
f6ac5f3d 10476remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10477{
f7e6eed5
PA
10478 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10479}
10480
10481/* The to_stopped_by_hw_breakpoint method of target remote. */
10482
57810aa7 10483bool
f6ac5f3d 10484remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10485{
799a2abe 10486 struct thread_info *thread = inferior_thread ();
f7e6eed5 10487
799a2abe 10488 return (thread->priv != NULL
7aabaf9d
SM
10489 && (get_remote_thread_info (thread)->stop_reason
10490 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10491}
10492
10493/* The to_supports_stopped_by_hw_breakpoint method of target
10494 remote. */
10495
57810aa7 10496bool
f6ac5f3d 10497remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10498{
f7e6eed5
PA
10499 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10500}
10501
57810aa7 10502bool
f6ac5f3d 10503remote_target::stopped_by_watchpoint ()
3c3bea1c 10504{
799a2abe 10505 struct thread_info *thread = inferior_thread ();
ee154bee 10506
799a2abe 10507 return (thread->priv != NULL
7aabaf9d
SM
10508 && (get_remote_thread_info (thread)->stop_reason
10509 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10510}
10511
57810aa7 10512bool
f6ac5f3d 10513remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10514{
799a2abe 10515 struct thread_info *thread = inferior_thread ();
a744cf53 10516
799a2abe 10517 if (thread->priv != NULL
7aabaf9d
SM
10518 && (get_remote_thread_info (thread)->stop_reason
10519 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10520 {
7aabaf9d 10521 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10522 return true;
4aa7a7f5
JJ
10523 }
10524
57810aa7 10525 return false;
3c3bea1c
GS
10526}
10527
10528
f6ac5f3d
PA
10529int
10530remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10531 struct bp_target_info *bp_tgt)
3c3bea1c 10532{
0d5ed153 10533 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10534 struct remote_state *rs;
bba74b36 10535 char *p, *endbuf;
dd61ec5c 10536 char *message;
3c3bea1c 10537
4082afcc 10538 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10539 return -1;
2bc416ba 10540
28439a30
PA
10541 /* Make sure the remote is pointing at the right process, if
10542 necessary. */
10543 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10544 set_general_process ();
10545
4fff2411 10546 rs = get_remote_state ();
8d64371b
TT
10547 p = rs->buf.data ();
10548 endbuf = p + get_remote_packet_size ();
4fff2411 10549
96baa820
JM
10550 *(p++) = 'Z';
10551 *(p++) = '1';
10552 *(p++) = ',';
802188a7 10553
0d5ed153 10554 addr = remote_address_masked (addr);
96baa820 10555 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10556 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10557
f6ac5f3d 10558 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10559 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10560
f6ac5f3d 10561 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10562 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10563
6d820c5c 10564 putpkt (rs->buf);
8d64371b 10565 getpkt (&rs->buf, 0);
96baa820 10566
6d820c5c 10567 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10568 {
10569 case PACKET_ERROR:
dd61ec5c
MW
10570 if (rs->buf[1] == '.')
10571 {
8d64371b 10572 message = strchr (&rs->buf[2], '.');
dd61ec5c 10573 if (message)
0316657e 10574 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10575 }
10576 return -1;
d471ea57
AC
10577 case PACKET_UNKNOWN:
10578 return -1;
10579 case PACKET_OK:
10580 return 0;
10581 }
8e65ff28 10582 internal_error (__FILE__, __LINE__,
e2e0b3e5 10583 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10584}
10585
d471ea57 10586
f6ac5f3d
PA
10587int
10588remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10589 struct bp_target_info *bp_tgt)
96baa820 10590{
8181d85f 10591 CORE_ADDR addr;
d01949b6 10592 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10593 char *p = rs->buf.data ();
10594 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10595
4082afcc 10596 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10597 return -1;
802188a7 10598
28439a30
PA
10599 /* Make sure the remote is pointing at the right process, if
10600 necessary. */
10601 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10602 set_general_process ();
10603
96baa820
JM
10604 *(p++) = 'z';
10605 *(p++) = '1';
10606 *(p++) = ',';
802188a7 10607
8181d85f 10608 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10609 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10610 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10611
6d820c5c 10612 putpkt (rs->buf);
8d64371b 10613 getpkt (&rs->buf, 0);
802188a7 10614
6d820c5c 10615 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10616 {
10617 case PACKET_ERROR:
10618 case PACKET_UNKNOWN:
10619 return -1;
10620 case PACKET_OK:
10621 return 0;
10622 }
8e65ff28 10623 internal_error (__FILE__, __LINE__,
e2e0b3e5 10624 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10625}
96baa820 10626
4a5e7a5b
PA
10627/* Verify memory using the "qCRC:" request. */
10628
f6ac5f3d
PA
10629int
10630remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10631{
10632 struct remote_state *rs = get_remote_state ();
10633 unsigned long host_crc, target_crc;
10634 char *tmp;
10635
936d2992
PA
10636 /* It doesn't make sense to use qCRC if the remote target is
10637 connected but not running. */
10638 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10639 {
10640 enum packet_result result;
28439a30 10641
936d2992
PA
10642 /* Make sure the remote is pointing at the right process. */
10643 set_general_process ();
4a5e7a5b 10644
936d2992 10645 /* FIXME: assumes lma can fit into long. */
8d64371b 10646 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10647 (long) lma, (long) size);
10648 putpkt (rs->buf);
4a5e7a5b 10649
936d2992
PA
10650 /* Be clever; compute the host_crc before waiting for target
10651 reply. */
10652 host_crc = xcrc32 (data, size, 0xffffffff);
10653
8d64371b 10654 getpkt (&rs->buf, 0);
4a5e7a5b 10655
936d2992
PA
10656 result = packet_ok (rs->buf,
10657 &remote_protocol_packets[PACKET_qCRC]);
10658 if (result == PACKET_ERROR)
10659 return -1;
10660 else if (result == PACKET_OK)
10661 {
10662 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10663 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10664
936d2992
PA
10665 return (host_crc == target_crc);
10666 }
10667 }
4a5e7a5b 10668
f6ac5f3d 10669 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10670}
10671
c906108c
SS
10672/* compare-sections command
10673
10674 With no arguments, compares each loadable section in the exec bfd
10675 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10676 Useful for verifying the image on the target against the exec file. */
e514a9d6 10677
c906108c 10678static void
ac88e2de 10679compare_sections_command (const char *args, int from_tty)
c906108c
SS
10680{
10681 asection *s;
ce359b09 10682 const char *sectname;
c906108c
SS
10683 bfd_size_type size;
10684 bfd_vma lma;
10685 int matched = 0;
10686 int mismatched = 0;
4a5e7a5b 10687 int res;
95cf3b38 10688 int read_only = 0;
c906108c
SS
10689
10690 if (!exec_bfd)
8a3fe4f8 10691 error (_("command cannot be used without an exec file"));
c906108c 10692
95cf3b38
DT
10693 if (args != NULL && strcmp (args, "-r") == 0)
10694 {
10695 read_only = 1;
10696 args = NULL;
10697 }
10698
c5aa993b 10699 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10700 {
10701 if (!(s->flags & SEC_LOAD))
0df8b418 10702 continue; /* Skip non-loadable section. */
c906108c 10703
95cf3b38
DT
10704 if (read_only && (s->flags & SEC_READONLY) == 0)
10705 continue; /* Skip writeable sections */
10706
fd361982 10707 size = bfd_section_size (s);
c906108c 10708 if (size == 0)
0df8b418 10709 continue; /* Skip zero-length section. */
c906108c 10710
fd361982 10711 sectname = bfd_section_name (s);
c906108c 10712 if (args && strcmp (args, sectname) != 0)
0df8b418 10713 continue; /* Not the section selected by user. */
c906108c 10714
0df8b418 10715 matched = 1; /* Do this section. */
c906108c 10716 lma = s->lma;
c906108c 10717
b80406ac
TT
10718 gdb::byte_vector sectdata (size);
10719 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10720
b80406ac 10721 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10722
10723 if (res == -1)
5af949e3 10724 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10725 paddress (target_gdbarch (), lma),
10726 paddress (target_gdbarch (), lma + size));
c906108c 10727
5af949e3 10728 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10729 paddress (target_gdbarch (), lma),
10730 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10731 if (res)
c906108c
SS
10732 printf_filtered ("matched.\n");
10733 else
c5aa993b
JM
10734 {
10735 printf_filtered ("MIS-MATCHED!\n");
10736 mismatched++;
10737 }
c906108c
SS
10738 }
10739 if (mismatched > 0)
936d2992 10740 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10741the loaded file\n"));
c906108c 10742 if (args && !matched)
a3f17187 10743 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10744}
10745
0e7f50da
UW
10746/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10747 into remote target. The number of bytes written to the remote
10748 target is returned, or -1 for error. */
10749
6b8edb51
PA
10750target_xfer_status
10751remote_target::remote_write_qxfer (const char *object_name,
10752 const char *annex, const gdb_byte *writebuf,
10753 ULONGEST offset, LONGEST len,
10754 ULONGEST *xfered_len,
10755 struct packet_config *packet)
0e7f50da
UW
10756{
10757 int i, buf_len;
10758 ULONGEST n;
0e7f50da
UW
10759 struct remote_state *rs = get_remote_state ();
10760 int max_size = get_memory_write_packet_size ();
10761
7cc244de 10762 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10763 return TARGET_XFER_E_IO;
0e7f50da
UW
10764
10765 /* Insert header. */
8d64371b 10766 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10767 "qXfer:%s:write:%s:%s:",
10768 object_name, annex ? annex : "",
10769 phex_nz (offset, sizeof offset));
10770 max_size -= (i + 1);
10771
10772 /* Escape as much data as fits into rs->buf. */
10773 buf_len = remote_escape_output
8d64371b 10774 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10775
8d64371b
TT
10776 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10777 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10778 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10779 return TARGET_XFER_E_IO;
0e7f50da 10780
8d64371b 10781 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10782
10783 *xfered_len = n;
92ffd475 10784 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10785}
10786
0876f84a
DJ
10787/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10788 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10789 number of bytes read is returned, or 0 for EOF, or -1 for error.
10790 The number of bytes read may be less than LEN without indicating an
10791 EOF. PACKET is checked and updated to indicate whether the remote
10792 target supports this object. */
10793
6b8edb51
PA
10794target_xfer_status
10795remote_target::remote_read_qxfer (const char *object_name,
10796 const char *annex,
10797 gdb_byte *readbuf, ULONGEST offset,
10798 LONGEST len,
10799 ULONGEST *xfered_len,
10800 struct packet_config *packet)
0876f84a 10801{
0876f84a 10802 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10803 LONGEST i, n, packet_len;
10804
7cc244de 10805 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10806 return TARGET_XFER_E_IO;
0876f84a
DJ
10807
10808 /* Check whether we've cached an end-of-object packet that matches
10809 this request. */
8e88304f 10810 if (rs->finished_object)
0876f84a 10811 {
8e88304f
TT
10812 if (strcmp (object_name, rs->finished_object) == 0
10813 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10814 && offset == rs->finished_offset)
9b409511
YQ
10815 return TARGET_XFER_EOF;
10816
0876f84a
DJ
10817
10818 /* Otherwise, we're now reading something different. Discard
10819 the cache. */
8e88304f
TT
10820 xfree (rs->finished_object);
10821 xfree (rs->finished_annex);
10822 rs->finished_object = NULL;
10823 rs->finished_annex = NULL;
0876f84a
DJ
10824 }
10825
10826 /* Request only enough to fit in a single packet. The actual data
10827 may not, since we don't know how much of it will need to be escaped;
10828 the target is free to respond with slightly less data. We subtract
10829 five to account for the response type and the protocol frame. */
768adc05 10830 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10831 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10832 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10833 object_name, annex ? annex : "",
10834 phex_nz (offset, sizeof offset),
10835 phex_nz (n, sizeof n));
10836 i = putpkt (rs->buf);
10837 if (i < 0)
2ed4b548 10838 return TARGET_XFER_E_IO;
0876f84a
DJ
10839
10840 rs->buf[0] = '\0';
8d64371b 10841 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10842 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10843 return TARGET_XFER_E_IO;
0876f84a
DJ
10844
10845 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10846 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10847
10848 /* 'm' means there is (or at least might be) more data after this
10849 batch. That does not make sense unless there's at least one byte
10850 of data in this reply. */
10851 if (rs->buf[0] == 'm' && packet_len == 1)
10852 error (_("Remote qXfer reply contained no data."));
10853
10854 /* Got some data. */
8d64371b 10855 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10856 packet_len - 1, readbuf, n);
0876f84a
DJ
10857
10858 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10859 or possibly empty. If we have the final block of a non-empty
10860 object, record this fact to bypass a subsequent partial read. */
10861 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10862 {
8e88304f
TT
10863 rs->finished_object = xstrdup (object_name);
10864 rs->finished_annex = xstrdup (annex ? annex : "");
10865 rs->finished_offset = offset + i;
0876f84a
DJ
10866 }
10867
9b409511
YQ
10868 if (i == 0)
10869 return TARGET_XFER_EOF;
10870 else
10871 {
10872 *xfered_len = i;
10873 return TARGET_XFER_OK;
10874 }
0876f84a
DJ
10875}
10876
f6ac5f3d
PA
10877enum target_xfer_status
10878remote_target::xfer_partial (enum target_object object,
10879 const char *annex, gdb_byte *readbuf,
10880 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10881 ULONGEST *xfered_len)
c906108c 10882{
82f73884 10883 struct remote_state *rs;
c906108c 10884 int i;
6d820c5c 10885 char *p2;
1e3ff5ad 10886 char query_type;
124e13d9 10887 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10888
e6e4e701 10889 set_remote_traceframe ();
82f73884
PA
10890 set_general_thread (inferior_ptid);
10891
10892 rs = get_remote_state ();
10893
b2182ed2 10894 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10895 if (object == TARGET_OBJECT_MEMORY)
10896 {
2d717e4f
DJ
10897 /* If the remote target is connected but not running, we should
10898 pass this request down to a lower stratum (e.g. the executable
10899 file). */
10900 if (!target_has_execution)
9b409511 10901 return TARGET_XFER_EOF;
2d717e4f 10902
21e3b9b9 10903 if (writebuf != NULL)
124e13d9
SM
10904 return remote_write_bytes (offset, writebuf, len, unit_size,
10905 xfered_len);
21e3b9b9 10906 else
6b8edb51 10907 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10908 xfered_len);
21e3b9b9
DJ
10909 }
10910
4aa995e1
PA
10911 /* Handle extra signal info using qxfer packets. */
10912 if (object == TARGET_OBJECT_SIGNAL_INFO)
10913 {
10914 if (readbuf)
f6ac5f3d 10915 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10916 xfered_len, &remote_protocol_packets
4aa995e1
PA
10917 [PACKET_qXfer_siginfo_read]);
10918 else
f6ac5f3d 10919 return remote_write_qxfer ("siginfo", annex,
9b409511 10920 writebuf, offset, len, xfered_len,
4aa995e1
PA
10921 &remote_protocol_packets
10922 [PACKET_qXfer_siginfo_write]);
10923 }
10924
0fb4aa4b
PA
10925 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10926 {
10927 if (readbuf)
f6ac5f3d 10928 return remote_read_qxfer ("statictrace", annex,
9b409511 10929 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10930 &remote_protocol_packets
10931 [PACKET_qXfer_statictrace_read]);
10932 else
2ed4b548 10933 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10934 }
10935
a76d924d
DJ
10936 /* Only handle flash writes. */
10937 if (writebuf != NULL)
10938 {
a76d924d
DJ
10939 switch (object)
10940 {
10941 case TARGET_OBJECT_FLASH:
6b8edb51 10942 return remote_flash_write (offset, len, xfered_len,
9b409511 10943 writebuf);
a76d924d
DJ
10944
10945 default:
2ed4b548 10946 return TARGET_XFER_E_IO;
a76d924d
DJ
10947 }
10948 }
4b8a223f 10949
1e3ff5ad
AC
10950 /* Map pre-existing objects onto letters. DO NOT do this for new
10951 objects!!! Instead specify new query packets. */
10952 switch (object)
c906108c 10953 {
1e3ff5ad
AC
10954 case TARGET_OBJECT_AVR:
10955 query_type = 'R';
10956 break;
802188a7
RM
10957
10958 case TARGET_OBJECT_AUXV:
0876f84a 10959 gdb_assert (annex == NULL);
f6ac5f3d 10960 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10961 xfered_len,
0876f84a 10962 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10963
23181151
DJ
10964 case TARGET_OBJECT_AVAILABLE_FEATURES:
10965 return remote_read_qxfer
f6ac5f3d 10966 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10967 &remote_protocol_packets[PACKET_qXfer_features]);
10968
cfa9d6d9
DJ
10969 case TARGET_OBJECT_LIBRARIES:
10970 return remote_read_qxfer
f6ac5f3d 10971 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10972 &remote_protocol_packets[PACKET_qXfer_libraries]);
10973
2268b414
JK
10974 case TARGET_OBJECT_LIBRARIES_SVR4:
10975 return remote_read_qxfer
f6ac5f3d 10976 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10977 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10978
fd79ecee
DJ
10979 case TARGET_OBJECT_MEMORY_MAP:
10980 gdb_assert (annex == NULL);
f6ac5f3d 10981 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10982 xfered_len,
fd79ecee
DJ
10983 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10984
07e059b5
VP
10985 case TARGET_OBJECT_OSDATA:
10986 /* Should only get here if we're connected. */
5d93a237 10987 gdb_assert (rs->remote_desc);
07e059b5 10988 return remote_read_qxfer
f6ac5f3d 10989 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10990 &remote_protocol_packets[PACKET_qXfer_osdata]);
10991
dc146f7c
VP
10992 case TARGET_OBJECT_THREADS:
10993 gdb_assert (annex == NULL);
f6ac5f3d 10994 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10995 xfered_len,
dc146f7c
VP
10996 &remote_protocol_packets[PACKET_qXfer_threads]);
10997
b3b9301e
PA
10998 case TARGET_OBJECT_TRACEFRAME_INFO:
10999 gdb_assert (annex == NULL);
11000 return remote_read_qxfer
f6ac5f3d 11001 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11002 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11003
11004 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11005 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11006 xfered_len,
78d85199 11007 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11008
11009 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11010 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11011 xfered_len,
169081d0
TG
11012 &remote_protocol_packets[PACKET_qXfer_uib]);
11013
9accd112 11014 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11015 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11016 xfered_len,
9accd112
MM
11017 &remote_protocol_packets[PACKET_qXfer_btrace]);
11018
f4abbc16 11019 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11020 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11021 len, xfered_len,
11022 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11023
c78fa86a 11024 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11025 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11026 len, xfered_len,
11027 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11028
1e3ff5ad 11029 default:
2ed4b548 11030 return TARGET_XFER_E_IO;
c906108c
SS
11031 }
11032
0df8b418 11033 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11034 large enough let the caller deal with it. */
ea9c271d 11035 if (len < get_remote_packet_size ())
2ed4b548 11036 return TARGET_XFER_E_IO;
ea9c271d 11037 len = get_remote_packet_size ();
1e3ff5ad 11038
23860348 11039 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11040 if (!rs->remote_desc)
8a3fe4f8 11041 error (_("remote query is only available after target open"));
c906108c 11042
1e3ff5ad 11043 gdb_assert (annex != NULL);
4b8a223f 11044 gdb_assert (readbuf != NULL);
c906108c 11045
8d64371b 11046 p2 = rs->buf.data ();
c906108c
SS
11047 *p2++ = 'q';
11048 *p2++ = query_type;
11049
23860348
MS
11050 /* We used one buffer char for the remote protocol q command and
11051 another for the query type. As the remote protocol encapsulation
11052 uses 4 chars plus one extra in case we are debugging
11053 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11054 string. */
c906108c 11055 i = 0;
ea9c271d 11056 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11057 {
1e3ff5ad
AC
11058 /* Bad caller may have sent forbidden characters. */
11059 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11060 *p2++ = annex[i];
c906108c
SS
11061 i++;
11062 }
1e3ff5ad
AC
11063 *p2 = '\0';
11064 gdb_assert (annex[i] == '\0');
c906108c 11065
6d820c5c 11066 i = putpkt (rs->buf);
c5aa993b 11067 if (i < 0)
2ed4b548 11068 return TARGET_XFER_E_IO;
c906108c 11069
8d64371b
TT
11070 getpkt (&rs->buf, 0);
11071 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11072
9b409511 11073 *xfered_len = strlen ((char *) readbuf);
92ffd475 11074 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11075}
11076
09c98b44
DB
11077/* Implementation of to_get_memory_xfer_limit. */
11078
f6ac5f3d
PA
11079ULONGEST
11080remote_target::get_memory_xfer_limit ()
09c98b44
DB
11081{
11082 return get_memory_write_packet_size ();
11083}
11084
f6ac5f3d
PA
11085int
11086remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11087 const gdb_byte *pattern, ULONGEST pattern_len,
11088 CORE_ADDR *found_addrp)
08388c79 11089{
f5656ead 11090 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11091 struct remote_state *rs = get_remote_state ();
11092 int max_size = get_memory_write_packet_size ();
11093 struct packet_config *packet =
11094 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11095 /* Number of packet bytes used to encode the pattern;
11096 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11097 int escaped_pattern_len;
0df8b418 11098 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11099 int used_pattern_len;
11100 int i;
11101 int found;
11102 ULONGEST found_addr;
11103
7cc244de
PA
11104 /* Don't go to the target if we don't have to. This is done before
11105 checking packet_config_support to avoid the possibility that a
11106 success for this edge case means the facility works in
11107 general. */
08388c79
DE
11108 if (pattern_len > search_space_len)
11109 return 0;
11110 if (pattern_len == 0)
11111 {
11112 *found_addrp = start_addr;
11113 return 1;
11114 }
11115
11116 /* If we already know the packet isn't supported, fall back to the simple
11117 way of searching memory. */
11118
4082afcc 11119 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11120 {
11121 /* Target doesn't provided special support, fall back and use the
11122 standard support (copy memory and do the search here). */
f6ac5f3d 11123 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11124 pattern, pattern_len, found_addrp);
11125 }
11126
28439a30
PA
11127 /* Make sure the remote is pointing at the right process. */
11128 set_general_process ();
11129
08388c79 11130 /* Insert header. */
8d64371b 11131 i = snprintf (rs->buf.data (), max_size,
08388c79 11132 "qSearch:memory:%s;%s;",
5af949e3 11133 phex_nz (start_addr, addr_size),
08388c79
DE
11134 phex_nz (search_space_len, sizeof (search_space_len)));
11135 max_size -= (i + 1);
11136
11137 /* Escape as much data as fits into rs->buf. */
11138 escaped_pattern_len =
8d64371b
TT
11139 remote_escape_output (pattern, pattern_len, 1,
11140 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11141 &used_pattern_len, max_size);
11142
11143 /* Bail if the pattern is too large. */
11144 if (used_pattern_len != pattern_len)
9b20d036 11145 error (_("Pattern is too large to transmit to remote target."));
08388c79 11146
8d64371b
TT
11147 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11148 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11149 || packet_ok (rs->buf, packet) != PACKET_OK)
11150 {
11151 /* The request may not have worked because the command is not
11152 supported. If so, fall back to the simple way. */
7cc244de 11153 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11154 {
f6ac5f3d 11155 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11156 pattern, pattern_len, found_addrp);
11157 }
11158 return -1;
11159 }
11160
11161 if (rs->buf[0] == '0')
11162 found = 0;
11163 else if (rs->buf[0] == '1')
11164 {
11165 found = 1;
11166 if (rs->buf[1] != ',')
8d64371b
TT
11167 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11168 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11169 *found_addrp = found_addr;
11170 }
11171 else
8d64371b 11172 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11173
11174 return found;
11175}
11176
f6ac5f3d
PA
11177void
11178remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11179{
d01949b6 11180 struct remote_state *rs = get_remote_state ();
8d64371b 11181 char *p = rs->buf.data ();
96baa820 11182
5d93a237 11183 if (!rs->remote_desc)
8a3fe4f8 11184 error (_("remote rcmd is only available after target open"));
96baa820 11185
23860348 11186 /* Send a NULL command across as an empty command. */
7be570e7
JM
11187 if (command == NULL)
11188 command = "";
11189
23860348 11190 /* The query prefix. */
8d64371b
TT
11191 strcpy (rs->buf.data (), "qRcmd,");
11192 p = strchr (rs->buf.data (), '\0');
96baa820 11193
8d64371b 11194 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11195 > get_remote_packet_size ())
8a3fe4f8 11196 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11197
23860348 11198 /* Encode the actual command. */
a30bf1f1 11199 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11200
6d820c5c 11201 if (putpkt (rs->buf) < 0)
8a3fe4f8 11202 error (_("Communication problem with target."));
96baa820
JM
11203
11204 /* get/display the response */
11205 while (1)
11206 {
2e9f7625
DJ
11207 char *buf;
11208
00bf0b85 11209 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11210 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11211 rs->buf[0] = '\0';
8d64371b 11212 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11213 {
11214 /* Timeout. Continue to (try to) read responses.
11215 This is better than stopping with an error, assuming the stub
11216 is still executing the (long) monitor command.
11217 If needed, the user can interrupt gdb using C-c, obtaining
11218 an effect similar to stop on timeout. */
11219 continue;
11220 }
8d64371b 11221 buf = rs->buf.data ();
96baa820 11222 if (buf[0] == '\0')
8a3fe4f8 11223 error (_("Target does not support this command."));
96baa820
JM
11224 if (buf[0] == 'O' && buf[1] != 'K')
11225 {
23860348 11226 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11227 continue;
11228 }
11229 if (strcmp (buf, "OK") == 0)
11230 break;
7be570e7
JM
11231 if (strlen (buf) == 3 && buf[0] == 'E'
11232 && isdigit (buf[1]) && isdigit (buf[2]))
11233 {
8a3fe4f8 11234 error (_("Protocol error with Rcmd"));
7be570e7 11235 }
96baa820
JM
11236 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11237 {
11238 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11239
96baa820
JM
11240 fputc_unfiltered (c, outbuf);
11241 }
11242 break;
11243 }
11244}
11245
f6ac5f3d
PA
11246std::vector<mem_region>
11247remote_target::memory_map ()
fd79ecee 11248{
a664f67e 11249 std::vector<mem_region> result;
9018be22 11250 gdb::optional<gdb::char_vector> text
8b88a78e 11251 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11252
11253 if (text)
9018be22 11254 result = parse_memory_map (text->data ());
fd79ecee
DJ
11255
11256 return result;
11257}
11258
c906108c 11259static void
ac88e2de 11260packet_command (const char *args, int from_tty)
c906108c 11261{
6b8edb51 11262 remote_target *remote = get_current_remote_target ();
c906108c 11263
6b8edb51 11264 if (remote == nullptr)
8a3fe4f8 11265 error (_("command can only be used with remote target"));
c906108c 11266
6b8edb51
PA
11267 remote->packet_command (args, from_tty);
11268}
11269
11270void
11271remote_target::packet_command (const char *args, int from_tty)
11272{
c5aa993b 11273 if (!args)
8a3fe4f8 11274 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11275
11276 puts_filtered ("sending: ");
11277 print_packet (args);
11278 puts_filtered ("\n");
11279 putpkt (args);
11280
6b8edb51
PA
11281 remote_state *rs = get_remote_state ();
11282
8d64371b 11283 getpkt (&rs->buf, 0);
c906108c 11284 puts_filtered ("received: ");
8d64371b 11285 print_packet (rs->buf.data ());
c906108c
SS
11286 puts_filtered ("\n");
11287}
11288
11289#if 0
23860348 11290/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11291
a14ed312 11292static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11293
a14ed312 11294static void threadset_test_cmd (char *cmd, int tty);
c906108c 11295
a14ed312 11296static void threadalive_test (char *cmd, int tty);
c906108c 11297
a14ed312 11298static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11299
23860348 11300int get_and_display_threadinfo (threadref *ref);
c906108c 11301
a14ed312 11302static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11303
23860348 11304static int thread_display_step (threadref *ref, void *context);
c906108c 11305
a14ed312 11306static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11307
a14ed312 11308static void init_remote_threadtests (void);
c906108c 11309
23860348 11310#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11311
11312static void
0b39b52e 11313threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11314{
11315 int sample_thread = SAMPLE_THREAD;
11316
a3f17187 11317 printf_filtered (_("Remote threadset test\n"));
79d7f229 11318 set_general_thread (sample_thread);
c906108c
SS
11319}
11320
11321
11322static void
0b39b52e 11323threadalive_test (const char *cmd, int tty)
c906108c
SS
11324{
11325 int sample_thread = SAMPLE_THREAD;
e99b03dc 11326 int pid = inferior_ptid.pid ();
fd79271b 11327 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11328
79d7f229 11329 if (remote_thread_alive (ptid))
c906108c
SS
11330 printf_filtered ("PASS: Thread alive test\n");
11331 else
11332 printf_filtered ("FAIL: Thread alive test\n");
11333}
11334
23860348 11335void output_threadid (char *title, threadref *ref);
c906108c
SS
11336
11337void
fba45db2 11338output_threadid (char *title, threadref *ref)
c906108c
SS
11339{
11340 char hexid[20];
11341
405feb71 11342 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11343 hexid[16] = 0;
11344 printf_filtered ("%s %s\n", title, (&hexid[0]));
11345}
11346
11347static void
0b39b52e 11348threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11349{
11350 int startflag = 1;
11351 threadref nextthread;
11352 int done, result_count;
11353 threadref threadlist[3];
11354
11355 printf_filtered ("Remote Threadlist test\n");
11356 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11357 &result_count, &threadlist[0]))
11358 printf_filtered ("FAIL: threadlist test\n");
11359 else
11360 {
11361 threadref *scan = threadlist;
11362 threadref *limit = scan + result_count;
11363
11364 while (scan < limit)
11365 output_threadid (" thread ", scan++);
11366 }
11367}
11368
11369void
fba45db2 11370display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11371{
11372 output_threadid ("Threadid: ", &info->threadid);
11373 printf_filtered ("Name: %s\n ", info->shortname);
11374 printf_filtered ("State: %s\n", info->display);
11375 printf_filtered ("other: %s\n\n", info->more_display);
11376}
11377
11378int
fba45db2 11379get_and_display_threadinfo (threadref *ref)
c906108c
SS
11380{
11381 int result;
11382 int set;
11383 struct gdb_ext_thread_info threadinfo;
11384
11385 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11386 | TAG_MOREDISPLAY | TAG_DISPLAY;
11387 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11388 display_thread_info (&threadinfo);
11389 return result;
11390}
11391
11392static void
0b39b52e 11393threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11394{
11395 int athread = SAMPLE_THREAD;
11396 threadref thread;
11397 int set;
11398
11399 int_to_threadref (&thread, athread);
11400 printf_filtered ("Remote Threadinfo test\n");
11401 if (!get_and_display_threadinfo (&thread))
11402 printf_filtered ("FAIL cannot get thread info\n");
11403}
11404
11405static int
fba45db2 11406thread_display_step (threadref *ref, void *context)
c906108c
SS
11407{
11408 /* output_threadid(" threadstep ",ref); *//* simple test */
11409 return get_and_display_threadinfo (ref);
11410}
11411
11412static void
0b39b52e 11413threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11414{
11415 printf_filtered ("Remote Threadlist update test\n");
11416 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11417}
11418
11419static void
11420init_remote_threadtests (void)
11421{
3e43a32a
MS
11422 add_com ("tlist", class_obscure, threadlist_test_cmd,
11423 _("Fetch and print the remote list of "
590042fc 11424 "thread identifiers, one pkt only."));
c906108c 11425 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11426 _("Fetch and display info about one thread."));
c906108c 11427 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11428 _("Test setting to a different thread."));
c906108c 11429 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11430 _("Iterate through updating all remote thread info."));
c906108c 11431 add_com ("talive", class_obscure, threadalive_test,
590042fc 11432 _("Remote thread alive test."));
c906108c
SS
11433}
11434
11435#endif /* 0 */
11436
a068643d 11437/* Convert a thread ID to a string. */
f3fb8c85 11438
a068643d 11439std::string
f6ac5f3d 11440remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11441{
82f73884 11442 struct remote_state *rs = get_remote_state ();
f3fb8c85 11443
d7e15655 11444 if (ptid == null_ptid)
7cee1e54 11445 return normal_pid_to_str (ptid);
0e998d96 11446 else if (ptid.is_pid ())
ecd0ada5
PA
11447 {
11448 /* Printing an inferior target id. */
11449
11450 /* When multi-process extensions are off, there's no way in the
11451 remote protocol to know the remote process id, if there's any
11452 at all. There's one exception --- when we're connected with
11453 target extended-remote, and we manually attached to a process
11454 with "attach PID". We don't record anywhere a flag that
11455 allows us to distinguish that case from the case of
11456 connecting with extended-remote and the stub already being
11457 attached to a process, and reporting yes to qAttached, hence
11458 no smart special casing here. */
11459 if (!remote_multi_process_p (rs))
a068643d 11460 return "Remote target";
ecd0ada5
PA
11461
11462 return normal_pid_to_str (ptid);
82f73884 11463 }
ecd0ada5 11464 else
79d7f229 11465 {
d7e15655 11466 if (magic_null_ptid == ptid)
a068643d 11467 return "Thread <main>";
8020350c 11468 else if (remote_multi_process_p (rs))
e38504b3 11469 if (ptid.lwp () == 0)
de0d863e
DB
11470 return normal_pid_to_str (ptid);
11471 else
a068643d
TT
11472 return string_printf ("Thread %d.%ld",
11473 ptid.pid (), ptid.lwp ());
ecd0ada5 11474 else
a068643d 11475 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11476 }
f3fb8c85
MS
11477}
11478
38691318
KB
11479/* Get the address of the thread local variable in OBJFILE which is
11480 stored at OFFSET within the thread local storage for thread PTID. */
11481
f6ac5f3d
PA
11482CORE_ADDR
11483remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11484 CORE_ADDR offset)
38691318 11485{
4082afcc 11486 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11487 {
11488 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11489 char *p = rs->buf.data ();
11490 char *endp = p + get_remote_packet_size ();
571dd617 11491 enum packet_result result;
38691318
KB
11492
11493 strcpy (p, "qGetTLSAddr:");
11494 p += strlen (p);
82f73884 11495 p = write_ptid (p, endp, ptid);
38691318
KB
11496 *p++ = ',';
11497 p += hexnumstr (p, offset);
11498 *p++ = ',';
11499 p += hexnumstr (p, lm);
11500 *p++ = '\0';
11501
6d820c5c 11502 putpkt (rs->buf);
8d64371b 11503 getpkt (&rs->buf, 0);
3e43a32a
MS
11504 result = packet_ok (rs->buf,
11505 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11506 if (result == PACKET_OK)
38691318 11507 {
b926417a 11508 ULONGEST addr;
38691318 11509
8d64371b 11510 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11511 return addr;
38691318 11512 }
571dd617 11513 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11514 throw_error (TLS_GENERIC_ERROR,
11515 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11516 else
109c3e39
AC
11517 throw_error (TLS_GENERIC_ERROR,
11518 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11519 }
11520 else
109c3e39
AC
11521 throw_error (TLS_GENERIC_ERROR,
11522 _("TLS not supported or disabled on this target"));
38691318
KB
11523 /* Not reached. */
11524 return 0;
11525}
11526
711e434b
PM
11527/* Provide thread local base, i.e. Thread Information Block address.
11528 Returns 1 if ptid is found and thread_local_base is non zero. */
11529
57810aa7 11530bool
f6ac5f3d 11531remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11532{
4082afcc 11533 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11534 {
11535 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11536 char *p = rs->buf.data ();
11537 char *endp = p + get_remote_packet_size ();
711e434b
PM
11538 enum packet_result result;
11539
11540 strcpy (p, "qGetTIBAddr:");
11541 p += strlen (p);
11542 p = write_ptid (p, endp, ptid);
11543 *p++ = '\0';
11544
11545 putpkt (rs->buf);
8d64371b 11546 getpkt (&rs->buf, 0);
711e434b
PM
11547 result = packet_ok (rs->buf,
11548 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11549 if (result == PACKET_OK)
11550 {
b926417a 11551 ULONGEST val;
8d64371b 11552 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11553 if (addr)
b926417a 11554 *addr = (CORE_ADDR) val;
57810aa7 11555 return true;
711e434b
PM
11556 }
11557 else if (result == PACKET_UNKNOWN)
11558 error (_("Remote target doesn't support qGetTIBAddr packet"));
11559 else
11560 error (_("Remote target failed to process qGetTIBAddr request"));
11561 }
11562 else
11563 error (_("qGetTIBAddr not supported or disabled on this target"));
11564 /* Not reached. */
57810aa7 11565 return false;
711e434b
PM
11566}
11567
29709017
DJ
11568/* Support for inferring a target description based on the current
11569 architecture and the size of a 'g' packet. While the 'g' packet
11570 can have any size (since optional registers can be left off the
11571 end), some sizes are easily recognizable given knowledge of the
11572 approximate architecture. */
11573
11574struct remote_g_packet_guess
11575{
eefce37f
TT
11576 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11577 : bytes (bytes_),
11578 tdesc (tdesc_)
11579 {
11580 }
11581
29709017
DJ
11582 int bytes;
11583 const struct target_desc *tdesc;
11584};
29709017 11585
eefce37f 11586struct remote_g_packet_data : public allocate_on_obstack
29709017 11587{
eefce37f 11588 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11589};
11590
11591static struct gdbarch_data *remote_g_packet_data_handle;
11592
11593static void *
11594remote_g_packet_data_init (struct obstack *obstack)
11595{
eefce37f 11596 return new (obstack) remote_g_packet_data;
29709017
DJ
11597}
11598
11599void
11600register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11601 const struct target_desc *tdesc)
11602{
11603 struct remote_g_packet_data *data
19ba03f4
SM
11604 = ((struct remote_g_packet_data *)
11605 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11606
11607 gdb_assert (tdesc != NULL);
11608
eefce37f
TT
11609 for (const remote_g_packet_guess &guess : data->guesses)
11610 if (guess.bytes == bytes)
29709017 11611 internal_error (__FILE__, __LINE__,
9b20d036 11612 _("Duplicate g packet description added for size %d"),
29709017
DJ
11613 bytes);
11614
eefce37f 11615 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11616}
11617
eefce37f
TT
11618/* Return true if remote_read_description would do anything on this target
11619 and architecture, false otherwise. */
d962ef82 11620
eefce37f 11621static bool
d962ef82
DJ
11622remote_read_description_p (struct target_ops *target)
11623{
11624 struct remote_g_packet_data *data
19ba03f4
SM
11625 = ((struct remote_g_packet_data *)
11626 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11627
eefce37f 11628 return !data->guesses.empty ();
d962ef82
DJ
11629}
11630
f6ac5f3d
PA
11631const struct target_desc *
11632remote_target::read_description ()
29709017
DJ
11633{
11634 struct remote_g_packet_data *data
19ba03f4
SM
11635 = ((struct remote_g_packet_data *)
11636 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11637
d962ef82
DJ
11638 /* Do not try this during initial connection, when we do not know
11639 whether there is a running but stopped thread. */
d7e15655 11640 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11641 return beneath ()->read_description ();
d962ef82 11642
eefce37f 11643 if (!data->guesses.empty ())
29709017 11644 {
29709017
DJ
11645 int bytes = send_g_packet ();
11646
eefce37f
TT
11647 for (const remote_g_packet_guess &guess : data->guesses)
11648 if (guess.bytes == bytes)
11649 return guess.tdesc;
29709017
DJ
11650
11651 /* We discard the g packet. A minor optimization would be to
11652 hold on to it, and fill the register cache once we have selected
11653 an architecture, but it's too tricky to do safely. */
11654 }
11655
b6a8c27b 11656 return beneath ()->read_description ();
29709017
DJ
11657}
11658
a6b151f1
DJ
11659/* Remote file transfer support. This is host-initiated I/O, not
11660 target-initiated; for target-initiated, see remote-fileio.c. */
11661
11662/* If *LEFT is at least the length of STRING, copy STRING to
11663 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11664 decrease *LEFT. Otherwise raise an error. */
11665
11666static void
a121b7c1 11667remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11668{
11669 int len = strlen (string);
11670
11671 if (len > *left)
11672 error (_("Packet too long for target."));
11673
11674 memcpy (*buffer, string, len);
11675 *buffer += len;
11676 *left -= len;
11677
11678 /* NUL-terminate the buffer as a convenience, if there is
11679 room. */
11680 if (*left)
11681 **buffer = '\0';
11682}
11683
11684/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11685 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11686 decrease *LEFT. Otherwise raise an error. */
11687
11688static void
11689remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11690 int len)
11691{
11692 if (2 * len > *left)
11693 error (_("Packet too long for target."));
11694
11695 bin2hex (bytes, *buffer, len);
11696 *buffer += 2 * len;
11697 *left -= 2 * len;
11698
11699 /* NUL-terminate the buffer as a convenience, if there is
11700 room. */
11701 if (*left)
11702 **buffer = '\0';
11703}
11704
11705/* If *LEFT is large enough, convert VALUE to hex and add it to
11706 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11707 decrease *LEFT. Otherwise raise an error. */
11708
11709static void
11710remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11711{
11712 int len = hexnumlen (value);
11713
11714 if (len > *left)
11715 error (_("Packet too long for target."));
11716
11717 hexnumstr (*buffer, value);
11718 *buffer += len;
11719 *left -= len;
11720
11721 /* NUL-terminate the buffer as a convenience, if there is
11722 room. */
11723 if (*left)
11724 **buffer = '\0';
11725}
11726
11727/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11728 value, *REMOTE_ERRNO to the remote error number or zero if none
11729 was included, and *ATTACHMENT to point to the start of the annex
11730 if any. The length of the packet isn't needed here; there may
11731 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11732
11733 Return 0 if the packet could be parsed, -1 if it could not. If
11734 -1 is returned, the other variables may not be initialized. */
11735
11736static int
11737remote_hostio_parse_result (char *buffer, int *retcode,
11738 int *remote_errno, char **attachment)
11739{
11740 char *p, *p2;
11741
11742 *remote_errno = 0;
11743 *attachment = NULL;
11744
11745 if (buffer[0] != 'F')
11746 return -1;
11747
11748 errno = 0;
11749 *retcode = strtol (&buffer[1], &p, 16);
11750 if (errno != 0 || p == &buffer[1])
11751 return -1;
11752
11753 /* Check for ",errno". */
11754 if (*p == ',')
11755 {
11756 errno = 0;
11757 *remote_errno = strtol (p + 1, &p2, 16);
11758 if (errno != 0 || p + 1 == p2)
11759 return -1;
11760 p = p2;
11761 }
11762
11763 /* Check for ";attachment". If there is no attachment, the
11764 packet should end here. */
11765 if (*p == ';')
11766 {
11767 *attachment = p + 1;
11768 return 0;
11769 }
11770 else if (*p == '\0')
11771 return 0;
11772 else
11773 return -1;
11774}
11775
11776/* Send a prepared I/O packet to the target and read its response.
11777 The prepared packet is in the global RS->BUF before this function
11778 is called, and the answer is there when we return.
11779
11780 COMMAND_BYTES is the length of the request to send, which may include
11781 binary data. WHICH_PACKET is the packet configuration to check
11782 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11783 is set to the error number and -1 is returned. Otherwise the value
11784 returned by the function is returned.
11785
11786 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11787 attachment is expected; an error will be reported if there's a
11788 mismatch. If one is found, *ATTACHMENT will be set to point into
11789 the packet buffer and *ATTACHMENT_LEN will be set to the
11790 attachment's length. */
11791
6b8edb51
PA
11792int
11793remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11794 int *remote_errno, char **attachment,
11795 int *attachment_len)
a6b151f1
DJ
11796{
11797 struct remote_state *rs = get_remote_state ();
11798 int ret, bytes_read;
11799 char *attachment_tmp;
11800
20db9c52 11801 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11802 {
11803 *remote_errno = FILEIO_ENOSYS;
11804 return -1;
11805 }
11806
8d64371b
TT
11807 putpkt_binary (rs->buf.data (), command_bytes);
11808 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11809
11810 /* If it timed out, something is wrong. Don't try to parse the
11811 buffer. */
11812 if (bytes_read < 0)
11813 {
11814 *remote_errno = FILEIO_EINVAL;
11815 return -1;
11816 }
11817
11818 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11819 {
11820 case PACKET_ERROR:
11821 *remote_errno = FILEIO_EINVAL;
11822 return -1;
11823 case PACKET_UNKNOWN:
11824 *remote_errno = FILEIO_ENOSYS;
11825 return -1;
11826 case PACKET_OK:
11827 break;
11828 }
11829
8d64371b 11830 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11831 &attachment_tmp))
11832 {
11833 *remote_errno = FILEIO_EINVAL;
11834 return -1;
11835 }
11836
11837 /* Make sure we saw an attachment if and only if we expected one. */
11838 if ((attachment_tmp == NULL && attachment != NULL)
11839 || (attachment_tmp != NULL && attachment == NULL))
11840 {
11841 *remote_errno = FILEIO_EINVAL;
11842 return -1;
11843 }
11844
11845 /* If an attachment was found, it must point into the packet buffer;
11846 work out how many bytes there were. */
11847 if (attachment_tmp != NULL)
11848 {
11849 *attachment = attachment_tmp;
8d64371b 11850 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11851 }
11852
11853 return ret;
11854}
11855
dd194f6b 11856/* See declaration.h. */
80152258 11857
dd194f6b
PA
11858void
11859readahead_cache::invalidate ()
80152258 11860{
dd194f6b 11861 this->fd = -1;
80152258
PA
11862}
11863
dd194f6b 11864/* See declaration.h. */
80152258 11865
dd194f6b
PA
11866void
11867readahead_cache::invalidate_fd (int fd)
80152258 11868{
dd194f6b
PA
11869 if (this->fd == fd)
11870 this->fd = -1;
80152258
PA
11871}
11872
15a201c8
GB
11873/* Set the filesystem remote_hostio functions that take FILENAME
11874 arguments will use. Return 0 on success, or -1 if an error
11875 occurs (and set *REMOTE_ERRNO). */
11876
6b8edb51
PA
11877int
11878remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11879 int *remote_errno)
15a201c8
GB
11880{
11881 struct remote_state *rs = get_remote_state ();
11882 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11883 char *p = rs->buf.data ();
15a201c8
GB
11884 int left = get_remote_packet_size () - 1;
11885 char arg[9];
11886 int ret;
11887
11888 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11889 return 0;
11890
11891 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11892 return 0;
11893
11894 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11895
11896 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11897 remote_buffer_add_string (&p, &left, arg);
11898
8d64371b 11899 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11900 remote_errno, NULL, NULL);
11901
11902 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11903 return 0;
11904
11905 if (ret == 0)
11906 rs->fs_pid = required_pid;
11907
11908 return ret;
11909}
11910
12e2a5fd 11911/* Implementation of to_fileio_open. */
a6b151f1 11912
6b8edb51
PA
11913int
11914remote_target::remote_hostio_open (inferior *inf, const char *filename,
11915 int flags, int mode, int warn_if_slow,
11916 int *remote_errno)
a6b151f1
DJ
11917{
11918 struct remote_state *rs = get_remote_state ();
8d64371b 11919 char *p = rs->buf.data ();
a6b151f1
DJ
11920 int left = get_remote_packet_size () - 1;
11921
4313b8c0
GB
11922 if (warn_if_slow)
11923 {
11924 static int warning_issued = 0;
11925
11926 printf_unfiltered (_("Reading %s from remote target...\n"),
11927 filename);
11928
11929 if (!warning_issued)
11930 {
11931 warning (_("File transfers from remote targets can be slow."
11932 " Use \"set sysroot\" to access files locally"
11933 " instead."));
11934 warning_issued = 1;
11935 }
11936 }
11937
15a201c8
GB
11938 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11939 return -1;
11940
a6b151f1
DJ
11941 remote_buffer_add_string (&p, &left, "vFile:open:");
11942
11943 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11944 strlen (filename));
11945 remote_buffer_add_string (&p, &left, ",");
11946
11947 remote_buffer_add_int (&p, &left, flags);
11948 remote_buffer_add_string (&p, &left, ",");
11949
11950 remote_buffer_add_int (&p, &left, mode);
11951
8d64371b 11952 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11953 remote_errno, NULL, NULL);
11954}
11955
f6ac5f3d
PA
11956int
11957remote_target::fileio_open (struct inferior *inf, const char *filename,
11958 int flags, int mode, int warn_if_slow,
11959 int *remote_errno)
11960{
6b8edb51 11961 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11962 remote_errno);
11963}
11964
12e2a5fd 11965/* Implementation of to_fileio_pwrite. */
a6b151f1 11966
6b8edb51
PA
11967int
11968remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11969 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11970{
11971 struct remote_state *rs = get_remote_state ();
8d64371b 11972 char *p = rs->buf.data ();
a6b151f1
DJ
11973 int left = get_remote_packet_size ();
11974 int out_len;
11975
dd194f6b 11976 rs->readahead_cache.invalidate_fd (fd);
80152258 11977
a6b151f1
DJ
11978 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11979
11980 remote_buffer_add_int (&p, &left, fd);
11981 remote_buffer_add_string (&p, &left, ",");
11982
11983 remote_buffer_add_int (&p, &left, offset);
11984 remote_buffer_add_string (&p, &left, ",");
11985
124e13d9 11986 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11987 (get_remote_packet_size ()
11988 - (p - rs->buf.data ())));
a6b151f1 11989
8d64371b 11990 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11991 remote_errno, NULL, NULL);
11992}
11993
f6ac5f3d
PA
11994int
11995remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11996 ULONGEST offset, int *remote_errno)
11997{
6b8edb51 11998 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11999}
12000
80152258
PA
12001/* Helper for the implementation of to_fileio_pread. Read the file
12002 from the remote side with vFile:pread. */
a6b151f1 12003
6b8edb51
PA
12004int
12005remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12006 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12007{
12008 struct remote_state *rs = get_remote_state ();
8d64371b 12009 char *p = rs->buf.data ();
a6b151f1
DJ
12010 char *attachment;
12011 int left = get_remote_packet_size ();
12012 int ret, attachment_len;
12013 int read_len;
12014
12015 remote_buffer_add_string (&p, &left, "vFile:pread:");
12016
12017 remote_buffer_add_int (&p, &left, fd);
12018 remote_buffer_add_string (&p, &left, ",");
12019
12020 remote_buffer_add_int (&p, &left, len);
12021 remote_buffer_add_string (&p, &left, ",");
12022
12023 remote_buffer_add_int (&p, &left, offset);
12024
8d64371b 12025 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12026 remote_errno, &attachment,
12027 &attachment_len);
12028
12029 if (ret < 0)
12030 return ret;
12031
bc20a4af 12032 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12033 read_buf, len);
12034 if (read_len != ret)
12035 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12036
12037 return ret;
12038}
12039
dd194f6b 12040/* See declaration.h. */
80152258 12041
dd194f6b
PA
12042int
12043readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12044 ULONGEST offset)
80152258 12045{
dd194f6b
PA
12046 if (this->fd == fd
12047 && this->offset <= offset
12048 && offset < this->offset + this->bufsize)
80152258 12049 {
dd194f6b 12050 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12051
12052 if (offset + len > max)
12053 len = max - offset;
12054
dd194f6b 12055 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12056 return len;
12057 }
12058
12059 return 0;
12060}
12061
12062/* Implementation of to_fileio_pread. */
12063
6b8edb51
PA
12064int
12065remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12066 ULONGEST offset, int *remote_errno)
80152258
PA
12067{
12068 int ret;
12069 struct remote_state *rs = get_remote_state ();
dd194f6b 12070 readahead_cache *cache = &rs->readahead_cache;
80152258 12071
dd194f6b 12072 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12073 if (ret > 0)
12074 {
12075 cache->hit_count++;
12076
12077 if (remote_debug)
12078 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12079 pulongest (cache->hit_count));
12080 return ret;
12081 }
12082
12083 cache->miss_count++;
12084 if (remote_debug)
12085 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12086 pulongest (cache->miss_count));
12087
12088 cache->fd = fd;
12089 cache->offset = offset;
12090 cache->bufsize = get_remote_packet_size ();
224c3ddb 12091 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12092
6b8edb51 12093 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12094 cache->offset, remote_errno);
12095 if (ret <= 0)
12096 {
dd194f6b 12097 cache->invalidate_fd (fd);
80152258
PA
12098 return ret;
12099 }
12100
12101 cache->bufsize = ret;
dd194f6b 12102 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12103}
12104
f6ac5f3d
PA
12105int
12106remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12107 ULONGEST offset, int *remote_errno)
12108{
6b8edb51 12109 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12110}
12111
12e2a5fd 12112/* Implementation of to_fileio_close. */
a6b151f1 12113
6b8edb51
PA
12114int
12115remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12116{
12117 struct remote_state *rs = get_remote_state ();
8d64371b 12118 char *p = rs->buf.data ();
a6b151f1
DJ
12119 int left = get_remote_packet_size () - 1;
12120
dd194f6b 12121 rs->readahead_cache.invalidate_fd (fd);
80152258 12122
a6b151f1
DJ
12123 remote_buffer_add_string (&p, &left, "vFile:close:");
12124
12125 remote_buffer_add_int (&p, &left, fd);
12126
8d64371b 12127 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12128 remote_errno, NULL, NULL);
12129}
12130
f6ac5f3d
PA
12131int
12132remote_target::fileio_close (int fd, int *remote_errno)
12133{
6b8edb51 12134 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12135}
12136
12e2a5fd 12137/* Implementation of to_fileio_unlink. */
a6b151f1 12138
6b8edb51
PA
12139int
12140remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12141 int *remote_errno)
a6b151f1
DJ
12142{
12143 struct remote_state *rs = get_remote_state ();
8d64371b 12144 char *p = rs->buf.data ();
a6b151f1
DJ
12145 int left = get_remote_packet_size () - 1;
12146
15a201c8
GB
12147 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12148 return -1;
12149
a6b151f1
DJ
12150 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12151
12152 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12153 strlen (filename));
12154
8d64371b 12155 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12156 remote_errno, NULL, NULL);
12157}
12158
f6ac5f3d
PA
12159int
12160remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12161 int *remote_errno)
12162{
6b8edb51 12163 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12164}
12165
12e2a5fd 12166/* Implementation of to_fileio_readlink. */
b9e7b9c3 12167
f6ac5f3d
PA
12168gdb::optional<std::string>
12169remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12170 int *remote_errno)
b9e7b9c3
UW
12171{
12172 struct remote_state *rs = get_remote_state ();
8d64371b 12173 char *p = rs->buf.data ();
b9e7b9c3
UW
12174 char *attachment;
12175 int left = get_remote_packet_size ();
12176 int len, attachment_len;
12177 int read_len;
b9e7b9c3 12178
15a201c8 12179 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12180 return {};
15a201c8 12181
b9e7b9c3
UW
12182 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12183
12184 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12185 strlen (filename));
12186
8d64371b 12187 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12188 remote_errno, &attachment,
12189 &attachment_len);
12190
12191 if (len < 0)
e0d3522b 12192 return {};
b9e7b9c3 12193
e0d3522b 12194 std::string ret (len, '\0');
b9e7b9c3 12195
bc20a4af 12196 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12197 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12198 if (read_len != len)
12199 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12200
b9e7b9c3
UW
12201 return ret;
12202}
12203
12e2a5fd 12204/* Implementation of to_fileio_fstat. */
0a93529c 12205
f6ac5f3d
PA
12206int
12207remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12208{
12209 struct remote_state *rs = get_remote_state ();
8d64371b 12210 char *p = rs->buf.data ();
0a93529c
GB
12211 int left = get_remote_packet_size ();
12212 int attachment_len, ret;
12213 char *attachment;
12214 struct fio_stat fst;
12215 int read_len;
12216
464b0089
GB
12217 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12218
12219 remote_buffer_add_int (&p, &left, fd);
12220
8d64371b 12221 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12222 remote_errno, &attachment,
12223 &attachment_len);
12224 if (ret < 0)
0a93529c 12225 {
464b0089
GB
12226 if (*remote_errno != FILEIO_ENOSYS)
12227 return ret;
12228
0a93529c
GB
12229 /* Strictly we should return -1, ENOSYS here, but when
12230 "set sysroot remote:" was implemented in August 2008
12231 BFD's need for a stat function was sidestepped with
12232 this hack. This was not remedied until March 2015
12233 so we retain the previous behavior to avoid breaking
12234 compatibility.
12235
12236 Note that the memset is a March 2015 addition; older
12237 GDBs set st_size *and nothing else* so the structure
12238 would have garbage in all other fields. This might
12239 break something but retaining the previous behavior
12240 here would be just too wrong. */
12241
12242 memset (st, 0, sizeof (struct stat));
12243 st->st_size = INT_MAX;
12244 return 0;
12245 }
12246
0a93529c
GB
12247 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12248 (gdb_byte *) &fst, sizeof (fst));
12249
12250 if (read_len != ret)
12251 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12252
12253 if (read_len != sizeof (fst))
12254 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12255 read_len, (int) sizeof (fst));
12256
12257 remote_fileio_to_host_stat (&fst, st);
12258
12259 return 0;
12260}
12261
12e2a5fd 12262/* Implementation of to_filesystem_is_local. */
e3dd7556 12263
57810aa7 12264bool
f6ac5f3d 12265remote_target::filesystem_is_local ()
e3dd7556
GB
12266{
12267 /* Valgrind GDB presents itself as a remote target but works
12268 on the local filesystem: it does not implement remote get
12269 and users are not expected to set a sysroot. To handle
12270 this case we treat the remote filesystem as local if the
12271 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12272 does not support vFile:open. */
a3be80c3 12273 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12274 {
12275 enum packet_support ps = packet_support (PACKET_vFile_open);
12276
12277 if (ps == PACKET_SUPPORT_UNKNOWN)
12278 {
12279 int fd, remote_errno;
12280
12281 /* Try opening a file to probe support. The supplied
12282 filename is irrelevant, we only care about whether
12283 the stub recognizes the packet or not. */
6b8edb51 12284 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12285 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12286 &remote_errno);
12287
12288 if (fd >= 0)
6b8edb51 12289 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12290
12291 ps = packet_support (PACKET_vFile_open);
12292 }
12293
12294 if (ps == PACKET_DISABLE)
12295 {
12296 static int warning_issued = 0;
12297
12298 if (!warning_issued)
12299 {
12300 warning (_("remote target does not support file"
12301 " transfer, attempting to access files"
12302 " from local filesystem."));
12303 warning_issued = 1;
12304 }
12305
57810aa7 12306 return true;
e3dd7556
GB
12307 }
12308 }
12309
57810aa7 12310 return false;
e3dd7556
GB
12311}
12312
a6b151f1
DJ
12313static int
12314remote_fileio_errno_to_host (int errnum)
12315{
12316 switch (errnum)
12317 {
12318 case FILEIO_EPERM:
12319 return EPERM;
12320 case FILEIO_ENOENT:
12321 return ENOENT;
12322 case FILEIO_EINTR:
12323 return EINTR;
12324 case FILEIO_EIO:
12325 return EIO;
12326 case FILEIO_EBADF:
12327 return EBADF;
12328 case FILEIO_EACCES:
12329 return EACCES;
12330 case FILEIO_EFAULT:
12331 return EFAULT;
12332 case FILEIO_EBUSY:
12333 return EBUSY;
12334 case FILEIO_EEXIST:
12335 return EEXIST;
12336 case FILEIO_ENODEV:
12337 return ENODEV;
12338 case FILEIO_ENOTDIR:
12339 return ENOTDIR;
12340 case FILEIO_EISDIR:
12341 return EISDIR;
12342 case FILEIO_EINVAL:
12343 return EINVAL;
12344 case FILEIO_ENFILE:
12345 return ENFILE;
12346 case FILEIO_EMFILE:
12347 return EMFILE;
12348 case FILEIO_EFBIG:
12349 return EFBIG;
12350 case FILEIO_ENOSPC:
12351 return ENOSPC;
12352 case FILEIO_ESPIPE:
12353 return ESPIPE;
12354 case FILEIO_EROFS:
12355 return EROFS;
12356 case FILEIO_ENOSYS:
12357 return ENOSYS;
12358 case FILEIO_ENAMETOOLONG:
12359 return ENAMETOOLONG;
12360 }
12361 return -1;
12362}
12363
12364static char *
12365remote_hostio_error (int errnum)
12366{
12367 int host_error = remote_fileio_errno_to_host (errnum);
12368
12369 if (host_error == -1)
12370 error (_("Unknown remote I/O error %d"), errnum);
12371 else
12372 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12373}
12374
440b7aec
PA
12375/* A RAII wrapper around a remote file descriptor. */
12376
12377class scoped_remote_fd
a6b151f1 12378{
440b7aec 12379public:
6b8edb51
PA
12380 scoped_remote_fd (remote_target *remote, int fd)
12381 : m_remote (remote), m_fd (fd)
440b7aec
PA
12382 {
12383 }
a6b151f1 12384
440b7aec
PA
12385 ~scoped_remote_fd ()
12386 {
12387 if (m_fd != -1)
12388 {
12389 try
12390 {
12391 int remote_errno;
6b8edb51 12392 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12393 }
12394 catch (...)
12395 {
12396 /* Swallow exception before it escapes the dtor. If
12397 something goes wrong, likely the connection is gone,
12398 and there's nothing else that can be done. */
12399 }
12400 }
12401 }
12402
12403 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12404
12405 /* Release ownership of the file descriptor, and return it. */
88a774b9 12406 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12407 {
12408 int fd = m_fd;
12409 m_fd = -1;
12410 return fd;
12411 }
12412
12413 /* Return the owned file descriptor. */
12414 int get () const noexcept
12415 {
12416 return m_fd;
12417 }
12418
12419private:
6b8edb51
PA
12420 /* The remote target. */
12421 remote_target *m_remote;
12422
440b7aec
PA
12423 /* The owned remote I/O file descriptor. */
12424 int m_fd;
12425};
a6b151f1
DJ
12426
12427void
12428remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12429{
12430 remote_target *remote = get_current_remote_target ();
12431
12432 if (remote == nullptr)
12433 error (_("command can only be used with remote target"));
12434
12435 remote->remote_file_put (local_file, remote_file, from_tty);
12436}
12437
12438void
12439remote_target::remote_file_put (const char *local_file, const char *remote_file,
12440 int from_tty)
a6b151f1 12441{
440b7aec 12442 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12443 int bytes_in_buffer;
12444 int saw_eof;
12445 ULONGEST offset;
a6b151f1 12446
d419f42d 12447 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12448 if (file == NULL)
12449 perror_with_name (local_file);
a6b151f1 12450
440b7aec 12451 scoped_remote_fd fd
6b8edb51
PA
12452 (this, remote_hostio_open (NULL,
12453 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12454 | FILEIO_O_TRUNC),
12455 0700, 0, &remote_errno));
440b7aec 12456 if (fd.get () == -1)
a6b151f1
DJ
12457 remote_hostio_error (remote_errno);
12458
12459 /* Send up to this many bytes at once. They won't all fit in the
12460 remote packet limit, so we'll transfer slightly fewer. */
12461 io_size = get_remote_packet_size ();
5ca3b260 12462 gdb::byte_vector buffer (io_size);
a6b151f1 12463
a6b151f1
DJ
12464 bytes_in_buffer = 0;
12465 saw_eof = 0;
12466 offset = 0;
12467 while (bytes_in_buffer || !saw_eof)
12468 {
12469 if (!saw_eof)
12470 {
5ca3b260 12471 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12472 io_size - bytes_in_buffer,
d419f42d 12473 file.get ());
a6b151f1
DJ
12474 if (bytes == 0)
12475 {
d419f42d 12476 if (ferror (file.get ()))
a6b151f1
DJ
12477 error (_("Error reading %s."), local_file);
12478 else
12479 {
12480 /* EOF. Unless there is something still in the
12481 buffer from the last iteration, we are done. */
12482 saw_eof = 1;
12483 if (bytes_in_buffer == 0)
12484 break;
12485 }
12486 }
12487 }
12488 else
12489 bytes = 0;
12490
12491 bytes += bytes_in_buffer;
12492 bytes_in_buffer = 0;
12493
5ca3b260 12494 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12495 offset, &remote_errno);
a6b151f1
DJ
12496
12497 if (retcode < 0)
12498 remote_hostio_error (remote_errno);
12499 else if (retcode == 0)
12500 error (_("Remote write of %d bytes returned 0!"), bytes);
12501 else if (retcode < bytes)
12502 {
12503 /* Short write. Save the rest of the read data for the next
12504 write. */
12505 bytes_in_buffer = bytes - retcode;
5ca3b260 12506 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12507 }
12508
12509 offset += retcode;
12510 }
12511
6b8edb51 12512 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12513 remote_hostio_error (remote_errno);
12514
12515 if (from_tty)
12516 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12517}
12518
12519void
12520remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12521{
12522 remote_target *remote = get_current_remote_target ();
12523
12524 if (remote == nullptr)
12525 error (_("command can only be used with remote target"));
12526
12527 remote->remote_file_get (remote_file, local_file, from_tty);
12528}
12529
12530void
12531remote_target::remote_file_get (const char *remote_file, const char *local_file,
12532 int from_tty)
a6b151f1 12533{
440b7aec 12534 int remote_errno, bytes, io_size;
a6b151f1 12535 ULONGEST offset;
a6b151f1 12536
440b7aec 12537 scoped_remote_fd fd
6b8edb51
PA
12538 (this, remote_hostio_open (NULL,
12539 remote_file, FILEIO_O_RDONLY, 0, 0,
12540 &remote_errno));
440b7aec 12541 if (fd.get () == -1)
a6b151f1
DJ
12542 remote_hostio_error (remote_errno);
12543
d419f42d 12544 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12545 if (file == NULL)
12546 perror_with_name (local_file);
a6b151f1
DJ
12547
12548 /* Send up to this many bytes at once. They won't all fit in the
12549 remote packet limit, so we'll transfer slightly fewer. */
12550 io_size = get_remote_packet_size ();
5ca3b260 12551 gdb::byte_vector buffer (io_size);
a6b151f1 12552
a6b151f1
DJ
12553 offset = 0;
12554 while (1)
12555 {
5ca3b260 12556 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12557 &remote_errno);
a6b151f1
DJ
12558 if (bytes == 0)
12559 /* Success, but no bytes, means end-of-file. */
12560 break;
12561 if (bytes == -1)
12562 remote_hostio_error (remote_errno);
12563
12564 offset += bytes;
12565
5ca3b260 12566 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12567 if (bytes == 0)
12568 perror_with_name (local_file);
12569 }
12570
6b8edb51 12571 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12572 remote_hostio_error (remote_errno);
12573
12574 if (from_tty)
12575 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12576}
12577
12578void
12579remote_file_delete (const char *remote_file, int from_tty)
12580{
6b8edb51 12581 remote_target *remote = get_current_remote_target ();
a6b151f1 12582
6b8edb51 12583 if (remote == nullptr)
a6b151f1
DJ
12584 error (_("command can only be used with remote target"));
12585
6b8edb51
PA
12586 remote->remote_file_delete (remote_file, from_tty);
12587}
12588
12589void
12590remote_target::remote_file_delete (const char *remote_file, int from_tty)
12591{
12592 int retcode, remote_errno;
12593
12594 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12595 if (retcode == -1)
12596 remote_hostio_error (remote_errno);
12597
12598 if (from_tty)
12599 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12600}
12601
12602static void
ac88e2de 12603remote_put_command (const char *args, int from_tty)
a6b151f1 12604{
d1a41061
PP
12605 if (args == NULL)
12606 error_no_arg (_("file to put"));
12607
773a1edc 12608 gdb_argv argv (args);
a6b151f1
DJ
12609 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12610 error (_("Invalid parameters to remote put"));
12611
12612 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12613}
12614
12615static void
ac88e2de 12616remote_get_command (const char *args, int from_tty)
a6b151f1 12617{
d1a41061
PP
12618 if (args == NULL)
12619 error_no_arg (_("file to get"));
12620
773a1edc 12621 gdb_argv argv (args);
a6b151f1
DJ
12622 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12623 error (_("Invalid parameters to remote get"));
12624
12625 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12626}
12627
12628static void
ac88e2de 12629remote_delete_command (const char *args, int from_tty)
a6b151f1 12630{
d1a41061
PP
12631 if (args == NULL)
12632 error_no_arg (_("file to delete"));
12633
773a1edc 12634 gdb_argv argv (args);
a6b151f1
DJ
12635 if (argv[0] == NULL || argv[1] != NULL)
12636 error (_("Invalid parameters to remote delete"));
12637
12638 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12639}
12640
12641static void
981a3fb3 12642remote_command (const char *args, int from_tty)
a6b151f1 12643{
635c7e8a 12644 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12645}
12646
57810aa7 12647bool
f6ac5f3d 12648remote_target::can_execute_reverse ()
b2175913 12649{
4082afcc
PA
12650 if (packet_support (PACKET_bs) == PACKET_ENABLE
12651 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12652 return true;
40ab02ce 12653 else
57810aa7 12654 return false;
b2175913
MS
12655}
12656
57810aa7 12657bool
f6ac5f3d 12658remote_target::supports_non_stop ()
74531fed 12659{
57810aa7 12660 return true;
74531fed
PA
12661}
12662
57810aa7 12663bool
f6ac5f3d 12664remote_target::supports_disable_randomization ()
03583c20
UW
12665{
12666 /* Only supported in extended mode. */
57810aa7 12667 return false;
03583c20
UW
12668}
12669
57810aa7 12670bool
f6ac5f3d 12671remote_target::supports_multi_process ()
8a305172
PA
12672{
12673 struct remote_state *rs = get_remote_state ();
a744cf53 12674
8020350c 12675 return remote_multi_process_p (rs);
8a305172
PA
12676}
12677
70221824 12678static int
f6ac5f3d 12679remote_supports_cond_tracepoints ()
782b2b07 12680{
4082afcc 12681 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12682}
12683
57810aa7 12684bool
f6ac5f3d 12685remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12686{
4082afcc 12687 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12688}
12689
70221824 12690static int
f6ac5f3d 12691remote_supports_fast_tracepoints ()
7a697b8d 12692{
4082afcc 12693 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12694}
12695
0fb4aa4b 12696static int
f6ac5f3d 12697remote_supports_static_tracepoints ()
0fb4aa4b 12698{
4082afcc 12699 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12700}
12701
1e4d1764 12702static int
f6ac5f3d 12703remote_supports_install_in_trace ()
1e4d1764 12704{
4082afcc 12705 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12706}
12707
57810aa7 12708bool
f6ac5f3d 12709remote_target::supports_enable_disable_tracepoint ()
d248b706 12710{
4082afcc
PA
12711 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12712 == PACKET_ENABLE);
d248b706
KY
12713}
12714
57810aa7 12715bool
f6ac5f3d 12716remote_target::supports_string_tracing ()
3065dfb6 12717{
4082afcc 12718 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12719}
12720
57810aa7 12721bool
f6ac5f3d 12722remote_target::can_run_breakpoint_commands ()
d3ce09f5 12723{
4082afcc 12724 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12725}
12726
f6ac5f3d
PA
12727void
12728remote_target::trace_init ()
35b1e5cc 12729{
b6bb3468
PA
12730 struct remote_state *rs = get_remote_state ();
12731
35b1e5cc 12732 putpkt ("QTinit");
b6bb3468 12733 remote_get_noisy_reply ();
8d64371b 12734 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12735 error (_("Target does not support this command."));
12736}
12737
409873ef
SS
12738/* Recursive routine to walk through command list including loops, and
12739 download packets for each command. */
12740
6b8edb51
PA
12741void
12742remote_target::remote_download_command_source (int num, ULONGEST addr,
12743 struct command_line *cmds)
409873ef
SS
12744{
12745 struct remote_state *rs = get_remote_state ();
12746 struct command_line *cmd;
12747
12748 for (cmd = cmds; cmd; cmd = cmd->next)
12749 {
0df8b418 12750 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12751 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12752 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12753 rs->buf.data () + strlen (rs->buf.data ()),
12754 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12755 putpkt (rs->buf);
b6bb3468 12756 remote_get_noisy_reply ();
8d64371b 12757 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12758 warning (_("Target does not support source download."));
12759
12760 if (cmd->control_type == while_control
12761 || cmd->control_type == while_stepping_control)
12762 {
12973681 12763 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12764
0df8b418 12765 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12766 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12767 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12768 rs->buf.data () + strlen (rs->buf.data ()),
12769 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12770 putpkt (rs->buf);
b6bb3468 12771 remote_get_noisy_reply ();
8d64371b 12772 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12773 warning (_("Target does not support source download."));
12774 }
12775 }
12776}
12777
f6ac5f3d
PA
12778void
12779remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12780{
12781 CORE_ADDR tpaddr;
409873ef 12782 char addrbuf[40];
b44ec619
SM
12783 std::vector<std::string> tdp_actions;
12784 std::vector<std::string> stepping_actions;
35b1e5cc 12785 char *pkt;
e8ba3115 12786 struct breakpoint *b = loc->owner;
d9b3f62e 12787 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12788 struct remote_state *rs = get_remote_state ();
3df3a985 12789 int ret;
ff36536c 12790 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12791 size_t size_left;
12792
12793 /* We use a buffer other than rs->buf because we'll build strings
12794 across multiple statements, and other statements in between could
12795 modify rs->buf. */
12796 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12797
dc673c81 12798 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12799
12800 tpaddr = loc->address;
12801 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12802 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12803 b->number, addrbuf, /* address */
12804 (b->enable_state == bp_enabled ? 'E' : 'D'),
12805 t->step_count, t->pass_count);
12806
12807 if (ret < 0 || ret >= buf.size ())
a7f25a84 12808 error ("%s", err_msg);
3df3a985 12809
e8ba3115
YQ
12810 /* Fast tracepoints are mostly handled by the target, but we can
12811 tell the target how big of an instruction block should be moved
12812 around. */
12813 if (b->type == bp_fast_tracepoint)
12814 {
12815 /* Only test for support at download time; we may not know
12816 target capabilities at definition time. */
12817 if (remote_supports_fast_tracepoints ())
35b1e5cc 12818 {
6b940e6a
PL
12819 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12820 NULL))
3df3a985
PFC
12821 {
12822 size_left = buf.size () - strlen (buf.data ());
12823 ret = snprintf (buf.data () + strlen (buf.data ()),
12824 size_left, ":F%x",
12825 gdb_insn_length (loc->gdbarch, tpaddr));
12826
12827 if (ret < 0 || ret >= size_left)
a7f25a84 12828 error ("%s", err_msg);
3df3a985 12829 }
35b1e5cc 12830 else
e8ba3115
YQ
12831 /* If it passed validation at definition but fails now,
12832 something is very wrong. */
12833 internal_error (__FILE__, __LINE__,
12834 _("Fast tracepoint not "
12835 "valid during download"));
35b1e5cc 12836 }
e8ba3115
YQ
12837 else
12838 /* Fast tracepoints are functionally identical to regular
12839 tracepoints, so don't take lack of support as a reason to
12840 give up on the trace run. */
12841 warning (_("Target does not support fast tracepoints, "
12842 "downloading %d as regular tracepoint"), b->number);
12843 }
12844 else if (b->type == bp_static_tracepoint)
12845 {
12846 /* Only test for support at download time; we may not know
12847 target capabilities at definition time. */
12848 if (remote_supports_static_tracepoints ())
0fb4aa4b 12849 {
e8ba3115 12850 struct static_tracepoint_marker marker;
0fb4aa4b 12851
e8ba3115 12852 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12853 {
12854 size_left = buf.size () - strlen (buf.data ());
12855 ret = snprintf (buf.data () + strlen (buf.data ()),
12856 size_left, ":S");
12857
12858 if (ret < 0 || ret >= size_left)
a7f25a84 12859 error ("%s", err_msg);
3df3a985 12860 }
0fb4aa4b 12861 else
e8ba3115 12862 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12863 }
e8ba3115
YQ
12864 else
12865 /* Fast tracepoints are functionally identical to regular
12866 tracepoints, so don't take lack of support as a reason
12867 to give up on the trace run. */
12868 error (_("Target does not support static tracepoints"));
12869 }
12870 /* If the tracepoint has a conditional, make it into an agent
12871 expression and append to the definition. */
12872 if (loc->cond)
12873 {
12874 /* Only test support at download time, we may not know target
12875 capabilities at definition time. */
12876 if (remote_supports_cond_tracepoints ())
35b1e5cc 12877 {
3df3a985
PFC
12878 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12879 loc->cond.get ());
12880
12881 size_left = buf.size () - strlen (buf.data ());
12882
12883 ret = snprintf (buf.data () + strlen (buf.data ()),
12884 size_left, ":X%x,", aexpr->len);
12885
12886 if (ret < 0 || ret >= size_left)
a7f25a84 12887 error ("%s", err_msg);
3df3a985
PFC
12888
12889 size_left = buf.size () - strlen (buf.data ());
12890
12891 /* Two bytes to encode each aexpr byte, plus the terminating
12892 null byte. */
12893 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12894 error ("%s", err_msg);
3df3a985
PFC
12895
12896 pkt = buf.data () + strlen (buf.data ());
12897
b44ec619 12898 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12899 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12900 *pkt = '\0';
35b1e5cc 12901 }
e8ba3115
YQ
12902 else
12903 warning (_("Target does not support conditional tracepoints, "
12904 "ignoring tp %d cond"), b->number);
12905 }
35b1e5cc 12906
d9b3f62e 12907 if (b->commands || *default_collect)
3df3a985
PFC
12908 {
12909 size_left = buf.size () - strlen (buf.data ());
12910
12911 ret = snprintf (buf.data () + strlen (buf.data ()),
12912 size_left, "-");
12913
12914 if (ret < 0 || ret >= size_left)
a7f25a84 12915 error ("%s", err_msg);
3df3a985
PFC
12916 }
12917
12918 putpkt (buf.data ());
b6bb3468 12919 remote_get_noisy_reply ();
8d64371b 12920 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12921 error (_("Target does not support tracepoints."));
35b1e5cc 12922
e8ba3115 12923 /* do_single_steps (t); */
b44ec619
SM
12924 for (auto action_it = tdp_actions.begin ();
12925 action_it != tdp_actions.end (); action_it++)
e8ba3115 12926 {
b44ec619
SM
12927 QUIT; /* Allow user to bail out with ^C. */
12928
aa6f3694 12929 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12930 || !stepping_actions.empty ());
12931
3df3a985
PFC
12932 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12933 b->number, addrbuf, /* address */
12934 action_it->c_str (),
12935 has_more ? '-' : 0);
12936
12937 if (ret < 0 || ret >= buf.size ())
a7f25a84 12938 error ("%s", err_msg);
3df3a985
PFC
12939
12940 putpkt (buf.data ());
b44ec619 12941 remote_get_noisy_reply ();
8d64371b 12942 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12943 error (_("Error on target while setting tracepoints."));
e8ba3115 12944 }
409873ef 12945
05abfc39
PFC
12946 for (auto action_it = stepping_actions.begin ();
12947 action_it != stepping_actions.end (); action_it++)
12948 {
12949 QUIT; /* Allow user to bail out with ^C. */
12950
12951 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12952 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12953
3df3a985
PFC
12954 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12955 b->number, addrbuf, /* address */
12956 is_first ? "S" : "",
12957 action_it->c_str (),
12958 has_more ? "-" : "");
12959
12960 if (ret < 0 || ret >= buf.size ())
a7f25a84 12961 error ("%s", err_msg);
3df3a985
PFC
12962
12963 putpkt (buf.data ());
05abfc39 12964 remote_get_noisy_reply ();
8d64371b 12965 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12966 error (_("Error on target while setting tracepoints."));
12967 }
b44ec619 12968
4082afcc 12969 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12970 {
f00aae0f 12971 if (b->location != NULL)
409873ef 12972 {
3df3a985
PFC
12973 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12974
12975 if (ret < 0 || ret >= buf.size ())
a7f25a84 12976 error ("%s", err_msg);
3df3a985 12977
f00aae0f 12978 encode_source_string (b->number, loc->address, "at",
d28cd78a 12979 event_location_to_string (b->location.get ()),
3df3a985
PFC
12980 buf.data () + strlen (buf.data ()),
12981 buf.size () - strlen (buf.data ()));
12982 putpkt (buf.data ());
b6bb3468 12983 remote_get_noisy_reply ();
8d64371b 12984 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12985 warning (_("Target does not support source download."));
409873ef 12986 }
e8ba3115
YQ
12987 if (b->cond_string)
12988 {
3df3a985
PFC
12989 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12990
12991 if (ret < 0 || ret >= buf.size ())
a7f25a84 12992 error ("%s", err_msg);
3df3a985 12993
e8ba3115 12994 encode_source_string (b->number, loc->address,
3df3a985
PFC
12995 "cond", b->cond_string,
12996 buf.data () + strlen (buf.data ()),
12997 buf.size () - strlen (buf.data ()));
12998 putpkt (buf.data ());
b6bb3468 12999 remote_get_noisy_reply ();
8d64371b 13000 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13001 warning (_("Target does not support source download."));
13002 }
13003 remote_download_command_source (b->number, loc->address,
13004 breakpoint_commands (b));
35b1e5cc 13005 }
35b1e5cc
SS
13006}
13007
57810aa7 13008bool
f6ac5f3d 13009remote_target::can_download_tracepoint ()
1e4d1764 13010{
1e51243a
PA
13011 struct remote_state *rs = get_remote_state ();
13012 struct trace_status *ts;
13013 int status;
13014
13015 /* Don't try to install tracepoints until we've relocated our
13016 symbols, and fetched and merged the target's tracepoint list with
13017 ours. */
13018 if (rs->starting_up)
57810aa7 13019 return false;
1e51243a
PA
13020
13021 ts = current_trace_status ();
f6ac5f3d 13022 status = get_trace_status (ts);
1e4d1764
YQ
13023
13024 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13025 return false;
1e4d1764
YQ
13026
13027 /* If we are in a tracing experiment, but remote stub doesn't support
13028 installing tracepoint in trace, we have to return. */
13029 if (!remote_supports_install_in_trace ())
57810aa7 13030 return false;
1e4d1764 13031
57810aa7 13032 return true;
1e4d1764
YQ
13033}
13034
13035
f6ac5f3d
PA
13036void
13037remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13038{
13039 struct remote_state *rs = get_remote_state ();
00bf0b85 13040 char *p;
35b1e5cc 13041
8d64371b 13042 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13043 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13044 tsv.builtin);
8d64371b
TT
13045 p = rs->buf.data () + strlen (rs->buf.data ());
13046 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13047 >= get_remote_packet_size ())
00bf0b85 13048 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13049 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13050 *p++ = '\0';
35b1e5cc 13051 putpkt (rs->buf);
b6bb3468 13052 remote_get_noisy_reply ();
8d64371b 13053 if (rs->buf[0] == '\0')
ad91cd99 13054 error (_("Target does not support this command."));
8d64371b 13055 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13056 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13057}
13058
f6ac5f3d
PA
13059void
13060remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13061{
13062 struct remote_state *rs = get_remote_state ();
13063 char addr_buf[40];
13064
13065 sprintf_vma (addr_buf, location->address);
8d64371b 13066 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13067 location->owner->number, addr_buf);
d248b706 13068 putpkt (rs->buf);
b6bb3468 13069 remote_get_noisy_reply ();
8d64371b 13070 if (rs->buf[0] == '\0')
d248b706 13071 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13072 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13073 error (_("Error on target while enabling tracepoint."));
13074}
13075
f6ac5f3d
PA
13076void
13077remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13078{
13079 struct remote_state *rs = get_remote_state ();
13080 char addr_buf[40];
13081
13082 sprintf_vma (addr_buf, location->address);
8d64371b 13083 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13084 location->owner->number, addr_buf);
d248b706 13085 putpkt (rs->buf);
b6bb3468 13086 remote_get_noisy_reply ();
8d64371b 13087 if (rs->buf[0] == '\0')
d248b706 13088 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13089 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13090 error (_("Error on target while disabling tracepoint."));
13091}
13092
f6ac5f3d
PA
13093void
13094remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13095{
13096 asection *s;
13097 bfd_size_type size;
608bcef2 13098 bfd_vma vma;
35b1e5cc 13099 int anysecs = 0;
c2fa21f1 13100 int offset = 0;
35b1e5cc
SS
13101
13102 if (!exec_bfd)
13103 return; /* No information to give. */
13104
b6bb3468
PA
13105 struct remote_state *rs = get_remote_state ();
13106
8d64371b
TT
13107 strcpy (rs->buf.data (), "QTro");
13108 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13109 for (s = exec_bfd->sections; s; s = s->next)
13110 {
13111 char tmp1[40], tmp2[40];
c2fa21f1 13112 int sec_length;
35b1e5cc
SS
13113
13114 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13115 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13116 (s->flags & SEC_READONLY) == 0)
13117 continue;
13118
13119 anysecs = 1;
fd361982
AM
13120 vma = bfd_section_vma (s);
13121 size = bfd_section_size (s);
608bcef2
HZ
13122 sprintf_vma (tmp1, vma);
13123 sprintf_vma (tmp2, vma + size);
c2fa21f1 13124 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13125 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13126 {
4082afcc 13127 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13128 warning (_("\
c2fa21f1
HZ
13129Too many sections for read-only sections definition packet."));
13130 break;
13131 }
8d64371b 13132 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13133 tmp1, tmp2);
c2fa21f1 13134 offset += sec_length;
35b1e5cc
SS
13135 }
13136 if (anysecs)
13137 {
b6bb3468 13138 putpkt (rs->buf);
8d64371b 13139 getpkt (&rs->buf, 0);
35b1e5cc
SS
13140 }
13141}
13142
f6ac5f3d
PA
13143void
13144remote_target::trace_start ()
35b1e5cc 13145{
b6bb3468
PA
13146 struct remote_state *rs = get_remote_state ();
13147
35b1e5cc 13148 putpkt ("QTStart");
b6bb3468 13149 remote_get_noisy_reply ();
8d64371b 13150 if (rs->buf[0] == '\0')
ad91cd99 13151 error (_("Target does not support this command."));
8d64371b
TT
13152 if (strcmp (rs->buf.data (), "OK") != 0)
13153 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13154}
13155
f6ac5f3d
PA
13156int
13157remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13158{
953b98d1 13159 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13160 char *p = NULL;
bd3eecc3 13161 enum packet_result result;
b6bb3468 13162 struct remote_state *rs = get_remote_state ();
bd3eecc3 13163
4082afcc 13164 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13165 return -1;
a744cf53 13166
7b9a15e1 13167 /* FIXME we need to get register block size some other way. */
5cd63fda 13168 trace_regblock_size
9d6eea31 13169 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13170
049dc89b
JK
13171 putpkt ("qTStatus");
13172
a70b8144 13173 try
67f41397 13174 {
b6bb3468 13175 p = remote_get_noisy_reply ();
67f41397 13176 }
230d2906 13177 catch (const gdb_exception_error &ex)
67f41397 13178 {
598d3636
JK
13179 if (ex.error != TARGET_CLOSE_ERROR)
13180 {
13181 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13182 return -1;
13183 }
eedc3f4f 13184 throw;
67f41397 13185 }
00bf0b85 13186
bd3eecc3
PA
13187 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13188
00bf0b85 13189 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13190 if (result == PACKET_UNKNOWN)
00bf0b85 13191 return -1;
35b1e5cc 13192
00bf0b85 13193 /* We're working with a live target. */
f5911ea1 13194 ts->filename = NULL;
00bf0b85 13195
00bf0b85 13196 if (*p++ != 'T')
8d64371b 13197 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13198
84cebc4a
YQ
13199 /* Function 'parse_trace_status' sets default value of each field of
13200 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13201 parse_trace_status (p, ts);
13202
13203 return ts->running;
35b1e5cc
SS
13204}
13205
f6ac5f3d
PA
13206void
13207remote_target::get_tracepoint_status (struct breakpoint *bp,
13208 struct uploaded_tp *utp)
f196051f
SS
13209{
13210 struct remote_state *rs = get_remote_state ();
f196051f
SS
13211 char *reply;
13212 struct bp_location *loc;
13213 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13214 size_t size = get_remote_packet_size ();
f196051f
SS
13215
13216 if (tp)
13217 {
c1fc2657 13218 tp->hit_count = 0;
f196051f 13219 tp->traceframe_usage = 0;
c1fc2657 13220 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13221 {
13222 /* If the tracepoint was never downloaded, don't go asking for
13223 any status. */
13224 if (tp->number_on_target == 0)
13225 continue;
8d64371b 13226 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13227 phex_nz (loc->address, 0));
f196051f 13228 putpkt (rs->buf);
b6bb3468 13229 reply = remote_get_noisy_reply ();
f196051f
SS
13230 if (reply && *reply)
13231 {
13232 if (*reply == 'V')
13233 parse_tracepoint_status (reply + 1, bp, utp);
13234 }
13235 }
13236 }
13237 else if (utp)
13238 {
13239 utp->hit_count = 0;
13240 utp->traceframe_usage = 0;
8d64371b 13241 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13242 phex_nz (utp->addr, 0));
f196051f 13243 putpkt (rs->buf);
b6bb3468 13244 reply = remote_get_noisy_reply ();
f196051f
SS
13245 if (reply && *reply)
13246 {
13247 if (*reply == 'V')
13248 parse_tracepoint_status (reply + 1, bp, utp);
13249 }
13250 }
13251}
13252
f6ac5f3d
PA
13253void
13254remote_target::trace_stop ()
35b1e5cc 13255{
b6bb3468
PA
13256 struct remote_state *rs = get_remote_state ();
13257
35b1e5cc 13258 putpkt ("QTStop");
b6bb3468 13259 remote_get_noisy_reply ();
8d64371b 13260 if (rs->buf[0] == '\0')
ad91cd99 13261 error (_("Target does not support this command."));
8d64371b
TT
13262 if (strcmp (rs->buf.data (), "OK") != 0)
13263 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13264}
13265
f6ac5f3d
PA
13266int
13267remote_target::trace_find (enum trace_find_type type, int num,
13268 CORE_ADDR addr1, CORE_ADDR addr2,
13269 int *tpp)
35b1e5cc
SS
13270{
13271 struct remote_state *rs = get_remote_state ();
8d64371b 13272 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13273 char *p, *reply;
13274 int target_frameno = -1, target_tracept = -1;
13275
e6e4e701
PA
13276 /* Lookups other than by absolute frame number depend on the current
13277 trace selected, so make sure it is correct on the remote end
13278 first. */
13279 if (type != tfind_number)
13280 set_remote_traceframe ();
13281
8d64371b 13282 p = rs->buf.data ();
35b1e5cc
SS
13283 strcpy (p, "QTFrame:");
13284 p = strchr (p, '\0');
13285 switch (type)
13286 {
13287 case tfind_number:
bba74b36 13288 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13289 break;
13290 case tfind_pc:
bba74b36 13291 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13292 break;
13293 case tfind_tp:
bba74b36 13294 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13295 break;
13296 case tfind_range:
bba74b36
YQ
13297 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13298 phex_nz (addr2, 0));
35b1e5cc
SS
13299 break;
13300 case tfind_outside:
bba74b36
YQ
13301 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13302 phex_nz (addr2, 0));
35b1e5cc
SS
13303 break;
13304 default:
9b20d036 13305 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13306 }
13307
13308 putpkt (rs->buf);
b6bb3468 13309 reply = remote_get_noisy_reply ();
ad91cd99
PA
13310 if (*reply == '\0')
13311 error (_("Target does not support this command."));
35b1e5cc
SS
13312
13313 while (reply && *reply)
13314 switch (*reply)
13315 {
13316 case 'F':
f197e0f1
VP
13317 p = ++reply;
13318 target_frameno = (int) strtol (p, &reply, 16);
13319 if (reply == p)
13320 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13321 /* Don't update our remote traceframe number cache on failure
13322 to select a remote traceframe. */
f197e0f1
VP
13323 if (target_frameno == -1)
13324 return -1;
35b1e5cc
SS
13325 break;
13326 case 'T':
f197e0f1
VP
13327 p = ++reply;
13328 target_tracept = (int) strtol (p, &reply, 16);
13329 if (reply == p)
13330 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13331 break;
13332 case 'O': /* "OK"? */
13333 if (reply[1] == 'K' && reply[2] == '\0')
13334 reply += 2;
13335 else
13336 error (_("Bogus reply from target: %s"), reply);
13337 break;
13338 default:
13339 error (_("Bogus reply from target: %s"), reply);
13340 }
13341 if (tpp)
13342 *tpp = target_tracept;
e6e4e701 13343
262e1174 13344 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13345 return target_frameno;
13346}
13347
57810aa7 13348bool
f6ac5f3d 13349remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13350{
13351 struct remote_state *rs = get_remote_state ();
13352 char *reply;
13353 ULONGEST uval;
13354
e6e4e701
PA
13355 set_remote_traceframe ();
13356
8d64371b 13357 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13358 putpkt (rs->buf);
b6bb3468 13359 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13360 if (reply && *reply)
13361 {
13362 if (*reply == 'V')
13363 {
13364 unpack_varlen_hex (reply + 1, &uval);
13365 *val = (LONGEST) uval;
57810aa7 13366 return true;
35b1e5cc
SS
13367 }
13368 }
57810aa7 13369 return false;
35b1e5cc
SS
13370}
13371
f6ac5f3d
PA
13372int
13373remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13374{
13375 struct remote_state *rs = get_remote_state ();
13376 char *p, *reply;
13377
8d64371b 13378 p = rs->buf.data ();
00bf0b85
SS
13379 strcpy (p, "QTSave:");
13380 p += strlen (p);
8d64371b
TT
13381 if ((p - rs->buf.data ()) + strlen (filename) * 2
13382 >= get_remote_packet_size ())
00bf0b85 13383 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13384 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13385 *p++ = '\0';
13386 putpkt (rs->buf);
b6bb3468 13387 reply = remote_get_noisy_reply ();
d6c5869f 13388 if (*reply == '\0')
ad91cd99
PA
13389 error (_("Target does not support this command."));
13390 if (strcmp (reply, "OK") != 0)
13391 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13392 return 0;
13393}
13394
13395/* This is basically a memory transfer, but needs to be its own packet
13396 because we don't know how the target actually organizes its trace
13397 memory, plus we want to be able to ask for as much as possible, but
13398 not be unhappy if we don't get as much as we ask for. */
13399
f6ac5f3d
PA
13400LONGEST
13401remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13402{
13403 struct remote_state *rs = get_remote_state ();
13404 char *reply;
13405 char *p;
13406 int rslt;
13407
8d64371b 13408 p = rs->buf.data ();
00bf0b85
SS
13409 strcpy (p, "qTBuffer:");
13410 p += strlen (p);
13411 p += hexnumstr (p, offset);
13412 *p++ = ',';
13413 p += hexnumstr (p, len);
13414 *p++ = '\0';
13415
13416 putpkt (rs->buf);
b6bb3468 13417 reply = remote_get_noisy_reply ();
00bf0b85
SS
13418 if (reply && *reply)
13419 {
13420 /* 'l' by itself means we're at the end of the buffer and
13421 there is nothing more to get. */
13422 if (*reply == 'l')
13423 return 0;
13424
13425 /* Convert the reply into binary. Limit the number of bytes to
13426 convert according to our passed-in buffer size, rather than
13427 what was returned in the packet; if the target is
13428 unexpectedly generous and gives us a bigger reply than we
13429 asked for, we don't want to crash. */
b6bb3468 13430 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13431 return rslt;
13432 }
13433
13434 /* Something went wrong, flag as an error. */
13435 return -1;
13436}
13437
f6ac5f3d
PA
13438void
13439remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13440{
13441 struct remote_state *rs = get_remote_state ();
13442
4082afcc 13443 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13444 {
ad91cd99
PA
13445 char *reply;
13446
8d64371b
TT
13447 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13448 "QTDisconnected:%x", val);
33da3f1c 13449 putpkt (rs->buf);
b6bb3468 13450 reply = remote_get_noisy_reply ();
ad91cd99 13451 if (*reply == '\0')
33da3f1c 13452 error (_("Target does not support this command."));
ad91cd99
PA
13453 if (strcmp (reply, "OK") != 0)
13454 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13455 }
13456 else if (val)
13457 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13458}
13459
f6ac5f3d
PA
13460int
13461remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13462{
5b6d1e4f 13463 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13464
7aabaf9d
SM
13465 if (info != NULL && info->priv != NULL)
13466 return get_remote_thread_info (info)->core;
13467
dc146f7c
VP
13468 return -1;
13469}
13470
f6ac5f3d
PA
13471void
13472remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13473{
13474 struct remote_state *rs = get_remote_state ();
ad91cd99 13475 char *reply;
4daf5ac0 13476
8d64371b
TT
13477 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13478 "QTBuffer:circular:%x", val);
4daf5ac0 13479 putpkt (rs->buf);
b6bb3468 13480 reply = remote_get_noisy_reply ();
ad91cd99 13481 if (*reply == '\0')
4daf5ac0 13482 error (_("Target does not support this command."));
ad91cd99
PA
13483 if (strcmp (reply, "OK") != 0)
13484 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13485}
13486
f6ac5f3d
PA
13487traceframe_info_up
13488remote_target::traceframe_info ()
b3b9301e 13489{
9018be22 13490 gdb::optional<gdb::char_vector> text
8b88a78e 13491 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13492 NULL);
9018be22
SM
13493 if (text)
13494 return parse_traceframe_info (text->data ());
b3b9301e
PA
13495
13496 return NULL;
13497}
13498
405f8e94
SS
13499/* Handle the qTMinFTPILen packet. Returns the minimum length of
13500 instruction on which a fast tracepoint may be placed. Returns -1
13501 if the packet is not supported, and 0 if the minimum instruction
13502 length is unknown. */
13503
f6ac5f3d
PA
13504int
13505remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13506{
13507 struct remote_state *rs = get_remote_state ();
13508 char *reply;
13509
e886a173
PA
13510 /* If we're not debugging a process yet, the IPA can't be
13511 loaded. */
13512 if (!target_has_execution)
13513 return 0;
13514
13515 /* Make sure the remote is pointing at the right process. */
13516 set_general_process ();
13517
8d64371b 13518 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13519 putpkt (rs->buf);
b6bb3468 13520 reply = remote_get_noisy_reply ();
405f8e94
SS
13521 if (*reply == '\0')
13522 return -1;
13523 else
13524 {
13525 ULONGEST min_insn_len;
13526
13527 unpack_varlen_hex (reply, &min_insn_len);
13528
13529 return (int) min_insn_len;
13530 }
13531}
13532
f6ac5f3d
PA
13533void
13534remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13535{
4082afcc 13536 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13537 {
13538 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13539 char *buf = rs->buf.data ();
13540 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13541 enum packet_result result;
13542
13543 gdb_assert (val >= 0 || val == -1);
13544 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13545 /* Send -1 as literal "-1" to avoid host size dependency. */
13546 if (val < 0)
13547 {
13548 *buf++ = '-';
13549 buf += hexnumstr (buf, (ULONGEST) -val);
13550 }
13551 else
13552 buf += hexnumstr (buf, (ULONGEST) val);
13553
13554 putpkt (rs->buf);
b6bb3468 13555 remote_get_noisy_reply ();
f6f899bf
HAQ
13556 result = packet_ok (rs->buf,
13557 &remote_protocol_packets[PACKET_QTBuffer_size]);
13558
13559 if (result != PACKET_OK)
8d64371b 13560 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13561 }
13562}
13563
57810aa7 13564bool
f6ac5f3d
PA
13565remote_target::set_trace_notes (const char *user, const char *notes,
13566 const char *stop_notes)
f196051f
SS
13567{
13568 struct remote_state *rs = get_remote_state ();
13569 char *reply;
8d64371b
TT
13570 char *buf = rs->buf.data ();
13571 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13572 int nbytes;
13573
13574 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13575 if (user)
13576 {
13577 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13578 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13579 buf += 2 * nbytes;
13580 *buf++ = ';';
13581 }
13582 if (notes)
13583 {
13584 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13585 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13586 buf += 2 * nbytes;
13587 *buf++ = ';';
13588 }
13589 if (stop_notes)
13590 {
13591 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13592 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13593 buf += 2 * nbytes;
13594 *buf++ = ';';
13595 }
13596 /* Ensure the buffer is terminated. */
13597 *buf = '\0';
13598
13599 putpkt (rs->buf);
b6bb3468 13600 reply = remote_get_noisy_reply ();
f196051f 13601 if (*reply == '\0')
57810aa7 13602 return false;
f196051f
SS
13603
13604 if (strcmp (reply, "OK") != 0)
13605 error (_("Bogus reply from target: %s"), reply);
13606
57810aa7 13607 return true;
f196051f
SS
13608}
13609
57810aa7
PA
13610bool
13611remote_target::use_agent (bool use)
d1feda86 13612{
4082afcc 13613 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13614 {
13615 struct remote_state *rs = get_remote_state ();
13616
13617 /* If the stub supports QAgent. */
8d64371b 13618 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13619 putpkt (rs->buf);
8d64371b 13620 getpkt (&rs->buf, 0);
d1feda86 13621
8d64371b 13622 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13623 {
f6ac5f3d 13624 ::use_agent = use;
57810aa7 13625 return true;
d1feda86
YQ
13626 }
13627 }
13628
57810aa7 13629 return false;
d1feda86
YQ
13630}
13631
57810aa7 13632bool
f6ac5f3d 13633remote_target::can_use_agent ()
d1feda86 13634{
4082afcc 13635 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13636}
13637
9accd112
MM
13638struct btrace_target_info
13639{
13640 /* The ptid of the traced thread. */
13641 ptid_t ptid;
f4abbc16
MM
13642
13643 /* The obtained branch trace configuration. */
13644 struct btrace_config conf;
9accd112
MM
13645};
13646
f4abbc16
MM
13647/* Reset our idea of our target's btrace configuration. */
13648
13649static void
6b8edb51 13650remote_btrace_reset (remote_state *rs)
f4abbc16 13651{
f4abbc16
MM
13652 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13653}
13654
f4abbc16
MM
13655/* Synchronize the configuration with the target. */
13656
6b8edb51
PA
13657void
13658remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13659{
d33501a5
MM
13660 struct packet_config *packet;
13661 struct remote_state *rs;
13662 char *buf, *pos, *endbuf;
13663
13664 rs = get_remote_state ();
8d64371b 13665 buf = rs->buf.data ();
d33501a5
MM
13666 endbuf = buf + get_remote_packet_size ();
13667
13668 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13669 if (packet_config_support (packet) == PACKET_ENABLE
13670 && conf->bts.size != rs->btrace_config.bts.size)
13671 {
13672 pos = buf;
13673 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13674 conf->bts.size);
13675
13676 putpkt (buf);
8d64371b 13677 getpkt (&rs->buf, 0);
d33501a5
MM
13678
13679 if (packet_ok (buf, packet) == PACKET_ERROR)
13680 {
13681 if (buf[0] == 'E' && buf[1] == '.')
13682 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13683 else
13684 error (_("Failed to configure the BTS buffer size."));
13685 }
13686
13687 rs->btrace_config.bts.size = conf->bts.size;
13688 }
b20a6524
MM
13689
13690 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13691 if (packet_config_support (packet) == PACKET_ENABLE
13692 && conf->pt.size != rs->btrace_config.pt.size)
13693 {
13694 pos = buf;
13695 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13696 conf->pt.size);
13697
13698 putpkt (buf);
8d64371b 13699 getpkt (&rs->buf, 0);
b20a6524
MM
13700
13701 if (packet_ok (buf, packet) == PACKET_ERROR)
13702 {
13703 if (buf[0] == 'E' && buf[1] == '.')
13704 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13705 else
13706 error (_("Failed to configure the trace buffer size."));
13707 }
13708
13709 rs->btrace_config.pt.size = conf->pt.size;
13710 }
f4abbc16
MM
13711}
13712
13713/* Read the current thread's btrace configuration from the target and
13714 store it into CONF. */
13715
13716static void
13717btrace_read_config (struct btrace_config *conf)
13718{
9018be22 13719 gdb::optional<gdb::char_vector> xml
8b88a78e 13720 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13721 if (xml)
13722 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13723}
13724
c0272db5
TW
13725/* Maybe reopen target btrace. */
13726
6b8edb51
PA
13727void
13728remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13729{
13730 struct remote_state *rs = get_remote_state ();
c0272db5 13731 int btrace_target_pushed = 0;
15766370 13732#if !defined (HAVE_LIBIPT)
c0272db5 13733 int warned = 0;
15766370 13734#endif
c0272db5 13735
aedbe3bb
CM
13736 /* Don't bother walking the entirety of the remote thread list when
13737 we know the feature isn't supported by the remote. */
13738 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13739 return;
13740
5ed8105e
PA
13741 scoped_restore_current_thread restore_thread;
13742
5b6d1e4f 13743 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13744 {
13745 set_general_thread (tp->ptid);
13746
13747 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13748 btrace_read_config (&rs->btrace_config);
13749
13750 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13751 continue;
13752
13753#if !defined (HAVE_LIBIPT)
13754 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13755 {
13756 if (!warned)
13757 {
13758 warned = 1;
c4e12631
MM
13759 warning (_("Target is recording using Intel Processor Trace "
13760 "but support was disabled at compile time."));
c0272db5
TW
13761 }
13762
13763 continue;
13764 }
13765#endif /* !defined (HAVE_LIBIPT) */
13766
13767 /* Push target, once, but before anything else happens. This way our
13768 changes to the threads will be cleaned up by unpushing the target
13769 in case btrace_read_config () throws. */
13770 if (!btrace_target_pushed)
13771 {
13772 btrace_target_pushed = 1;
13773 record_btrace_push_target ();
13774 printf_filtered (_("Target is recording using %s.\n"),
13775 btrace_format_string (rs->btrace_config.format));
13776 }
13777
13778 tp->btrace.target = XCNEW (struct btrace_target_info);
13779 tp->btrace.target->ptid = tp->ptid;
13780 tp->btrace.target->conf = rs->btrace_config;
13781 }
c0272db5
TW
13782}
13783
9accd112
MM
13784/* Enable branch tracing. */
13785
f6ac5f3d
PA
13786struct btrace_target_info *
13787remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13788{
13789 struct btrace_target_info *tinfo = NULL;
b20a6524 13790 struct packet_config *packet = NULL;
9accd112 13791 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13792 char *buf = rs->buf.data ();
13793 char *endbuf = buf + get_remote_packet_size ();
9accd112 13794
b20a6524
MM
13795 switch (conf->format)
13796 {
13797 case BTRACE_FORMAT_BTS:
13798 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13799 break;
13800
13801 case BTRACE_FORMAT_PT:
13802 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13803 break;
13804 }
13805
13806 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13807 error (_("Target does not support branch tracing."));
13808
f4abbc16
MM
13809 btrace_sync_conf (conf);
13810
9accd112
MM
13811 set_general_thread (ptid);
13812
13813 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13814 putpkt (rs->buf);
8d64371b 13815 getpkt (&rs->buf, 0);
9accd112
MM
13816
13817 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13818 {
13819 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13820 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13821 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13822 else
13823 error (_("Could not enable branch tracing for %s."),
a068643d 13824 target_pid_to_str (ptid).c_str ());
9accd112
MM
13825 }
13826
8d749320 13827 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13828 tinfo->ptid = ptid;
13829
f4abbc16
MM
13830 /* If we fail to read the configuration, we lose some information, but the
13831 tracing itself is not impacted. */
a70b8144 13832 try
492d29ea
PA
13833 {
13834 btrace_read_config (&tinfo->conf);
13835 }
230d2906 13836 catch (const gdb_exception_error &err)
492d29ea
PA
13837 {
13838 if (err.message != NULL)
3d6e9d23 13839 warning ("%s", err.what ());
492d29ea 13840 }
f4abbc16 13841
9accd112
MM
13842 return tinfo;
13843}
13844
13845/* Disable branch tracing. */
13846
f6ac5f3d
PA
13847void
13848remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13849{
13850 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13851 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13852 char *buf = rs->buf.data ();
13853 char *endbuf = buf + get_remote_packet_size ();
9accd112 13854
4082afcc 13855 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13856 error (_("Target does not support branch tracing."));
13857
13858 set_general_thread (tinfo->ptid);
13859
13860 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13861 putpkt (rs->buf);
8d64371b 13862 getpkt (&rs->buf, 0);
9accd112
MM
13863
13864 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13865 {
13866 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13867 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13868 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13869 else
13870 error (_("Could not disable branch tracing for %s."),
a068643d 13871 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13872 }
13873
13874 xfree (tinfo);
13875}
13876
13877/* Teardown branch tracing. */
13878
f6ac5f3d
PA
13879void
13880remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13881{
13882 /* We must not talk to the target during teardown. */
13883 xfree (tinfo);
13884}
13885
13886/* Read the branch trace. */
13887
f6ac5f3d
PA
13888enum btrace_error
13889remote_target::read_btrace (struct btrace_data *btrace,
13890 struct btrace_target_info *tinfo,
13891 enum btrace_read_type type)
9accd112
MM
13892{
13893 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13894 const char *annex;
9accd112 13895
4082afcc 13896 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13897 error (_("Target does not support branch tracing."));
13898
13899#if !defined(HAVE_LIBEXPAT)
13900 error (_("Cannot process branch tracing result. XML parsing not supported."));
13901#endif
13902
13903 switch (type)
13904 {
864089d2 13905 case BTRACE_READ_ALL:
9accd112
MM
13906 annex = "all";
13907 break;
864089d2 13908 case BTRACE_READ_NEW:
9accd112
MM
13909 annex = "new";
13910 break;
969c39fb
MM
13911 case BTRACE_READ_DELTA:
13912 annex = "delta";
13913 break;
9accd112
MM
13914 default:
13915 internal_error (__FILE__, __LINE__,
13916 _("Bad branch tracing read type: %u."),
13917 (unsigned int) type);
13918 }
13919
9018be22 13920 gdb::optional<gdb::char_vector> xml
8b88a78e 13921 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13922 if (!xml)
969c39fb 13923 return BTRACE_ERR_UNKNOWN;
9accd112 13924
9018be22 13925 parse_xml_btrace (btrace, xml->data ());
9accd112 13926
969c39fb 13927 return BTRACE_ERR_NONE;
9accd112
MM
13928}
13929
f6ac5f3d
PA
13930const struct btrace_config *
13931remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13932{
13933 return &tinfo->conf;
13934}
13935
57810aa7 13936bool
f6ac5f3d 13937remote_target::augmented_libraries_svr4_read ()
ced63ec0 13938{
4082afcc
PA
13939 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13940 == PACKET_ENABLE);
ced63ec0
GB
13941}
13942
9dd130a0
TT
13943/* Implementation of to_load. */
13944
f6ac5f3d
PA
13945void
13946remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13947{
13948 generic_load (name, from_tty);
13949}
13950
c78fa86a
GB
13951/* Accepts an integer PID; returns a string representing a file that
13952 can be opened on the remote side to get the symbols for the child
13953 process. Returns NULL if the operation is not supported. */
13954
f6ac5f3d
PA
13955char *
13956remote_target::pid_to_exec_file (int pid)
c78fa86a 13957{
9018be22 13958 static gdb::optional<gdb::char_vector> filename;
835205d0 13959 char *annex = NULL;
c78fa86a
GB
13960
13961 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13962 return NULL;
13963
5b6d1e4f 13964 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
13965 if (inf == NULL)
13966 internal_error (__FILE__, __LINE__,
13967 _("not currently attached to process %d"), pid);
13968
13969 if (!inf->fake_pid_p)
13970 {
13971 const int annex_size = 9;
13972
224c3ddb 13973 annex = (char *) alloca (annex_size);
835205d0
GB
13974 xsnprintf (annex, annex_size, "%x", pid);
13975 }
13976
8b88a78e 13977 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13978 TARGET_OBJECT_EXEC_FILE, annex);
13979
9018be22 13980 return filename ? filename->data () : nullptr;
c78fa86a
GB
13981}
13982
750ce8d1
YQ
13983/* Implement the to_can_do_single_step target_ops method. */
13984
f6ac5f3d
PA
13985int
13986remote_target::can_do_single_step ()
750ce8d1
YQ
13987{
13988 /* We can only tell whether target supports single step or not by
13989 supported s and S vCont actions if the stub supports vContSupported
13990 feature. If the stub doesn't support vContSupported feature,
13991 we have conservatively to think target doesn't supports single
13992 step. */
13993 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13994 {
13995 struct remote_state *rs = get_remote_state ();
13996
13997 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13998 remote_vcont_probe ();
750ce8d1
YQ
13999
14000 return rs->supports_vCont.s && rs->supports_vCont.S;
14001 }
14002 else
14003 return 0;
14004}
14005
3a00c802
PA
14006/* Implementation of the to_execution_direction method for the remote
14007 target. */
14008
f6ac5f3d
PA
14009enum exec_direction_kind
14010remote_target::execution_direction ()
3a00c802
PA
14011{
14012 struct remote_state *rs = get_remote_state ();
14013
14014 return rs->last_resume_exec_dir;
14015}
14016
f6327dcb
KB
14017/* Return pointer to the thread_info struct which corresponds to
14018 THREAD_HANDLE (having length HANDLE_LEN). */
14019
f6ac5f3d
PA
14020thread_info *
14021remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14022 int handle_len,
14023 inferior *inf)
f6327dcb 14024{
5b6d1e4f 14025 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14026 {
7aabaf9d 14027 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14028
14029 if (tp->inf == inf && priv != NULL)
14030 {
7aabaf9d 14031 if (handle_len != priv->thread_handle.size ())
f6327dcb 14032 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14033 handle_len, priv->thread_handle.size ());
14034 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14035 handle_len) == 0)
14036 return tp;
14037 }
14038 }
14039
14040 return NULL;
14041}
14042
3d6c6204
KB
14043gdb::byte_vector
14044remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14045{
14046 remote_thread_info *priv = get_remote_thread_info (tp);
14047 return priv->thread_handle;
14048}
14049
57810aa7 14050bool
f6ac5f3d 14051remote_target::can_async_p ()
6426a772 14052{
5d93a237
TT
14053 struct remote_state *rs = get_remote_state ();
14054
3015c064
SM
14055 /* We don't go async if the user has explicitly prevented it with the
14056 "maint set target-async" command. */
c6ebd6cf 14057 if (!target_async_permitted)
57810aa7 14058 return false;
75c99385 14059
23860348 14060 /* We're async whenever the serial device is. */
5d93a237 14061 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14062}
14063
57810aa7 14064bool
f6ac5f3d 14065remote_target::is_async_p ()
6426a772 14066{
5d93a237
TT
14067 struct remote_state *rs = get_remote_state ();
14068
c6ebd6cf 14069 if (!target_async_permitted)
75c99385 14070 /* We only enable async when the user specifically asks for it. */
57810aa7 14071 return false;
75c99385 14072
23860348 14073 /* We're async whenever the serial device is. */
5d93a237 14074 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14075}
14076
2acceee2
JM
14077/* Pass the SERIAL event on and up to the client. One day this code
14078 will be able to delay notifying the client of an event until the
23860348 14079 point where an entire packet has been received. */
2acceee2 14080
2acceee2
JM
14081static serial_event_ftype remote_async_serial_handler;
14082
6426a772 14083static void
819cc324 14084remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14085{
2acceee2
JM
14086 /* Don't propogate error information up to the client. Instead let
14087 the client find out about the error by querying the target. */
6a3753b3 14088 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14089}
14090
74531fed
PA
14091static void
14092remote_async_inferior_event_handler (gdb_client_data data)
14093{
6b8edb51 14094 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14095}
14096
5b6d1e4f
PA
14097int
14098remote_target::async_wait_fd ()
14099{
14100 struct remote_state *rs = get_remote_state ();
14101 return rs->remote_desc->fd;
14102}
14103
f6ac5f3d
PA
14104void
14105remote_target::async (int enable)
2acceee2 14106{
5d93a237
TT
14107 struct remote_state *rs = get_remote_state ();
14108
6a3753b3 14109 if (enable)
2acceee2 14110 {
88b496c3 14111 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14112
14113 /* If there are pending events in the stop reply queue tell the
14114 event loop to process them. */
953edf2b 14115 if (!rs->stop_reply_queue.empty ())
6b8edb51 14116 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14117 /* For simplicity, below we clear the pending events token
14118 without remembering whether it is marked, so here we always
14119 mark it. If there's actually no pending notification to
14120 process, this ends up being a no-op (other than a spurious
14121 event-loop wakeup). */
14122 if (target_is_non_stop_p ())
14123 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14124 }
14125 else
b7d2e916
PA
14126 {
14127 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14128 /* If the core is disabling async, it doesn't want to be
14129 disturbed with target events. Clear all async event sources
14130 too. */
6b8edb51 14131 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14132 if (target_is_non_stop_p ())
14133 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14134 }
6426a772
JM
14135}
14136
65706a29
PA
14137/* Implementation of the to_thread_events method. */
14138
f6ac5f3d
PA
14139void
14140remote_target::thread_events (int enable)
65706a29
PA
14141{
14142 struct remote_state *rs = get_remote_state ();
14143 size_t size = get_remote_packet_size ();
65706a29
PA
14144
14145 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14146 return;
14147
8d64371b 14148 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14149 putpkt (rs->buf);
8d64371b 14150 getpkt (&rs->buf, 0);
65706a29
PA
14151
14152 switch (packet_ok (rs->buf,
14153 &remote_protocol_packets[PACKET_QThreadEvents]))
14154 {
14155 case PACKET_OK:
8d64371b
TT
14156 if (strcmp (rs->buf.data (), "OK") != 0)
14157 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14158 break;
14159 case PACKET_ERROR:
8d64371b 14160 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14161 break;
14162 case PACKET_UNKNOWN:
14163 break;
14164 }
14165}
14166
5a2468f5 14167static void
981a3fb3 14168set_remote_cmd (const char *args, int from_tty)
5a2468f5 14169{
635c7e8a 14170 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14171}
14172
d471ea57 14173static void
981a3fb3 14174show_remote_cmd (const char *args, int from_tty)
d471ea57 14175{
37a105a1 14176 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14177 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14178 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14179 struct ui_out *uiout = current_uiout;
37a105a1 14180
2e783024 14181 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14182 for (; list != NULL; list = list->next)
14183 if (strcmp (list->name, "Z-packet") == 0)
14184 continue;
427c3a89
DJ
14185 else if (list->type == not_set_cmd)
14186 /* Alias commands are exactly like the original, except they
14187 don't have the normal type. */
14188 continue;
14189 else
37a105a1 14190 {
2e783024 14191 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14192
112e8700
SM
14193 uiout->field_string ("name", list->name);
14194 uiout->text (": ");
427c3a89 14195 if (list->type == show_cmd)
f5c4fcd9 14196 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14197 else
14198 cmd_func (list, NULL, from_tty);
37a105a1 14199 }
d471ea57 14200}
5a2468f5 14201
0f71a2f6 14202
23860348 14203/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14204static void
14205remote_new_objfile (struct objfile *objfile)
14206{
6b8edb51 14207 remote_target *remote = get_current_remote_target ();
5d93a237 14208
6b8edb51
PA
14209 if (remote != NULL) /* Have a remote connection. */
14210 remote->remote_check_symbols ();
dc8acb97
MS
14211}
14212
00bf0b85
SS
14213/* Pull all the tracepoints defined on the target and create local
14214 data structures representing them. We don't want to create real
14215 tracepoints yet, we don't want to mess up the user's existing
14216 collection. */
14217
f6ac5f3d
PA
14218int
14219remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14220{
00bf0b85
SS
14221 struct remote_state *rs = get_remote_state ();
14222 char *p;
d5551862 14223
00bf0b85
SS
14224 /* Ask for a first packet of tracepoint definition. */
14225 putpkt ("qTfP");
8d64371b
TT
14226 getpkt (&rs->buf, 0);
14227 p = rs->buf.data ();
00bf0b85 14228 while (*p && *p != 'l')
d5551862 14229 {
00bf0b85
SS
14230 parse_tracepoint_definition (p, utpp);
14231 /* Ask for another packet of tracepoint definition. */
14232 putpkt ("qTsP");
8d64371b
TT
14233 getpkt (&rs->buf, 0);
14234 p = rs->buf.data ();
d5551862 14235 }
00bf0b85 14236 return 0;
d5551862
SS
14237}
14238
f6ac5f3d
PA
14239int
14240remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14241{
00bf0b85 14242 struct remote_state *rs = get_remote_state ();
d5551862 14243 char *p;
d5551862 14244
00bf0b85
SS
14245 /* Ask for a first packet of variable definition. */
14246 putpkt ("qTfV");
8d64371b
TT
14247 getpkt (&rs->buf, 0);
14248 p = rs->buf.data ();
00bf0b85 14249 while (*p && *p != 'l')
d5551862 14250 {
00bf0b85
SS
14251 parse_tsv_definition (p, utsvp);
14252 /* Ask for another packet of variable definition. */
14253 putpkt ("qTsV");
8d64371b
TT
14254 getpkt (&rs->buf, 0);
14255 p = rs->buf.data ();
d5551862 14256 }
00bf0b85 14257 return 0;
d5551862
SS
14258}
14259
c1e36e3e
PA
14260/* The "set/show range-stepping" show hook. */
14261
14262static void
14263show_range_stepping (struct ui_file *file, int from_tty,
14264 struct cmd_list_element *c,
14265 const char *value)
14266{
14267 fprintf_filtered (file,
14268 _("Debugger's willingness to use range stepping "
14269 "is %s.\n"), value);
14270}
14271
6b8edb51
PA
14272/* Return true if the vCont;r action is supported by the remote
14273 stub. */
14274
14275bool
14276remote_target::vcont_r_supported ()
14277{
14278 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14279 remote_vcont_probe ();
14280
14281 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14282 && get_remote_state ()->supports_vCont.r);
14283}
14284
c1e36e3e
PA
14285/* The "set/show range-stepping" set hook. */
14286
14287static void
eb4c3f4a 14288set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14289 struct cmd_list_element *c)
14290{
6b8edb51
PA
14291 /* When enabling, check whether range stepping is actually supported
14292 by the target, and warn if not. */
c1e36e3e
PA
14293 if (use_range_stepping)
14294 {
6b8edb51
PA
14295 remote_target *remote = get_current_remote_target ();
14296 if (remote == NULL
14297 || !remote->vcont_r_supported ())
14298 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14299 }
14300}
14301
c906108c 14302void
fba45db2 14303_initialize_remote (void)
c906108c 14304{
9a7071a8 14305 struct cmd_list_element *cmd;
6f937416 14306 const char *cmd_name;
ea9c271d 14307
0f71a2f6 14308 /* architecture specific data */
29709017
DJ
14309 remote_g_packet_data_handle =
14310 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14311
d9f719f1
PA
14312 add_target (remote_target_info, remote_target::open);
14313 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14314
dc8acb97 14315 /* Hook into new objfile notification. */
76727919 14316 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14317
c906108c
SS
14318#if 0
14319 init_remote_threadtests ();
14320#endif
14321
23860348 14322 /* set/show remote ... */
d471ea57 14323
1bedd215 14324 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
590042fc 14325Remote protocol specific variables.\n\
5a2468f5 14326Configure various remote-protocol specific variables such as\n\
590042fc 14327the packets being used."),
cff3e48b 14328 &remote_set_cmdlist, "set remote ",
23860348 14329 0 /* allow-unknown */, &setlist);
1bedd215 14330 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14331Remote protocol specific variables.\n\
5a2468f5 14332Configure various remote-protocol specific variables such as\n\
590042fc 14333the packets being used."),
cff3e48b 14334 &remote_show_cmdlist, "show remote ",
23860348 14335 0 /* allow-unknown */, &showlist);
5a2468f5 14336
1a966eab
AC
14337 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14338Compare section data on target to the exec file.\n\
95cf3b38
DT
14339Argument is a single section name (default: all loaded sections).\n\
14340To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14341 &cmdlist);
14342
1a966eab
AC
14343 add_cmd ("packet", class_maintenance, packet_command, _("\
14344Send an arbitrary packet to a remote target.\n\
c906108c
SS
14345 maintenance packet TEXT\n\
14346If GDB is talking to an inferior via the GDB serial protocol, then\n\
14347this command sends the string TEXT to the inferior, and displays the\n\
14348response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14349terminating `#' character and checksum."),
c906108c
SS
14350 &maintenancelist);
14351
7915a72c
AC
14352 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14353Set whether to send break if interrupted."), _("\
14354Show whether to send break if interrupted."), _("\
14355If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14356 set_remotebreak, show_remotebreak,
e707bbc2 14357 &setlist, &showlist);
9a7071a8
JB
14358 cmd_name = "remotebreak";
14359 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14360 deprecate_cmd (cmd, "set remote interrupt-sequence");
14361 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14362 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14363 deprecate_cmd (cmd, "show remote interrupt-sequence");
14364
14365 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14366 interrupt_sequence_modes, &interrupt_sequence_mode,
14367 _("\
9a7071a8
JB
14368Set interrupt sequence to remote target."), _("\
14369Show interrupt sequence to remote target."), _("\
14370Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14371 NULL, show_interrupt_sequence,
14372 &remote_set_cmdlist,
14373 &remote_show_cmdlist);
14374
14375 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14376 &interrupt_on_connect, _("\
590042fc
PW
14377Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14378Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14379If set, interrupt sequence is sent to remote target."),
14380 NULL, NULL,
14381 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14382
23860348 14383 /* Install commands for configuring memory read/write packets. */
11cf8741 14384
1a966eab
AC
14385 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14386Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14387 &setlist);
1a966eab
AC
14388 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14389Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14390 &showlist);
14391 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14392 set_memory_write_packet_size, _("\
14393Set the maximum number of bytes per memory-write packet.\n\
14394Specify the number of bytes in a packet or 0 (zero) for the\n\
14395default packet size. The actual limit is further reduced\n\
14396dependent on the target. Specify ``fixed'' to disable the\n\
14397further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14398 &remote_set_cmdlist);
14399 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14400 set_memory_read_packet_size, _("\
14401Set the maximum number of bytes per memory-read packet.\n\
14402Specify the number of bytes in a packet or 0 (zero) for the\n\
14403default packet size. The actual limit is further reduced\n\
14404dependent on the target. Specify ``fixed'' to disable the\n\
14405further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14406 &remote_set_cmdlist);
14407 add_cmd ("memory-write-packet-size", no_class,
14408 show_memory_write_packet_size,
1a966eab 14409 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14410 &remote_show_cmdlist);
14411 add_cmd ("memory-read-packet-size", no_class,
14412 show_memory_read_packet_size,
1a966eab 14413 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14414 &remote_show_cmdlist);
c906108c 14415
055303e2 14416 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14417 &remote_hw_watchpoint_limit, _("\
14418Set the maximum number of target hardware watchpoints."), _("\
14419Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14420Specify \"unlimited\" for unlimited hardware watchpoints."),
14421 NULL, show_hardware_watchpoint_limit,
14422 &remote_set_cmdlist,
14423 &remote_show_cmdlist);
14424 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14425 no_class,
480a3f21
PW
14426 &remote_hw_watchpoint_length_limit, _("\
14427Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14428Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14429Specify \"unlimited\" to allow watchpoints of unlimited size."),
14430 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14431 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14432 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14433 &remote_hw_breakpoint_limit, _("\
14434Set the maximum number of target hardware breakpoints."), _("\
14435Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14436Specify \"unlimited\" for unlimited hardware breakpoints."),
14437 NULL, show_hardware_breakpoint_limit,
b3f42336 14438 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14439
1b493192
PA
14440 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14441 &remote_address_size, _("\
4d28ad1e
AC
14442Set the maximum size of the address (in bits) in a memory packet."), _("\
14443Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14444 NULL,
14445 NULL, /* FIXME: i18n: */
14446 &setlist, &showlist);
c906108c 14447
ca4f7f8b
PA
14448 init_all_packet_configs ();
14449
444abaca 14450 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14451 "X", "binary-download", 1);
0f71a2f6 14452
444abaca 14453 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14454 "vCont", "verbose-resume", 0);
506fb367 14455
89be2091
DJ
14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14457 "QPassSignals", "pass-signals", 0);
14458
82075af2
JS
14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14460 "QCatchSyscalls", "catch-syscalls", 0);
14461
9b224c5e
PA
14462 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14463 "QProgramSignals", "program-signals", 0);
14464
bc3b087d
SDJ
14465 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14466 "QSetWorkingDir", "set-working-dir", 0);
14467
aefd8b33
SDJ
14468 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14469 "QStartupWithShell", "startup-with-shell", 0);
14470
0a2dde4a
SDJ
14471 add_packet_config_cmd (&remote_protocol_packets
14472 [PACKET_QEnvironmentHexEncoded],
14473 "QEnvironmentHexEncoded", "environment-hex-encoded",
14474 0);
14475
14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14477 "QEnvironmentReset", "environment-reset",
14478 0);
14479
14480 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14481 "QEnvironmentUnset", "environment-unset",
14482 0);
14483
444abaca 14484 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14485 "qSymbol", "symbol-lookup", 0);
dc8acb97 14486
444abaca 14487 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14488 "P", "set-register", 1);
d471ea57 14489
444abaca 14490 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14491 "p", "fetch-register", 1);
b96ec7ac 14492
444abaca 14493 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14494 "Z0", "software-breakpoint", 0);
d471ea57 14495
444abaca 14496 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14497 "Z1", "hardware-breakpoint", 0);
d471ea57 14498
444abaca 14499 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14500 "Z2", "write-watchpoint", 0);
d471ea57 14501
444abaca 14502 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14503 "Z3", "read-watchpoint", 0);
d471ea57 14504
444abaca 14505 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14506 "Z4", "access-watchpoint", 0);
d471ea57 14507
0876f84a
DJ
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14509 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14510
c78fa86a
GB
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14512 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14513
23181151
DJ
14514 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14515 "qXfer:features:read", "target-features", 0);
14516
cfa9d6d9
DJ
14517 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14518 "qXfer:libraries:read", "library-info", 0);
14519
2268b414
JK
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14521 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14522
fd79ecee
DJ
14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14524 "qXfer:memory-map:read", "memory-map", 0);
14525
07e059b5
VP
14526 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14527 "qXfer:osdata:read", "osdata", 0);
14528
dc146f7c
VP
14529 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14530 "qXfer:threads:read", "threads", 0);
14531
4aa995e1
PA
14532 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14533 "qXfer:siginfo:read", "read-siginfo-object", 0);
14534
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14536 "qXfer:siginfo:write", "write-siginfo-object", 0);
14537
b3b9301e
PA
14538 add_packet_config_cmd
14539 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14540 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14541
169081d0
TG
14542 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14543 "qXfer:uib:read", "unwind-info-block", 0);
14544
444abaca 14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14546 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14547 0);
14548
711e434b
PM
14549 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14550 "qGetTIBAddr", "get-thread-information-block-address",
14551 0);
14552
40ab02ce
MS
14553 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14554 "bc", "reverse-continue", 0);
14555
14556 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14557 "bs", "reverse-step", 0);
14558
be2a5f71
DJ
14559 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14560 "qSupported", "supported-packets", 0);
14561
08388c79
DE
14562 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14563 "qSearch:memory", "search-memory", 0);
14564
bd3eecc3
PA
14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14566 "qTStatus", "trace-status", 0);
14567
15a201c8
GB
14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14569 "vFile:setfs", "hostio-setfs", 0);
14570
a6b151f1
DJ
14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14572 "vFile:open", "hostio-open", 0);
14573
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14575 "vFile:pread", "hostio-pread", 0);
14576
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14578 "vFile:pwrite", "hostio-pwrite", 0);
14579
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14581 "vFile:close", "hostio-close", 0);
14582
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14584 "vFile:unlink", "hostio-unlink", 0);
14585
b9e7b9c3
UW
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14587 "vFile:readlink", "hostio-readlink", 0);
14588
0a93529c
GB
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14590 "vFile:fstat", "hostio-fstat", 0);
14591
2d717e4f
DJ
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14593 "vAttach", "attach", 0);
14594
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14596 "vRun", "run", 0);
14597
a6f3e723
SL
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14599 "QStartNoAckMode", "noack", 0);
14600
82f73884
PA
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14602 "vKill", "kill", 0);
14603
0b16c5cf
PA
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14605 "qAttached", "query-attached", 0);
14606
782b2b07 14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14608 "ConditionalTracepoints",
14609 "conditional-tracepoints", 0);
3788aec7
LM
14610
14611 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14612 "ConditionalBreakpoints",
14613 "conditional-breakpoints", 0);
14614
d3ce09f5
SS
14615 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14616 "BreakpointCommands",
14617 "breakpoint-commands", 0);
14618
7a697b8d
SS
14619 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14620 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14621
409873ef
SS
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14623 "TracepointSource", "TracepointSource", 0);
14624
d914c394
SS
14625 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14626 "QAllow", "allow", 0);
14627
0fb4aa4b
PA
14628 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14629 "StaticTracepoints", "static-tracepoints", 0);
14630
1e4d1764
YQ
14631 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14632 "InstallInTrace", "install-in-trace", 0);
14633
0fb4aa4b
PA
14634 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14635 "qXfer:statictrace:read", "read-sdata-object", 0);
14636
78d85199
YQ
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14638 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14639
03583c20
UW
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14641 "QDisableRandomization", "disable-randomization", 0);
14642
d1feda86
YQ
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14644 "QAgent", "agent", 0);
14645
f6f899bf
HAQ
14646 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14647 "QTBuffer:size", "trace-buffer-size", 0);
14648
9accd112
MM
14649 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14650 "Qbtrace:off", "disable-btrace", 0);
14651
14652 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14653 "Qbtrace:bts", "enable-btrace-bts", 0);
14654
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14656 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14657
14658 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14659 "qXfer:btrace", "read-btrace", 0);
14660
f4abbc16
MM
14661 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14662 "qXfer:btrace-conf", "read-btrace-conf", 0);
14663
d33501a5
MM
14664 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14665 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14666
73b8c1fd
PA
14667 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14668 "multiprocess-feature", "multiprocess-feature", 0);
14669
f7e6eed5
PA
14670 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14671 "swbreak-feature", "swbreak-feature", 0);
14672
14673 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14674 "hwbreak-feature", "hwbreak-feature", 0);
14675
89245bc0
DB
14676 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14677 "fork-event-feature", "fork-event-feature", 0);
14678
14679 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14680 "vfork-event-feature", "vfork-event-feature", 0);
14681
b20a6524
MM
14682 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14683 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14684
750ce8d1
YQ
14685 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14686 "vContSupported", "verbose-resume-supported", 0);
14687
94585166
DB
14688 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14689 "exec-event-feature", "exec-event-feature", 0);
14690
de979965
PA
14691 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14692 "vCtrlC", "ctrl-c", 0);
14693
65706a29
PA
14694 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14695 "QThreadEvents", "thread-events", 0);
14696
f2faf941
PA
14697 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14698 "N stop reply", "no-resumed-stop-reply", 0);
14699
0b736949
DB
14700 /* Assert that we've registered "set remote foo-packet" commands
14701 for all packet configs. */
ca4f7f8b
PA
14702 {
14703 int i;
14704
14705 for (i = 0; i < PACKET_MAX; i++)
14706 {
14707 /* Ideally all configs would have a command associated. Some
14708 still don't though. */
14709 int excepted;
14710
14711 switch (i)
14712 {
14713 case PACKET_QNonStop:
ca4f7f8b
PA
14714 case PACKET_EnableDisableTracepoints_feature:
14715 case PACKET_tracenz_feature:
14716 case PACKET_DisconnectedTracing_feature:
14717 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14718 case PACKET_qCRC:
14719 /* Additions to this list need to be well justified:
14720 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14721 excepted = 1;
14722 break;
14723 default:
14724 excepted = 0;
14725 break;
14726 }
14727
14728 /* This catches both forgetting to add a config command, and
14729 forgetting to remove a packet from the exception list. */
14730 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14731 }
14732 }
14733
37a105a1
DJ
14734 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14735 Z sub-packet has its own set and show commands, but users may
14736 have sets to this variable in their .gdbinit files (or in their
14737 documentation). */
e9e68a56 14738 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14739 &remote_Z_packet_detect, _("\
590042fc
PW
14740Set use of remote protocol `Z' packets."), _("\
14741Show use of remote protocol `Z' packets."), _("\
3b64bf98 14742When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14743packets."),
e9e68a56 14744 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14745 show_remote_protocol_Z_packet_cmd,
14746 /* FIXME: i18n: Use of remote protocol
14747 `Z' packets is %s. */
e9e68a56 14748 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14749
a6b151f1 14750 add_prefix_cmd ("remote", class_files, remote_command, _("\
590042fc 14751Manipulate files on the remote system.\n\
a6b151f1
DJ
14752Transfer files to and from the remote target system."),
14753 &remote_cmdlist, "remote ",
14754 0 /* allow-unknown */, &cmdlist);
14755
14756 add_cmd ("put", class_files, remote_put_command,
14757 _("Copy a local file to the remote system."),
14758 &remote_cmdlist);
14759
14760 add_cmd ("get", class_files, remote_get_command,
14761 _("Copy a remote file to the local system."),
14762 &remote_cmdlist);
14763
14764 add_cmd ("delete", class_files, remote_delete_command,
14765 _("Delete a remote file."),
14766 &remote_cmdlist);
14767
2d717e4f 14768 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14769 &remote_exec_file_var, _("\
590042fc
PW
14770Set the remote pathname for \"run\"."), _("\
14771Show the remote pathname for \"run\"."), NULL,
94585166
DB
14772 set_remote_exec_file,
14773 show_remote_exec_file,
14774 &remote_set_cmdlist,
14775 &remote_show_cmdlist);
2d717e4f 14776
c1e36e3e
PA
14777 add_setshow_boolean_cmd ("range-stepping", class_run,
14778 &use_range_stepping, _("\
14779Enable or disable range stepping."), _("\
14780Show whether target-assisted range stepping is enabled."), _("\
14781If on, and the target supports it, when stepping a source line, GDB\n\
14782tells the target to step the corresponding range of addresses itself instead\n\
14783of issuing multiple single-steps. This speeds up source level\n\
14784stepping. If off, GDB always issues single-steps, even if range\n\
14785stepping is supported by the target. The default is on."),
14786 set_range_stepping,
14787 show_range_stepping,
14788 &setlist,
14789 &showlist);
14790
ed2b7c17
TT
14791 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14792Set watchdog timer."), _("\
14793Show watchdog timer."), _("\
14794When non-zero, this timeout is used instead of waiting forever for a target\n\
14795to finish a low-level step or continue operation. If the specified amount\n\
14796of time passes without a response from the target, an error occurs."),
14797 NULL,
14798 show_watchdog,
14799 &setlist, &showlist);
14800
6cc8564b
LM
14801 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14802 &remote_packet_max_chars, _("\
14803Set the maximum number of characters to display for each remote packet."), _("\
14804Show the maximum number of characters to display for each remote packet."), _("\
14805Specify \"unlimited\" to display all the characters."),
14806 NULL, show_remote_packet_max_chars,
14807 &setdebuglist, &showdebuglist);
14808
449092f6
CV
14809 /* Eventually initialize fileio. See fileio.c */
14810 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14811}
This page took 3.786602 seconds and 4 git commands to generate.