gdb: enable target_async around stop_all_threads call in process_initial_stop_replies
[binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2021 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* See the GDB User Guide for details of the GDB remote protocol. */
21
22 #include "defs.h"
23 #include <ctype.h>
24 #include <fcntl.h>
25 #include "inferior.h"
26 #include "infrun.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "target.h"
30 #include "process-stratum-target.h"
31 #include "gdbcmd.h"
32 #include "objfiles.h"
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
35 #include "remote.h"
36 #include "remote-notif.h"
37 #include "regcache.h"
38 #include "value.h"
39 #include "observable.h"
40 #include "solib.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
44 #include "gdb_bfd.h"
45 #include "gdbsupport/filestuff.h"
46 #include "gdbsupport/rsp-low.h"
47 #include "disasm.h"
48 #include "location.h"
49
50 #include "gdbsupport/gdb_sys_time.h"
51
52 #include "gdbsupport/event-loop.h"
53 #include "event-top.h"
54 #include "inf-loop.h"
55
56 #include <signal.h>
57 #include "serial.h"
58
59 #include "gdbcore.h"
60
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
63 #include <sys/stat.h>
64 #include "xml-support.h"
65
66 #include "memory-map.h"
67
68 #include "tracepoint.h"
69 #include "ax.h"
70 #include "ax-gdb.h"
71 #include "gdbsupport/agent.h"
72 #include "btrace.h"
73 #include "record-btrace.h"
74 #include <algorithm>
75 #include "gdbsupport/scoped_restore.h"
76 #include "gdbsupport/environ.h"
77 #include "gdbsupport/byte-vector.h"
78 #include "gdbsupport/search.h"
79 #include <algorithm>
80 #include <unordered_map>
81 #include "async-event.h"
82 #include "gdbsupport/selftest.h"
83
84 /* The remote target. */
85
86 static const char remote_doc[] = N_("\
87 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
88 Specify the serial device it is connected to\n\
89 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
90
91 /* See remote.h */
92
93 bool remote_debug = false;
94
95 #define OPAQUETHREADBYTES 8
96
97 /* a 64 bit opaque identifier */
98 typedef unsigned char threadref[OPAQUETHREADBYTES];
99
100 struct gdb_ext_thread_info;
101 struct threads_listing_context;
102 typedef int (*rmt_thread_action) (threadref *ref, void *context);
103 struct protocol_feature;
104 struct packet_reg;
105
106 struct stop_reply;
107 typedef std::unique_ptr<stop_reply> stop_reply_up;
108
109 /* Generic configuration support for packets the stub optionally
110 supports. Allows the user to specify the use of the packet as well
111 as allowing GDB to auto-detect support in the remote stub. */
112
113 enum packet_support
114 {
115 PACKET_SUPPORT_UNKNOWN = 0,
116 PACKET_ENABLE,
117 PACKET_DISABLE
118 };
119
120 /* Analyze a packet's return value and update the packet config
121 accordingly. */
122
123 enum packet_result
124 {
125 PACKET_ERROR,
126 PACKET_OK,
127 PACKET_UNKNOWN
128 };
129
130 struct threads_listing_context;
131
132 /* Stub vCont actions support.
133
134 Each field is a boolean flag indicating whether the stub reports
135 support for the corresponding action. */
136
137 struct vCont_action_support
138 {
139 /* vCont;t */
140 bool t = false;
141
142 /* vCont;r */
143 bool r = false;
144
145 /* vCont;s */
146 bool s = false;
147
148 /* vCont;S */
149 bool S = false;
150 };
151
152 /* About this many threadids fit in a packet. */
153
154 #define MAXTHREADLISTRESULTS 32
155
156 /* Data for the vFile:pread readahead cache. */
157
158 struct readahead_cache
159 {
160 /* Invalidate the readahead cache. */
161 void invalidate ();
162
163 /* Invalidate the readahead cache if it is holding data for FD. */
164 void invalidate_fd (int fd);
165
166 /* Serve pread from the readahead cache. Returns number of bytes
167 read, or 0 if the request can't be served from the cache. */
168 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
169
170 /* The file descriptor for the file that is being cached. -1 if the
171 cache is invalid. */
172 int fd = -1;
173
174 /* The offset into the file that the cache buffer corresponds
175 to. */
176 ULONGEST offset = 0;
177
178 /* The buffer holding the cache contents. */
179 gdb_byte *buf = nullptr;
180 /* The buffer's size. We try to read as much as fits into a packet
181 at a time. */
182 size_t bufsize = 0;
183
184 /* Cache hit and miss counters. */
185 ULONGEST hit_count = 0;
186 ULONGEST miss_count = 0;
187 };
188
189 /* Description of the remote protocol for a given architecture. */
190
191 struct packet_reg
192 {
193 long offset; /* Offset into G packet. */
194 long regnum; /* GDB's internal register number. */
195 LONGEST pnum; /* Remote protocol register number. */
196 int in_g_packet; /* Always part of G packet. */
197 /* long size in bytes; == register_size (target_gdbarch (), regnum);
198 at present. */
199 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
200 at present. */
201 };
202
203 struct remote_arch_state
204 {
205 explicit remote_arch_state (struct gdbarch *gdbarch);
206
207 /* Description of the remote protocol registers. */
208 long sizeof_g_packet;
209
210 /* Description of the remote protocol registers indexed by REGNUM
211 (making an array gdbarch_num_regs in size). */
212 std::unique_ptr<packet_reg[]> regs;
213
214 /* This is the size (in chars) of the first response to the ``g''
215 packet. It is used as a heuristic when determining the maximum
216 size of memory-read and memory-write packets. A target will
217 typically only reserve a buffer large enough to hold the ``g''
218 packet. The size does not include packet overhead (headers and
219 trailers). */
220 long actual_register_packet_size;
221
222 /* This is the maximum size (in chars) of a non read/write packet.
223 It is also used as a cap on the size of read/write packets. */
224 long remote_packet_size;
225 };
226
227 /* Description of the remote protocol state for the currently
228 connected target. This is per-target state, and independent of the
229 selected architecture. */
230
231 class remote_state
232 {
233 public:
234
235 remote_state ();
236 ~remote_state ();
237
238 /* Get the remote arch state for GDBARCH. */
239 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
240
241 public: /* data */
242
243 /* A buffer to use for incoming packets, and its current size. The
244 buffer is grown dynamically for larger incoming packets.
245 Outgoing packets may also be constructed in this buffer.
246 The size of the buffer is always at least REMOTE_PACKET_SIZE;
247 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
248 packets. */
249 gdb::char_vector buf;
250
251 /* True if we're going through initial connection setup (finding out
252 about the remote side's threads, relocating symbols, etc.). */
253 bool starting_up = false;
254
255 /* If we negotiated packet size explicitly (and thus can bypass
256 heuristics for the largest packet size that will not overflow
257 a buffer in the stub), this will be set to that packet size.
258 Otherwise zero, meaning to use the guessed size. */
259 long explicit_packet_size = 0;
260
261 /* remote_wait is normally called when the target is running and
262 waits for a stop reply packet. But sometimes we need to call it
263 when the target is already stopped. We can send a "?" packet
264 and have remote_wait read the response. Or, if we already have
265 the response, we can stash it in BUF and tell remote_wait to
266 skip calling getpkt. This flag is set when BUF contains a
267 stop reply packet and the target is not waiting. */
268 int cached_wait_status = 0;
269
270 /* True, if in no ack mode. That is, neither GDB nor the stub will
271 expect acks from each other. The connection is assumed to be
272 reliable. */
273 bool noack_mode = false;
274
275 /* True if we're connected in extended remote mode. */
276 bool extended = false;
277
278 /* True if we resumed the target and we're waiting for the target to
279 stop. In the mean time, we can't start another command/query.
280 The remote server wouldn't be ready to process it, so we'd
281 timeout waiting for a reply that would never come and eventually
282 we'd close the connection. This can happen in asynchronous mode
283 because we allow GDB commands while the target is running. */
284 bool waiting_for_stop_reply = false;
285
286 /* The status of the stub support for the various vCont actions. */
287 vCont_action_support supports_vCont;
288 /* Whether vCont support was probed already. This is a workaround
289 until packet_support is per-connection. */
290 bool supports_vCont_probed;
291
292 /* True if the user has pressed Ctrl-C, but the target hasn't
293 responded to that. */
294 bool ctrlc_pending_p = false;
295
296 /* True if we saw a Ctrl-C while reading or writing from/to the
297 remote descriptor. At that point it is not safe to send a remote
298 interrupt packet, so we instead remember we saw the Ctrl-C and
299 process it once we're done with sending/receiving the current
300 packet, which should be shortly. If however that takes too long,
301 and the user presses Ctrl-C again, we offer to disconnect. */
302 bool got_ctrlc_during_io = false;
303
304 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
305 remote_open knows that we don't have a file open when the program
306 starts. */
307 struct serial *remote_desc = nullptr;
308
309 /* These are the threads which we last sent to the remote system. The
310 TID member will be -1 for all or -2 for not sent yet. */
311 ptid_t general_thread = null_ptid;
312 ptid_t continue_thread = null_ptid;
313
314 /* This is the traceframe which we last selected on the remote system.
315 It will be -1 if no traceframe is selected. */
316 int remote_traceframe_number = -1;
317
318 char *last_pass_packet = nullptr;
319
320 /* The last QProgramSignals packet sent to the target. We bypass
321 sending a new program signals list down to the target if the new
322 packet is exactly the same as the last we sent. IOW, we only let
323 the target know about program signals list changes. */
324 char *last_program_signals_packet = nullptr;
325
326 gdb_signal last_sent_signal = GDB_SIGNAL_0;
327
328 bool last_sent_step = false;
329
330 /* The execution direction of the last resume we got. */
331 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
332
333 char *finished_object = nullptr;
334 char *finished_annex = nullptr;
335 ULONGEST finished_offset = 0;
336
337 /* Should we try the 'ThreadInfo' query packet?
338
339 This variable (NOT available to the user: auto-detect only!)
340 determines whether GDB will use the new, simpler "ThreadInfo"
341 query or the older, more complex syntax for thread queries.
342 This is an auto-detect variable (set to true at each connect,
343 and set to false when the target fails to recognize it). */
344 bool use_threadinfo_query = false;
345 bool use_threadextra_query = false;
346
347 threadref echo_nextthread {};
348 threadref nextthread {};
349 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
350
351 /* The state of remote notification. */
352 struct remote_notif_state *notif_state = nullptr;
353
354 /* The branch trace configuration. */
355 struct btrace_config btrace_config {};
356
357 /* The argument to the last "vFile:setfs:" packet we sent, used
358 to avoid sending repeated unnecessary "vFile:setfs:" packets.
359 Initialized to -1 to indicate that no "vFile:setfs:" packet
360 has yet been sent. */
361 int fs_pid = -1;
362
363 /* A readahead cache for vFile:pread. Often, reading a binary
364 involves a sequence of small reads. E.g., when parsing an ELF
365 file. A readahead cache helps mostly the case of remote
366 debugging on a connection with higher latency, due to the
367 request/reply nature of the RSP. We only cache data for a single
368 file descriptor at a time. */
369 struct readahead_cache readahead_cache;
370
371 /* The list of already fetched and acknowledged stop events. This
372 queue is used for notification Stop, and other notifications
373 don't need queue for their events, because the notification
374 events of Stop can't be consumed immediately, so that events
375 should be queued first, and be consumed by remote_wait_{ns,as}
376 one per time. Other notifications can consume their events
377 immediately, so queue is not needed for them. */
378 std::vector<stop_reply_up> stop_reply_queue;
379
380 /* Asynchronous signal handle registered as event loop source for
381 when we have pending events ready to be passed to the core. */
382 struct async_event_handler *remote_async_inferior_event_token = nullptr;
383
384 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
385 ``forever'' still use the normal timeout mechanism. This is
386 currently used by the ASYNC code to guarentee that target reads
387 during the initial connect always time-out. Once getpkt has been
388 modified to return a timeout indication and, in turn
389 remote_wait()/wait_for_inferior() have gained a timeout parameter
390 this can go away. */
391 int wait_forever_enabled_p = 1;
392
393 private:
394 /* Mapping of remote protocol data for each gdbarch. Usually there
395 is only one entry here, though we may see more with stubs that
396 support multi-process. */
397 std::unordered_map<struct gdbarch *, remote_arch_state>
398 m_arch_states;
399 };
400
401 static const target_info remote_target_info = {
402 "remote",
403 N_("Remote serial target in gdb-specific protocol"),
404 remote_doc
405 };
406
407 class remote_target : public process_stratum_target
408 {
409 public:
410 remote_target () = default;
411 ~remote_target () override;
412
413 const target_info &info () const override
414 { return remote_target_info; }
415
416 const char *connection_string () override;
417
418 thread_control_capabilities get_thread_control_capabilities () override
419 { return tc_schedlock; }
420
421 /* Open a remote connection. */
422 static void open (const char *, int);
423
424 void close () override;
425
426 void detach (inferior *, int) override;
427 void disconnect (const char *, int) override;
428
429 void commit_resumed () override;
430 void resume (ptid_t, int, enum gdb_signal) override;
431 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
432 bool has_pending_events () override;
433
434 void fetch_registers (struct regcache *, int) override;
435 void store_registers (struct regcache *, int) override;
436 void prepare_to_store (struct regcache *) override;
437
438 void files_info () override;
439
440 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
441
442 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
443 enum remove_bp_reason) override;
444
445
446 bool stopped_by_sw_breakpoint () override;
447 bool supports_stopped_by_sw_breakpoint () override;
448
449 bool stopped_by_hw_breakpoint () override;
450
451 bool supports_stopped_by_hw_breakpoint () override;
452
453 bool stopped_by_watchpoint () override;
454
455 bool stopped_data_address (CORE_ADDR *) override;
456
457 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
458
459 int can_use_hw_breakpoint (enum bptype, int, int) override;
460
461 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
462
463 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
464
465 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
466
467 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
468 struct expression *) override;
469
470 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
471 struct expression *) override;
472
473 void kill () override;
474
475 void load (const char *, int) override;
476
477 void mourn_inferior () override;
478
479 void pass_signals (gdb::array_view<const unsigned char>) override;
480
481 int set_syscall_catchpoint (int, bool, int,
482 gdb::array_view<const int>) override;
483
484 void program_signals (gdb::array_view<const unsigned char>) override;
485
486 bool thread_alive (ptid_t ptid) override;
487
488 const char *thread_name (struct thread_info *) override;
489
490 void update_thread_list () override;
491
492 std::string pid_to_str (ptid_t) override;
493
494 const char *extra_thread_info (struct thread_info *) override;
495
496 ptid_t get_ada_task_ptid (long lwp, ULONGEST thread) override;
497
498 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
499 int handle_len,
500 inferior *inf) override;
501
502 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
503 override;
504
505 void stop (ptid_t) override;
506
507 void interrupt () override;
508
509 void pass_ctrlc () override;
510
511 enum target_xfer_status xfer_partial (enum target_object object,
512 const char *annex,
513 gdb_byte *readbuf,
514 const gdb_byte *writebuf,
515 ULONGEST offset, ULONGEST len,
516 ULONGEST *xfered_len) override;
517
518 ULONGEST get_memory_xfer_limit () override;
519
520 void rcmd (const char *command, struct ui_file *output) override;
521
522 char *pid_to_exec_file (int pid) override;
523
524 void log_command (const char *cmd) override
525 {
526 serial_log_command (this, cmd);
527 }
528
529 CORE_ADDR get_thread_local_address (ptid_t ptid,
530 CORE_ADDR load_module_addr,
531 CORE_ADDR offset) override;
532
533 bool can_execute_reverse () override;
534
535 std::vector<mem_region> memory_map () override;
536
537 void flash_erase (ULONGEST address, LONGEST length) override;
538
539 void flash_done () override;
540
541 const struct target_desc *read_description () override;
542
543 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
544 const gdb_byte *pattern, ULONGEST pattern_len,
545 CORE_ADDR *found_addrp) override;
546
547 bool can_async_p () override;
548
549 bool is_async_p () override;
550
551 void async (int) override;
552
553 int async_wait_fd () override;
554
555 void thread_events (int) override;
556
557 int can_do_single_step () override;
558
559 void terminal_inferior () override;
560
561 void terminal_ours () override;
562
563 bool supports_non_stop () override;
564
565 bool supports_multi_process () override;
566
567 bool supports_disable_randomization () override;
568
569 bool filesystem_is_local () override;
570
571
572 int fileio_open (struct inferior *inf, const char *filename,
573 int flags, int mode, int warn_if_slow,
574 int *target_errno) override;
575
576 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
577 ULONGEST offset, int *target_errno) override;
578
579 int fileio_pread (int fd, gdb_byte *read_buf, int len,
580 ULONGEST offset, int *target_errno) override;
581
582 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
583
584 int fileio_close (int fd, int *target_errno) override;
585
586 int fileio_unlink (struct inferior *inf,
587 const char *filename,
588 int *target_errno) override;
589
590 gdb::optional<std::string>
591 fileio_readlink (struct inferior *inf,
592 const char *filename,
593 int *target_errno) override;
594
595 bool supports_enable_disable_tracepoint () override;
596
597 bool supports_string_tracing () override;
598
599 bool supports_evaluation_of_breakpoint_conditions () override;
600
601 bool can_run_breakpoint_commands () override;
602
603 void trace_init () override;
604
605 void download_tracepoint (struct bp_location *location) override;
606
607 bool can_download_tracepoint () override;
608
609 void download_trace_state_variable (const trace_state_variable &tsv) override;
610
611 void enable_tracepoint (struct bp_location *location) override;
612
613 void disable_tracepoint (struct bp_location *location) override;
614
615 void trace_set_readonly_regions () override;
616
617 void trace_start () override;
618
619 int get_trace_status (struct trace_status *ts) override;
620
621 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
622 override;
623
624 void trace_stop () override;
625
626 int trace_find (enum trace_find_type type, int num,
627 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
628
629 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
630
631 int save_trace_data (const char *filename) override;
632
633 int upload_tracepoints (struct uploaded_tp **utpp) override;
634
635 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
636
637 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
638
639 int get_min_fast_tracepoint_insn_len () override;
640
641 void set_disconnected_tracing (int val) override;
642
643 void set_circular_trace_buffer (int val) override;
644
645 void set_trace_buffer_size (LONGEST val) override;
646
647 bool set_trace_notes (const char *user, const char *notes,
648 const char *stopnotes) override;
649
650 int core_of_thread (ptid_t ptid) override;
651
652 int verify_memory (const gdb_byte *data,
653 CORE_ADDR memaddr, ULONGEST size) override;
654
655
656 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
657
658 void set_permissions () override;
659
660 bool static_tracepoint_marker_at (CORE_ADDR,
661 struct static_tracepoint_marker *marker)
662 override;
663
664 std::vector<static_tracepoint_marker>
665 static_tracepoint_markers_by_strid (const char *id) override;
666
667 traceframe_info_up traceframe_info () override;
668
669 bool use_agent (bool use) override;
670 bool can_use_agent () override;
671
672 struct btrace_target_info *enable_btrace (ptid_t ptid,
673 const struct btrace_config *conf) override;
674
675 void disable_btrace (struct btrace_target_info *tinfo) override;
676
677 void teardown_btrace (struct btrace_target_info *tinfo) override;
678
679 enum btrace_error read_btrace (struct btrace_data *data,
680 struct btrace_target_info *btinfo,
681 enum btrace_read_type type) override;
682
683 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
684 bool augmented_libraries_svr4_read () override;
685 void follow_fork (inferior *, ptid_t, target_waitkind, bool, bool) override;
686 void follow_exec (inferior *, ptid_t, const char *) override;
687 int insert_fork_catchpoint (int) override;
688 int remove_fork_catchpoint (int) override;
689 int insert_vfork_catchpoint (int) override;
690 int remove_vfork_catchpoint (int) override;
691 int insert_exec_catchpoint (int) override;
692 int remove_exec_catchpoint (int) override;
693 enum exec_direction_kind execution_direction () override;
694
695 bool supports_memory_tagging () override;
696
697 bool fetch_memtags (CORE_ADDR address, size_t len,
698 gdb::byte_vector &tags, int type) override;
699
700 bool store_memtags (CORE_ADDR address, size_t len,
701 const gdb::byte_vector &tags, int type) override;
702
703 public: /* Remote specific methods. */
704
705 void remote_download_command_source (int num, ULONGEST addr,
706 struct command_line *cmds);
707
708 void remote_file_put (const char *local_file, const char *remote_file,
709 int from_tty);
710 void remote_file_get (const char *remote_file, const char *local_file,
711 int from_tty);
712 void remote_file_delete (const char *remote_file, int from_tty);
713
714 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
715 ULONGEST offset, int *remote_errno);
716 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
717 ULONGEST offset, int *remote_errno);
718 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
719 ULONGEST offset, int *remote_errno);
720
721 int remote_hostio_send_command (int command_bytes, int which_packet,
722 int *remote_errno, const char **attachment,
723 int *attachment_len);
724 int remote_hostio_set_filesystem (struct inferior *inf,
725 int *remote_errno);
726 /* We should get rid of this and use fileio_open directly. */
727 int remote_hostio_open (struct inferior *inf, const char *filename,
728 int flags, int mode, int warn_if_slow,
729 int *remote_errno);
730 int remote_hostio_close (int fd, int *remote_errno);
731
732 int remote_hostio_unlink (inferior *inf, const char *filename,
733 int *remote_errno);
734
735 struct remote_state *get_remote_state ();
736
737 long get_remote_packet_size (void);
738 long get_memory_packet_size (struct memory_packet_config *config);
739
740 long get_memory_write_packet_size ();
741 long get_memory_read_packet_size ();
742
743 char *append_pending_thread_resumptions (char *p, char *endp,
744 ptid_t ptid);
745 static void open_1 (const char *name, int from_tty, int extended_p);
746 void start_remote (int from_tty, int extended_p);
747 void remote_detach_1 (struct inferior *inf, int from_tty);
748
749 char *append_resumption (char *p, char *endp,
750 ptid_t ptid, int step, gdb_signal siggnal);
751 int remote_resume_with_vcont (ptid_t ptid, int step,
752 gdb_signal siggnal);
753
754 thread_info *add_current_inferior_and_thread (const char *wait_status);
755
756 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
757 target_wait_flags options);
758 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
759 target_wait_flags options);
760
761 ptid_t process_stop_reply (struct stop_reply *stop_reply,
762 target_waitstatus *status);
763
764 ptid_t select_thread_for_ambiguous_stop_reply
765 (const struct target_waitstatus *status);
766
767 void remote_notice_new_inferior (ptid_t currthread, bool executing);
768
769 void print_one_stopped_thread (thread_info *thread);
770 void process_initial_stop_replies (int from_tty);
771
772 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
773
774 void btrace_sync_conf (const btrace_config *conf);
775
776 void remote_btrace_maybe_reopen ();
777
778 void remove_new_fork_children (threads_listing_context *context);
779 void kill_new_fork_children (int pid);
780 void discard_pending_stop_replies (struct inferior *inf);
781 int stop_reply_queue_length ();
782
783 void check_pending_events_prevent_wildcard_vcont
784 (bool *may_global_wildcard_vcont);
785
786 void discard_pending_stop_replies_in_queue ();
787 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
788 struct stop_reply *queued_stop_reply (ptid_t ptid);
789 int peek_stop_reply (ptid_t ptid);
790 void remote_parse_stop_reply (const char *buf, stop_reply *event);
791
792 void remote_stop_ns (ptid_t ptid);
793 void remote_interrupt_as ();
794 void remote_interrupt_ns ();
795
796 char *remote_get_noisy_reply ();
797 int remote_query_attached (int pid);
798 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
799 int try_open_exec);
800
801 ptid_t remote_current_thread (ptid_t oldpid);
802 ptid_t get_current_thread (const char *wait_status);
803
804 void set_thread (ptid_t ptid, int gen);
805 void set_general_thread (ptid_t ptid);
806 void set_continue_thread (ptid_t ptid);
807 void set_general_process ();
808
809 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
810
811 int remote_unpack_thread_info_response (const char *pkt, threadref *expectedref,
812 gdb_ext_thread_info *info);
813 int remote_get_threadinfo (threadref *threadid, int fieldset,
814 gdb_ext_thread_info *info);
815
816 int parse_threadlist_response (const char *pkt, int result_limit,
817 threadref *original_echo,
818 threadref *resultlist,
819 int *doneflag);
820 int remote_get_threadlist (int startflag, threadref *nextthread,
821 int result_limit, int *done, int *result_count,
822 threadref *threadlist);
823
824 int remote_threadlist_iterator (rmt_thread_action stepfunction,
825 void *context, int looplimit);
826
827 int remote_get_threads_with_ql (threads_listing_context *context);
828 int remote_get_threads_with_qxfer (threads_listing_context *context);
829 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
830
831 void extended_remote_restart ();
832
833 void get_offsets ();
834
835 void remote_check_symbols ();
836
837 void remote_supported_packet (const struct protocol_feature *feature,
838 enum packet_support support,
839 const char *argument);
840
841 void remote_query_supported ();
842
843 void remote_packet_size (const protocol_feature *feature,
844 packet_support support, const char *value);
845
846 void remote_serial_quit_handler ();
847
848 void remote_detach_pid (int pid);
849
850 void remote_vcont_probe ();
851
852 void remote_resume_with_hc (ptid_t ptid, int step,
853 gdb_signal siggnal);
854
855 void send_interrupt_sequence ();
856 void interrupt_query ();
857
858 void remote_notif_get_pending_events (notif_client *nc);
859
860 int fetch_register_using_p (struct regcache *regcache,
861 packet_reg *reg);
862 int send_g_packet ();
863 void process_g_packet (struct regcache *regcache);
864 void fetch_registers_using_g (struct regcache *regcache);
865 int store_register_using_P (const struct regcache *regcache,
866 packet_reg *reg);
867 void store_registers_using_G (const struct regcache *regcache);
868
869 void set_remote_traceframe ();
870
871 void check_binary_download (CORE_ADDR addr);
872
873 target_xfer_status remote_write_bytes_aux (const char *header,
874 CORE_ADDR memaddr,
875 const gdb_byte *myaddr,
876 ULONGEST len_units,
877 int unit_size,
878 ULONGEST *xfered_len_units,
879 char packet_format,
880 int use_length);
881
882 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
883 const gdb_byte *myaddr, ULONGEST len,
884 int unit_size, ULONGEST *xfered_len);
885
886 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
887 ULONGEST len_units,
888 int unit_size, ULONGEST *xfered_len_units);
889
890 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
891 ULONGEST memaddr,
892 ULONGEST len,
893 int unit_size,
894 ULONGEST *xfered_len);
895
896 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
897 gdb_byte *myaddr, ULONGEST len,
898 int unit_size,
899 ULONGEST *xfered_len);
900
901 packet_result remote_send_printf (const char *format, ...)
902 ATTRIBUTE_PRINTF (2, 3);
903
904 target_xfer_status remote_flash_write (ULONGEST address,
905 ULONGEST length, ULONGEST *xfered_len,
906 const gdb_byte *data);
907
908 int readchar (int timeout);
909
910 void remote_serial_write (const char *str, int len);
911
912 int putpkt (const char *buf);
913 int putpkt_binary (const char *buf, int cnt);
914
915 int putpkt (const gdb::char_vector &buf)
916 {
917 return putpkt (buf.data ());
918 }
919
920 void skip_frame ();
921 long read_frame (gdb::char_vector *buf_p);
922 void getpkt (gdb::char_vector *buf, int forever);
923 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
924 int expecting_notif, int *is_notif);
925 int getpkt_sane (gdb::char_vector *buf, int forever);
926 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
927 int *is_notif);
928 int remote_vkill (int pid);
929 void remote_kill_k ();
930
931 void extended_remote_disable_randomization (int val);
932 int extended_remote_run (const std::string &args);
933
934 void send_environment_packet (const char *action,
935 const char *packet,
936 const char *value);
937
938 void extended_remote_environment_support ();
939 void extended_remote_set_inferior_cwd ();
940
941 target_xfer_status remote_write_qxfer (const char *object_name,
942 const char *annex,
943 const gdb_byte *writebuf,
944 ULONGEST offset, LONGEST len,
945 ULONGEST *xfered_len,
946 struct packet_config *packet);
947
948 target_xfer_status remote_read_qxfer (const char *object_name,
949 const char *annex,
950 gdb_byte *readbuf, ULONGEST offset,
951 LONGEST len,
952 ULONGEST *xfered_len,
953 struct packet_config *packet);
954
955 void push_stop_reply (struct stop_reply *new_event);
956
957 bool vcont_r_supported ();
958
959 void packet_command (const char *args, int from_tty);
960
961 private: /* data fields */
962
963 /* The remote state. Don't reference this directly. Use the
964 get_remote_state method instead. */
965 remote_state m_remote_state;
966 };
967
968 static const target_info extended_remote_target_info = {
969 "extended-remote",
970 N_("Extended remote serial target in gdb-specific protocol"),
971 remote_doc
972 };
973
974 /* Set up the extended remote target by extending the standard remote
975 target and adding to it. */
976
977 class extended_remote_target final : public remote_target
978 {
979 public:
980 const target_info &info () const override
981 { return extended_remote_target_info; }
982
983 /* Open an extended-remote connection. */
984 static void open (const char *, int);
985
986 bool can_create_inferior () override { return true; }
987 void create_inferior (const char *, const std::string &,
988 char **, int) override;
989
990 void detach (inferior *, int) override;
991
992 bool can_attach () override { return true; }
993 void attach (const char *, int) override;
994
995 void post_attach (int) override;
996 bool supports_disable_randomization () override;
997 };
998
999 /* Per-program-space data key. */
1000 static const struct program_space_key<char, gdb::xfree_deleter<char>>
1001 remote_pspace_data;
1002
1003 /* The variable registered as the control variable used by the
1004 remote exec-file commands. While the remote exec-file setting is
1005 per-program-space, the set/show machinery uses this as the
1006 location of the remote exec-file value. */
1007 static char *remote_exec_file_var;
1008
1009 /* The size to align memory write packets, when practical. The protocol
1010 does not guarantee any alignment, and gdb will generate short
1011 writes and unaligned writes, but even as a best-effort attempt this
1012 can improve bulk transfers. For instance, if a write is misaligned
1013 relative to the target's data bus, the stub may need to make an extra
1014 round trip fetching data from the target. This doesn't make a
1015 huge difference, but it's easy to do, so we try to be helpful.
1016
1017 The alignment chosen is arbitrary; usually data bus width is
1018 important here, not the possibly larger cache line size. */
1019 enum { REMOTE_ALIGN_WRITES = 16 };
1020
1021 /* Prototypes for local functions. */
1022
1023 static int hexnumlen (ULONGEST num);
1024
1025 static int stubhex (int ch);
1026
1027 static int hexnumstr (char *, ULONGEST);
1028
1029 static int hexnumnstr (char *, ULONGEST, int);
1030
1031 static CORE_ADDR remote_address_masked (CORE_ADDR);
1032
1033 static void print_packet (const char *);
1034
1035 static int stub_unpack_int (const char *buff, int fieldlength);
1036
1037 struct packet_config;
1038
1039 static void show_packet_config_cmd (struct packet_config *config);
1040
1041 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1042 int from_tty,
1043 struct cmd_list_element *c,
1044 const char *value);
1045
1046 static ptid_t read_ptid (const char *buf, const char **obuf);
1047
1048 static void remote_async_inferior_event_handler (gdb_client_data);
1049
1050 static bool remote_read_description_p (struct target_ops *target);
1051
1052 static void remote_console_output (const char *msg);
1053
1054 static void remote_btrace_reset (remote_state *rs);
1055
1056 static void remote_unpush_and_throw (remote_target *target);
1057
1058 /* For "remote". */
1059
1060 static struct cmd_list_element *remote_cmdlist;
1061
1062 /* For "set remote" and "show remote". */
1063
1064 static struct cmd_list_element *remote_set_cmdlist;
1065 static struct cmd_list_element *remote_show_cmdlist;
1066
1067 /* Controls whether GDB is willing to use range stepping. */
1068
1069 static bool use_range_stepping = true;
1070
1071 /* From the remote target's point of view, each thread is in one of these three
1072 states. */
1073 enum class resume_state
1074 {
1075 /* Not resumed - we haven't been asked to resume this thread. */
1076 NOT_RESUMED,
1077
1078 /* We have been asked to resume this thread, but haven't sent a vCont action
1079 for it yet. We'll need to consider it next time commit_resume is
1080 called. */
1081 RESUMED_PENDING_VCONT,
1082
1083 /* We have been asked to resume this thread, and we have sent a vCont action
1084 for it. */
1085 RESUMED,
1086 };
1087
1088 /* Information about a thread's pending vCont-resume. Used when a thread is in
1089 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1090 stores this information which is then picked up by
1091 remote_target::commit_resume to know which is the proper action for this
1092 thread to include in the vCont packet. */
1093 struct resumed_pending_vcont_info
1094 {
1095 /* True if the last resume call for this thread was a step request, false
1096 if a continue request. */
1097 bool step;
1098
1099 /* The signal specified in the last resume call for this thread. */
1100 gdb_signal sig;
1101 };
1102
1103 /* Private data that we'll store in (struct thread_info)->priv. */
1104 struct remote_thread_info : public private_thread_info
1105 {
1106 std::string extra;
1107 std::string name;
1108 int core = -1;
1109
1110 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1111 sequence of bytes. */
1112 gdb::byte_vector thread_handle;
1113
1114 /* Whether the target stopped for a breakpoint/watchpoint. */
1115 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1116
1117 /* This is set to the data address of the access causing the target
1118 to stop for a watchpoint. */
1119 CORE_ADDR watch_data_address = 0;
1120
1121 /* Get the thread's resume state. */
1122 enum resume_state get_resume_state () const
1123 {
1124 return m_resume_state;
1125 }
1126
1127 /* Put the thread in the NOT_RESUMED state. */
1128 void set_not_resumed ()
1129 {
1130 m_resume_state = resume_state::NOT_RESUMED;
1131 }
1132
1133 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1134 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1135 {
1136 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1137 m_resumed_pending_vcont_info.step = step;
1138 m_resumed_pending_vcont_info.sig = sig;
1139 }
1140
1141 /* Get the information this thread's pending vCont-resumption.
1142
1143 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1144 state. */
1145 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1146 {
1147 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1148
1149 return m_resumed_pending_vcont_info;
1150 }
1151
1152 /* Put the thread in the VCONT_RESUMED state. */
1153 void set_resumed ()
1154 {
1155 m_resume_state = resume_state::RESUMED;
1156 }
1157
1158 private:
1159 /* Resume state for this thread. This is used to implement vCont action
1160 coalescing (only when the target operates in non-stop mode).
1161
1162 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1163 which notes that this thread must be considered in the next commit_resume
1164 call.
1165
1166 remote_target::commit_resume sends a vCont packet with actions for the
1167 threads in the RESUMED_PENDING_VCONT state and moves them to the
1168 VCONT_RESUMED state.
1169
1170 When reporting a stop to the core for a thread, that thread is moved back
1171 to the NOT_RESUMED state. */
1172 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1173
1174 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1175 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
1176 };
1177
1178 remote_state::remote_state ()
1179 : buf (400)
1180 {
1181 }
1182
1183 remote_state::~remote_state ()
1184 {
1185 xfree (this->last_pass_packet);
1186 xfree (this->last_program_signals_packet);
1187 xfree (this->finished_object);
1188 xfree (this->finished_annex);
1189 }
1190
1191 /* Utility: generate error from an incoming stub packet. */
1192 static void
1193 trace_error (char *buf)
1194 {
1195 if (*buf++ != 'E')
1196 return; /* not an error msg */
1197 switch (*buf)
1198 {
1199 case '1': /* malformed packet error */
1200 if (*++buf == '0') /* general case: */
1201 error (_("remote.c: error in outgoing packet."));
1202 else
1203 error (_("remote.c: error in outgoing packet at field #%ld."),
1204 strtol (buf, NULL, 16));
1205 default:
1206 error (_("Target returns error code '%s'."), buf);
1207 }
1208 }
1209
1210 /* Utility: wait for reply from stub, while accepting "O" packets. */
1211
1212 char *
1213 remote_target::remote_get_noisy_reply ()
1214 {
1215 struct remote_state *rs = get_remote_state ();
1216
1217 do /* Loop on reply from remote stub. */
1218 {
1219 char *buf;
1220
1221 QUIT; /* Allow user to bail out with ^C. */
1222 getpkt (&rs->buf, 0);
1223 buf = rs->buf.data ();
1224 if (buf[0] == 'E')
1225 trace_error (buf);
1226 else if (startswith (buf, "qRelocInsn:"))
1227 {
1228 ULONGEST ul;
1229 CORE_ADDR from, to, org_to;
1230 const char *p, *pp;
1231 int adjusted_size = 0;
1232 int relocated = 0;
1233
1234 p = buf + strlen ("qRelocInsn:");
1235 pp = unpack_varlen_hex (p, &ul);
1236 if (*pp != ';')
1237 error (_("invalid qRelocInsn packet: %s"), buf);
1238 from = ul;
1239
1240 p = pp + 1;
1241 unpack_varlen_hex (p, &ul);
1242 to = ul;
1243
1244 org_to = to;
1245
1246 try
1247 {
1248 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1249 relocated = 1;
1250 }
1251 catch (const gdb_exception &ex)
1252 {
1253 if (ex.error == MEMORY_ERROR)
1254 {
1255 /* Propagate memory errors silently back to the
1256 target. The stub may have limited the range of
1257 addresses we can write to, for example. */
1258 }
1259 else
1260 {
1261 /* Something unexpectedly bad happened. Be verbose
1262 so we can tell what, and propagate the error back
1263 to the stub, so it doesn't get stuck waiting for
1264 a response. */
1265 exception_fprintf (gdb_stderr, ex,
1266 _("warning: relocating instruction: "));
1267 }
1268 putpkt ("E01");
1269 }
1270
1271 if (relocated)
1272 {
1273 adjusted_size = to - org_to;
1274
1275 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
1276 putpkt (buf);
1277 }
1278 }
1279 else if (buf[0] == 'O' && buf[1] != 'K')
1280 remote_console_output (buf + 1); /* 'O' message from stub */
1281 else
1282 return buf; /* Here's the actual reply. */
1283 }
1284 while (1);
1285 }
1286
1287 struct remote_arch_state *
1288 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1289 {
1290 remote_arch_state *rsa;
1291
1292 auto it = this->m_arch_states.find (gdbarch);
1293 if (it == this->m_arch_states.end ())
1294 {
1295 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1296 std::forward_as_tuple (gdbarch),
1297 std::forward_as_tuple (gdbarch));
1298 rsa = &p.first->second;
1299
1300 /* Make sure that the packet buffer is plenty big enough for
1301 this architecture. */
1302 if (this->buf.size () < rsa->remote_packet_size)
1303 this->buf.resize (2 * rsa->remote_packet_size);
1304 }
1305 else
1306 rsa = &it->second;
1307
1308 return rsa;
1309 }
1310
1311 /* Fetch the global remote target state. */
1312
1313 remote_state *
1314 remote_target::get_remote_state ()
1315 {
1316 /* Make sure that the remote architecture state has been
1317 initialized, because doing so might reallocate rs->buf. Any
1318 function which calls getpkt also needs to be mindful of changes
1319 to rs->buf, but this call limits the number of places which run
1320 into trouble. */
1321 m_remote_state.get_remote_arch_state (target_gdbarch ());
1322
1323 return &m_remote_state;
1324 }
1325
1326 /* Fetch the remote exec-file from the current program space. */
1327
1328 static const char *
1329 get_remote_exec_file (void)
1330 {
1331 char *remote_exec_file;
1332
1333 remote_exec_file = remote_pspace_data.get (current_program_space);
1334 if (remote_exec_file == NULL)
1335 return "";
1336
1337 return remote_exec_file;
1338 }
1339
1340 /* Set the remote exec file for PSPACE. */
1341
1342 static void
1343 set_pspace_remote_exec_file (struct program_space *pspace,
1344 const char *remote_exec_file)
1345 {
1346 char *old_file = remote_pspace_data.get (pspace);
1347
1348 xfree (old_file);
1349 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
1350 }
1351
1352 /* The "set/show remote exec-file" set command hook. */
1353
1354 static void
1355 set_remote_exec_file (const char *ignored, int from_tty,
1356 struct cmd_list_element *c)
1357 {
1358 gdb_assert (remote_exec_file_var != NULL);
1359 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1360 }
1361
1362 /* The "set/show remote exec-file" show command hook. */
1363
1364 static void
1365 show_remote_exec_file (struct ui_file *file, int from_tty,
1366 struct cmd_list_element *cmd, const char *value)
1367 {
1368 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
1369 }
1370
1371 static int
1372 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1373 {
1374 int regnum, num_remote_regs, offset;
1375 struct packet_reg **remote_regs;
1376
1377 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1378 {
1379 struct packet_reg *r = &regs[regnum];
1380
1381 if (register_size (gdbarch, regnum) == 0)
1382 /* Do not try to fetch zero-sized (placeholder) registers. */
1383 r->pnum = -1;
1384 else
1385 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1386
1387 r->regnum = regnum;
1388 }
1389
1390 /* Define the g/G packet format as the contents of each register
1391 with a remote protocol number, in order of ascending protocol
1392 number. */
1393
1394 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1395 for (num_remote_regs = 0, regnum = 0;
1396 regnum < gdbarch_num_regs (gdbarch);
1397 regnum++)
1398 if (regs[regnum].pnum != -1)
1399 remote_regs[num_remote_regs++] = &regs[regnum];
1400
1401 std::sort (remote_regs, remote_regs + num_remote_regs,
1402 [] (const packet_reg *a, const packet_reg *b)
1403 { return a->pnum < b->pnum; });
1404
1405 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1406 {
1407 remote_regs[regnum]->in_g_packet = 1;
1408 remote_regs[regnum]->offset = offset;
1409 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1410 }
1411
1412 return offset;
1413 }
1414
1415 /* Given the architecture described by GDBARCH, return the remote
1416 protocol register's number and the register's offset in the g/G
1417 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1418 If the target does not have a mapping for REGNUM, return false,
1419 otherwise, return true. */
1420
1421 int
1422 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1423 int *pnum, int *poffset)
1424 {
1425 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1426
1427 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1428
1429 map_regcache_remote_table (gdbarch, regs.data ());
1430
1431 *pnum = regs[regnum].pnum;
1432 *poffset = regs[regnum].offset;
1433
1434 return *pnum != -1;
1435 }
1436
1437 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1438 {
1439 /* Use the architecture to build a regnum<->pnum table, which will be
1440 1:1 unless a feature set specifies otherwise. */
1441 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1442
1443 /* Record the maximum possible size of the g packet - it may turn out
1444 to be smaller. */
1445 this->sizeof_g_packet
1446 = map_regcache_remote_table (gdbarch, this->regs.get ());
1447
1448 /* Default maximum number of characters in a packet body. Many
1449 remote stubs have a hardwired buffer size of 400 bytes
1450 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1451 as the maximum packet-size to ensure that the packet and an extra
1452 NUL character can always fit in the buffer. This stops GDB
1453 trashing stubs that try to squeeze an extra NUL into what is
1454 already a full buffer (As of 1999-12-04 that was most stubs). */
1455 this->remote_packet_size = 400 - 1;
1456
1457 /* This one is filled in when a ``g'' packet is received. */
1458 this->actual_register_packet_size = 0;
1459
1460 /* Should rsa->sizeof_g_packet needs more space than the
1461 default, adjust the size accordingly. Remember that each byte is
1462 encoded as two characters. 32 is the overhead for the packet
1463 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1464 (``$NN:G...#NN'') is a better guess, the below has been padded a
1465 little. */
1466 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1467 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1468 }
1469
1470 /* Get a pointer to the current remote target. If not connected to a
1471 remote target, return NULL. */
1472
1473 static remote_target *
1474 get_current_remote_target ()
1475 {
1476 target_ops *proc_target = current_inferior ()->process_target ();
1477 return dynamic_cast<remote_target *> (proc_target);
1478 }
1479
1480 /* Return the current allowed size of a remote packet. This is
1481 inferred from the current architecture, and should be used to
1482 limit the length of outgoing packets. */
1483 long
1484 remote_target::get_remote_packet_size ()
1485 {
1486 struct remote_state *rs = get_remote_state ();
1487 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1488
1489 if (rs->explicit_packet_size)
1490 return rs->explicit_packet_size;
1491
1492 return rsa->remote_packet_size;
1493 }
1494
1495 static struct packet_reg *
1496 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1497 long regnum)
1498 {
1499 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1500 return NULL;
1501 else
1502 {
1503 struct packet_reg *r = &rsa->regs[regnum];
1504
1505 gdb_assert (r->regnum == regnum);
1506 return r;
1507 }
1508 }
1509
1510 static struct packet_reg *
1511 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1512 LONGEST pnum)
1513 {
1514 int i;
1515
1516 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1517 {
1518 struct packet_reg *r = &rsa->regs[i];
1519
1520 if (r->pnum == pnum)
1521 return r;
1522 }
1523 return NULL;
1524 }
1525
1526 /* Allow the user to specify what sequence to send to the remote
1527 when he requests a program interruption: Although ^C is usually
1528 what remote systems expect (this is the default, here), it is
1529 sometimes preferable to send a break. On other systems such
1530 as the Linux kernel, a break followed by g, which is Magic SysRq g
1531 is required in order to interrupt the execution. */
1532 const char interrupt_sequence_control_c[] = "Ctrl-C";
1533 const char interrupt_sequence_break[] = "BREAK";
1534 const char interrupt_sequence_break_g[] = "BREAK-g";
1535 static const char *const interrupt_sequence_modes[] =
1536 {
1537 interrupt_sequence_control_c,
1538 interrupt_sequence_break,
1539 interrupt_sequence_break_g,
1540 NULL
1541 };
1542 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1543
1544 static void
1545 show_interrupt_sequence (struct ui_file *file, int from_tty,
1546 struct cmd_list_element *c,
1547 const char *value)
1548 {
1549 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1550 fprintf_filtered (file,
1551 _("Send the ASCII ETX character (Ctrl-c) "
1552 "to the remote target to interrupt the "
1553 "execution of the program.\n"));
1554 else if (interrupt_sequence_mode == interrupt_sequence_break)
1555 fprintf_filtered (file,
1556 _("send a break signal to the remote target "
1557 "to interrupt the execution of the program.\n"));
1558 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1559 fprintf_filtered (file,
1560 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1561 "the remote target to interrupt the execution "
1562 "of Linux kernel.\n"));
1563 else
1564 internal_error (__FILE__, __LINE__,
1565 _("Invalid value for interrupt_sequence_mode: %s."),
1566 interrupt_sequence_mode);
1567 }
1568
1569 /* This boolean variable specifies whether interrupt_sequence is sent
1570 to the remote target when gdb connects to it.
1571 This is mostly needed when you debug the Linux kernel: The Linux kernel
1572 expects BREAK g which is Magic SysRq g for connecting gdb. */
1573 static bool interrupt_on_connect = false;
1574
1575 /* This variable is used to implement the "set/show remotebreak" commands.
1576 Since these commands are now deprecated in favor of "set/show remote
1577 interrupt-sequence", it no longer has any effect on the code. */
1578 static bool remote_break;
1579
1580 static void
1581 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1582 {
1583 if (remote_break)
1584 interrupt_sequence_mode = interrupt_sequence_break;
1585 else
1586 interrupt_sequence_mode = interrupt_sequence_control_c;
1587 }
1588
1589 static void
1590 show_remotebreak (struct ui_file *file, int from_tty,
1591 struct cmd_list_element *c,
1592 const char *value)
1593 {
1594 }
1595
1596 /* This variable sets the number of bits in an address that are to be
1597 sent in a memory ("M" or "m") packet. Normally, after stripping
1598 leading zeros, the entire address would be sent. This variable
1599 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1600 initial implementation of remote.c restricted the address sent in
1601 memory packets to ``host::sizeof long'' bytes - (typically 32
1602 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1603 address was never sent. Since fixing this bug may cause a break in
1604 some remote targets this variable is principally provided to
1605 facilitate backward compatibility. */
1606
1607 static unsigned int remote_address_size;
1608
1609 \f
1610 /* User configurable variables for the number of characters in a
1611 memory read/write packet. MIN (rsa->remote_packet_size,
1612 rsa->sizeof_g_packet) is the default. Some targets need smaller
1613 values (fifo overruns, et.al.) and some users need larger values
1614 (speed up transfers). The variables ``preferred_*'' (the user
1615 request), ``current_*'' (what was actually set) and ``forced_*''
1616 (Positive - a soft limit, negative - a hard limit). */
1617
1618 struct memory_packet_config
1619 {
1620 const char *name;
1621 long size;
1622 int fixed_p;
1623 };
1624
1625 /* The default max memory-write-packet-size, when the setting is
1626 "fixed". The 16k is historical. (It came from older GDB's using
1627 alloca for buffers and the knowledge (folklore?) that some hosts
1628 don't cope very well with large alloca calls.) */
1629 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1630
1631 /* The minimum remote packet size for memory transfers. Ensures we
1632 can write at least one byte. */
1633 #define MIN_MEMORY_PACKET_SIZE 20
1634
1635 /* Get the memory packet size, assuming it is fixed. */
1636
1637 static long
1638 get_fixed_memory_packet_size (struct memory_packet_config *config)
1639 {
1640 gdb_assert (config->fixed_p);
1641
1642 if (config->size <= 0)
1643 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1644 else
1645 return config->size;
1646 }
1647
1648 /* Compute the current size of a read/write packet. Since this makes
1649 use of ``actual_register_packet_size'' the computation is dynamic. */
1650
1651 long
1652 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1653 {
1654 struct remote_state *rs = get_remote_state ();
1655 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1656
1657 long what_they_get;
1658 if (config->fixed_p)
1659 what_they_get = get_fixed_memory_packet_size (config);
1660 else
1661 {
1662 what_they_get = get_remote_packet_size ();
1663 /* Limit the packet to the size specified by the user. */
1664 if (config->size > 0
1665 && what_they_get > config->size)
1666 what_they_get = config->size;
1667
1668 /* Limit it to the size of the targets ``g'' response unless we have
1669 permission from the stub to use a larger packet size. */
1670 if (rs->explicit_packet_size == 0
1671 && rsa->actual_register_packet_size > 0
1672 && what_they_get > rsa->actual_register_packet_size)
1673 what_they_get = rsa->actual_register_packet_size;
1674 }
1675 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1676 what_they_get = MIN_MEMORY_PACKET_SIZE;
1677
1678 /* Make sure there is room in the global buffer for this packet
1679 (including its trailing NUL byte). */
1680 if (rs->buf.size () < what_they_get + 1)
1681 rs->buf.resize (2 * what_they_get);
1682
1683 return what_they_get;
1684 }
1685
1686 /* Update the size of a read/write packet. If they user wants
1687 something really big then do a sanity check. */
1688
1689 static void
1690 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1691 {
1692 int fixed_p = config->fixed_p;
1693 long size = config->size;
1694
1695 if (args == NULL)
1696 error (_("Argument required (integer, `fixed' or `limited')."));
1697 else if (strcmp (args, "hard") == 0
1698 || strcmp (args, "fixed") == 0)
1699 fixed_p = 1;
1700 else if (strcmp (args, "soft") == 0
1701 || strcmp (args, "limit") == 0)
1702 fixed_p = 0;
1703 else
1704 {
1705 char *end;
1706
1707 size = strtoul (args, &end, 0);
1708 if (args == end)
1709 error (_("Invalid %s (bad syntax)."), config->name);
1710
1711 /* Instead of explicitly capping the size of a packet to or
1712 disallowing it, the user is allowed to set the size to
1713 something arbitrarily large. */
1714 }
1715
1716 /* Extra checks? */
1717 if (fixed_p && !config->fixed_p)
1718 {
1719 /* So that the query shows the correct value. */
1720 long query_size = (size <= 0
1721 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1722 : size);
1723
1724 if (! query (_("The target may not be able to correctly handle a %s\n"
1725 "of %ld bytes. Change the packet size? "),
1726 config->name, query_size))
1727 error (_("Packet size not changed."));
1728 }
1729 /* Update the config. */
1730 config->fixed_p = fixed_p;
1731 config->size = size;
1732 }
1733
1734 static void
1735 show_memory_packet_size (struct memory_packet_config *config)
1736 {
1737 if (config->size == 0)
1738 printf_filtered (_("The %s is 0 (default). "), config->name);
1739 else
1740 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1741 if (config->fixed_p)
1742 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1743 get_fixed_memory_packet_size (config));
1744 else
1745 {
1746 remote_target *remote = get_current_remote_target ();
1747
1748 if (remote != NULL)
1749 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1750 remote->get_memory_packet_size (config));
1751 else
1752 puts_filtered ("The actual limit will be further reduced "
1753 "dependent on the target.\n");
1754 }
1755 }
1756
1757 /* FIXME: needs to be per-remote-target. */
1758 static struct memory_packet_config memory_write_packet_config =
1759 {
1760 "memory-write-packet-size",
1761 };
1762
1763 static void
1764 set_memory_write_packet_size (const char *args, int from_tty)
1765 {
1766 set_memory_packet_size (args, &memory_write_packet_config);
1767 }
1768
1769 static void
1770 show_memory_write_packet_size (const char *args, int from_tty)
1771 {
1772 show_memory_packet_size (&memory_write_packet_config);
1773 }
1774
1775 /* Show the number of hardware watchpoints that can be used. */
1776
1777 static void
1778 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1779 struct cmd_list_element *c,
1780 const char *value)
1781 {
1782 fprintf_filtered (file, _("The maximum number of target hardware "
1783 "watchpoints is %s.\n"), value);
1784 }
1785
1786 /* Show the length limit (in bytes) for hardware watchpoints. */
1787
1788 static void
1789 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1790 struct cmd_list_element *c,
1791 const char *value)
1792 {
1793 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1794 "hardware watchpoint is %s.\n"), value);
1795 }
1796
1797 /* Show the number of hardware breakpoints that can be used. */
1798
1799 static void
1800 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1801 struct cmd_list_element *c,
1802 const char *value)
1803 {
1804 fprintf_filtered (file, _("The maximum number of target hardware "
1805 "breakpoints is %s.\n"), value);
1806 }
1807
1808 /* Controls the maximum number of characters to display in the debug output
1809 for each remote packet. The remaining characters are omitted. */
1810
1811 static int remote_packet_max_chars = 512;
1812
1813 /* Show the maximum number of characters to display for each remote packet
1814 when remote debugging is enabled. */
1815
1816 static void
1817 show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1818 struct cmd_list_element *c,
1819 const char *value)
1820 {
1821 fprintf_filtered (file, _("Number of remote packet characters to "
1822 "display is %s.\n"), value);
1823 }
1824
1825 long
1826 remote_target::get_memory_write_packet_size ()
1827 {
1828 return get_memory_packet_size (&memory_write_packet_config);
1829 }
1830
1831 /* FIXME: needs to be per-remote-target. */
1832 static struct memory_packet_config memory_read_packet_config =
1833 {
1834 "memory-read-packet-size",
1835 };
1836
1837 static void
1838 set_memory_read_packet_size (const char *args, int from_tty)
1839 {
1840 set_memory_packet_size (args, &memory_read_packet_config);
1841 }
1842
1843 static void
1844 show_memory_read_packet_size (const char *args, int from_tty)
1845 {
1846 show_memory_packet_size (&memory_read_packet_config);
1847 }
1848
1849 long
1850 remote_target::get_memory_read_packet_size ()
1851 {
1852 long size = get_memory_packet_size (&memory_read_packet_config);
1853
1854 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1855 extra buffer size argument before the memory read size can be
1856 increased beyond this. */
1857 if (size > get_remote_packet_size ())
1858 size = get_remote_packet_size ();
1859 return size;
1860 }
1861
1862 \f
1863
1864 struct packet_config
1865 {
1866 const char *name;
1867 const char *title;
1868
1869 /* If auto, GDB auto-detects support for this packet or feature,
1870 either through qSupported, or by trying the packet and looking
1871 at the response. If true, GDB assumes the target supports this
1872 packet. If false, the packet is disabled. Configs that don't
1873 have an associated command always have this set to auto. */
1874 enum auto_boolean detect;
1875
1876 /* Does the target support this packet? */
1877 enum packet_support support;
1878 };
1879
1880 static enum packet_support packet_config_support (struct packet_config *config);
1881 static enum packet_support packet_support (int packet);
1882
1883 static void
1884 show_packet_config_cmd (struct packet_config *config)
1885 {
1886 const char *support = "internal-error";
1887
1888 switch (packet_config_support (config))
1889 {
1890 case PACKET_ENABLE:
1891 support = "enabled";
1892 break;
1893 case PACKET_DISABLE:
1894 support = "disabled";
1895 break;
1896 case PACKET_SUPPORT_UNKNOWN:
1897 support = "unknown";
1898 break;
1899 }
1900 switch (config->detect)
1901 {
1902 case AUTO_BOOLEAN_AUTO:
1903 printf_filtered (_("Support for the `%s' packet "
1904 "is auto-detected, currently %s.\n"),
1905 config->name, support);
1906 break;
1907 case AUTO_BOOLEAN_TRUE:
1908 case AUTO_BOOLEAN_FALSE:
1909 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1910 config->name, support);
1911 break;
1912 }
1913 }
1914
1915 static void
1916 add_packet_config_cmd (struct packet_config *config, const char *name,
1917 const char *title, int legacy)
1918 {
1919 char *set_doc;
1920 char *show_doc;
1921 char *cmd_name;
1922
1923 config->name = name;
1924 config->title = title;
1925 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1926 name, title);
1927 show_doc = xstrprintf ("Show current use of remote "
1928 "protocol `%s' (%s) packet.",
1929 name, title);
1930 /* set/show TITLE-packet {auto,on,off} */
1931 cmd_name = xstrprintf ("%s-packet", title);
1932 set_show_commands cmds
1933 = add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1934 &config->detect, set_doc,
1935 show_doc, NULL, /* help_doc */
1936 NULL,
1937 show_remote_protocol_packet_cmd,
1938 &remote_set_cmdlist, &remote_show_cmdlist);
1939
1940 /* The command code copies the documentation strings. */
1941 xfree (set_doc);
1942 xfree (show_doc);
1943
1944 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1945 if (legacy)
1946 {
1947 char *legacy_name;
1948
1949 legacy_name = xstrprintf ("%s-packet", name);
1950 add_alias_cmd (legacy_name, cmds.set, class_obscure, 0,
1951 &remote_set_cmdlist);
1952 add_alias_cmd (legacy_name, cmds.show, class_obscure, 0,
1953 &remote_show_cmdlist);
1954 }
1955 }
1956
1957 static enum packet_result
1958 packet_check_result (const char *buf)
1959 {
1960 if (buf[0] != '\0')
1961 {
1962 /* The stub recognized the packet request. Check that the
1963 operation succeeded. */
1964 if (buf[0] == 'E'
1965 && isxdigit (buf[1]) && isxdigit (buf[2])
1966 && buf[3] == '\0')
1967 /* "Enn" - definitely an error. */
1968 return PACKET_ERROR;
1969
1970 /* Always treat "E." as an error. This will be used for
1971 more verbose error messages, such as E.memtypes. */
1972 if (buf[0] == 'E' && buf[1] == '.')
1973 return PACKET_ERROR;
1974
1975 /* The packet may or may not be OK. Just assume it is. */
1976 return PACKET_OK;
1977 }
1978 else
1979 /* The stub does not support the packet. */
1980 return PACKET_UNKNOWN;
1981 }
1982
1983 static enum packet_result
1984 packet_check_result (const gdb::char_vector &buf)
1985 {
1986 return packet_check_result (buf.data ());
1987 }
1988
1989 static enum packet_result
1990 packet_ok (const char *buf, struct packet_config *config)
1991 {
1992 enum packet_result result;
1993
1994 if (config->detect != AUTO_BOOLEAN_TRUE
1995 && config->support == PACKET_DISABLE)
1996 internal_error (__FILE__, __LINE__,
1997 _("packet_ok: attempt to use a disabled packet"));
1998
1999 result = packet_check_result (buf);
2000 switch (result)
2001 {
2002 case PACKET_OK:
2003 case PACKET_ERROR:
2004 /* The stub recognized the packet request. */
2005 if (config->support == PACKET_SUPPORT_UNKNOWN)
2006 {
2007 remote_debug_printf ("Packet %s (%s) is supported",
2008 config->name, config->title);
2009 config->support = PACKET_ENABLE;
2010 }
2011 break;
2012 case PACKET_UNKNOWN:
2013 /* The stub does not support the packet. */
2014 if (config->detect == AUTO_BOOLEAN_AUTO
2015 && config->support == PACKET_ENABLE)
2016 {
2017 /* If the stub previously indicated that the packet was
2018 supported then there is a protocol error. */
2019 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2020 config->name, config->title);
2021 }
2022 else if (config->detect == AUTO_BOOLEAN_TRUE)
2023 {
2024 /* The user set it wrong. */
2025 error (_("Enabled packet %s (%s) not recognized by stub"),
2026 config->name, config->title);
2027 }
2028
2029 remote_debug_printf ("Packet %s (%s) is NOT supported",
2030 config->name, config->title);
2031 config->support = PACKET_DISABLE;
2032 break;
2033 }
2034
2035 return result;
2036 }
2037
2038 static enum packet_result
2039 packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2040 {
2041 return packet_ok (buf.data (), config);
2042 }
2043
2044 enum {
2045 PACKET_vCont = 0,
2046 PACKET_X,
2047 PACKET_qSymbol,
2048 PACKET_P,
2049 PACKET_p,
2050 PACKET_Z0,
2051 PACKET_Z1,
2052 PACKET_Z2,
2053 PACKET_Z3,
2054 PACKET_Z4,
2055 PACKET_vFile_setfs,
2056 PACKET_vFile_open,
2057 PACKET_vFile_pread,
2058 PACKET_vFile_pwrite,
2059 PACKET_vFile_close,
2060 PACKET_vFile_unlink,
2061 PACKET_vFile_readlink,
2062 PACKET_vFile_fstat,
2063 PACKET_qXfer_auxv,
2064 PACKET_qXfer_features,
2065 PACKET_qXfer_exec_file,
2066 PACKET_qXfer_libraries,
2067 PACKET_qXfer_libraries_svr4,
2068 PACKET_qXfer_memory_map,
2069 PACKET_qXfer_osdata,
2070 PACKET_qXfer_threads,
2071 PACKET_qXfer_statictrace_read,
2072 PACKET_qXfer_traceframe_info,
2073 PACKET_qXfer_uib,
2074 PACKET_qGetTIBAddr,
2075 PACKET_qGetTLSAddr,
2076 PACKET_qSupported,
2077 PACKET_qTStatus,
2078 PACKET_QPassSignals,
2079 PACKET_QCatchSyscalls,
2080 PACKET_QProgramSignals,
2081 PACKET_QSetWorkingDir,
2082 PACKET_QStartupWithShell,
2083 PACKET_QEnvironmentHexEncoded,
2084 PACKET_QEnvironmentReset,
2085 PACKET_QEnvironmentUnset,
2086 PACKET_qCRC,
2087 PACKET_qSearch_memory,
2088 PACKET_vAttach,
2089 PACKET_vRun,
2090 PACKET_QStartNoAckMode,
2091 PACKET_vKill,
2092 PACKET_qXfer_siginfo_read,
2093 PACKET_qXfer_siginfo_write,
2094 PACKET_qAttached,
2095
2096 /* Support for conditional tracepoints. */
2097 PACKET_ConditionalTracepoints,
2098
2099 /* Support for target-side breakpoint conditions. */
2100 PACKET_ConditionalBreakpoints,
2101
2102 /* Support for target-side breakpoint commands. */
2103 PACKET_BreakpointCommands,
2104
2105 /* Support for fast tracepoints. */
2106 PACKET_FastTracepoints,
2107
2108 /* Support for static tracepoints. */
2109 PACKET_StaticTracepoints,
2110
2111 /* Support for installing tracepoints while a trace experiment is
2112 running. */
2113 PACKET_InstallInTrace,
2114
2115 PACKET_bc,
2116 PACKET_bs,
2117 PACKET_TracepointSource,
2118 PACKET_QAllow,
2119 PACKET_qXfer_fdpic,
2120 PACKET_QDisableRandomization,
2121 PACKET_QAgent,
2122 PACKET_QTBuffer_size,
2123 PACKET_Qbtrace_off,
2124 PACKET_Qbtrace_bts,
2125 PACKET_Qbtrace_pt,
2126 PACKET_qXfer_btrace,
2127
2128 /* Support for the QNonStop packet. */
2129 PACKET_QNonStop,
2130
2131 /* Support for the QThreadEvents packet. */
2132 PACKET_QThreadEvents,
2133
2134 /* Support for multi-process extensions. */
2135 PACKET_multiprocess_feature,
2136
2137 /* Support for enabling and disabling tracepoints while a trace
2138 experiment is running. */
2139 PACKET_EnableDisableTracepoints_feature,
2140
2141 /* Support for collecting strings using the tracenz bytecode. */
2142 PACKET_tracenz_feature,
2143
2144 /* Support for continuing to run a trace experiment while GDB is
2145 disconnected. */
2146 PACKET_DisconnectedTracing_feature,
2147
2148 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2149 PACKET_augmented_libraries_svr4_read_feature,
2150
2151 /* Support for the qXfer:btrace-conf:read packet. */
2152 PACKET_qXfer_btrace_conf,
2153
2154 /* Support for the Qbtrace-conf:bts:size packet. */
2155 PACKET_Qbtrace_conf_bts_size,
2156
2157 /* Support for swbreak+ feature. */
2158 PACKET_swbreak_feature,
2159
2160 /* Support for hwbreak+ feature. */
2161 PACKET_hwbreak_feature,
2162
2163 /* Support for fork events. */
2164 PACKET_fork_event_feature,
2165
2166 /* Support for vfork events. */
2167 PACKET_vfork_event_feature,
2168
2169 /* Support for the Qbtrace-conf:pt:size packet. */
2170 PACKET_Qbtrace_conf_pt_size,
2171
2172 /* Support for exec events. */
2173 PACKET_exec_event_feature,
2174
2175 /* Support for query supported vCont actions. */
2176 PACKET_vContSupported,
2177
2178 /* Support remote CTRL-C. */
2179 PACKET_vCtrlC,
2180
2181 /* Support TARGET_WAITKIND_NO_RESUMED. */
2182 PACKET_no_resumed,
2183
2184 /* Support for memory tagging, allocation tag fetch/store
2185 packets and the tag violation stop replies. */
2186 PACKET_memory_tagging_feature,
2187
2188 PACKET_MAX
2189 };
2190
2191 /* FIXME: needs to be per-remote-target. Ignoring this for now,
2192 assuming all remote targets are the same server (thus all support
2193 the same packets). */
2194 static struct packet_config remote_protocol_packets[PACKET_MAX];
2195
2196 /* Returns the packet's corresponding "set remote foo-packet" command
2197 state. See struct packet_config for more details. */
2198
2199 static enum auto_boolean
2200 packet_set_cmd_state (int packet)
2201 {
2202 return remote_protocol_packets[packet].detect;
2203 }
2204
2205 /* Returns whether a given packet or feature is supported. This takes
2206 into account the state of the corresponding "set remote foo-packet"
2207 command, which may be used to bypass auto-detection. */
2208
2209 static enum packet_support
2210 packet_config_support (struct packet_config *config)
2211 {
2212 switch (config->detect)
2213 {
2214 case AUTO_BOOLEAN_TRUE:
2215 return PACKET_ENABLE;
2216 case AUTO_BOOLEAN_FALSE:
2217 return PACKET_DISABLE;
2218 case AUTO_BOOLEAN_AUTO:
2219 return config->support;
2220 default:
2221 gdb_assert_not_reached (_("bad switch"));
2222 }
2223 }
2224
2225 /* Same as packet_config_support, but takes the packet's enum value as
2226 argument. */
2227
2228 static enum packet_support
2229 packet_support (int packet)
2230 {
2231 struct packet_config *config = &remote_protocol_packets[packet];
2232
2233 return packet_config_support (config);
2234 }
2235
2236 static void
2237 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2238 struct cmd_list_element *c,
2239 const char *value)
2240 {
2241 struct packet_config *packet;
2242
2243 for (packet = remote_protocol_packets;
2244 packet < &remote_protocol_packets[PACKET_MAX];
2245 packet++)
2246 {
2247 if (&packet->detect == c->var)
2248 {
2249 show_packet_config_cmd (packet);
2250 return;
2251 }
2252 }
2253 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2254 c->name);
2255 }
2256
2257 /* Should we try one of the 'Z' requests? */
2258
2259 enum Z_packet_type
2260 {
2261 Z_PACKET_SOFTWARE_BP,
2262 Z_PACKET_HARDWARE_BP,
2263 Z_PACKET_WRITE_WP,
2264 Z_PACKET_READ_WP,
2265 Z_PACKET_ACCESS_WP,
2266 NR_Z_PACKET_TYPES
2267 };
2268
2269 /* For compatibility with older distributions. Provide a ``set remote
2270 Z-packet ...'' command that updates all the Z packet types. */
2271
2272 static enum auto_boolean remote_Z_packet_detect;
2273
2274 static void
2275 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2276 struct cmd_list_element *c)
2277 {
2278 int i;
2279
2280 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2281 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2282 }
2283
2284 static void
2285 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2286 struct cmd_list_element *c,
2287 const char *value)
2288 {
2289 int i;
2290
2291 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2292 {
2293 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2294 }
2295 }
2296
2297 /* Returns true if the multi-process extensions are in effect. */
2298
2299 static int
2300 remote_multi_process_p (struct remote_state *rs)
2301 {
2302 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2303 }
2304
2305 /* Returns true if fork events are supported. */
2306
2307 static int
2308 remote_fork_event_p (struct remote_state *rs)
2309 {
2310 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2311 }
2312
2313 /* Returns true if vfork events are supported. */
2314
2315 static int
2316 remote_vfork_event_p (struct remote_state *rs)
2317 {
2318 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2319 }
2320
2321 /* Returns true if exec events are supported. */
2322
2323 static int
2324 remote_exec_event_p (struct remote_state *rs)
2325 {
2326 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2327 }
2328
2329 /* Returns true if memory tagging is supported, false otherwise. */
2330
2331 static bool
2332 remote_memory_tagging_p ()
2333 {
2334 return packet_support (PACKET_memory_tagging_feature) == PACKET_ENABLE;
2335 }
2336
2337 /* Insert fork catchpoint target routine. If fork events are enabled
2338 then return success, nothing more to do. */
2339
2340 int
2341 remote_target::insert_fork_catchpoint (int pid)
2342 {
2343 struct remote_state *rs = get_remote_state ();
2344
2345 return !remote_fork_event_p (rs);
2346 }
2347
2348 /* Remove fork catchpoint target routine. Nothing to do, just
2349 return success. */
2350
2351 int
2352 remote_target::remove_fork_catchpoint (int pid)
2353 {
2354 return 0;
2355 }
2356
2357 /* Insert vfork catchpoint target routine. If vfork events are enabled
2358 then return success, nothing more to do. */
2359
2360 int
2361 remote_target::insert_vfork_catchpoint (int pid)
2362 {
2363 struct remote_state *rs = get_remote_state ();
2364
2365 return !remote_vfork_event_p (rs);
2366 }
2367
2368 /* Remove vfork catchpoint target routine. Nothing to do, just
2369 return success. */
2370
2371 int
2372 remote_target::remove_vfork_catchpoint (int pid)
2373 {
2374 return 0;
2375 }
2376
2377 /* Insert exec catchpoint target routine. If exec events are
2378 enabled, just return success. */
2379
2380 int
2381 remote_target::insert_exec_catchpoint (int pid)
2382 {
2383 struct remote_state *rs = get_remote_state ();
2384
2385 return !remote_exec_event_p (rs);
2386 }
2387
2388 /* Remove exec catchpoint target routine. Nothing to do, just
2389 return success. */
2390
2391 int
2392 remote_target::remove_exec_catchpoint (int pid)
2393 {
2394 return 0;
2395 }
2396
2397 \f
2398
2399 /* Take advantage of the fact that the TID field is not used, to tag
2400 special ptids with it set to != 0. */
2401 static const ptid_t magic_null_ptid (42000, -1, 1);
2402 static const ptid_t not_sent_ptid (42000, -2, 1);
2403 static const ptid_t any_thread_ptid (42000, 0, 1);
2404
2405 /* Find out if the stub attached to PID (and hence GDB should offer to
2406 detach instead of killing it when bailing out). */
2407
2408 int
2409 remote_target::remote_query_attached (int pid)
2410 {
2411 struct remote_state *rs = get_remote_state ();
2412 size_t size = get_remote_packet_size ();
2413
2414 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2415 return 0;
2416
2417 if (remote_multi_process_p (rs))
2418 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
2419 else
2420 xsnprintf (rs->buf.data (), size, "qAttached");
2421
2422 putpkt (rs->buf);
2423 getpkt (&rs->buf, 0);
2424
2425 switch (packet_ok (rs->buf,
2426 &remote_protocol_packets[PACKET_qAttached]))
2427 {
2428 case PACKET_OK:
2429 if (strcmp (rs->buf.data (), "1") == 0)
2430 return 1;
2431 break;
2432 case PACKET_ERROR:
2433 warning (_("Remote failure reply: %s"), rs->buf.data ());
2434 break;
2435 case PACKET_UNKNOWN:
2436 break;
2437 }
2438
2439 return 0;
2440 }
2441
2442 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2443 has been invented by GDB, instead of reported by the target. Since
2444 we can be connected to a remote system before before knowing about
2445 any inferior, mark the target with execution when we find the first
2446 inferior. If ATTACHED is 1, then we had just attached to this
2447 inferior. If it is 0, then we just created this inferior. If it
2448 is -1, then try querying the remote stub to find out if it had
2449 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2450 attempt to open this inferior's executable as the main executable
2451 if no main executable is open already. */
2452
2453 inferior *
2454 remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
2455 int try_open_exec)
2456 {
2457 struct inferior *inf;
2458
2459 /* Check whether this process we're learning about is to be
2460 considered attached, or if is to be considered to have been
2461 spawned by the stub. */
2462 if (attached == -1)
2463 attached = remote_query_attached (pid);
2464
2465 if (gdbarch_has_global_solist (target_gdbarch ()))
2466 {
2467 /* If the target shares code across all inferiors, then every
2468 attach adds a new inferior. */
2469 inf = add_inferior (pid);
2470
2471 /* ... and every inferior is bound to the same program space.
2472 However, each inferior may still have its own address
2473 space. */
2474 inf->aspace = maybe_new_address_space ();
2475 inf->pspace = current_program_space;
2476 }
2477 else
2478 {
2479 /* In the traditional debugging scenario, there's a 1-1 match
2480 between program/address spaces. We simply bind the inferior
2481 to the program space's address space. */
2482 inf = current_inferior ();
2483
2484 /* However, if the current inferior is already bound to a
2485 process, find some other empty inferior. */
2486 if (inf->pid != 0)
2487 {
2488 inf = nullptr;
2489 for (inferior *it : all_inferiors ())
2490 if (it->pid == 0)
2491 {
2492 inf = it;
2493 break;
2494 }
2495 }
2496 if (inf == nullptr)
2497 {
2498 /* Since all inferiors were already bound to a process, add
2499 a new inferior. */
2500 inf = add_inferior_with_spaces ();
2501 }
2502 switch_to_inferior_no_thread (inf);
2503 inf->push_target (this);
2504 inferior_appeared (inf, pid);
2505 }
2506
2507 inf->attach_flag = attached;
2508 inf->fake_pid_p = fake_pid_p;
2509
2510 /* If no main executable is currently open then attempt to
2511 open the file that was executed to create this inferior. */
2512 if (try_open_exec && get_exec_file (0) == NULL)
2513 exec_file_locate_attach (pid, 0, 1);
2514
2515 /* Check for exec file mismatch, and let the user solve it. */
2516 validate_exec_file (1);
2517
2518 return inf;
2519 }
2520
2521 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2522 static remote_thread_info *get_remote_thread_info (remote_target *target,
2523 ptid_t ptid);
2524
2525 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2526 according to RUNNING. */
2527
2528 thread_info *
2529 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2530 {
2531 struct remote_state *rs = get_remote_state ();
2532 struct thread_info *thread;
2533
2534 /* GDB historically didn't pull threads in the initial connection
2535 setup. If the remote target doesn't even have a concept of
2536 threads (e.g., a bare-metal target), even if internally we
2537 consider that a single-threaded target, mentioning a new thread
2538 might be confusing to the user. Be silent then, preserving the
2539 age old behavior. */
2540 if (rs->starting_up)
2541 thread = add_thread_silent (this, ptid);
2542 else
2543 thread = add_thread (this, ptid);
2544
2545 /* We start by assuming threads are resumed. That state then gets updated
2546 when we process a matching stop reply. */
2547 get_remote_thread_info (thread)->set_resumed ();
2548
2549 set_executing (this, ptid, executing);
2550 set_running (this, ptid, running);
2551
2552 return thread;
2553 }
2554
2555 /* Come here when we learn about a thread id from the remote target.
2556 It may be the first time we hear about such thread, so take the
2557 opportunity to add it to GDB's thread list. In case this is the
2558 first time we're noticing its corresponding inferior, add it to
2559 GDB's inferior list as well. EXECUTING indicates whether the
2560 thread is (internally) executing or stopped. */
2561
2562 void
2563 remote_target::remote_notice_new_inferior (ptid_t currthread, bool executing)
2564 {
2565 /* In non-stop mode, we assume new found threads are (externally)
2566 running until proven otherwise with a stop reply. In all-stop,
2567 we can only get here if all threads are stopped. */
2568 bool running = target_is_non_stop_p ();
2569
2570 /* If this is a new thread, add it to GDB's thread list.
2571 If we leave it up to WFI to do this, bad things will happen. */
2572
2573 thread_info *tp = find_thread_ptid (this, currthread);
2574 if (tp != NULL && tp->state == THREAD_EXITED)
2575 {
2576 /* We're seeing an event on a thread id we knew had exited.
2577 This has to be a new thread reusing the old id. Add it. */
2578 remote_add_thread (currthread, running, executing);
2579 return;
2580 }
2581
2582 if (!in_thread_list (this, currthread))
2583 {
2584 struct inferior *inf = NULL;
2585 int pid = currthread.pid ();
2586
2587 if (inferior_ptid.is_pid ()
2588 && pid == inferior_ptid.pid ())
2589 {
2590 /* inferior_ptid has no thread member yet. This can happen
2591 with the vAttach -> remote_wait,"TAAthread:" path if the
2592 stub doesn't support qC. This is the first stop reported
2593 after an attach, so this is the main thread. Update the
2594 ptid in the thread list. */
2595 if (in_thread_list (this, ptid_t (pid)))
2596 thread_change_ptid (this, inferior_ptid, currthread);
2597 else
2598 {
2599 thread_info *thr
2600 = remote_add_thread (currthread, running, executing);
2601 switch_to_thread (thr);
2602 }
2603 return;
2604 }
2605
2606 if (magic_null_ptid == inferior_ptid)
2607 {
2608 /* inferior_ptid is not set yet. This can happen with the
2609 vRun -> remote_wait,"TAAthread:" path if the stub
2610 doesn't support qC. This is the first stop reported
2611 after an attach, so this is the main thread. Update the
2612 ptid in the thread list. */
2613 thread_change_ptid (this, inferior_ptid, currthread);
2614 return;
2615 }
2616
2617 /* When connecting to a target remote, or to a target
2618 extended-remote which already was debugging an inferior, we
2619 may not know about it yet. Add it before adding its child
2620 thread, so notifications are emitted in a sensible order. */
2621 if (find_inferior_pid (this, currthread.pid ()) == NULL)
2622 {
2623 struct remote_state *rs = get_remote_state ();
2624 bool fake_pid_p = !remote_multi_process_p (rs);
2625
2626 inf = remote_add_inferior (fake_pid_p,
2627 currthread.pid (), -1, 1);
2628 }
2629
2630 /* This is really a new thread. Add it. */
2631 thread_info *new_thr
2632 = remote_add_thread (currthread, running, executing);
2633
2634 /* If we found a new inferior, let the common code do whatever
2635 it needs to with it (e.g., read shared libraries, insert
2636 breakpoints), unless we're just setting up an all-stop
2637 connection. */
2638 if (inf != NULL)
2639 {
2640 struct remote_state *rs = get_remote_state ();
2641
2642 if (!rs->starting_up)
2643 notice_new_inferior (new_thr, executing, 0);
2644 }
2645 }
2646 }
2647
2648 /* Return THREAD's private thread data, creating it if necessary. */
2649
2650 static remote_thread_info *
2651 get_remote_thread_info (thread_info *thread)
2652 {
2653 gdb_assert (thread != NULL);
2654
2655 if (thread->priv == NULL)
2656 thread->priv.reset (new remote_thread_info);
2657
2658 return static_cast<remote_thread_info *> (thread->priv.get ());
2659 }
2660
2661 /* Return PTID's private thread data, creating it if necessary. */
2662
2663 static remote_thread_info *
2664 get_remote_thread_info (remote_target *target, ptid_t ptid)
2665 {
2666 thread_info *thr = find_thread_ptid (target, ptid);
2667 return get_remote_thread_info (thr);
2668 }
2669
2670 /* Call this function as a result of
2671 1) A halt indication (T packet) containing a thread id
2672 2) A direct query of currthread
2673 3) Successful execution of set thread */
2674
2675 static void
2676 record_currthread (struct remote_state *rs, ptid_t currthread)
2677 {
2678 rs->general_thread = currthread;
2679 }
2680
2681 /* If 'QPassSignals' is supported, tell the remote stub what signals
2682 it can simply pass through to the inferior without reporting. */
2683
2684 void
2685 remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
2686 {
2687 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2688 {
2689 char *pass_packet, *p;
2690 int count = 0;
2691 struct remote_state *rs = get_remote_state ();
2692
2693 gdb_assert (pass_signals.size () < 256);
2694 for (size_t i = 0; i < pass_signals.size (); i++)
2695 {
2696 if (pass_signals[i])
2697 count++;
2698 }
2699 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2700 strcpy (pass_packet, "QPassSignals:");
2701 p = pass_packet + strlen (pass_packet);
2702 for (size_t i = 0; i < pass_signals.size (); i++)
2703 {
2704 if (pass_signals[i])
2705 {
2706 if (i >= 16)
2707 *p++ = tohex (i >> 4);
2708 *p++ = tohex (i & 15);
2709 if (count)
2710 *p++ = ';';
2711 else
2712 break;
2713 count--;
2714 }
2715 }
2716 *p = 0;
2717 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2718 {
2719 putpkt (pass_packet);
2720 getpkt (&rs->buf, 0);
2721 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2722 xfree (rs->last_pass_packet);
2723 rs->last_pass_packet = pass_packet;
2724 }
2725 else
2726 xfree (pass_packet);
2727 }
2728 }
2729
2730 /* If 'QCatchSyscalls' is supported, tell the remote stub
2731 to report syscalls to GDB. */
2732
2733 int
2734 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2735 gdb::array_view<const int> syscall_counts)
2736 {
2737 const char *catch_packet;
2738 enum packet_result result;
2739 int n_sysno = 0;
2740
2741 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2742 {
2743 /* Not supported. */
2744 return 1;
2745 }
2746
2747 if (needed && any_count == 0)
2748 {
2749 /* Count how many syscalls are to be caught. */
2750 for (size_t i = 0; i < syscall_counts.size (); i++)
2751 {
2752 if (syscall_counts[i] != 0)
2753 n_sysno++;
2754 }
2755 }
2756
2757 remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
2758 pid, needed, any_count, n_sysno);
2759
2760 std::string built_packet;
2761 if (needed)
2762 {
2763 /* Prepare a packet with the sysno list, assuming max 8+1
2764 characters for a sysno. If the resulting packet size is too
2765 big, fallback on the non-selective packet. */
2766 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2767 built_packet.reserve (maxpktsz);
2768 built_packet = "QCatchSyscalls:1";
2769 if (any_count == 0)
2770 {
2771 /* Add in each syscall to be caught. */
2772 for (size_t i = 0; i < syscall_counts.size (); i++)
2773 {
2774 if (syscall_counts[i] != 0)
2775 string_appendf (built_packet, ";%zx", i);
2776 }
2777 }
2778 if (built_packet.size () > get_remote_packet_size ())
2779 {
2780 /* catch_packet too big. Fallback to less efficient
2781 non selective mode, with GDB doing the filtering. */
2782 catch_packet = "QCatchSyscalls:1";
2783 }
2784 else
2785 catch_packet = built_packet.c_str ();
2786 }
2787 else
2788 catch_packet = "QCatchSyscalls:0";
2789
2790 struct remote_state *rs = get_remote_state ();
2791
2792 putpkt (catch_packet);
2793 getpkt (&rs->buf, 0);
2794 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2795 if (result == PACKET_OK)
2796 return 0;
2797 else
2798 return -1;
2799 }
2800
2801 /* If 'QProgramSignals' is supported, tell the remote stub what
2802 signals it should pass through to the inferior when detaching. */
2803
2804 void
2805 remote_target::program_signals (gdb::array_view<const unsigned char> signals)
2806 {
2807 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2808 {
2809 char *packet, *p;
2810 int count = 0;
2811 struct remote_state *rs = get_remote_state ();
2812
2813 gdb_assert (signals.size () < 256);
2814 for (size_t i = 0; i < signals.size (); i++)
2815 {
2816 if (signals[i])
2817 count++;
2818 }
2819 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2820 strcpy (packet, "QProgramSignals:");
2821 p = packet + strlen (packet);
2822 for (size_t i = 0; i < signals.size (); i++)
2823 {
2824 if (signal_pass_state (i))
2825 {
2826 if (i >= 16)
2827 *p++ = tohex (i >> 4);
2828 *p++ = tohex (i & 15);
2829 if (count)
2830 *p++ = ';';
2831 else
2832 break;
2833 count--;
2834 }
2835 }
2836 *p = 0;
2837 if (!rs->last_program_signals_packet
2838 || strcmp (rs->last_program_signals_packet, packet) != 0)
2839 {
2840 putpkt (packet);
2841 getpkt (&rs->buf, 0);
2842 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2843 xfree (rs->last_program_signals_packet);
2844 rs->last_program_signals_packet = packet;
2845 }
2846 else
2847 xfree (packet);
2848 }
2849 }
2850
2851 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2852 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2853 thread. If GEN is set, set the general thread, if not, then set
2854 the step/continue thread. */
2855 void
2856 remote_target::set_thread (ptid_t ptid, int gen)
2857 {
2858 struct remote_state *rs = get_remote_state ();
2859 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2860 char *buf = rs->buf.data ();
2861 char *endbuf = buf + get_remote_packet_size ();
2862
2863 if (state == ptid)
2864 return;
2865
2866 *buf++ = 'H';
2867 *buf++ = gen ? 'g' : 'c';
2868 if (ptid == magic_null_ptid)
2869 xsnprintf (buf, endbuf - buf, "0");
2870 else if (ptid == any_thread_ptid)
2871 xsnprintf (buf, endbuf - buf, "0");
2872 else if (ptid == minus_one_ptid)
2873 xsnprintf (buf, endbuf - buf, "-1");
2874 else
2875 write_ptid (buf, endbuf, ptid);
2876 putpkt (rs->buf);
2877 getpkt (&rs->buf, 0);
2878 if (gen)
2879 rs->general_thread = ptid;
2880 else
2881 rs->continue_thread = ptid;
2882 }
2883
2884 void
2885 remote_target::set_general_thread (ptid_t ptid)
2886 {
2887 set_thread (ptid, 1);
2888 }
2889
2890 void
2891 remote_target::set_continue_thread (ptid_t ptid)
2892 {
2893 set_thread (ptid, 0);
2894 }
2895
2896 /* Change the remote current process. Which thread within the process
2897 ends up selected isn't important, as long as it is the same process
2898 as what INFERIOR_PTID points to.
2899
2900 This comes from that fact that there is no explicit notion of
2901 "selected process" in the protocol. The selected process for
2902 general operations is the process the selected general thread
2903 belongs to. */
2904
2905 void
2906 remote_target::set_general_process ()
2907 {
2908 struct remote_state *rs = get_remote_state ();
2909
2910 /* If the remote can't handle multiple processes, don't bother. */
2911 if (!remote_multi_process_p (rs))
2912 return;
2913
2914 /* We only need to change the remote current thread if it's pointing
2915 at some other process. */
2916 if (rs->general_thread.pid () != inferior_ptid.pid ())
2917 set_general_thread (inferior_ptid);
2918 }
2919
2920 \f
2921 /* Return nonzero if this is the main thread that we made up ourselves
2922 to model non-threaded targets as single-threaded. */
2923
2924 static int
2925 remote_thread_always_alive (ptid_t ptid)
2926 {
2927 if (ptid == magic_null_ptid)
2928 /* The main thread is always alive. */
2929 return 1;
2930
2931 if (ptid.pid () != 0 && ptid.lwp () == 0)
2932 /* The main thread is always alive. This can happen after a
2933 vAttach, if the remote side doesn't support
2934 multi-threading. */
2935 return 1;
2936
2937 return 0;
2938 }
2939
2940 /* Return nonzero if the thread PTID is still alive on the remote
2941 system. */
2942
2943 bool
2944 remote_target::thread_alive (ptid_t ptid)
2945 {
2946 struct remote_state *rs = get_remote_state ();
2947 char *p, *endp;
2948
2949 /* Check if this is a thread that we made up ourselves to model
2950 non-threaded targets as single-threaded. */
2951 if (remote_thread_always_alive (ptid))
2952 return 1;
2953
2954 p = rs->buf.data ();
2955 endp = p + get_remote_packet_size ();
2956
2957 *p++ = 'T';
2958 write_ptid (p, endp, ptid);
2959
2960 putpkt (rs->buf);
2961 getpkt (&rs->buf, 0);
2962 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2963 }
2964
2965 /* Return a pointer to a thread name if we know it and NULL otherwise.
2966 The thread_info object owns the memory for the name. */
2967
2968 const char *
2969 remote_target::thread_name (struct thread_info *info)
2970 {
2971 if (info->priv != NULL)
2972 {
2973 const std::string &name = get_remote_thread_info (info)->name;
2974 return !name.empty () ? name.c_str () : NULL;
2975 }
2976
2977 return NULL;
2978 }
2979
2980 /* About these extended threadlist and threadinfo packets. They are
2981 variable length packets but, the fields within them are often fixed
2982 length. They are redundant enough to send over UDP as is the
2983 remote protocol in general. There is a matching unit test module
2984 in libstub. */
2985
2986 /* WARNING: This threadref data structure comes from the remote O.S.,
2987 libstub protocol encoding, and remote.c. It is not particularly
2988 changable. */
2989
2990 /* Right now, the internal structure is int. We want it to be bigger.
2991 Plan to fix this. */
2992
2993 typedef int gdb_threadref; /* Internal GDB thread reference. */
2994
2995 /* gdb_ext_thread_info is an internal GDB data structure which is
2996 equivalent to the reply of the remote threadinfo packet. */
2997
2998 struct gdb_ext_thread_info
2999 {
3000 threadref threadid; /* External form of thread reference. */
3001 int active; /* Has state interesting to GDB?
3002 regs, stack. */
3003 char display[256]; /* Brief state display, name,
3004 blocked/suspended. */
3005 char shortname[32]; /* To be used to name threads. */
3006 char more_display[256]; /* Long info, statistics, queue depth,
3007 whatever. */
3008 };
3009
3010 /* The volume of remote transfers can be limited by submitting
3011 a mask containing bits specifying the desired information.
3012 Use a union of these values as the 'selection' parameter to
3013 get_thread_info. FIXME: Make these TAG names more thread specific. */
3014
3015 #define TAG_THREADID 1
3016 #define TAG_EXISTS 2
3017 #define TAG_DISPLAY 4
3018 #define TAG_THREADNAME 8
3019 #define TAG_MOREDISPLAY 16
3020
3021 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
3022
3023 static const char *unpack_nibble (const char *buf, int *val);
3024
3025 static const char *unpack_byte (const char *buf, int *value);
3026
3027 static char *pack_int (char *buf, int value);
3028
3029 static const char *unpack_int (const char *buf, int *value);
3030
3031 static const char *unpack_string (const char *src, char *dest, int length);
3032
3033 static char *pack_threadid (char *pkt, threadref *id);
3034
3035 static const char *unpack_threadid (const char *inbuf, threadref *id);
3036
3037 void int_to_threadref (threadref *id, int value);
3038
3039 static int threadref_to_int (threadref *ref);
3040
3041 static void copy_threadref (threadref *dest, threadref *src);
3042
3043 static int threadmatch (threadref *dest, threadref *src);
3044
3045 static char *pack_threadinfo_request (char *pkt, int mode,
3046 threadref *id);
3047
3048 static char *pack_threadlist_request (char *pkt, int startflag,
3049 int threadcount,
3050 threadref *nextthread);
3051
3052 static int remote_newthread_step (threadref *ref, void *context);
3053
3054
3055 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3056 buffer we're allowed to write to. Returns
3057 BUF+CHARACTERS_WRITTEN. */
3058
3059 char *
3060 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
3061 {
3062 int pid, tid;
3063 struct remote_state *rs = get_remote_state ();
3064
3065 if (remote_multi_process_p (rs))
3066 {
3067 pid = ptid.pid ();
3068 if (pid < 0)
3069 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3070 else
3071 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3072 }
3073 tid = ptid.lwp ();
3074 if (tid < 0)
3075 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3076 else
3077 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3078
3079 return buf;
3080 }
3081
3082 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3083 last parsed char. Returns null_ptid if no thread id is found, and
3084 throws an error if the thread id has an invalid format. */
3085
3086 static ptid_t
3087 read_ptid (const char *buf, const char **obuf)
3088 {
3089 const char *p = buf;
3090 const char *pp;
3091 ULONGEST pid = 0, tid = 0;
3092
3093 if (*p == 'p')
3094 {
3095 /* Multi-process ptid. */
3096 pp = unpack_varlen_hex (p + 1, &pid);
3097 if (*pp != '.')
3098 error (_("invalid remote ptid: %s"), p);
3099
3100 p = pp;
3101 pp = unpack_varlen_hex (p + 1, &tid);
3102 if (obuf)
3103 *obuf = pp;
3104 return ptid_t (pid, tid);
3105 }
3106
3107 /* No multi-process. Just a tid. */
3108 pp = unpack_varlen_hex (p, &tid);
3109
3110 /* Return null_ptid when no thread id is found. */
3111 if (p == pp)
3112 {
3113 if (obuf)
3114 *obuf = pp;
3115 return null_ptid;
3116 }
3117
3118 /* Since the stub is not sending a process id, then default to
3119 what's in inferior_ptid, unless it's null at this point. If so,
3120 then since there's no way to know the pid of the reported
3121 threads, use the magic number. */
3122 if (inferior_ptid == null_ptid)
3123 pid = magic_null_ptid.pid ();
3124 else
3125 pid = inferior_ptid.pid ();
3126
3127 if (obuf)
3128 *obuf = pp;
3129 return ptid_t (pid, tid);
3130 }
3131
3132 static int
3133 stubhex (int ch)
3134 {
3135 if (ch >= 'a' && ch <= 'f')
3136 return ch - 'a' + 10;
3137 if (ch >= '0' && ch <= '9')
3138 return ch - '0';
3139 if (ch >= 'A' && ch <= 'F')
3140 return ch - 'A' + 10;
3141 return -1;
3142 }
3143
3144 static int
3145 stub_unpack_int (const char *buff, int fieldlength)
3146 {
3147 int nibble;
3148 int retval = 0;
3149
3150 while (fieldlength)
3151 {
3152 nibble = stubhex (*buff++);
3153 retval |= nibble;
3154 fieldlength--;
3155 if (fieldlength)
3156 retval = retval << 4;
3157 }
3158 return retval;
3159 }
3160
3161 static const char *
3162 unpack_nibble (const char *buf, int *val)
3163 {
3164 *val = fromhex (*buf++);
3165 return buf;
3166 }
3167
3168 static const char *
3169 unpack_byte (const char *buf, int *value)
3170 {
3171 *value = stub_unpack_int (buf, 2);
3172 return buf + 2;
3173 }
3174
3175 static char *
3176 pack_int (char *buf, int value)
3177 {
3178 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3179 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3180 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3181 buf = pack_hex_byte (buf, (value & 0xff));
3182 return buf;
3183 }
3184
3185 static const char *
3186 unpack_int (const char *buf, int *value)
3187 {
3188 *value = stub_unpack_int (buf, 8);
3189 return buf + 8;
3190 }
3191
3192 #if 0 /* Currently unused, uncomment when needed. */
3193 static char *pack_string (char *pkt, char *string);
3194
3195 static char *
3196 pack_string (char *pkt, char *string)
3197 {
3198 char ch;
3199 int len;
3200
3201 len = strlen (string);
3202 if (len > 200)
3203 len = 200; /* Bigger than most GDB packets, junk??? */
3204 pkt = pack_hex_byte (pkt, len);
3205 while (len-- > 0)
3206 {
3207 ch = *string++;
3208 if ((ch == '\0') || (ch == '#'))
3209 ch = '*'; /* Protect encapsulation. */
3210 *pkt++ = ch;
3211 }
3212 return pkt;
3213 }
3214 #endif /* 0 (unused) */
3215
3216 static const char *
3217 unpack_string (const char *src, char *dest, int length)
3218 {
3219 while (length--)
3220 *dest++ = *src++;
3221 *dest = '\0';
3222 return src;
3223 }
3224
3225 static char *
3226 pack_threadid (char *pkt, threadref *id)
3227 {
3228 char *limit;
3229 unsigned char *altid;
3230
3231 altid = (unsigned char *) id;
3232 limit = pkt + BUF_THREAD_ID_SIZE;
3233 while (pkt < limit)
3234 pkt = pack_hex_byte (pkt, *altid++);
3235 return pkt;
3236 }
3237
3238
3239 static const char *
3240 unpack_threadid (const char *inbuf, threadref *id)
3241 {
3242 char *altref;
3243 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
3244 int x, y;
3245
3246 altref = (char *) id;
3247
3248 while (inbuf < limit)
3249 {
3250 x = stubhex (*inbuf++);
3251 y = stubhex (*inbuf++);
3252 *altref++ = (x << 4) | y;
3253 }
3254 return inbuf;
3255 }
3256
3257 /* Externally, threadrefs are 64 bits but internally, they are still
3258 ints. This is due to a mismatch of specifications. We would like
3259 to use 64bit thread references internally. This is an adapter
3260 function. */
3261
3262 void
3263 int_to_threadref (threadref *id, int value)
3264 {
3265 unsigned char *scan;
3266
3267 scan = (unsigned char *) id;
3268 {
3269 int i = 4;
3270 while (i--)
3271 *scan++ = 0;
3272 }
3273 *scan++ = (value >> 24) & 0xff;
3274 *scan++ = (value >> 16) & 0xff;
3275 *scan++ = (value >> 8) & 0xff;
3276 *scan++ = (value & 0xff);
3277 }
3278
3279 static int
3280 threadref_to_int (threadref *ref)
3281 {
3282 int i, value = 0;
3283 unsigned char *scan;
3284
3285 scan = *ref;
3286 scan += 4;
3287 i = 4;
3288 while (i-- > 0)
3289 value = (value << 8) | ((*scan++) & 0xff);
3290 return value;
3291 }
3292
3293 static void
3294 copy_threadref (threadref *dest, threadref *src)
3295 {
3296 int i;
3297 unsigned char *csrc, *cdest;
3298
3299 csrc = (unsigned char *) src;
3300 cdest = (unsigned char *) dest;
3301 i = 8;
3302 while (i--)
3303 *cdest++ = *csrc++;
3304 }
3305
3306 static int
3307 threadmatch (threadref *dest, threadref *src)
3308 {
3309 /* Things are broken right now, so just assume we got a match. */
3310 #if 0
3311 unsigned char *srcp, *destp;
3312 int i, result;
3313 srcp = (char *) src;
3314 destp = (char *) dest;
3315
3316 result = 1;
3317 while (i-- > 0)
3318 result &= (*srcp++ == *destp++) ? 1 : 0;
3319 return result;
3320 #endif
3321 return 1;
3322 }
3323
3324 /*
3325 threadid:1, # always request threadid
3326 context_exists:2,
3327 display:4,
3328 unique_name:8,
3329 more_display:16
3330 */
3331
3332 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3333
3334 static char *
3335 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3336 {
3337 *pkt++ = 'q'; /* Info Query */
3338 *pkt++ = 'P'; /* process or thread info */
3339 pkt = pack_int (pkt, mode); /* mode */
3340 pkt = pack_threadid (pkt, id); /* threadid */
3341 *pkt = '\0'; /* terminate */
3342 return pkt;
3343 }
3344
3345 /* These values tag the fields in a thread info response packet. */
3346 /* Tagging the fields allows us to request specific fields and to
3347 add more fields as time goes by. */
3348
3349 #define TAG_THREADID 1 /* Echo the thread identifier. */
3350 #define TAG_EXISTS 2 /* Is this process defined enough to
3351 fetch registers and its stack? */
3352 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3353 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3354 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3355 the process. */
3356
3357 int
3358 remote_target::remote_unpack_thread_info_response (const char *pkt,
3359 threadref *expectedref,
3360 gdb_ext_thread_info *info)
3361 {
3362 struct remote_state *rs = get_remote_state ();
3363 int mask, length;
3364 int tag;
3365 threadref ref;
3366 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
3367 int retval = 1;
3368
3369 /* info->threadid = 0; FIXME: implement zero_threadref. */
3370 info->active = 0;
3371 info->display[0] = '\0';
3372 info->shortname[0] = '\0';
3373 info->more_display[0] = '\0';
3374
3375 /* Assume the characters indicating the packet type have been
3376 stripped. */
3377 pkt = unpack_int (pkt, &mask); /* arg mask */
3378 pkt = unpack_threadid (pkt, &ref);
3379
3380 if (mask == 0)
3381 warning (_("Incomplete response to threadinfo request."));
3382 if (!threadmatch (&ref, expectedref))
3383 { /* This is an answer to a different request. */
3384 warning (_("ERROR RMT Thread info mismatch."));
3385 return 0;
3386 }
3387 copy_threadref (&info->threadid, &ref);
3388
3389 /* Loop on tagged fields , try to bail if something goes wrong. */
3390
3391 /* Packets are terminated with nulls. */
3392 while ((pkt < limit) && mask && *pkt)
3393 {
3394 pkt = unpack_int (pkt, &tag); /* tag */
3395 pkt = unpack_byte (pkt, &length); /* length */
3396 if (!(tag & mask)) /* Tags out of synch with mask. */
3397 {
3398 warning (_("ERROR RMT: threadinfo tag mismatch."));
3399 retval = 0;
3400 break;
3401 }
3402 if (tag == TAG_THREADID)
3403 {
3404 if (length != 16)
3405 {
3406 warning (_("ERROR RMT: length of threadid is not 16."));
3407 retval = 0;
3408 break;
3409 }
3410 pkt = unpack_threadid (pkt, &ref);
3411 mask = mask & ~TAG_THREADID;
3412 continue;
3413 }
3414 if (tag == TAG_EXISTS)
3415 {
3416 info->active = stub_unpack_int (pkt, length);
3417 pkt += length;
3418 mask = mask & ~(TAG_EXISTS);
3419 if (length > 8)
3420 {
3421 warning (_("ERROR RMT: 'exists' length too long."));
3422 retval = 0;
3423 break;
3424 }
3425 continue;
3426 }
3427 if (tag == TAG_THREADNAME)
3428 {
3429 pkt = unpack_string (pkt, &info->shortname[0], length);
3430 mask = mask & ~TAG_THREADNAME;
3431 continue;
3432 }
3433 if (tag == TAG_DISPLAY)
3434 {
3435 pkt = unpack_string (pkt, &info->display[0], length);
3436 mask = mask & ~TAG_DISPLAY;
3437 continue;
3438 }
3439 if (tag == TAG_MOREDISPLAY)
3440 {
3441 pkt = unpack_string (pkt, &info->more_display[0], length);
3442 mask = mask & ~TAG_MOREDISPLAY;
3443 continue;
3444 }
3445 warning (_("ERROR RMT: unknown thread info tag."));
3446 break; /* Not a tag we know about. */
3447 }
3448 return retval;
3449 }
3450
3451 int
3452 remote_target::remote_get_threadinfo (threadref *threadid,
3453 int fieldset,
3454 gdb_ext_thread_info *info)
3455 {
3456 struct remote_state *rs = get_remote_state ();
3457 int result;
3458
3459 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
3460 putpkt (rs->buf);
3461 getpkt (&rs->buf, 0);
3462
3463 if (rs->buf[0] == '\0')
3464 return 0;
3465
3466 result = remote_unpack_thread_info_response (&rs->buf[2],
3467 threadid, info);
3468 return result;
3469 }
3470
3471 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3472
3473 static char *
3474 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3475 threadref *nextthread)
3476 {
3477 *pkt++ = 'q'; /* info query packet */
3478 *pkt++ = 'L'; /* Process LIST or threadLIST request */
3479 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
3480 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3481 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3482 *pkt = '\0';
3483 return pkt;
3484 }
3485
3486 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3487
3488 int
3489 remote_target::parse_threadlist_response (const char *pkt, int result_limit,
3490 threadref *original_echo,
3491 threadref *resultlist,
3492 int *doneflag)
3493 {
3494 struct remote_state *rs = get_remote_state ();
3495 int count, resultcount, done;
3496
3497 resultcount = 0;
3498 /* Assume the 'q' and 'M chars have been stripped. */
3499 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
3500 /* done parse past here */
3501 pkt = unpack_byte (pkt, &count); /* count field */
3502 pkt = unpack_nibble (pkt, &done);
3503 /* The first threadid is the argument threadid. */
3504 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3505 while ((count-- > 0) && (pkt < limit))
3506 {
3507 pkt = unpack_threadid (pkt, resultlist++);
3508 if (resultcount++ >= result_limit)
3509 break;
3510 }
3511 if (doneflag)
3512 *doneflag = done;
3513 return resultcount;
3514 }
3515
3516 /* Fetch the next batch of threads from the remote. Returns -1 if the
3517 qL packet is not supported, 0 on error and 1 on success. */
3518
3519 int
3520 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3521 int result_limit, int *done, int *result_count,
3522 threadref *threadlist)
3523 {
3524 struct remote_state *rs = get_remote_state ();
3525 int result = 1;
3526
3527 /* Truncate result limit to be smaller than the packet size. */
3528 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3529 >= get_remote_packet_size ())
3530 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3531
3532 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3533 nextthread);
3534 putpkt (rs->buf);
3535 getpkt (&rs->buf, 0);
3536 if (rs->buf[0] == '\0')
3537 {
3538 /* Packet not supported. */
3539 return -1;
3540 }
3541
3542 *result_count =
3543 parse_threadlist_response (&rs->buf[2], result_limit,
3544 &rs->echo_nextthread, threadlist, done);
3545
3546 if (!threadmatch (&rs->echo_nextthread, nextthread))
3547 {
3548 /* FIXME: This is a good reason to drop the packet. */
3549 /* Possibly, there is a duplicate response. */
3550 /* Possibilities :
3551 retransmit immediatly - race conditions
3552 retransmit after timeout - yes
3553 exit
3554 wait for packet, then exit
3555 */
3556 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3557 return 0; /* I choose simply exiting. */
3558 }
3559 if (*result_count <= 0)
3560 {
3561 if (*done != 1)
3562 {
3563 warning (_("RMT ERROR : failed to get remote thread list."));
3564 result = 0;
3565 }
3566 return result; /* break; */
3567 }
3568 if (*result_count > result_limit)
3569 {
3570 *result_count = 0;
3571 warning (_("RMT ERROR: threadlist response longer than requested."));
3572 return 0;
3573 }
3574 return result;
3575 }
3576
3577 /* Fetch the list of remote threads, with the qL packet, and call
3578 STEPFUNCTION for each thread found. Stops iterating and returns 1
3579 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3580 STEPFUNCTION returns false. If the packet is not supported,
3581 returns -1. */
3582
3583 int
3584 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3585 void *context, int looplimit)
3586 {
3587 struct remote_state *rs = get_remote_state ();
3588 int done, i, result_count;
3589 int startflag = 1;
3590 int result = 1;
3591 int loopcount = 0;
3592
3593 done = 0;
3594 while (!done)
3595 {
3596 if (loopcount++ > looplimit)
3597 {
3598 result = 0;
3599 warning (_("Remote fetch threadlist -infinite loop-."));
3600 break;
3601 }
3602 result = remote_get_threadlist (startflag, &rs->nextthread,
3603 MAXTHREADLISTRESULTS,
3604 &done, &result_count,
3605 rs->resultthreadlist);
3606 if (result <= 0)
3607 break;
3608 /* Clear for later iterations. */
3609 startflag = 0;
3610 /* Setup to resume next batch of thread references, set nextthread. */
3611 if (result_count >= 1)
3612 copy_threadref (&rs->nextthread,
3613 &rs->resultthreadlist[result_count - 1]);
3614 i = 0;
3615 while (result_count--)
3616 {
3617 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3618 {
3619 result = 0;
3620 break;
3621 }
3622 }
3623 }
3624 return result;
3625 }
3626
3627 /* A thread found on the remote target. */
3628
3629 struct thread_item
3630 {
3631 explicit thread_item (ptid_t ptid_)
3632 : ptid (ptid_)
3633 {}
3634
3635 thread_item (thread_item &&other) = default;
3636 thread_item &operator= (thread_item &&other) = default;
3637
3638 DISABLE_COPY_AND_ASSIGN (thread_item);
3639
3640 /* The thread's PTID. */
3641 ptid_t ptid;
3642
3643 /* The thread's extra info. */
3644 std::string extra;
3645
3646 /* The thread's name. */
3647 std::string name;
3648
3649 /* The core the thread was running on. -1 if not known. */
3650 int core = -1;
3651
3652 /* The thread handle associated with the thread. */
3653 gdb::byte_vector thread_handle;
3654 };
3655
3656 /* Context passed around to the various methods listing remote
3657 threads. As new threads are found, they're added to the ITEMS
3658 vector. */
3659
3660 struct threads_listing_context
3661 {
3662 /* Return true if this object contains an entry for a thread with ptid
3663 PTID. */
3664
3665 bool contains_thread (ptid_t ptid) const
3666 {
3667 auto match_ptid = [&] (const thread_item &item)
3668 {
3669 return item.ptid == ptid;
3670 };
3671
3672 auto it = std::find_if (this->items.begin (),
3673 this->items.end (),
3674 match_ptid);
3675
3676 return it != this->items.end ();
3677 }
3678
3679 /* Remove the thread with ptid PTID. */
3680
3681 void remove_thread (ptid_t ptid)
3682 {
3683 auto match_ptid = [&] (const thread_item &item)
3684 {
3685 return item.ptid == ptid;
3686 };
3687
3688 auto it = std::remove_if (this->items.begin (),
3689 this->items.end (),
3690 match_ptid);
3691
3692 if (it != this->items.end ())
3693 this->items.erase (it);
3694 }
3695
3696 /* The threads found on the remote target. */
3697 std::vector<thread_item> items;
3698 };
3699
3700 static int
3701 remote_newthread_step (threadref *ref, void *data)
3702 {
3703 struct threads_listing_context *context
3704 = (struct threads_listing_context *) data;
3705 int pid = inferior_ptid.pid ();
3706 int lwp = threadref_to_int (ref);
3707 ptid_t ptid (pid, lwp);
3708
3709 context->items.emplace_back (ptid);
3710
3711 return 1; /* continue iterator */
3712 }
3713
3714 #define CRAZY_MAX_THREADS 1000
3715
3716 ptid_t
3717 remote_target::remote_current_thread (ptid_t oldpid)
3718 {
3719 struct remote_state *rs = get_remote_state ();
3720
3721 putpkt ("qC");
3722 getpkt (&rs->buf, 0);
3723 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3724 {
3725 const char *obuf;
3726 ptid_t result;
3727
3728 result = read_ptid (&rs->buf[2], &obuf);
3729 if (*obuf != '\0')
3730 remote_debug_printf ("warning: garbage in qC reply");
3731
3732 return result;
3733 }
3734 else
3735 return oldpid;
3736 }
3737
3738 /* List remote threads using the deprecated qL packet. */
3739
3740 int
3741 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3742 {
3743 if (remote_threadlist_iterator (remote_newthread_step, context,
3744 CRAZY_MAX_THREADS) >= 0)
3745 return 1;
3746
3747 return 0;
3748 }
3749
3750 #if defined(HAVE_LIBEXPAT)
3751
3752 static void
3753 start_thread (struct gdb_xml_parser *parser,
3754 const struct gdb_xml_element *element,
3755 void *user_data,
3756 std::vector<gdb_xml_value> &attributes)
3757 {
3758 struct threads_listing_context *data
3759 = (struct threads_listing_context *) user_data;
3760 struct gdb_xml_value *attr;
3761
3762 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3763 ptid_t ptid = read_ptid (id, NULL);
3764
3765 data->items.emplace_back (ptid);
3766 thread_item &item = data->items.back ();
3767
3768 attr = xml_find_attribute (attributes, "core");
3769 if (attr != NULL)
3770 item.core = *(ULONGEST *) attr->value.get ();
3771
3772 attr = xml_find_attribute (attributes, "name");
3773 if (attr != NULL)
3774 item.name = (const char *) attr->value.get ();
3775
3776 attr = xml_find_attribute (attributes, "handle");
3777 if (attr != NULL)
3778 item.thread_handle = hex2bin ((const char *) attr->value.get ());
3779 }
3780
3781 static void
3782 end_thread (struct gdb_xml_parser *parser,
3783 const struct gdb_xml_element *element,
3784 void *user_data, const char *body_text)
3785 {
3786 struct threads_listing_context *data
3787 = (struct threads_listing_context *) user_data;
3788
3789 if (body_text != NULL && *body_text != '\0')
3790 data->items.back ().extra = body_text;
3791 }
3792
3793 const struct gdb_xml_attribute thread_attributes[] = {
3794 { "id", GDB_XML_AF_NONE, NULL, NULL },
3795 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3796 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3797 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3798 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3799 };
3800
3801 const struct gdb_xml_element thread_children[] = {
3802 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3803 };
3804
3805 const struct gdb_xml_element threads_children[] = {
3806 { "thread", thread_attributes, thread_children,
3807 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3808 start_thread, end_thread },
3809 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3810 };
3811
3812 const struct gdb_xml_element threads_elements[] = {
3813 { "threads", NULL, threads_children,
3814 GDB_XML_EF_NONE, NULL, NULL },
3815 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3816 };
3817
3818 #endif
3819
3820 /* List remote threads using qXfer:threads:read. */
3821
3822 int
3823 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3824 {
3825 #if defined(HAVE_LIBEXPAT)
3826 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3827 {
3828 gdb::optional<gdb::char_vector> xml
3829 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3830
3831 if (xml && (*xml)[0] != '\0')
3832 {
3833 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3834 threads_elements, xml->data (), context);
3835 }
3836
3837 return 1;
3838 }
3839 #endif
3840
3841 return 0;
3842 }
3843
3844 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3845
3846 int
3847 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3848 {
3849 struct remote_state *rs = get_remote_state ();
3850
3851 if (rs->use_threadinfo_query)
3852 {
3853 const char *bufp;
3854
3855 putpkt ("qfThreadInfo");
3856 getpkt (&rs->buf, 0);
3857 bufp = rs->buf.data ();
3858 if (bufp[0] != '\0') /* q packet recognized */
3859 {
3860 while (*bufp++ == 'm') /* reply contains one or more TID */
3861 {
3862 do
3863 {
3864 ptid_t ptid = read_ptid (bufp, &bufp);
3865 context->items.emplace_back (ptid);
3866 }
3867 while (*bufp++ == ','); /* comma-separated list */
3868 putpkt ("qsThreadInfo");
3869 getpkt (&rs->buf, 0);
3870 bufp = rs->buf.data ();
3871 }
3872 return 1;
3873 }
3874 else
3875 {
3876 /* Packet not recognized. */
3877 rs->use_threadinfo_query = 0;
3878 }
3879 }
3880
3881 return 0;
3882 }
3883
3884 /* Return true if INF only has one non-exited thread. */
3885
3886 static bool
3887 has_single_non_exited_thread (inferior *inf)
3888 {
3889 int count = 0;
3890 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3891 if (++count > 1)
3892 break;
3893 return count == 1;
3894 }
3895
3896 /* Implement the to_update_thread_list function for the remote
3897 targets. */
3898
3899 void
3900 remote_target::update_thread_list ()
3901 {
3902 struct threads_listing_context context;
3903 int got_list = 0;
3904
3905 /* We have a few different mechanisms to fetch the thread list. Try
3906 them all, starting with the most preferred one first, falling
3907 back to older methods. */
3908 if (remote_get_threads_with_qxfer (&context)
3909 || remote_get_threads_with_qthreadinfo (&context)
3910 || remote_get_threads_with_ql (&context))
3911 {
3912 got_list = 1;
3913
3914 if (context.items.empty ()
3915 && remote_thread_always_alive (inferior_ptid))
3916 {
3917 /* Some targets don't really support threads, but still
3918 reply an (empty) thread list in response to the thread
3919 listing packets, instead of replying "packet not
3920 supported". Exit early so we don't delete the main
3921 thread. */
3922 return;
3923 }
3924
3925 /* CONTEXT now holds the current thread list on the remote
3926 target end. Delete GDB-side threads no longer found on the
3927 target. */
3928 for (thread_info *tp : all_threads_safe ())
3929 {
3930 if (tp->inf->process_target () != this)
3931 continue;
3932
3933 if (!context.contains_thread (tp->ptid))
3934 {
3935 /* Do not remove the thread if it is the last thread in
3936 the inferior. This situation happens when we have a
3937 pending exit process status to process. Otherwise we
3938 may end up with a seemingly live inferior (i.e. pid
3939 != 0) that has no threads. */
3940 if (has_single_non_exited_thread (tp->inf))
3941 continue;
3942
3943 /* Not found. */
3944 delete_thread (tp);
3945 }
3946 }
3947
3948 /* Remove any unreported fork child threads from CONTEXT so
3949 that we don't interfere with follow fork, which is where
3950 creation of such threads is handled. */
3951 remove_new_fork_children (&context);
3952
3953 /* And now add threads we don't know about yet to our list. */
3954 for (thread_item &item : context.items)
3955 {
3956 if (item.ptid != null_ptid)
3957 {
3958 /* In non-stop mode, we assume new found threads are
3959 executing until proven otherwise with a stop reply.
3960 In all-stop, we can only get here if all threads are
3961 stopped. */
3962 bool executing = target_is_non_stop_p ();
3963
3964 remote_notice_new_inferior (item.ptid, executing);
3965
3966 thread_info *tp = find_thread_ptid (this, item.ptid);
3967 remote_thread_info *info = get_remote_thread_info (tp);
3968 info->core = item.core;
3969 info->extra = std::move (item.extra);
3970 info->name = std::move (item.name);
3971 info->thread_handle = std::move (item.thread_handle);
3972 }
3973 }
3974 }
3975
3976 if (!got_list)
3977 {
3978 /* If no thread listing method is supported, then query whether
3979 each known thread is alive, one by one, with the T packet.
3980 If the target doesn't support threads at all, then this is a
3981 no-op. See remote_thread_alive. */
3982 prune_threads ();
3983 }
3984 }
3985
3986 /*
3987 * Collect a descriptive string about the given thread.
3988 * The target may say anything it wants to about the thread
3989 * (typically info about its blocked / runnable state, name, etc.).
3990 * This string will appear in the info threads display.
3991 *
3992 * Optional: targets are not required to implement this function.
3993 */
3994
3995 const char *
3996 remote_target::extra_thread_info (thread_info *tp)
3997 {
3998 struct remote_state *rs = get_remote_state ();
3999 int set;
4000 threadref id;
4001 struct gdb_ext_thread_info threadinfo;
4002
4003 if (rs->remote_desc == 0) /* paranoia */
4004 internal_error (__FILE__, __LINE__,
4005 _("remote_threads_extra_info"));
4006
4007 if (tp->ptid == magic_null_ptid
4008 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
4009 /* This is the main thread which was added by GDB. The remote
4010 server doesn't know about it. */
4011 return NULL;
4012
4013 std::string &extra = get_remote_thread_info (tp)->extra;
4014
4015 /* If already have cached info, use it. */
4016 if (!extra.empty ())
4017 return extra.c_str ();
4018
4019 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
4020 {
4021 /* If we're using qXfer:threads:read, then the extra info is
4022 included in the XML. So if we didn't have anything cached,
4023 it's because there's really no extra info. */
4024 return NULL;
4025 }
4026
4027 if (rs->use_threadextra_query)
4028 {
4029 char *b = rs->buf.data ();
4030 char *endb = b + get_remote_packet_size ();
4031
4032 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4033 b += strlen (b);
4034 write_ptid (b, endb, tp->ptid);
4035
4036 putpkt (rs->buf);
4037 getpkt (&rs->buf, 0);
4038 if (rs->buf[0] != 0)
4039 {
4040 extra.resize (strlen (rs->buf.data ()) / 2);
4041 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
4042 return extra.c_str ();
4043 }
4044 }
4045
4046 /* If the above query fails, fall back to the old method. */
4047 rs->use_threadextra_query = 0;
4048 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4049 | TAG_MOREDISPLAY | TAG_DISPLAY;
4050 int_to_threadref (&id, tp->ptid.lwp ());
4051 if (remote_get_threadinfo (&id, set, &threadinfo))
4052 if (threadinfo.active)
4053 {
4054 if (*threadinfo.shortname)
4055 string_appendf (extra, " Name: %s", threadinfo.shortname);
4056 if (*threadinfo.display)
4057 {
4058 if (!extra.empty ())
4059 extra += ',';
4060 string_appendf (extra, " State: %s", threadinfo.display);
4061 }
4062 if (*threadinfo.more_display)
4063 {
4064 if (!extra.empty ())
4065 extra += ',';
4066 string_appendf (extra, " Priority: %s", threadinfo.more_display);
4067 }
4068 return extra.c_str ();
4069 }
4070 return NULL;
4071 }
4072 \f
4073
4074 bool
4075 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4076 struct static_tracepoint_marker *marker)
4077 {
4078 struct remote_state *rs = get_remote_state ();
4079 char *p = rs->buf.data ();
4080
4081 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
4082 p += strlen (p);
4083 p += hexnumstr (p, addr);
4084 putpkt (rs->buf);
4085 getpkt (&rs->buf, 0);
4086 p = rs->buf.data ();
4087
4088 if (*p == 'E')
4089 error (_("Remote failure reply: %s"), p);
4090
4091 if (*p++ == 'm')
4092 {
4093 parse_static_tracepoint_marker_definition (p, NULL, marker);
4094 return true;
4095 }
4096
4097 return false;
4098 }
4099
4100 std::vector<static_tracepoint_marker>
4101 remote_target::static_tracepoint_markers_by_strid (const char *strid)
4102 {
4103 struct remote_state *rs = get_remote_state ();
4104 std::vector<static_tracepoint_marker> markers;
4105 const char *p;
4106 static_tracepoint_marker marker;
4107
4108 /* Ask for a first packet of static tracepoint marker
4109 definition. */
4110 putpkt ("qTfSTM");
4111 getpkt (&rs->buf, 0);
4112 p = rs->buf.data ();
4113 if (*p == 'E')
4114 error (_("Remote failure reply: %s"), p);
4115
4116 while (*p++ == 'm')
4117 {
4118 do
4119 {
4120 parse_static_tracepoint_marker_definition (p, &p, &marker);
4121
4122 if (strid == NULL || marker.str_id == strid)
4123 markers.push_back (std::move (marker));
4124 }
4125 while (*p++ == ','); /* comma-separated list */
4126 /* Ask for another packet of static tracepoint definition. */
4127 putpkt ("qTsSTM");
4128 getpkt (&rs->buf, 0);
4129 p = rs->buf.data ();
4130 }
4131
4132 return markers;
4133 }
4134
4135 \f
4136 /* Implement the to_get_ada_task_ptid function for the remote targets. */
4137
4138 ptid_t
4139 remote_target::get_ada_task_ptid (long lwp, ULONGEST thread)
4140 {
4141 return ptid_t (inferior_ptid.pid (), lwp);
4142 }
4143 \f
4144
4145 /* Restart the remote side; this is an extended protocol operation. */
4146
4147 void
4148 remote_target::extended_remote_restart ()
4149 {
4150 struct remote_state *rs = get_remote_state ();
4151
4152 /* Send the restart command; for reasons I don't understand the
4153 remote side really expects a number after the "R". */
4154 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
4155 putpkt (rs->buf);
4156
4157 remote_fileio_reset ();
4158 }
4159 \f
4160 /* Clean up connection to a remote debugger. */
4161
4162 void
4163 remote_target::close ()
4164 {
4165 /* Make sure we leave stdin registered in the event loop. */
4166 terminal_ours ();
4167
4168 trace_reset_local_state ();
4169
4170 delete this;
4171 }
4172
4173 remote_target::~remote_target ()
4174 {
4175 struct remote_state *rs = get_remote_state ();
4176
4177 /* Check for NULL because we may get here with a partially
4178 constructed target/connection. */
4179 if (rs->remote_desc == nullptr)
4180 return;
4181
4182 serial_close (rs->remote_desc);
4183
4184 /* We are destroying the remote target, so we should discard
4185 everything of this target. */
4186 discard_pending_stop_replies_in_queue ();
4187
4188 if (rs->remote_async_inferior_event_token)
4189 delete_async_event_handler (&rs->remote_async_inferior_event_token);
4190
4191 delete rs->notif_state;
4192 }
4193
4194 /* Query the remote side for the text, data and bss offsets. */
4195
4196 void
4197 remote_target::get_offsets ()
4198 {
4199 struct remote_state *rs = get_remote_state ();
4200 char *buf;
4201 char *ptr;
4202 int lose, num_segments = 0, do_sections, do_segments;
4203 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4204
4205 if (current_program_space->symfile_object_file == NULL)
4206 return;
4207
4208 putpkt ("qOffsets");
4209 getpkt (&rs->buf, 0);
4210 buf = rs->buf.data ();
4211
4212 if (buf[0] == '\000')
4213 return; /* Return silently. Stub doesn't support
4214 this command. */
4215 if (buf[0] == 'E')
4216 {
4217 warning (_("Remote failure reply: %s"), buf);
4218 return;
4219 }
4220
4221 /* Pick up each field in turn. This used to be done with scanf, but
4222 scanf will make trouble if CORE_ADDR size doesn't match
4223 conversion directives correctly. The following code will work
4224 with any size of CORE_ADDR. */
4225 text_addr = data_addr = bss_addr = 0;
4226 ptr = buf;
4227 lose = 0;
4228
4229 if (startswith (ptr, "Text="))
4230 {
4231 ptr += 5;
4232 /* Don't use strtol, could lose on big values. */
4233 while (*ptr && *ptr != ';')
4234 text_addr = (text_addr << 4) + fromhex (*ptr++);
4235
4236 if (startswith (ptr, ";Data="))
4237 {
4238 ptr += 6;
4239 while (*ptr && *ptr != ';')
4240 data_addr = (data_addr << 4) + fromhex (*ptr++);
4241 }
4242 else
4243 lose = 1;
4244
4245 if (!lose && startswith (ptr, ";Bss="))
4246 {
4247 ptr += 5;
4248 while (*ptr && *ptr != ';')
4249 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4250
4251 if (bss_addr != data_addr)
4252 warning (_("Target reported unsupported offsets: %s"), buf);
4253 }
4254 else
4255 lose = 1;
4256 }
4257 else if (startswith (ptr, "TextSeg="))
4258 {
4259 ptr += 8;
4260 /* Don't use strtol, could lose on big values. */
4261 while (*ptr && *ptr != ';')
4262 text_addr = (text_addr << 4) + fromhex (*ptr++);
4263 num_segments = 1;
4264
4265 if (startswith (ptr, ";DataSeg="))
4266 {
4267 ptr += 9;
4268 while (*ptr && *ptr != ';')
4269 data_addr = (data_addr << 4) + fromhex (*ptr++);
4270 num_segments++;
4271 }
4272 }
4273 else
4274 lose = 1;
4275
4276 if (lose)
4277 error (_("Malformed response to offset query, %s"), buf);
4278 else if (*ptr != '\0')
4279 warning (_("Target reported unsupported offsets: %s"), buf);
4280
4281 objfile *objf = current_program_space->symfile_object_file;
4282 section_offsets offs = objf->section_offsets;
4283
4284 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
4285 do_segments = (data != NULL);
4286 do_sections = num_segments == 0;
4287
4288 if (num_segments > 0)
4289 {
4290 segments[0] = text_addr;
4291 segments[1] = data_addr;
4292 }
4293 /* If we have two segments, we can still try to relocate everything
4294 by assuming that the .text and .data offsets apply to the whole
4295 text and data segments. Convert the offsets given in the packet
4296 to base addresses for symfile_map_offsets_to_segments. */
4297 else if (data != nullptr && data->segments.size () == 2)
4298 {
4299 segments[0] = data->segments[0].base + text_addr;
4300 segments[1] = data->segments[1].base + data_addr;
4301 num_segments = 2;
4302 }
4303 /* If the object file has only one segment, assume that it is text
4304 rather than data; main programs with no writable data are rare,
4305 but programs with no code are useless. Of course the code might
4306 have ended up in the data segment... to detect that we would need
4307 the permissions here. */
4308 else if (data && data->segments.size () == 1)
4309 {
4310 segments[0] = data->segments[0].base + text_addr;
4311 num_segments = 1;
4312 }
4313 /* There's no way to relocate by segment. */
4314 else
4315 do_segments = 0;
4316
4317 if (do_segments)
4318 {
4319 int ret = symfile_map_offsets_to_segments (objf->obfd,
4320 data.get (), offs,
4321 num_segments, segments);
4322
4323 if (ret == 0 && !do_sections)
4324 error (_("Can not handle qOffsets TextSeg "
4325 "response with this symbol file"));
4326
4327 if (ret > 0)
4328 do_sections = 0;
4329 }
4330
4331 if (do_sections)
4332 {
4333 offs[SECT_OFF_TEXT (objf)] = text_addr;
4334
4335 /* This is a temporary kludge to force data and bss to use the
4336 same offsets because that's what nlmconv does now. The real
4337 solution requires changes to the stub and remote.c that I
4338 don't have time to do right now. */
4339
4340 offs[SECT_OFF_DATA (objf)] = data_addr;
4341 offs[SECT_OFF_BSS (objf)] = data_addr;
4342 }
4343
4344 objfile_relocate (objf, offs);
4345 }
4346
4347 /* Send interrupt_sequence to remote target. */
4348
4349 void
4350 remote_target::send_interrupt_sequence ()
4351 {
4352 struct remote_state *rs = get_remote_state ();
4353
4354 if (interrupt_sequence_mode == interrupt_sequence_control_c)
4355 remote_serial_write ("\x03", 1);
4356 else if (interrupt_sequence_mode == interrupt_sequence_break)
4357 serial_send_break (rs->remote_desc);
4358 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4359 {
4360 serial_send_break (rs->remote_desc);
4361 remote_serial_write ("g", 1);
4362 }
4363 else
4364 internal_error (__FILE__, __LINE__,
4365 _("Invalid value for interrupt_sequence_mode: %s."),
4366 interrupt_sequence_mode);
4367 }
4368
4369
4370 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4371 and extract the PTID. Returns NULL_PTID if not found. */
4372
4373 static ptid_t
4374 stop_reply_extract_thread (const char *stop_reply)
4375 {
4376 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4377 {
4378 const char *p;
4379
4380 /* Txx r:val ; r:val (...) */
4381 p = &stop_reply[3];
4382
4383 /* Look for "register" named "thread". */
4384 while (*p != '\0')
4385 {
4386 const char *p1;
4387
4388 p1 = strchr (p, ':');
4389 if (p1 == NULL)
4390 return null_ptid;
4391
4392 if (strncmp (p, "thread", p1 - p) == 0)
4393 return read_ptid (++p1, &p);
4394
4395 p1 = strchr (p, ';');
4396 if (p1 == NULL)
4397 return null_ptid;
4398 p1++;
4399
4400 p = p1;
4401 }
4402 }
4403
4404 return null_ptid;
4405 }
4406
4407 /* Determine the remote side's current thread. If we have a stop
4408 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4409 "thread" register we can extract the current thread from. If not,
4410 ask the remote which is the current thread with qC. The former
4411 method avoids a roundtrip. */
4412
4413 ptid_t
4414 remote_target::get_current_thread (const char *wait_status)
4415 {
4416 ptid_t ptid = null_ptid;
4417
4418 /* Note we don't use remote_parse_stop_reply as that makes use of
4419 the target architecture, which we haven't yet fully determined at
4420 this point. */
4421 if (wait_status != NULL)
4422 ptid = stop_reply_extract_thread (wait_status);
4423 if (ptid == null_ptid)
4424 ptid = remote_current_thread (inferior_ptid);
4425
4426 return ptid;
4427 }
4428
4429 /* Query the remote target for which is the current thread/process,
4430 add it to our tables, and update INFERIOR_PTID. The caller is
4431 responsible for setting the state such that the remote end is ready
4432 to return the current thread.
4433
4434 This function is called after handling the '?' or 'vRun' packets,
4435 whose response is a stop reply from which we can also try
4436 extracting the thread. If the target doesn't support the explicit
4437 qC query, we infer the current thread from that stop reply, passed
4438 in in WAIT_STATUS, which may be NULL.
4439
4440 The function returns pointer to the main thread of the inferior. */
4441
4442 thread_info *
4443 remote_target::add_current_inferior_and_thread (const char *wait_status)
4444 {
4445 struct remote_state *rs = get_remote_state ();
4446 bool fake_pid_p = false;
4447
4448 switch_to_no_thread ();
4449
4450 /* Now, if we have thread information, update the current thread's
4451 ptid. */
4452 ptid_t curr_ptid = get_current_thread (wait_status);
4453
4454 if (curr_ptid != null_ptid)
4455 {
4456 if (!remote_multi_process_p (rs))
4457 fake_pid_p = true;
4458 }
4459 else
4460 {
4461 /* Without this, some commands which require an active target
4462 (such as kill) won't work. This variable serves (at least)
4463 double duty as both the pid of the target process (if it has
4464 such), and as a flag indicating that a target is active. */
4465 curr_ptid = magic_null_ptid;
4466 fake_pid_p = true;
4467 }
4468
4469 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4470
4471 /* Add the main thread and switch to it. Don't try reading
4472 registers yet, since we haven't fetched the target description
4473 yet. */
4474 thread_info *tp = add_thread_silent (this, curr_ptid);
4475 switch_to_thread_no_regs (tp);
4476
4477 return tp;
4478 }
4479
4480 /* Print info about a thread that was found already stopped on
4481 connection. */
4482
4483 void
4484 remote_target::print_one_stopped_thread (thread_info *thread)
4485 {
4486 target_waitstatus ws;
4487
4488 /* If there is a pending waitstatus, use it. If there isn't it's because
4489 the thread's stop was reported with TARGET_WAITKIND_STOPPED / GDB_SIGNAL_0
4490 and process_initial_stop_replies decided it wasn't interesting to save
4491 and report to the core. */
4492 if (thread->has_pending_waitstatus ())
4493 {
4494 ws = thread->pending_waitstatus ();
4495 thread->clear_pending_waitstatus ();
4496 }
4497 else
4498 {
4499 ws.kind = TARGET_WAITKIND_STOPPED;
4500 ws.value.sig = GDB_SIGNAL_0;
4501 }
4502
4503 switch_to_thread (thread);
4504 thread->set_stop_pc (get_frame_pc (get_current_frame ()));
4505 set_current_sal_from_frame (get_current_frame ());
4506
4507 /* For "info program". */
4508 set_last_target_status (this, thread->ptid, ws);
4509
4510 if (ws.kind == TARGET_WAITKIND_STOPPED)
4511 {
4512 enum gdb_signal sig = ws.value.sig;
4513
4514 if (signal_print_state (sig))
4515 gdb::observers::signal_received.notify (sig);
4516 }
4517 gdb::observers::normal_stop.notify (NULL, 1);
4518 }
4519
4520 /* Process all initial stop replies the remote side sent in response
4521 to the ? packet. These indicate threads that were already stopped
4522 on initial connection. We mark these threads as stopped and print
4523 their current frame before giving the user the prompt. */
4524
4525 void
4526 remote_target::process_initial_stop_replies (int from_tty)
4527 {
4528 int pending_stop_replies = stop_reply_queue_length ();
4529 struct thread_info *selected = NULL;
4530 struct thread_info *lowest_stopped = NULL;
4531 struct thread_info *first = NULL;
4532
4533 /* This is only used when the target is non-stop. */
4534 gdb_assert (target_is_non_stop_p ());
4535
4536 /* Consume the initial pending events. */
4537 while (pending_stop_replies-- > 0)
4538 {
4539 ptid_t waiton_ptid = minus_one_ptid;
4540 ptid_t event_ptid;
4541 struct target_waitstatus ws;
4542 int ignore_event = 0;
4543
4544 memset (&ws, 0, sizeof (ws));
4545 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4546 if (remote_debug)
4547 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4548
4549 switch (ws.kind)
4550 {
4551 case TARGET_WAITKIND_IGNORE:
4552 case TARGET_WAITKIND_NO_RESUMED:
4553 case TARGET_WAITKIND_SIGNALLED:
4554 case TARGET_WAITKIND_EXITED:
4555 /* We shouldn't see these, but if we do, just ignore. */
4556 remote_debug_printf ("event ignored");
4557 ignore_event = 1;
4558 break;
4559
4560 case TARGET_WAITKIND_EXECD:
4561 xfree (ws.value.execd_pathname);
4562 break;
4563 default:
4564 break;
4565 }
4566
4567 if (ignore_event)
4568 continue;
4569
4570 thread_info *evthread = find_thread_ptid (this, event_ptid);
4571
4572 if (ws.kind == TARGET_WAITKIND_STOPPED)
4573 {
4574 enum gdb_signal sig = ws.value.sig;
4575
4576 /* Stubs traditionally report SIGTRAP as initial signal,
4577 instead of signal 0. Suppress it. */
4578 if (sig == GDB_SIGNAL_TRAP)
4579 sig = GDB_SIGNAL_0;
4580 evthread->set_stop_signal (sig);
4581 ws.value.sig = sig;
4582 }
4583
4584 if (ws.kind != TARGET_WAITKIND_STOPPED
4585 || ws.value.sig != GDB_SIGNAL_0)
4586 evthread->set_pending_waitstatus (ws);
4587
4588 set_executing (this, event_ptid, false);
4589 set_running (this, event_ptid, false);
4590 get_remote_thread_info (evthread)->set_not_resumed ();
4591 }
4592
4593 /* "Notice" the new inferiors before anything related to
4594 registers/memory. */
4595 for (inferior *inf : all_non_exited_inferiors (this))
4596 {
4597 inf->needs_setup = 1;
4598
4599 if (non_stop)
4600 {
4601 thread_info *thread = any_live_thread_of_inferior (inf);
4602 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
4603 from_tty);
4604 }
4605 }
4606
4607 /* If all-stop on top of non-stop, pause all threads. Note this
4608 records the threads' stop pc, so must be done after "noticing"
4609 the inferiors. */
4610 if (!non_stop)
4611 {
4612 {
4613 /* At this point, the remote target is not async. It needs to be for
4614 the poll in stop_all_threads to consider events from it, so enable
4615 it temporarily. */
4616 gdb_assert (!this->is_async_p ());
4617 SCOPE_EXIT { target_async (0); };
4618 target_async (1);
4619 stop_all_threads ();
4620 }
4621
4622 /* If all threads of an inferior were already stopped, we
4623 haven't setup the inferior yet. */
4624 for (inferior *inf : all_non_exited_inferiors (this))
4625 {
4626 if (inf->needs_setup)
4627 {
4628 thread_info *thread = any_live_thread_of_inferior (inf);
4629 switch_to_thread_no_regs (thread);
4630 setup_inferior (0);
4631 }
4632 }
4633 }
4634
4635 /* Now go over all threads that are stopped, and print their current
4636 frame. If all-stop, then if there's a signalled thread, pick
4637 that as current. */
4638 for (thread_info *thread : all_non_exited_threads (this))
4639 {
4640 if (first == NULL)
4641 first = thread;
4642
4643 if (!non_stop)
4644 thread->set_running (false);
4645 else if (thread->state != THREAD_STOPPED)
4646 continue;
4647
4648 if (selected == nullptr && thread->has_pending_waitstatus ())
4649 selected = thread;
4650
4651 if (lowest_stopped == NULL
4652 || thread->inf->num < lowest_stopped->inf->num
4653 || thread->per_inf_num < lowest_stopped->per_inf_num)
4654 lowest_stopped = thread;
4655
4656 if (non_stop)
4657 print_one_stopped_thread (thread);
4658 }
4659
4660 /* In all-stop, we only print the status of one thread, and leave
4661 others with their status pending. */
4662 if (!non_stop)
4663 {
4664 thread_info *thread = selected;
4665 if (thread == NULL)
4666 thread = lowest_stopped;
4667 if (thread == NULL)
4668 thread = first;
4669
4670 print_one_stopped_thread (thread);
4671 }
4672 }
4673
4674 /* Start the remote connection and sync state. */
4675
4676 void
4677 remote_target::start_remote (int from_tty, int extended_p)
4678 {
4679 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
4680
4681 struct remote_state *rs = get_remote_state ();
4682 struct packet_config *noack_config;
4683
4684 /* Signal other parts that we're going through the initial setup,
4685 and so things may not be stable yet. E.g., we don't try to
4686 install tracepoints until we've relocated symbols. Also, a
4687 Ctrl-C before we're connected and synced up can't interrupt the
4688 target. Instead, it offers to drop the (potentially wedged)
4689 connection. */
4690 rs->starting_up = true;
4691
4692 QUIT;
4693
4694 if (interrupt_on_connect)
4695 send_interrupt_sequence ();
4696
4697 /* Ack any packet which the remote side has already sent. */
4698 remote_serial_write ("+", 1);
4699
4700 /* The first packet we send to the target is the optional "supported
4701 packets" request. If the target can answer this, it will tell us
4702 which later probes to skip. */
4703 remote_query_supported ();
4704
4705 /* If the stub wants to get a QAllow, compose one and send it. */
4706 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4707 set_permissions ();
4708
4709 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4710 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4711 as a reply to known packet. For packet "vFile:setfs:" it is an
4712 invalid reply and GDB would return error in
4713 remote_hostio_set_filesystem, making remote files access impossible.
4714 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4715 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4716 {
4717 const char v_mustreplyempty[] = "vMustReplyEmpty";
4718
4719 putpkt (v_mustreplyempty);
4720 getpkt (&rs->buf, 0);
4721 if (strcmp (rs->buf.data (), "OK") == 0)
4722 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4723 else if (strcmp (rs->buf.data (), "") != 0)
4724 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4725 rs->buf.data ());
4726 }
4727
4728 /* Next, we possibly activate noack mode.
4729
4730 If the QStartNoAckMode packet configuration is set to AUTO,
4731 enable noack mode if the stub reported a wish for it with
4732 qSupported.
4733
4734 If set to TRUE, then enable noack mode even if the stub didn't
4735 report it in qSupported. If the stub doesn't reply OK, the
4736 session ends with an error.
4737
4738 If FALSE, then don't activate noack mode, regardless of what the
4739 stub claimed should be the default with qSupported. */
4740
4741 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4742 if (packet_config_support (noack_config) != PACKET_DISABLE)
4743 {
4744 putpkt ("QStartNoAckMode");
4745 getpkt (&rs->buf, 0);
4746 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4747 rs->noack_mode = 1;
4748 }
4749
4750 if (extended_p)
4751 {
4752 /* Tell the remote that we are using the extended protocol. */
4753 putpkt ("!");
4754 getpkt (&rs->buf, 0);
4755 }
4756
4757 /* Let the target know which signals it is allowed to pass down to
4758 the program. */
4759 update_signals_program_target ();
4760
4761 /* Next, if the target can specify a description, read it. We do
4762 this before anything involving memory or registers. */
4763 target_find_description ();
4764
4765 /* Next, now that we know something about the target, update the
4766 address spaces in the program spaces. */
4767 update_address_spaces ();
4768
4769 /* On OSs where the list of libraries is global to all
4770 processes, we fetch them early. */
4771 if (gdbarch_has_global_solist (target_gdbarch ()))
4772 solib_add (NULL, from_tty, auto_solib_add);
4773
4774 if (target_is_non_stop_p ())
4775 {
4776 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4777 error (_("Non-stop mode requested, but remote "
4778 "does not support non-stop"));
4779
4780 putpkt ("QNonStop:1");
4781 getpkt (&rs->buf, 0);
4782
4783 if (strcmp (rs->buf.data (), "OK") != 0)
4784 error (_("Remote refused setting non-stop mode with: %s"),
4785 rs->buf.data ());
4786
4787 /* Find about threads and processes the stub is already
4788 controlling. We default to adding them in the running state.
4789 The '?' query below will then tell us about which threads are
4790 stopped. */
4791 this->update_thread_list ();
4792 }
4793 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4794 {
4795 /* Don't assume that the stub can operate in all-stop mode.
4796 Request it explicitly. */
4797 putpkt ("QNonStop:0");
4798 getpkt (&rs->buf, 0);
4799
4800 if (strcmp (rs->buf.data (), "OK") != 0)
4801 error (_("Remote refused setting all-stop mode with: %s"),
4802 rs->buf.data ());
4803 }
4804
4805 /* Upload TSVs regardless of whether the target is running or not. The
4806 remote stub, such as GDBserver, may have some predefined or builtin
4807 TSVs, even if the target is not running. */
4808 if (get_trace_status (current_trace_status ()) != -1)
4809 {
4810 struct uploaded_tsv *uploaded_tsvs = NULL;
4811
4812 upload_trace_state_variables (&uploaded_tsvs);
4813 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4814 }
4815
4816 /* Check whether the target is running now. */
4817 putpkt ("?");
4818 getpkt (&rs->buf, 0);
4819
4820 if (!target_is_non_stop_p ())
4821 {
4822 char *wait_status = NULL;
4823
4824 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4825 {
4826 if (!extended_p)
4827 error (_("The target is not running (try extended-remote?)"));
4828
4829 /* We're connected, but not running. Drop out before we
4830 call start_remote. */
4831 rs->starting_up = false;
4832 return;
4833 }
4834 else
4835 {
4836 /* Save the reply for later. */
4837 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4838 strcpy (wait_status, rs->buf.data ());
4839 }
4840
4841 /* Fetch thread list. */
4842 target_update_thread_list ();
4843
4844 /* Let the stub know that we want it to return the thread. */
4845 set_continue_thread (minus_one_ptid);
4846
4847 if (thread_count (this) == 0)
4848 {
4849 /* Target has no concept of threads at all. GDB treats
4850 non-threaded target as single-threaded; add a main
4851 thread. */
4852 thread_info *tp = add_current_inferior_and_thread (wait_status);
4853 get_remote_thread_info (tp)->set_resumed ();
4854 }
4855 else
4856 {
4857 /* We have thread information; select the thread the target
4858 says should be current. If we're reconnecting to a
4859 multi-threaded program, this will ideally be the thread
4860 that last reported an event before GDB disconnected. */
4861 ptid_t curr_thread = get_current_thread (wait_status);
4862 if (curr_thread == null_ptid)
4863 {
4864 /* Odd... The target was able to list threads, but not
4865 tell us which thread was current (no "thread"
4866 register in T stop reply?). Just pick the first
4867 thread in the thread list then. */
4868
4869 remote_debug_printf ("warning: couldn't determine remote "
4870 "current thread; picking first in list.");
4871
4872 for (thread_info *tp : all_non_exited_threads (this,
4873 minus_one_ptid))
4874 {
4875 switch_to_thread (tp);
4876 break;
4877 }
4878 }
4879 else
4880 switch_to_thread (find_thread_ptid (this, curr_thread));
4881 }
4882
4883 /* init_wait_for_inferior should be called before get_offsets in order
4884 to manage `inserted' flag in bp loc in a correct state.
4885 breakpoint_init_inferior, called from init_wait_for_inferior, set
4886 `inserted' flag to 0, while before breakpoint_re_set, called from
4887 start_remote, set `inserted' flag to 1. In the initialization of
4888 inferior, breakpoint_init_inferior should be called first, and then
4889 breakpoint_re_set can be called. If this order is broken, state of
4890 `inserted' flag is wrong, and cause some problems on breakpoint
4891 manipulation. */
4892 init_wait_for_inferior ();
4893
4894 get_offsets (); /* Get text, data & bss offsets. */
4895
4896 /* If we could not find a description using qXfer, and we know
4897 how to do it some other way, try again. This is not
4898 supported for non-stop; it could be, but it is tricky if
4899 there are no stopped threads when we connect. */
4900 if (remote_read_description_p (this)
4901 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4902 {
4903 target_clear_description ();
4904 target_find_description ();
4905 }
4906
4907 /* Use the previously fetched status. */
4908 gdb_assert (wait_status != NULL);
4909 strcpy (rs->buf.data (), wait_status);
4910 rs->cached_wait_status = 1;
4911
4912 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
4913 }
4914 else
4915 {
4916 /* Clear WFI global state. Do this before finding about new
4917 threads and inferiors, and setting the current inferior.
4918 Otherwise we would clear the proceed status of the current
4919 inferior when we want its stop_soon state to be preserved
4920 (see notice_new_inferior). */
4921 init_wait_for_inferior ();
4922
4923 /* In non-stop, we will either get an "OK", meaning that there
4924 are no stopped threads at this time; or, a regular stop
4925 reply. In the latter case, there may be more than one thread
4926 stopped --- we pull them all out using the vStopped
4927 mechanism. */
4928 if (strcmp (rs->buf.data (), "OK") != 0)
4929 {
4930 struct notif_client *notif = &notif_client_stop;
4931
4932 /* remote_notif_get_pending_replies acks this one, and gets
4933 the rest out. */
4934 rs->notif_state->pending_event[notif_client_stop.id]
4935 = remote_notif_parse (this, notif, rs->buf.data ());
4936 remote_notif_get_pending_events (notif);
4937 }
4938
4939 if (thread_count (this) == 0)
4940 {
4941 if (!extended_p)
4942 error (_("The target is not running (try extended-remote?)"));
4943
4944 /* We're connected, but not running. Drop out before we
4945 call start_remote. */
4946 rs->starting_up = false;
4947 return;
4948 }
4949
4950 /* Report all signals during attach/startup. */
4951 pass_signals ({});
4952
4953 /* If there are already stopped threads, mark them stopped and
4954 report their stops before giving the prompt to the user. */
4955 process_initial_stop_replies (from_tty);
4956
4957 if (target_can_async_p ())
4958 target_async (1);
4959 }
4960
4961 /* If we connected to a live target, do some additional setup. */
4962 if (target_has_execution ())
4963 {
4964 /* No use without a symbol-file. */
4965 if (current_program_space->symfile_object_file)
4966 remote_check_symbols ();
4967 }
4968
4969 /* Possibly the target has been engaged in a trace run started
4970 previously; find out where things are at. */
4971 if (get_trace_status (current_trace_status ()) != -1)
4972 {
4973 struct uploaded_tp *uploaded_tps = NULL;
4974
4975 if (current_trace_status ()->running)
4976 printf_filtered (_("Trace is already running on the target.\n"));
4977
4978 upload_tracepoints (&uploaded_tps);
4979
4980 merge_uploaded_tracepoints (&uploaded_tps);
4981 }
4982
4983 /* Possibly the target has been engaged in a btrace record started
4984 previously; find out where things are at. */
4985 remote_btrace_maybe_reopen ();
4986
4987 /* The thread and inferior lists are now synchronized with the
4988 target, our symbols have been relocated, and we're merged the
4989 target's tracepoints with ours. We're done with basic start
4990 up. */
4991 rs->starting_up = false;
4992
4993 /* Maybe breakpoints are global and need to be inserted now. */
4994 if (breakpoints_should_be_inserted_now ())
4995 insert_breakpoints ();
4996 }
4997
4998 const char *
4999 remote_target::connection_string ()
5000 {
5001 remote_state *rs = get_remote_state ();
5002
5003 if (rs->remote_desc->name != NULL)
5004 return rs->remote_desc->name;
5005 else
5006 return NULL;
5007 }
5008
5009 /* Open a connection to a remote debugger.
5010 NAME is the filename used for communication. */
5011
5012 void
5013 remote_target::open (const char *name, int from_tty)
5014 {
5015 open_1 (name, from_tty, 0);
5016 }
5017
5018 /* Open a connection to a remote debugger using the extended
5019 remote gdb protocol. NAME is the filename used for communication. */
5020
5021 void
5022 extended_remote_target::open (const char *name, int from_tty)
5023 {
5024 open_1 (name, from_tty, 1 /*extended_p */);
5025 }
5026
5027 /* Reset all packets back to "unknown support". Called when opening a
5028 new connection to a remote target. */
5029
5030 static void
5031 reset_all_packet_configs_support (void)
5032 {
5033 int i;
5034
5035 for (i = 0; i < PACKET_MAX; i++)
5036 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5037 }
5038
5039 /* Initialize all packet configs. */
5040
5041 static void
5042 init_all_packet_configs (void)
5043 {
5044 int i;
5045
5046 for (i = 0; i < PACKET_MAX; i++)
5047 {
5048 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
5049 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5050 }
5051 }
5052
5053 /* Symbol look-up. */
5054
5055 void
5056 remote_target::remote_check_symbols ()
5057 {
5058 char *tmp;
5059 int end;
5060
5061 /* The remote side has no concept of inferiors that aren't running
5062 yet, it only knows about running processes. If we're connected
5063 but our current inferior is not running, we should not invite the
5064 remote target to request symbol lookups related to its
5065 (unrelated) current process. */
5066 if (!target_has_execution ())
5067 return;
5068
5069 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
5070 return;
5071
5072 /* Make sure the remote is pointing at the right process. Note
5073 there's no way to select "no process". */
5074 set_general_process ();
5075
5076 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5077 because we need both at the same time. */
5078 gdb::char_vector msg (get_remote_packet_size ());
5079 gdb::char_vector reply (get_remote_packet_size ());
5080
5081 /* Invite target to request symbol lookups. */
5082
5083 putpkt ("qSymbol::");
5084 getpkt (&reply, 0);
5085 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
5086
5087 while (startswith (reply.data (), "qSymbol:"))
5088 {
5089 struct bound_minimal_symbol sym;
5090
5091 tmp = &reply[8];
5092 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5093 strlen (tmp) / 2);
5094 msg[end] = '\0';
5095 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
5096 if (sym.minsym == NULL)
5097 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5098 &reply[8]);
5099 else
5100 {
5101 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5102 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
5103
5104 /* If this is a function address, return the start of code
5105 instead of any data function descriptor. */
5106 sym_addr = gdbarch_convert_from_func_ptr_addr
5107 (target_gdbarch (), sym_addr, current_inferior ()->top_target ());
5108
5109 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5110 phex_nz (sym_addr, addr_size), &reply[8]);
5111 }
5112
5113 putpkt (msg.data ());
5114 getpkt (&reply, 0);
5115 }
5116 }
5117
5118 static struct serial *
5119 remote_serial_open (const char *name)
5120 {
5121 static int udp_warning = 0;
5122
5123 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5124 of in ser-tcp.c, because it is the remote protocol assuming that the
5125 serial connection is reliable and not the serial connection promising
5126 to be. */
5127 if (!udp_warning && startswith (name, "udp:"))
5128 {
5129 warning (_("The remote protocol may be unreliable over UDP.\n"
5130 "Some events may be lost, rendering further debugging "
5131 "impossible."));
5132 udp_warning = 1;
5133 }
5134
5135 return serial_open (name);
5136 }
5137
5138 /* Inform the target of our permission settings. The permission flags
5139 work without this, but if the target knows the settings, it can do
5140 a couple things. First, it can add its own check, to catch cases
5141 that somehow manage to get by the permissions checks in target
5142 methods. Second, if the target is wired to disallow particular
5143 settings (for instance, a system in the field that is not set up to
5144 be able to stop at a breakpoint), it can object to any unavailable
5145 permissions. */
5146
5147 void
5148 remote_target::set_permissions ()
5149 {
5150 struct remote_state *rs = get_remote_state ();
5151
5152 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
5153 "WriteReg:%x;WriteMem:%x;"
5154 "InsertBreak:%x;InsertTrace:%x;"
5155 "InsertFastTrace:%x;Stop:%x",
5156 may_write_registers, may_write_memory,
5157 may_insert_breakpoints, may_insert_tracepoints,
5158 may_insert_fast_tracepoints, may_stop);
5159 putpkt (rs->buf);
5160 getpkt (&rs->buf, 0);
5161
5162 /* If the target didn't like the packet, warn the user. Do not try
5163 to undo the user's settings, that would just be maddening. */
5164 if (strcmp (rs->buf.data (), "OK") != 0)
5165 warning (_("Remote refused setting permissions with: %s"),
5166 rs->buf.data ());
5167 }
5168
5169 /* This type describes each known response to the qSupported
5170 packet. */
5171 struct protocol_feature
5172 {
5173 /* The name of this protocol feature. */
5174 const char *name;
5175
5176 /* The default for this protocol feature. */
5177 enum packet_support default_support;
5178
5179 /* The function to call when this feature is reported, or after
5180 qSupported processing if the feature is not supported.
5181 The first argument points to this structure. The second
5182 argument indicates whether the packet requested support be
5183 enabled, disabled, or probed (or the default, if this function
5184 is being called at the end of processing and this feature was
5185 not reported). The third argument may be NULL; if not NULL, it
5186 is a NUL-terminated string taken from the packet following
5187 this feature's name and an equals sign. */
5188 void (*func) (remote_target *remote, const struct protocol_feature *,
5189 enum packet_support, const char *);
5190
5191 /* The corresponding packet for this feature. Only used if
5192 FUNC is remote_supported_packet. */
5193 int packet;
5194 };
5195
5196 static void
5197 remote_supported_packet (remote_target *remote,
5198 const struct protocol_feature *feature,
5199 enum packet_support support,
5200 const char *argument)
5201 {
5202 if (argument)
5203 {
5204 warning (_("Remote qSupported response supplied an unexpected value for"
5205 " \"%s\"."), feature->name);
5206 return;
5207 }
5208
5209 remote_protocol_packets[feature->packet].support = support;
5210 }
5211
5212 void
5213 remote_target::remote_packet_size (const protocol_feature *feature,
5214 enum packet_support support, const char *value)
5215 {
5216 struct remote_state *rs = get_remote_state ();
5217
5218 int packet_size;
5219 char *value_end;
5220
5221 if (support != PACKET_ENABLE)
5222 return;
5223
5224 if (value == NULL || *value == '\0')
5225 {
5226 warning (_("Remote target reported \"%s\" without a size."),
5227 feature->name);
5228 return;
5229 }
5230
5231 errno = 0;
5232 packet_size = strtol (value, &value_end, 16);
5233 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5234 {
5235 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5236 feature->name, value);
5237 return;
5238 }
5239
5240 /* Record the new maximum packet size. */
5241 rs->explicit_packet_size = packet_size;
5242 }
5243
5244 static void
5245 remote_packet_size (remote_target *remote, const protocol_feature *feature,
5246 enum packet_support support, const char *value)
5247 {
5248 remote->remote_packet_size (feature, support, value);
5249 }
5250
5251 static const struct protocol_feature remote_protocol_features[] = {
5252 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
5253 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
5254 PACKET_qXfer_auxv },
5255 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5256 PACKET_qXfer_exec_file },
5257 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5258 PACKET_qXfer_features },
5259 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5260 PACKET_qXfer_libraries },
5261 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5262 PACKET_qXfer_libraries_svr4 },
5263 { "augmented-libraries-svr4-read", PACKET_DISABLE,
5264 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
5265 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
5266 PACKET_qXfer_memory_map },
5267 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5268 PACKET_qXfer_osdata },
5269 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5270 PACKET_qXfer_threads },
5271 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5272 PACKET_qXfer_traceframe_info },
5273 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5274 PACKET_QPassSignals },
5275 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5276 PACKET_QCatchSyscalls },
5277 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5278 PACKET_QProgramSignals },
5279 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5280 PACKET_QSetWorkingDir },
5281 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5282 PACKET_QStartupWithShell },
5283 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5284 PACKET_QEnvironmentHexEncoded },
5285 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5286 PACKET_QEnvironmentReset },
5287 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5288 PACKET_QEnvironmentUnset },
5289 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5290 PACKET_QStartNoAckMode },
5291 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5292 PACKET_multiprocess_feature },
5293 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
5294 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5295 PACKET_qXfer_siginfo_read },
5296 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5297 PACKET_qXfer_siginfo_write },
5298 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
5299 PACKET_ConditionalTracepoints },
5300 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
5301 PACKET_ConditionalBreakpoints },
5302 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
5303 PACKET_BreakpointCommands },
5304 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
5305 PACKET_FastTracepoints },
5306 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
5307 PACKET_StaticTracepoints },
5308 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
5309 PACKET_InstallInTrace},
5310 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5311 PACKET_DisconnectedTracing_feature },
5312 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5313 PACKET_bc },
5314 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5315 PACKET_bs },
5316 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5317 PACKET_TracepointSource },
5318 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5319 PACKET_QAllow },
5320 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5321 PACKET_EnableDisableTracepoints_feature },
5322 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5323 PACKET_qXfer_fdpic },
5324 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5325 PACKET_qXfer_uib },
5326 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5327 PACKET_QDisableRandomization },
5328 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
5329 { "QTBuffer:size", PACKET_DISABLE,
5330 remote_supported_packet, PACKET_QTBuffer_size},
5331 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
5332 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5333 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
5334 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
5335 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
5336 PACKET_qXfer_btrace },
5337 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
5338 PACKET_qXfer_btrace_conf },
5339 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
5340 PACKET_Qbtrace_conf_bts_size },
5341 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
5342 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
5343 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5344 PACKET_fork_event_feature },
5345 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5346 PACKET_vfork_event_feature },
5347 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5348 PACKET_exec_event_feature },
5349 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
5350 PACKET_Qbtrace_conf_pt_size },
5351 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5352 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
5353 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
5354 { "memory-tagging", PACKET_DISABLE, remote_supported_packet,
5355 PACKET_memory_tagging_feature },
5356 };
5357
5358 static char *remote_support_xml;
5359
5360 /* Register string appended to "xmlRegisters=" in qSupported query. */
5361
5362 void
5363 register_remote_support_xml (const char *xml)
5364 {
5365 #if defined(HAVE_LIBEXPAT)
5366 if (remote_support_xml == NULL)
5367 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
5368 else
5369 {
5370 char *copy = xstrdup (remote_support_xml + 13);
5371 char *saveptr;
5372 char *p = strtok_r (copy, ",", &saveptr);
5373
5374 do
5375 {
5376 if (strcmp (p, xml) == 0)
5377 {
5378 /* already there */
5379 xfree (copy);
5380 return;
5381 }
5382 }
5383 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
5384 xfree (copy);
5385
5386 remote_support_xml = reconcat (remote_support_xml,
5387 remote_support_xml, ",", xml,
5388 (char *) NULL);
5389 }
5390 #endif
5391 }
5392
5393 static void
5394 remote_query_supported_append (std::string *msg, const char *append)
5395 {
5396 if (!msg->empty ())
5397 msg->append (";");
5398 msg->append (append);
5399 }
5400
5401 void
5402 remote_target::remote_query_supported ()
5403 {
5404 struct remote_state *rs = get_remote_state ();
5405 char *next;
5406 int i;
5407 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5408
5409 /* The packet support flags are handled differently for this packet
5410 than for most others. We treat an error, a disabled packet, and
5411 an empty response identically: any features which must be reported
5412 to be used will be automatically disabled. An empty buffer
5413 accomplishes this, since that is also the representation for a list
5414 containing no features. */
5415
5416 rs->buf[0] = 0;
5417 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
5418 {
5419 std::string q;
5420
5421 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
5422 remote_query_supported_append (&q, "multiprocess+");
5423
5424 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
5425 remote_query_supported_append (&q, "swbreak+");
5426 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
5427 remote_query_supported_append (&q, "hwbreak+");
5428
5429 remote_query_supported_append (&q, "qRelocInsn+");
5430
5431 if (packet_set_cmd_state (PACKET_fork_event_feature)
5432 != AUTO_BOOLEAN_FALSE)
5433 remote_query_supported_append (&q, "fork-events+");
5434 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5435 != AUTO_BOOLEAN_FALSE)
5436 remote_query_supported_append (&q, "vfork-events+");
5437 if (packet_set_cmd_state (PACKET_exec_event_feature)
5438 != AUTO_BOOLEAN_FALSE)
5439 remote_query_supported_append (&q, "exec-events+");
5440
5441 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
5442 remote_query_supported_append (&q, "vContSupported+");
5443
5444 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
5445 remote_query_supported_append (&q, "QThreadEvents+");
5446
5447 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
5448 remote_query_supported_append (&q, "no-resumed+");
5449
5450 if (packet_set_cmd_state (PACKET_memory_tagging_feature)
5451 != AUTO_BOOLEAN_FALSE)
5452 remote_query_supported_append (&q, "memory-tagging+");
5453
5454 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5455 the qSupported:xmlRegisters=i386 handling. */
5456 if (remote_support_xml != NULL
5457 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
5458 remote_query_supported_append (&q, remote_support_xml);
5459
5460 q = "qSupported:" + q;
5461 putpkt (q.c_str ());
5462
5463 getpkt (&rs->buf, 0);
5464
5465 /* If an error occured, warn, but do not return - just reset the
5466 buffer to empty and go on to disable features. */
5467 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5468 == PACKET_ERROR)
5469 {
5470 warning (_("Remote failure reply: %s"), rs->buf.data ());
5471 rs->buf[0] = 0;
5472 }
5473 }
5474
5475 memset (seen, 0, sizeof (seen));
5476
5477 next = rs->buf.data ();
5478 while (*next)
5479 {
5480 enum packet_support is_supported;
5481 char *p, *end, *name_end, *value;
5482
5483 /* First separate out this item from the rest of the packet. If
5484 there's another item after this, we overwrite the separator
5485 (terminated strings are much easier to work with). */
5486 p = next;
5487 end = strchr (p, ';');
5488 if (end == NULL)
5489 {
5490 end = p + strlen (p);
5491 next = end;
5492 }
5493 else
5494 {
5495 *end = '\0';
5496 next = end + 1;
5497
5498 if (end == p)
5499 {
5500 warning (_("empty item in \"qSupported\" response"));
5501 continue;
5502 }
5503 }
5504
5505 name_end = strchr (p, '=');
5506 if (name_end)
5507 {
5508 /* This is a name=value entry. */
5509 is_supported = PACKET_ENABLE;
5510 value = name_end + 1;
5511 *name_end = '\0';
5512 }
5513 else
5514 {
5515 value = NULL;
5516 switch (end[-1])
5517 {
5518 case '+':
5519 is_supported = PACKET_ENABLE;
5520 break;
5521
5522 case '-':
5523 is_supported = PACKET_DISABLE;
5524 break;
5525
5526 case '?':
5527 is_supported = PACKET_SUPPORT_UNKNOWN;
5528 break;
5529
5530 default:
5531 warning (_("unrecognized item \"%s\" "
5532 "in \"qSupported\" response"), p);
5533 continue;
5534 }
5535 end[-1] = '\0';
5536 }
5537
5538 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5539 if (strcmp (remote_protocol_features[i].name, p) == 0)
5540 {
5541 const struct protocol_feature *feature;
5542
5543 seen[i] = 1;
5544 feature = &remote_protocol_features[i];
5545 feature->func (this, feature, is_supported, value);
5546 break;
5547 }
5548 }
5549
5550 /* If we increased the packet size, make sure to increase the global
5551 buffer size also. We delay this until after parsing the entire
5552 qSupported packet, because this is the same buffer we were
5553 parsing. */
5554 if (rs->buf.size () < rs->explicit_packet_size)
5555 rs->buf.resize (rs->explicit_packet_size);
5556
5557 /* Handle the defaults for unmentioned features. */
5558 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5559 if (!seen[i])
5560 {
5561 const struct protocol_feature *feature;
5562
5563 feature = &remote_protocol_features[i];
5564 feature->func (this, feature, feature->default_support, NULL);
5565 }
5566 }
5567
5568 /* Serial QUIT handler for the remote serial descriptor.
5569
5570 Defers handling a Ctrl-C until we're done with the current
5571 command/response packet sequence, unless:
5572
5573 - We're setting up the connection. Don't send a remote interrupt
5574 request, as we're not fully synced yet. Quit immediately
5575 instead.
5576
5577 - The target has been resumed in the foreground
5578 (target_terminal::is_ours is false) with a synchronous resume
5579 packet, and we're blocked waiting for the stop reply, thus a
5580 Ctrl-C should be immediately sent to the target.
5581
5582 - We get a second Ctrl-C while still within the same serial read or
5583 write. In that case the serial is seemingly wedged --- offer to
5584 quit/disconnect.
5585
5586 - We see a second Ctrl-C without target response, after having
5587 previously interrupted the target. In that case the target/stub
5588 is probably wedged --- offer to quit/disconnect.
5589 */
5590
5591 void
5592 remote_target::remote_serial_quit_handler ()
5593 {
5594 struct remote_state *rs = get_remote_state ();
5595
5596 if (check_quit_flag ())
5597 {
5598 /* If we're starting up, we're not fully synced yet. Quit
5599 immediately. */
5600 if (rs->starting_up)
5601 quit ();
5602 else if (rs->got_ctrlc_during_io)
5603 {
5604 if (query (_("The target is not responding to GDB commands.\n"
5605 "Stop debugging it? ")))
5606 remote_unpush_and_throw (this);
5607 }
5608 /* If ^C has already been sent once, offer to disconnect. */
5609 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
5610 interrupt_query ();
5611 /* All-stop protocol, and blocked waiting for stop reply. Send
5612 an interrupt request. */
5613 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
5614 target_interrupt ();
5615 else
5616 rs->got_ctrlc_during_io = 1;
5617 }
5618 }
5619
5620 /* The remote_target that is current while the quit handler is
5621 overridden with remote_serial_quit_handler. */
5622 static remote_target *curr_quit_handler_target;
5623
5624 static void
5625 remote_serial_quit_handler ()
5626 {
5627 curr_quit_handler_target->remote_serial_quit_handler ();
5628 }
5629
5630 /* Remove the remote target from the target stack of each inferior
5631 that is using it. Upper targets depend on it so remove them
5632 first. */
5633
5634 static void
5635 remote_unpush_target (remote_target *target)
5636 {
5637 /* We have to unpush the target from all inferiors, even those that
5638 aren't running. */
5639 scoped_restore_current_inferior restore_current_inferior;
5640
5641 for (inferior *inf : all_inferiors (target))
5642 {
5643 switch_to_inferior_no_thread (inf);
5644 pop_all_targets_at_and_above (process_stratum);
5645 generic_mourn_inferior ();
5646 }
5647
5648 /* Don't rely on target_close doing this when the target is popped
5649 from the last remote inferior above, because something may be
5650 holding a reference to the target higher up on the stack, meaning
5651 target_close won't be called yet. We lost the connection to the
5652 target, so clear these now, otherwise we may later throw
5653 TARGET_CLOSE_ERROR while trying to tell the remote target to
5654 close the file. */
5655 fileio_handles_invalidate_target (target);
5656 }
5657
5658 static void
5659 remote_unpush_and_throw (remote_target *target)
5660 {
5661 remote_unpush_target (target);
5662 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5663 }
5664
5665 void
5666 remote_target::open_1 (const char *name, int from_tty, int extended_p)
5667 {
5668 remote_target *curr_remote = get_current_remote_target ();
5669
5670 if (name == 0)
5671 error (_("To open a remote debug connection, you need to specify what\n"
5672 "serial device is attached to the remote system\n"
5673 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5674
5675 /* If we're connected to a running target, target_preopen will kill it.
5676 Ask this question first, before target_preopen has a chance to kill
5677 anything. */
5678 if (curr_remote != NULL && !target_has_execution ())
5679 {
5680 if (from_tty
5681 && !query (_("Already connected to a remote target. Disconnect? ")))
5682 error (_("Still connected."));
5683 }
5684
5685 /* Here the possibly existing remote target gets unpushed. */
5686 target_preopen (from_tty);
5687
5688 remote_fileio_reset ();
5689 reopen_exec_file ();
5690 reread_symbols ();
5691
5692 remote_target *remote
5693 = (extended_p ? new extended_remote_target () : new remote_target ());
5694 target_ops_up target_holder (remote);
5695
5696 remote_state *rs = remote->get_remote_state ();
5697
5698 /* See FIXME above. */
5699 if (!target_async_permitted)
5700 rs->wait_forever_enabled_p = 1;
5701
5702 rs->remote_desc = remote_serial_open (name);
5703 if (!rs->remote_desc)
5704 perror_with_name (name);
5705
5706 if (baud_rate != -1)
5707 {
5708 if (serial_setbaudrate (rs->remote_desc, baud_rate))
5709 {
5710 /* The requested speed could not be set. Error out to
5711 top level after closing remote_desc. Take care to
5712 set remote_desc to NULL to avoid closing remote_desc
5713 more than once. */
5714 serial_close (rs->remote_desc);
5715 rs->remote_desc = NULL;
5716 perror_with_name (name);
5717 }
5718 }
5719
5720 serial_setparity (rs->remote_desc, serial_parity);
5721 serial_raw (rs->remote_desc);
5722
5723 /* If there is something sitting in the buffer we might take it as a
5724 response to a command, which would be bad. */
5725 serial_flush_input (rs->remote_desc);
5726
5727 if (from_tty)
5728 {
5729 puts_filtered ("Remote debugging using ");
5730 puts_filtered (name);
5731 puts_filtered ("\n");
5732 }
5733
5734 /* Switch to using the remote target now. */
5735 current_inferior ()->push_target (std::move (target_holder));
5736
5737 /* Register extra event sources in the event loop. */
5738 rs->remote_async_inferior_event_token
5739 = create_async_event_handler (remote_async_inferior_event_handler, nullptr,
5740 "remote");
5741 rs->notif_state = remote_notif_state_allocate (remote);
5742
5743 /* Reset the target state; these things will be queried either by
5744 remote_query_supported or as they are needed. */
5745 reset_all_packet_configs_support ();
5746 rs->cached_wait_status = 0;
5747 rs->explicit_packet_size = 0;
5748 rs->noack_mode = 0;
5749 rs->extended = extended_p;
5750 rs->waiting_for_stop_reply = 0;
5751 rs->ctrlc_pending_p = 0;
5752 rs->got_ctrlc_during_io = 0;
5753
5754 rs->general_thread = not_sent_ptid;
5755 rs->continue_thread = not_sent_ptid;
5756 rs->remote_traceframe_number = -1;
5757
5758 rs->last_resume_exec_dir = EXEC_FORWARD;
5759
5760 /* Probe for ability to use "ThreadInfo" query, as required. */
5761 rs->use_threadinfo_query = 1;
5762 rs->use_threadextra_query = 1;
5763
5764 rs->readahead_cache.invalidate ();
5765
5766 if (target_async_permitted)
5767 {
5768 /* FIXME: cagney/1999-09-23: During the initial connection it is
5769 assumed that the target is already ready and able to respond to
5770 requests. Unfortunately remote_start_remote() eventually calls
5771 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5772 around this. Eventually a mechanism that allows
5773 wait_for_inferior() to expect/get timeouts will be
5774 implemented. */
5775 rs->wait_forever_enabled_p = 0;
5776 }
5777
5778 /* First delete any symbols previously loaded from shared libraries. */
5779 no_shared_libraries (NULL, 0);
5780
5781 /* Start the remote connection. If error() or QUIT, discard this
5782 target (we'd otherwise be in an inconsistent state) and then
5783 propogate the error on up the exception chain. This ensures that
5784 the caller doesn't stumble along blindly assuming that the
5785 function succeeded. The CLI doesn't have this problem but other
5786 UI's, such as MI do.
5787
5788 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5789 this function should return an error indication letting the
5790 caller restore the previous state. Unfortunately the command
5791 ``target remote'' is directly wired to this function making that
5792 impossible. On a positive note, the CLI side of this problem has
5793 been fixed - the function set_cmd_context() makes it possible for
5794 all the ``target ....'' commands to share a common callback
5795 function. See cli-dump.c. */
5796 {
5797
5798 try
5799 {
5800 remote->start_remote (from_tty, extended_p);
5801 }
5802 catch (const gdb_exception &ex)
5803 {
5804 /* Pop the partially set up target - unless something else did
5805 already before throwing the exception. */
5806 if (ex.error != TARGET_CLOSE_ERROR)
5807 remote_unpush_target (remote);
5808 throw;
5809 }
5810 }
5811
5812 remote_btrace_reset (rs);
5813
5814 if (target_async_permitted)
5815 rs->wait_forever_enabled_p = 1;
5816 }
5817
5818 /* Detach the specified process. */
5819
5820 void
5821 remote_target::remote_detach_pid (int pid)
5822 {
5823 struct remote_state *rs = get_remote_state ();
5824
5825 /* This should not be necessary, but the handling for D;PID in
5826 GDBserver versions prior to 8.2 incorrectly assumes that the
5827 selected process points to the same process we're detaching,
5828 leading to misbehavior (and possibly GDBserver crashing) when it
5829 does not. Since it's easy and cheap, work around it by forcing
5830 GDBserver to select GDB's current process. */
5831 set_general_process ();
5832
5833 if (remote_multi_process_p (rs))
5834 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
5835 else
5836 strcpy (rs->buf.data (), "D");
5837
5838 putpkt (rs->buf);
5839 getpkt (&rs->buf, 0);
5840
5841 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5842 ;
5843 else if (rs->buf[0] == '\0')
5844 error (_("Remote doesn't know how to detach"));
5845 else
5846 error (_("Can't detach process."));
5847 }
5848
5849 /* This detaches a program to which we previously attached, using
5850 inferior_ptid to identify the process. After this is done, GDB
5851 can be used to debug some other program. We better not have left
5852 any breakpoints in the target program or it'll die when it hits
5853 one. */
5854
5855 void
5856 remote_target::remote_detach_1 (inferior *inf, int from_tty)
5857 {
5858 int pid = inferior_ptid.pid ();
5859 struct remote_state *rs = get_remote_state ();
5860 int is_fork_parent;
5861
5862 if (!target_has_execution ())
5863 error (_("No process to detach from."));
5864
5865 target_announce_detach (from_tty);
5866
5867 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
5868 {
5869 /* If we're in breakpoints-always-inserted mode, or the inferior
5870 is running, we have to remove breakpoints before detaching.
5871 We don't do this in common code instead because not all
5872 targets support removing breakpoints while the target is
5873 running. The remote target / gdbserver does, though. */
5874 remove_breakpoints_inf (current_inferior ());
5875 }
5876
5877 /* Tell the remote target to detach. */
5878 remote_detach_pid (pid);
5879
5880 /* Exit only if this is the only active inferior. */
5881 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
5882 puts_filtered (_("Ending remote debugging.\n"));
5883
5884 thread_info *tp = find_thread_ptid (this, inferior_ptid);
5885
5886 /* Check to see if we are detaching a fork parent. Note that if we
5887 are detaching a fork child, tp == NULL. */
5888 is_fork_parent = (tp != NULL
5889 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5890
5891 /* If doing detach-on-fork, we don't mourn, because that will delete
5892 breakpoints that should be available for the followed inferior. */
5893 if (!is_fork_parent)
5894 {
5895 /* Save the pid as a string before mourning, since that will
5896 unpush the remote target, and we need the string after. */
5897 std::string infpid = target_pid_to_str (ptid_t (pid));
5898
5899 target_mourn_inferior (inferior_ptid);
5900 if (print_inferior_events)
5901 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5902 inf->num, infpid.c_str ());
5903 }
5904 else
5905 {
5906 switch_to_no_thread ();
5907 detach_inferior (current_inferior ());
5908 }
5909 }
5910
5911 void
5912 remote_target::detach (inferior *inf, int from_tty)
5913 {
5914 remote_detach_1 (inf, from_tty);
5915 }
5916
5917 void
5918 extended_remote_target::detach (inferior *inf, int from_tty)
5919 {
5920 remote_detach_1 (inf, from_tty);
5921 }
5922
5923 /* Target follow-fork function for remote targets. On entry, and
5924 at return, the current inferior is the fork parent.
5925
5926 Note that although this is currently only used for extended-remote,
5927 it is named remote_follow_fork in anticipation of using it for the
5928 remote target as well. */
5929
5930 void
5931 remote_target::follow_fork (inferior *child_inf, ptid_t child_ptid,
5932 target_waitkind fork_kind, bool follow_child,
5933 bool detach_fork)
5934 {
5935 process_stratum_target::follow_fork (child_inf, child_ptid,
5936 fork_kind, follow_child, detach_fork);
5937
5938 struct remote_state *rs = get_remote_state ();
5939
5940 if ((fork_kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5941 || (fork_kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5942 {
5943 /* When following the parent and detaching the child, we detach
5944 the child here. For the case of following the child and
5945 detaching the parent, the detach is done in the target-
5946 independent follow fork code in infrun.c. We can't use
5947 target_detach when detaching an unfollowed child because
5948 the client side doesn't know anything about the child. */
5949 if (detach_fork && !follow_child)
5950 {
5951 /* Detach the fork child. */
5952 remote_detach_pid (child_ptid.pid ());
5953 }
5954 }
5955 }
5956
5957 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5958 in the program space of the new inferior. */
5959
5960 void
5961 remote_target::follow_exec (inferior *follow_inf, ptid_t ptid,
5962 const char *execd_pathname)
5963 {
5964 process_stratum_target::follow_exec (follow_inf, ptid, execd_pathname);
5965
5966 /* We know that this is a target file name, so if it has the "target:"
5967 prefix we strip it off before saving it in the program space. */
5968 if (is_target_filename (execd_pathname))
5969 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5970
5971 set_pspace_remote_exec_file (follow_inf->pspace, execd_pathname);
5972 }
5973
5974 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5975
5976 void
5977 remote_target::disconnect (const char *args, int from_tty)
5978 {
5979 if (args)
5980 error (_("Argument given to \"disconnect\" when remotely debugging."));
5981
5982 /* Make sure we unpush even the extended remote targets. Calling
5983 target_mourn_inferior won't unpush, and
5984 remote_target::mourn_inferior won't unpush if there is more than
5985 one inferior left. */
5986 remote_unpush_target (this);
5987
5988 if (from_tty)
5989 puts_filtered ("Ending remote debugging.\n");
5990 }
5991
5992 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5993 be chatty about it. */
5994
5995 void
5996 extended_remote_target::attach (const char *args, int from_tty)
5997 {
5998 struct remote_state *rs = get_remote_state ();
5999 int pid;
6000 char *wait_status = NULL;
6001
6002 pid = parse_pid_to_attach (args);
6003
6004 /* Remote PID can be freely equal to getpid, do not check it here the same
6005 way as in other targets. */
6006
6007 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
6008 error (_("This target does not support attaching to a process"));
6009
6010 if (from_tty)
6011 {
6012 const char *exec_file = get_exec_file (0);
6013
6014 if (exec_file)
6015 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
6016 target_pid_to_str (ptid_t (pid)).c_str ());
6017 else
6018 printf_unfiltered (_("Attaching to %s\n"),
6019 target_pid_to_str (ptid_t (pid)).c_str ());
6020 }
6021
6022 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
6023 putpkt (rs->buf);
6024 getpkt (&rs->buf, 0);
6025
6026 switch (packet_ok (rs->buf,
6027 &remote_protocol_packets[PACKET_vAttach]))
6028 {
6029 case PACKET_OK:
6030 if (!target_is_non_stop_p ())
6031 {
6032 /* Save the reply for later. */
6033 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
6034 strcpy (wait_status, rs->buf.data ());
6035 }
6036 else if (strcmp (rs->buf.data (), "OK") != 0)
6037 error (_("Attaching to %s failed with: %s"),
6038 target_pid_to_str (ptid_t (pid)).c_str (),
6039 rs->buf.data ());
6040 break;
6041 case PACKET_UNKNOWN:
6042 error (_("This target does not support attaching to a process"));
6043 default:
6044 error (_("Attaching to %s failed"),
6045 target_pid_to_str (ptid_t (pid)).c_str ());
6046 }
6047
6048 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
6049
6050 inferior_ptid = ptid_t (pid);
6051
6052 if (target_is_non_stop_p ())
6053 {
6054 /* Get list of threads. */
6055 update_thread_list ();
6056
6057 thread_info *thread = first_thread_of_inferior (current_inferior ());
6058 if (thread != nullptr)
6059 switch_to_thread (thread);
6060
6061 /* Invalidate our notion of the remote current thread. */
6062 record_currthread (rs, minus_one_ptid);
6063 }
6064 else
6065 {
6066 /* Now, if we have thread information, update the main thread's
6067 ptid. */
6068 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
6069
6070 /* Add the main thread to the thread list. */
6071 thread_info *thr = add_thread_silent (this, curr_ptid);
6072
6073 switch_to_thread (thr);
6074
6075 /* Don't consider the thread stopped until we've processed the
6076 saved stop reply. */
6077 set_executing (this, thr->ptid, true);
6078 }
6079
6080 /* Next, if the target can specify a description, read it. We do
6081 this before anything involving memory or registers. */
6082 target_find_description ();
6083
6084 if (!target_is_non_stop_p ())
6085 {
6086 /* Use the previously fetched status. */
6087 gdb_assert (wait_status != NULL);
6088
6089 if (target_can_async_p ())
6090 {
6091 struct notif_event *reply
6092 = remote_notif_parse (this, &notif_client_stop, wait_status);
6093
6094 push_stop_reply ((struct stop_reply *) reply);
6095
6096 target_async (1);
6097 }
6098 else
6099 {
6100 gdb_assert (wait_status != NULL);
6101 strcpy (rs->buf.data (), wait_status);
6102 rs->cached_wait_status = 1;
6103 }
6104 }
6105 else
6106 {
6107 gdb_assert (wait_status == NULL);
6108
6109 gdb_assert (target_can_async_p ());
6110 target_async (1);
6111 }
6112 }
6113
6114 /* Implementation of the to_post_attach method. */
6115
6116 void
6117 extended_remote_target::post_attach (int pid)
6118 {
6119 /* Get text, data & bss offsets. */
6120 get_offsets ();
6121
6122 /* In certain cases GDB might not have had the chance to start
6123 symbol lookup up until now. This could happen if the debugged
6124 binary is not using shared libraries, the vsyscall page is not
6125 present (on Linux) and the binary itself hadn't changed since the
6126 debugging process was started. */
6127 if (current_program_space->symfile_object_file != NULL)
6128 remote_check_symbols();
6129 }
6130
6131 \f
6132 /* Check for the availability of vCont. This function should also check
6133 the response. */
6134
6135 void
6136 remote_target::remote_vcont_probe ()
6137 {
6138 remote_state *rs = get_remote_state ();
6139 char *buf;
6140
6141 strcpy (rs->buf.data (), "vCont?");
6142 putpkt (rs->buf);
6143 getpkt (&rs->buf, 0);
6144 buf = rs->buf.data ();
6145
6146 /* Make sure that the features we assume are supported. */
6147 if (startswith (buf, "vCont"))
6148 {
6149 char *p = &buf[5];
6150 int support_c, support_C;
6151
6152 rs->supports_vCont.s = 0;
6153 rs->supports_vCont.S = 0;
6154 support_c = 0;
6155 support_C = 0;
6156 rs->supports_vCont.t = 0;
6157 rs->supports_vCont.r = 0;
6158 while (p && *p == ';')
6159 {
6160 p++;
6161 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
6162 rs->supports_vCont.s = 1;
6163 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
6164 rs->supports_vCont.S = 1;
6165 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6166 support_c = 1;
6167 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6168 support_C = 1;
6169 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
6170 rs->supports_vCont.t = 1;
6171 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6172 rs->supports_vCont.r = 1;
6173
6174 p = strchr (p, ';');
6175 }
6176
6177 /* If c, and C are not all supported, we can't use vCont. Clearing
6178 BUF will make packet_ok disable the packet. */
6179 if (!support_c || !support_C)
6180 buf[0] = 0;
6181 }
6182
6183 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
6184 rs->supports_vCont_probed = true;
6185 }
6186
6187 /* Helper function for building "vCont" resumptions. Write a
6188 resumption to P. ENDP points to one-passed-the-end of the buffer
6189 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6190 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6191 resumed thread should be single-stepped and/or signalled. If PTID
6192 equals minus_one_ptid, then all threads are resumed; if PTID
6193 represents a process, then all threads of the process are resumed;
6194 the thread to be stepped and/or signalled is given in the global
6195 INFERIOR_PTID. */
6196
6197 char *
6198 remote_target::append_resumption (char *p, char *endp,
6199 ptid_t ptid, int step, gdb_signal siggnal)
6200 {
6201 struct remote_state *rs = get_remote_state ();
6202
6203 if (step && siggnal != GDB_SIGNAL_0)
6204 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
6205 else if (step
6206 /* GDB is willing to range step. */
6207 && use_range_stepping
6208 /* Target supports range stepping. */
6209 && rs->supports_vCont.r
6210 /* We don't currently support range stepping multiple
6211 threads with a wildcard (though the protocol allows it,
6212 so stubs shouldn't make an active effort to forbid
6213 it). */
6214 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
6215 {
6216 struct thread_info *tp;
6217
6218 if (ptid == minus_one_ptid)
6219 {
6220 /* If we don't know about the target thread's tid, then
6221 we're resuming magic_null_ptid (see caller). */
6222 tp = find_thread_ptid (this, magic_null_ptid);
6223 }
6224 else
6225 tp = find_thread_ptid (this, ptid);
6226 gdb_assert (tp != NULL);
6227
6228 if (tp->control.may_range_step)
6229 {
6230 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6231
6232 p += xsnprintf (p, endp - p, ";r%s,%s",
6233 phex_nz (tp->control.step_range_start,
6234 addr_size),
6235 phex_nz (tp->control.step_range_end,
6236 addr_size));
6237 }
6238 else
6239 p += xsnprintf (p, endp - p, ";s");
6240 }
6241 else if (step)
6242 p += xsnprintf (p, endp - p, ";s");
6243 else if (siggnal != GDB_SIGNAL_0)
6244 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6245 else
6246 p += xsnprintf (p, endp - p, ";c");
6247
6248 if (remote_multi_process_p (rs) && ptid.is_pid ())
6249 {
6250 ptid_t nptid;
6251
6252 /* All (-1) threads of process. */
6253 nptid = ptid_t (ptid.pid (), -1);
6254
6255 p += xsnprintf (p, endp - p, ":");
6256 p = write_ptid (p, endp, nptid);
6257 }
6258 else if (ptid != minus_one_ptid)
6259 {
6260 p += xsnprintf (p, endp - p, ":");
6261 p = write_ptid (p, endp, ptid);
6262 }
6263
6264 return p;
6265 }
6266
6267 /* Clear the thread's private info on resume. */
6268
6269 static void
6270 resume_clear_thread_private_info (struct thread_info *thread)
6271 {
6272 if (thread->priv != NULL)
6273 {
6274 remote_thread_info *priv = get_remote_thread_info (thread);
6275
6276 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6277 priv->watch_data_address = 0;
6278 }
6279 }
6280
6281 /* Append a vCont continue-with-signal action for threads that have a
6282 non-zero stop signal. */
6283
6284 char *
6285 remote_target::append_pending_thread_resumptions (char *p, char *endp,
6286 ptid_t ptid)
6287 {
6288 for (thread_info *thread : all_non_exited_threads (this, ptid))
6289 if (inferior_ptid != thread->ptid
6290 && thread->stop_signal () != GDB_SIGNAL_0)
6291 {
6292 p = append_resumption (p, endp, thread->ptid,
6293 0, thread->stop_signal ());
6294 thread->set_stop_signal (GDB_SIGNAL_0);
6295 resume_clear_thread_private_info (thread);
6296 }
6297
6298 return p;
6299 }
6300
6301 /* Set the target running, using the packets that use Hc
6302 (c/s/C/S). */
6303
6304 void
6305 remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6306 gdb_signal siggnal)
6307 {
6308 struct remote_state *rs = get_remote_state ();
6309 char *buf;
6310
6311 rs->last_sent_signal = siggnal;
6312 rs->last_sent_step = step;
6313
6314 /* The c/s/C/S resume packets use Hc, so set the continue
6315 thread. */
6316 if (ptid == minus_one_ptid)
6317 set_continue_thread (any_thread_ptid);
6318 else
6319 set_continue_thread (ptid);
6320
6321 for (thread_info *thread : all_non_exited_threads (this))
6322 resume_clear_thread_private_info (thread);
6323
6324 buf = rs->buf.data ();
6325 if (::execution_direction == EXEC_REVERSE)
6326 {
6327 /* We don't pass signals to the target in reverse exec mode. */
6328 if (info_verbose && siggnal != GDB_SIGNAL_0)
6329 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6330 siggnal);
6331
6332 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6333 error (_("Remote reverse-step not supported."));
6334 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6335 error (_("Remote reverse-continue not supported."));
6336
6337 strcpy (buf, step ? "bs" : "bc");
6338 }
6339 else if (siggnal != GDB_SIGNAL_0)
6340 {
6341 buf[0] = step ? 'S' : 'C';
6342 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6343 buf[2] = tohex (((int) siggnal) & 0xf);
6344 buf[3] = '\0';
6345 }
6346 else
6347 strcpy (buf, step ? "s" : "c");
6348
6349 putpkt (buf);
6350 }
6351
6352 /* Resume the remote inferior by using a "vCont" packet. The thread
6353 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6354 resumed thread should be single-stepped and/or signalled. If PTID
6355 equals minus_one_ptid, then all threads are resumed; the thread to
6356 be stepped and/or signalled is given in the global INFERIOR_PTID.
6357 This function returns non-zero iff it resumes the inferior.
6358
6359 This function issues a strict subset of all possible vCont commands
6360 at the moment. */
6361
6362 int
6363 remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6364 enum gdb_signal siggnal)
6365 {
6366 struct remote_state *rs = get_remote_state ();
6367 char *p;
6368 char *endp;
6369
6370 /* No reverse execution actions defined for vCont. */
6371 if (::execution_direction == EXEC_REVERSE)
6372 return 0;
6373
6374 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6375 remote_vcont_probe ();
6376
6377 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6378 return 0;
6379
6380 p = rs->buf.data ();
6381 endp = p + get_remote_packet_size ();
6382
6383 /* If we could generate a wider range of packets, we'd have to worry
6384 about overflowing BUF. Should there be a generic
6385 "multi-part-packet" packet? */
6386
6387 p += xsnprintf (p, endp - p, "vCont");
6388
6389 if (ptid == magic_null_ptid)
6390 {
6391 /* MAGIC_NULL_PTID means that we don't have any active threads,
6392 so we don't have any TID numbers the inferior will
6393 understand. Make sure to only send forms that do not specify
6394 a TID. */
6395 append_resumption (p, endp, minus_one_ptid, step, siggnal);
6396 }
6397 else if (ptid == minus_one_ptid || ptid.is_pid ())
6398 {
6399 /* Resume all threads (of all processes, or of a single
6400 process), with preference for INFERIOR_PTID. This assumes
6401 inferior_ptid belongs to the set of all threads we are about
6402 to resume. */
6403 if (step || siggnal != GDB_SIGNAL_0)
6404 {
6405 /* Step inferior_ptid, with or without signal. */
6406 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
6407 }
6408
6409 /* Also pass down any pending signaled resumption for other
6410 threads not the current. */
6411 p = append_pending_thread_resumptions (p, endp, ptid);
6412
6413 /* And continue others without a signal. */
6414 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
6415 }
6416 else
6417 {
6418 /* Scheduler locking; resume only PTID. */
6419 append_resumption (p, endp, ptid, step, siggnal);
6420 }
6421
6422 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
6423 putpkt (rs->buf);
6424
6425 if (target_is_non_stop_p ())
6426 {
6427 /* In non-stop, the stub replies to vCont with "OK". The stop
6428 reply will be reported asynchronously by means of a `%Stop'
6429 notification. */
6430 getpkt (&rs->buf, 0);
6431 if (strcmp (rs->buf.data (), "OK") != 0)
6432 error (_("Unexpected vCont reply in non-stop mode: %s"),
6433 rs->buf.data ());
6434 }
6435
6436 return 1;
6437 }
6438
6439 /* Tell the remote machine to resume. */
6440
6441 void
6442 remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
6443 {
6444 struct remote_state *rs = get_remote_state ();
6445
6446 /* When connected in non-stop mode, the core resumes threads
6447 individually. Resuming remote threads directly in target_resume
6448 would thus result in sending one packet per thread. Instead, to
6449 minimize roundtrip latency, here we just store the resume
6450 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6451 resumption will be done in remote_target::commit_resume, where we'll be
6452 able to do vCont action coalescing. */
6453 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
6454 {
6455 remote_thread_info *remote_thr;
6456
6457 if (minus_one_ptid == ptid || ptid.is_pid ())
6458 remote_thr = get_remote_thread_info (this, inferior_ptid);
6459 else
6460 remote_thr = get_remote_thread_info (this, ptid);
6461
6462 /* We don't expect the core to ask to resume an already resumed (from
6463 its point of view) thread. */
6464 gdb_assert (remote_thr->get_resume_state () == resume_state::NOT_RESUMED);
6465
6466 remote_thr->set_resumed_pending_vcont (step, siggnal);
6467 return;
6468 }
6469
6470 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6471 (explained in remote-notif.c:handle_notification) so
6472 remote_notif_process is not called. We need find a place where
6473 it is safe to start a 'vNotif' sequence. It is good to do it
6474 before resuming inferior, because inferior was stopped and no RSP
6475 traffic at that moment. */
6476 if (!target_is_non_stop_p ())
6477 remote_notif_process (rs->notif_state, &notif_client_stop);
6478
6479 rs->last_resume_exec_dir = ::execution_direction;
6480
6481 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6482 if (!remote_resume_with_vcont (ptid, step, siggnal))
6483 remote_resume_with_hc (ptid, step, siggnal);
6484
6485 /* Update resumed state tracked by the remote target. */
6486 for (thread_info *tp : all_non_exited_threads (this, ptid))
6487 get_remote_thread_info (tp)->set_resumed ();
6488
6489 /* We are about to start executing the inferior, let's register it
6490 with the event loop. NOTE: this is the one place where all the
6491 execution commands end up. We could alternatively do this in each
6492 of the execution commands in infcmd.c. */
6493 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6494 into infcmd.c in order to allow inferior function calls to work
6495 NOT asynchronously. */
6496 if (target_can_async_p ())
6497 target_async (1);
6498
6499 /* We've just told the target to resume. The remote server will
6500 wait for the inferior to stop, and then send a stop reply. In
6501 the mean time, we can't start another command/query ourselves
6502 because the stub wouldn't be ready to process it. This applies
6503 only to the base all-stop protocol, however. In non-stop (which
6504 only supports vCont), the stub replies with an "OK", and is
6505 immediate able to process further serial input. */
6506 if (!target_is_non_stop_p ())
6507 rs->waiting_for_stop_reply = 1;
6508 }
6509
6510 static int is_pending_fork_parent_thread (struct thread_info *thread);
6511
6512 /* Private per-inferior info for target remote processes. */
6513
6514 struct remote_inferior : public private_inferior
6515 {
6516 /* Whether we can send a wildcard vCont for this process. */
6517 bool may_wildcard_vcont = true;
6518 };
6519
6520 /* Get the remote private inferior data associated to INF. */
6521
6522 static remote_inferior *
6523 get_remote_inferior (inferior *inf)
6524 {
6525 if (inf->priv == NULL)
6526 inf->priv.reset (new remote_inferior);
6527
6528 return static_cast<remote_inferior *> (inf->priv.get ());
6529 }
6530
6531 struct stop_reply : public notif_event
6532 {
6533 ~stop_reply ();
6534
6535 /* The identifier of the thread about this event */
6536 ptid_t ptid;
6537
6538 /* The remote state this event is associated with. When the remote
6539 connection, represented by a remote_state object, is closed,
6540 all the associated stop_reply events should be released. */
6541 struct remote_state *rs;
6542
6543 struct target_waitstatus ws;
6544
6545 /* The architecture associated with the expedited registers. */
6546 gdbarch *arch;
6547
6548 /* Expedited registers. This makes remote debugging a bit more
6549 efficient for those targets that provide critical registers as
6550 part of their normal status mechanism (as another roundtrip to
6551 fetch them is avoided). */
6552 std::vector<cached_reg_t> regcache;
6553
6554 enum target_stop_reason stop_reason;
6555
6556 CORE_ADDR watch_data_address;
6557
6558 int core;
6559 };
6560
6561 /* Class used to track the construction of a vCont packet in the
6562 outgoing packet buffer. This is used to send multiple vCont
6563 packets if we have more actions than would fit a single packet. */
6564
6565 class vcont_builder
6566 {
6567 public:
6568 explicit vcont_builder (remote_target *remote)
6569 : m_remote (remote)
6570 {
6571 restart ();
6572 }
6573
6574 void flush ();
6575 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6576
6577 private:
6578 void restart ();
6579
6580 /* The remote target. */
6581 remote_target *m_remote;
6582
6583 /* Pointer to the first action. P points here if no action has been
6584 appended yet. */
6585 char *m_first_action;
6586
6587 /* Where the next action will be appended. */
6588 char *m_p;
6589
6590 /* The end of the buffer. Must never write past this. */
6591 char *m_endp;
6592 };
6593
6594 /* Prepare the outgoing buffer for a new vCont packet. */
6595
6596 void
6597 vcont_builder::restart ()
6598 {
6599 struct remote_state *rs = m_remote->get_remote_state ();
6600
6601 m_p = rs->buf.data ();
6602 m_endp = m_p + m_remote->get_remote_packet_size ();
6603 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6604 m_first_action = m_p;
6605 }
6606
6607 /* If the vCont packet being built has any action, send it to the
6608 remote end. */
6609
6610 void
6611 vcont_builder::flush ()
6612 {
6613 struct remote_state *rs;
6614
6615 if (m_p == m_first_action)
6616 return;
6617
6618 rs = m_remote->get_remote_state ();
6619 m_remote->putpkt (rs->buf);
6620 m_remote->getpkt (&rs->buf, 0);
6621 if (strcmp (rs->buf.data (), "OK") != 0)
6622 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
6623 }
6624
6625 /* The largest action is range-stepping, with its two addresses. This
6626 is more than sufficient. If a new, bigger action is created, it'll
6627 quickly trigger a failed assertion in append_resumption (and we'll
6628 just bump this). */
6629 #define MAX_ACTION_SIZE 200
6630
6631 /* Append a new vCont action in the outgoing packet being built. If
6632 the action doesn't fit the packet along with previous actions, push
6633 what we've got so far to the remote end and start over a new vCont
6634 packet (with the new action). */
6635
6636 void
6637 vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
6638 {
6639 char buf[MAX_ACTION_SIZE + 1];
6640
6641 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6642 ptid, step, siggnal);
6643
6644 /* Check whether this new action would fit in the vCont packet along
6645 with previous actions. If not, send what we've got so far and
6646 start a new vCont packet. */
6647 size_t rsize = endp - buf;
6648 if (rsize > m_endp - m_p)
6649 {
6650 flush ();
6651 restart ();
6652
6653 /* Should now fit. */
6654 gdb_assert (rsize <= m_endp - m_p);
6655 }
6656
6657 memcpy (m_p, buf, rsize);
6658 m_p += rsize;
6659 *m_p = '\0';
6660 }
6661
6662 /* to_commit_resume implementation. */
6663
6664 void
6665 remote_target::commit_resumed ()
6666 {
6667 /* If connected in all-stop mode, we'd send the remote resume
6668 request directly from remote_resume. Likewise if
6669 reverse-debugging, as there are no defined vCont actions for
6670 reverse execution. */
6671 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
6672 return;
6673
6674 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6675 instead of resuming all threads of each process individually.
6676 However, if any thread of a process must remain halted, we can't
6677 send wildcard resumes and must send one action per thread.
6678
6679 Care must be taken to not resume threads/processes the server
6680 side already told us are stopped, but the core doesn't know about
6681 yet, because the events are still in the vStopped notification
6682 queue. For example:
6683
6684 #1 => vCont s:p1.1;c
6685 #2 <= OK
6686 #3 <= %Stopped T05 p1.1
6687 #4 => vStopped
6688 #5 <= T05 p1.2
6689 #6 => vStopped
6690 #7 <= OK
6691 #8 (infrun handles the stop for p1.1 and continues stepping)
6692 #9 => vCont s:p1.1;c
6693
6694 The last vCont above would resume thread p1.2 by mistake, because
6695 the server has no idea that the event for p1.2 had not been
6696 handled yet.
6697
6698 The server side must similarly ignore resume actions for the
6699 thread that has a pending %Stopped notification (and any other
6700 threads with events pending), until GDB acks the notification
6701 with vStopped. Otherwise, e.g., the following case is
6702 mishandled:
6703
6704 #1 => g (or any other packet)
6705 #2 <= [registers]
6706 #3 <= %Stopped T05 p1.2
6707 #4 => vCont s:p1.1;c
6708 #5 <= OK
6709
6710 Above, the server must not resume thread p1.2. GDB can't know
6711 that p1.2 stopped until it acks the %Stopped notification, and
6712 since from GDB's perspective all threads should be running, it
6713 sends a "c" action.
6714
6715 Finally, special care must also be given to handling fork/vfork
6716 events. A (v)fork event actually tells us that two processes
6717 stopped -- the parent and the child. Until we follow the fork,
6718 we must not resume the child. Therefore, if we have a pending
6719 fork follow, we must not send a global wildcard resume action
6720 (vCont;c). We can still send process-wide wildcards though. */
6721
6722 /* Start by assuming a global wildcard (vCont;c) is possible. */
6723 bool may_global_wildcard_vcont = true;
6724
6725 /* And assume every process is individually wildcard-able too. */
6726 for (inferior *inf : all_non_exited_inferiors (this))
6727 {
6728 remote_inferior *priv = get_remote_inferior (inf);
6729
6730 priv->may_wildcard_vcont = true;
6731 }
6732
6733 /* Check for any pending events (not reported or processed yet) and
6734 disable process and global wildcard resumes appropriately. */
6735 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6736
6737 bool any_pending_vcont_resume = false;
6738
6739 for (thread_info *tp : all_non_exited_threads (this))
6740 {
6741 remote_thread_info *priv = get_remote_thread_info (tp);
6742
6743 /* If a thread of a process is not meant to be resumed, then we
6744 can't wildcard that process. */
6745 if (priv->get_resume_state () == resume_state::NOT_RESUMED)
6746 {
6747 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
6748
6749 /* And if we can't wildcard a process, we can't wildcard
6750 everything either. */
6751 may_global_wildcard_vcont = false;
6752 continue;
6753 }
6754
6755 if (priv->get_resume_state () == resume_state::RESUMED_PENDING_VCONT)
6756 any_pending_vcont_resume = true;
6757
6758 /* If a thread is the parent of an unfollowed fork, then we
6759 can't do a global wildcard, as that would resume the fork
6760 child. */
6761 if (is_pending_fork_parent_thread (tp))
6762 may_global_wildcard_vcont = false;
6763 }
6764
6765 /* We didn't have any resumed thread pending a vCont resume, so nothing to
6766 do. */
6767 if (!any_pending_vcont_resume)
6768 return;
6769
6770 /* Now let's build the vCont packet(s). Actions must be appended
6771 from narrower to wider scopes (thread -> process -> global). If
6772 we end up with too many actions for a single packet vcont_builder
6773 flushes the current vCont packet to the remote side and starts a
6774 new one. */
6775 struct vcont_builder vcont_builder (this);
6776
6777 /* Threads first. */
6778 for (thread_info *tp : all_non_exited_threads (this))
6779 {
6780 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6781
6782 /* If the thread was previously vCont-resumed, no need to send a specific
6783 action for it. If we didn't receive a resume request for it, don't
6784 send an action for it either. */
6785 if (remote_thr->get_resume_state () != resume_state::RESUMED_PENDING_VCONT)
6786 continue;
6787
6788 gdb_assert (!thread_is_in_step_over_chain (tp));
6789
6790 /* We should never be commit-resuming a thread that has a stop reply.
6791 Otherwise, we would end up reporting a stop event for a thread while
6792 it is running on the remote target. */
6793 remote_state *rs = get_remote_state ();
6794 for (const auto &stop_reply : rs->stop_reply_queue)
6795 gdb_assert (stop_reply->ptid != tp->ptid);
6796
6797 const resumed_pending_vcont_info &info
6798 = remote_thr->resumed_pending_vcont_info ();
6799
6800 /* Check if we need to send a specific action for this thread. If not,
6801 it will be included in a wildcard resume instead. */
6802 if (info.step || info.sig != GDB_SIGNAL_0
6803 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6804 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6805
6806 remote_thr->set_resumed ();
6807 }
6808
6809 /* Now check whether we can send any process-wide wildcard. This is
6810 to avoid sending a global wildcard in the case nothing is
6811 supposed to be resumed. */
6812 bool any_process_wildcard = false;
6813
6814 for (inferior *inf : all_non_exited_inferiors (this))
6815 {
6816 if (get_remote_inferior (inf)->may_wildcard_vcont)
6817 {
6818 any_process_wildcard = true;
6819 break;
6820 }
6821 }
6822
6823 if (any_process_wildcard)
6824 {
6825 /* If all processes are wildcard-able, then send a single "c"
6826 action, otherwise, send an "all (-1) threads of process"
6827 continue action for each running process, if any. */
6828 if (may_global_wildcard_vcont)
6829 {
6830 vcont_builder.push_action (minus_one_ptid,
6831 false, GDB_SIGNAL_0);
6832 }
6833 else
6834 {
6835 for (inferior *inf : all_non_exited_inferiors (this))
6836 {
6837 if (get_remote_inferior (inf)->may_wildcard_vcont)
6838 {
6839 vcont_builder.push_action (ptid_t (inf->pid),
6840 false, GDB_SIGNAL_0);
6841 }
6842 }
6843 }
6844 }
6845
6846 vcont_builder.flush ();
6847 }
6848
6849 /* Implementation of target_has_pending_events. */
6850
6851 bool
6852 remote_target::has_pending_events ()
6853 {
6854 if (target_can_async_p ())
6855 {
6856 remote_state *rs = get_remote_state ();
6857
6858 if (async_event_handler_marked (rs->remote_async_inferior_event_token))
6859 return true;
6860
6861 /* Note that BUFCNT can be negative, indicating sticky
6862 error. */
6863 if (rs->remote_desc->bufcnt != 0)
6864 return true;
6865 }
6866 return false;
6867 }
6868
6869 \f
6870
6871 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6872 thread, all threads of a remote process, or all threads of all
6873 processes. */
6874
6875 void
6876 remote_target::remote_stop_ns (ptid_t ptid)
6877 {
6878 struct remote_state *rs = get_remote_state ();
6879 char *p = rs->buf.data ();
6880 char *endp = p + get_remote_packet_size ();
6881
6882 /* If any thread that needs to stop was resumed but pending a vCont
6883 resume, generate a phony stop_reply. However, first check
6884 whether the thread wasn't resumed with a signal. Generating a
6885 phony stop in that case would result in losing the signal. */
6886 bool needs_commit = false;
6887 for (thread_info *tp : all_non_exited_threads (this, ptid))
6888 {
6889 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6890
6891 if (remote_thr->get_resume_state ()
6892 == resume_state::RESUMED_PENDING_VCONT)
6893 {
6894 const resumed_pending_vcont_info &info
6895 = remote_thr->resumed_pending_vcont_info ();
6896 if (info.sig != GDB_SIGNAL_0)
6897 {
6898 /* This signal must be forwarded to the inferior. We
6899 could commit-resume just this thread, but its simpler
6900 to just commit-resume everything. */
6901 needs_commit = true;
6902 break;
6903 }
6904 }
6905 }
6906
6907 if (needs_commit)
6908 commit_resumed ();
6909 else
6910 for (thread_info *tp : all_non_exited_threads (this, ptid))
6911 {
6912 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6913
6914 if (remote_thr->get_resume_state ()
6915 == resume_state::RESUMED_PENDING_VCONT)
6916 {
6917 remote_debug_printf ("Enqueueing phony stop reply for thread pending "
6918 "vCont-resume (%d, %ld, %s)", tp->ptid.pid(),
6919 tp->ptid.lwp (),
6920 pulongest (tp->ptid.tid ()));
6921
6922 /* Check that the thread wasn't resumed with a signal.
6923 Generating a phony stop would result in losing the
6924 signal. */
6925 const resumed_pending_vcont_info &info
6926 = remote_thr->resumed_pending_vcont_info ();
6927 gdb_assert (info.sig == GDB_SIGNAL_0);
6928
6929 stop_reply *sr = new stop_reply ();
6930 sr->ptid = tp->ptid;
6931 sr->rs = rs;
6932 sr->ws.kind = TARGET_WAITKIND_STOPPED;
6933 sr->ws.value.sig = GDB_SIGNAL_0;
6934 sr->arch = tp->inf->gdbarch;
6935 sr->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6936 sr->watch_data_address = 0;
6937 sr->core = 0;
6938 this->push_stop_reply (sr);
6939
6940 /* Pretend that this thread was actually resumed on the
6941 remote target, then stopped. If we leave it in the
6942 RESUMED_PENDING_VCONT state and the commit_resumed
6943 method is called while the stop reply is still in the
6944 queue, we'll end up reporting a stop event to the core
6945 for that thread while it is running on the remote
6946 target... that would be bad. */
6947 remote_thr->set_resumed ();
6948 }
6949 }
6950
6951 /* FIXME: This supports_vCont_probed check is a workaround until
6952 packet_support is per-connection. */
6953 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6954 || !rs->supports_vCont_probed)
6955 remote_vcont_probe ();
6956
6957 if (!rs->supports_vCont.t)
6958 error (_("Remote server does not support stopping threads"));
6959
6960 if (ptid == minus_one_ptid
6961 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6962 p += xsnprintf (p, endp - p, "vCont;t");
6963 else
6964 {
6965 ptid_t nptid;
6966
6967 p += xsnprintf (p, endp - p, "vCont;t:");
6968
6969 if (ptid.is_pid ())
6970 /* All (-1) threads of process. */
6971 nptid = ptid_t (ptid.pid (), -1);
6972 else
6973 {
6974 /* Small optimization: if we already have a stop reply for
6975 this thread, no use in telling the stub we want this
6976 stopped. */
6977 if (peek_stop_reply (ptid))
6978 return;
6979
6980 nptid = ptid;
6981 }
6982
6983 write_ptid (p, endp, nptid);
6984 }
6985
6986 /* In non-stop, we get an immediate OK reply. The stop reply will
6987 come in asynchronously by notification. */
6988 putpkt (rs->buf);
6989 getpkt (&rs->buf, 0);
6990 if (strcmp (rs->buf.data (), "OK") != 0)
6991 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
6992 rs->buf.data ());
6993 }
6994
6995 /* All-stop version of target_interrupt. Sends a break or a ^C to
6996 interrupt the remote target. It is undefined which thread of which
6997 process reports the interrupt. */
6998
6999 void
7000 remote_target::remote_interrupt_as ()
7001 {
7002 struct remote_state *rs = get_remote_state ();
7003
7004 rs->ctrlc_pending_p = 1;
7005
7006 /* If the inferior is stopped already, but the core didn't know
7007 about it yet, just ignore the request. The cached wait status
7008 will be collected in remote_wait. */
7009 if (rs->cached_wait_status)
7010 return;
7011
7012 /* Send interrupt_sequence to remote target. */
7013 send_interrupt_sequence ();
7014 }
7015
7016 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
7017 the remote target. It is undefined which thread of which process
7018 reports the interrupt. Throws an error if the packet is not
7019 supported by the server. */
7020
7021 void
7022 remote_target::remote_interrupt_ns ()
7023 {
7024 struct remote_state *rs = get_remote_state ();
7025 char *p = rs->buf.data ();
7026 char *endp = p + get_remote_packet_size ();
7027
7028 xsnprintf (p, endp - p, "vCtrlC");
7029
7030 /* In non-stop, we get an immediate OK reply. The stop reply will
7031 come in asynchronously by notification. */
7032 putpkt (rs->buf);
7033 getpkt (&rs->buf, 0);
7034
7035 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
7036 {
7037 case PACKET_OK:
7038 break;
7039 case PACKET_UNKNOWN:
7040 error (_("No support for interrupting the remote target."));
7041 case PACKET_ERROR:
7042 error (_("Interrupting target failed: %s"), rs->buf.data ());
7043 }
7044 }
7045
7046 /* Implement the to_stop function for the remote targets. */
7047
7048 void
7049 remote_target::stop (ptid_t ptid)
7050 {
7051 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7052
7053 if (target_is_non_stop_p ())
7054 remote_stop_ns (ptid);
7055 else
7056 {
7057 /* We don't currently have a way to transparently pause the
7058 remote target in all-stop mode. Interrupt it instead. */
7059 remote_interrupt_as ();
7060 }
7061 }
7062
7063 /* Implement the to_interrupt function for the remote targets. */
7064
7065 void
7066 remote_target::interrupt ()
7067 {
7068 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7069
7070 if (target_is_non_stop_p ())
7071 remote_interrupt_ns ();
7072 else
7073 remote_interrupt_as ();
7074 }
7075
7076 /* Implement the to_pass_ctrlc function for the remote targets. */
7077
7078 void
7079 remote_target::pass_ctrlc ()
7080 {
7081 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7082
7083 struct remote_state *rs = get_remote_state ();
7084
7085 /* If we're starting up, we're not fully synced yet. Quit
7086 immediately. */
7087 if (rs->starting_up)
7088 quit ();
7089 /* If ^C has already been sent once, offer to disconnect. */
7090 else if (rs->ctrlc_pending_p)
7091 interrupt_query ();
7092 else
7093 target_interrupt ();
7094 }
7095
7096 /* Ask the user what to do when an interrupt is received. */
7097
7098 void
7099 remote_target::interrupt_query ()
7100 {
7101 struct remote_state *rs = get_remote_state ();
7102
7103 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
7104 {
7105 if (query (_("The target is not responding to interrupt requests.\n"
7106 "Stop debugging it? ")))
7107 {
7108 remote_unpush_target (this);
7109 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
7110 }
7111 }
7112 else
7113 {
7114 if (query (_("Interrupted while waiting for the program.\n"
7115 "Give up waiting? ")))
7116 quit ();
7117 }
7118 }
7119
7120 /* Enable/disable target terminal ownership. Most targets can use
7121 terminal groups to control terminal ownership. Remote targets are
7122 different in that explicit transfer of ownership to/from GDB/target
7123 is required. */
7124
7125 void
7126 remote_target::terminal_inferior ()
7127 {
7128 /* NOTE: At this point we could also register our selves as the
7129 recipient of all input. Any characters typed could then be
7130 passed on down to the target. */
7131 }
7132
7133 void
7134 remote_target::terminal_ours ()
7135 {
7136 }
7137
7138 static void
7139 remote_console_output (const char *msg)
7140 {
7141 const char *p;
7142
7143 for (p = msg; p[0] && p[1]; p += 2)
7144 {
7145 char tb[2];
7146 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
7147
7148 tb[0] = c;
7149 tb[1] = 0;
7150 gdb_stdtarg->puts (tb);
7151 }
7152 gdb_stdtarg->flush ();
7153 }
7154
7155 /* Return the length of the stop reply queue. */
7156
7157 int
7158 remote_target::stop_reply_queue_length ()
7159 {
7160 remote_state *rs = get_remote_state ();
7161 return rs->stop_reply_queue.size ();
7162 }
7163
7164 static void
7165 remote_notif_stop_parse (remote_target *remote,
7166 struct notif_client *self, const char *buf,
7167 struct notif_event *event)
7168 {
7169 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
7170 }
7171
7172 static void
7173 remote_notif_stop_ack (remote_target *remote,
7174 struct notif_client *self, const char *buf,
7175 struct notif_event *event)
7176 {
7177 struct stop_reply *stop_reply = (struct stop_reply *) event;
7178
7179 /* acknowledge */
7180 putpkt (remote, self->ack_command);
7181
7182 /* Kind can be TARGET_WAITKIND_IGNORE if we have meanwhile discarded
7183 the notification. It was left in the queue because we need to
7184 acknowledge it and pull the rest of the notifications out. */
7185 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
7186 remote->push_stop_reply (stop_reply);
7187 }
7188
7189 static int
7190 remote_notif_stop_can_get_pending_events (remote_target *remote,
7191 struct notif_client *self)
7192 {
7193 /* We can't get pending events in remote_notif_process for
7194 notification stop, and we have to do this in remote_wait_ns
7195 instead. If we fetch all queued events from stub, remote stub
7196 may exit and we have no chance to process them back in
7197 remote_wait_ns. */
7198 remote_state *rs = remote->get_remote_state ();
7199 mark_async_event_handler (rs->remote_async_inferior_event_token);
7200 return 0;
7201 }
7202
7203 stop_reply::~stop_reply ()
7204 {
7205 for (cached_reg_t &reg : regcache)
7206 xfree (reg.data);
7207 }
7208
7209 static notif_event_up
7210 remote_notif_stop_alloc_reply ()
7211 {
7212 return notif_event_up (new struct stop_reply ());
7213 }
7214
7215 /* A client of notification Stop. */
7216
7217 struct notif_client notif_client_stop =
7218 {
7219 "Stop",
7220 "vStopped",
7221 remote_notif_stop_parse,
7222 remote_notif_stop_ack,
7223 remote_notif_stop_can_get_pending_events,
7224 remote_notif_stop_alloc_reply,
7225 REMOTE_NOTIF_STOP,
7226 };
7227
7228 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
7229 the pid of the process that owns the threads we want to check, or
7230 -1 if we want to check all threads. */
7231
7232 static int
7233 is_pending_fork_parent (const target_waitstatus *ws, int event_pid,
7234 ptid_t thread_ptid)
7235 {
7236 if (ws->kind == TARGET_WAITKIND_FORKED
7237 || ws->kind == TARGET_WAITKIND_VFORKED)
7238 {
7239 if (event_pid == -1 || event_pid == thread_ptid.pid ())
7240 return 1;
7241 }
7242
7243 return 0;
7244 }
7245
7246 /* Return the thread's pending status used to determine whether the
7247 thread is a fork parent stopped at a fork event. */
7248
7249 static const target_waitstatus *
7250 thread_pending_fork_status (struct thread_info *thread)
7251 {
7252 if (thread->has_pending_waitstatus ())
7253 return &thread->pending_waitstatus ();
7254 else
7255 return &thread->pending_follow;
7256 }
7257
7258 /* Determine if THREAD is a pending fork parent thread. */
7259
7260 static int
7261 is_pending_fork_parent_thread (struct thread_info *thread)
7262 {
7263 const target_waitstatus *ws = thread_pending_fork_status (thread);
7264 int pid = -1;
7265
7266 return is_pending_fork_parent (ws, pid, thread->ptid);
7267 }
7268
7269 /* If CONTEXT contains any fork child threads that have not been
7270 reported yet, remove them from the CONTEXT list. If such a
7271 thread exists it is because we are stopped at a fork catchpoint
7272 and have not yet called follow_fork, which will set up the
7273 host-side data structures for the new process. */
7274
7275 void
7276 remote_target::remove_new_fork_children (threads_listing_context *context)
7277 {
7278 int pid = -1;
7279 struct notif_client *notif = &notif_client_stop;
7280
7281 /* For any threads stopped at a fork event, remove the corresponding
7282 fork child threads from the CONTEXT list. */
7283 for (thread_info *thread : all_non_exited_threads (this))
7284 {
7285 const target_waitstatus *ws = thread_pending_fork_status (thread);
7286
7287 if (is_pending_fork_parent (ws, pid, thread->ptid))
7288 context->remove_thread (ws->value.related_pid);
7289 }
7290
7291 /* Check for any pending fork events (not reported or processed yet)
7292 in process PID and remove those fork child threads from the
7293 CONTEXT list as well. */
7294 remote_notif_get_pending_events (notif);
7295 for (auto &event : get_remote_state ()->stop_reply_queue)
7296 if (event->ws.kind == TARGET_WAITKIND_FORKED
7297 || event->ws.kind == TARGET_WAITKIND_VFORKED
7298 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7299 context->remove_thread (event->ws.value.related_pid);
7300 }
7301
7302 /* Check whether any event pending in the vStopped queue would prevent a
7303 global or process wildcard vCont action. Set *may_global_wildcard to
7304 false if we can't do a global wildcard (vCont;c), and clear the event
7305 inferior's may_wildcard_vcont flag if we can't do a process-wide
7306 wildcard resume (vCont;c:pPID.-1). */
7307
7308 void
7309 remote_target::check_pending_events_prevent_wildcard_vcont
7310 (bool *may_global_wildcard)
7311 {
7312 struct notif_client *notif = &notif_client_stop;
7313
7314 remote_notif_get_pending_events (notif);
7315 for (auto &event : get_remote_state ()->stop_reply_queue)
7316 {
7317 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7318 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7319 continue;
7320
7321 if (event->ws.kind == TARGET_WAITKIND_FORKED
7322 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7323 *may_global_wildcard = false;
7324
7325 /* This may be the first time we heard about this process.
7326 Regardless, we must not do a global wildcard resume, otherwise
7327 we'd resume this process too. */
7328 *may_global_wildcard = false;
7329 if (event->ptid != null_ptid)
7330 {
7331 inferior *inf = find_inferior_ptid (this, event->ptid);
7332 if (inf != NULL)
7333 get_remote_inferior (inf)->may_wildcard_vcont = false;
7334 }
7335 }
7336 }
7337
7338 /* Discard all pending stop replies of inferior INF. */
7339
7340 void
7341 remote_target::discard_pending_stop_replies (struct inferior *inf)
7342 {
7343 struct stop_reply *reply;
7344 struct remote_state *rs = get_remote_state ();
7345 struct remote_notif_state *rns = rs->notif_state;
7346
7347 /* This function can be notified when an inferior exists. When the
7348 target is not remote, the notification state is NULL. */
7349 if (rs->remote_desc == NULL)
7350 return;
7351
7352 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7353
7354 /* Discard the in-flight notification. */
7355 if (reply != NULL && reply->ptid.pid () == inf->pid)
7356 {
7357 /* Leave the notification pending, since the server expects that
7358 we acknowledge it with vStopped. But clear its contents, so
7359 that later on when we acknowledge it, we also discard it. */
7360 reply->ws.kind = TARGET_WAITKIND_IGNORE;
7361
7362 if (remote_debug)
7363 fprintf_unfiltered (gdb_stdlog,
7364 "discarded in-flight notification\n");
7365 }
7366
7367 /* Discard the stop replies we have already pulled with
7368 vStopped. */
7369 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7370 rs->stop_reply_queue.end (),
7371 [=] (const stop_reply_up &event)
7372 {
7373 return event->ptid.pid () == inf->pid;
7374 });
7375 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7376 }
7377
7378 /* Discard the stop replies for RS in stop_reply_queue. */
7379
7380 void
7381 remote_target::discard_pending_stop_replies_in_queue ()
7382 {
7383 remote_state *rs = get_remote_state ();
7384
7385 /* Discard the stop replies we have already pulled with
7386 vStopped. */
7387 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7388 rs->stop_reply_queue.end (),
7389 [=] (const stop_reply_up &event)
7390 {
7391 return event->rs == rs;
7392 });
7393 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7394 }
7395
7396 /* Remove the first reply in 'stop_reply_queue' which matches
7397 PTID. */
7398
7399 struct stop_reply *
7400 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7401 {
7402 remote_state *rs = get_remote_state ();
7403
7404 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7405 rs->stop_reply_queue.end (),
7406 [=] (const stop_reply_up &event)
7407 {
7408 return event->ptid.matches (ptid);
7409 });
7410 struct stop_reply *result;
7411 if (iter == rs->stop_reply_queue.end ())
7412 result = nullptr;
7413 else
7414 {
7415 result = iter->release ();
7416 rs->stop_reply_queue.erase (iter);
7417 }
7418
7419 if (notif_debug)
7420 fprintf_unfiltered (gdb_stdlog,
7421 "notif: discard queued event: 'Stop' in %s\n",
7422 target_pid_to_str (ptid).c_str ());
7423
7424 return result;
7425 }
7426
7427 /* Look for a queued stop reply belonging to PTID. If one is found,
7428 remove it from the queue, and return it. Returns NULL if none is
7429 found. If there are still queued events left to process, tell the
7430 event loop to get back to target_wait soon. */
7431
7432 struct stop_reply *
7433 remote_target::queued_stop_reply (ptid_t ptid)
7434 {
7435 remote_state *rs = get_remote_state ();
7436 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7437
7438 if (!rs->stop_reply_queue.empty ())
7439 {
7440 /* There's still at least an event left. */
7441 mark_async_event_handler (rs->remote_async_inferior_event_token);
7442 }
7443
7444 return r;
7445 }
7446
7447 /* Push a fully parsed stop reply in the stop reply queue. Since we
7448 know that we now have at least one queued event left to pass to the
7449 core side, tell the event loop to get back to target_wait soon. */
7450
7451 void
7452 remote_target::push_stop_reply (struct stop_reply *new_event)
7453 {
7454 remote_state *rs = get_remote_state ();
7455 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7456
7457 if (notif_debug)
7458 fprintf_unfiltered (gdb_stdlog,
7459 "notif: push 'Stop' %s to queue %d\n",
7460 target_pid_to_str (new_event->ptid).c_str (),
7461 int (rs->stop_reply_queue.size ()));
7462
7463 mark_async_event_handler (rs->remote_async_inferior_event_token);
7464 }
7465
7466 /* Returns true if we have a stop reply for PTID. */
7467
7468 int
7469 remote_target::peek_stop_reply (ptid_t ptid)
7470 {
7471 remote_state *rs = get_remote_state ();
7472 for (auto &event : rs->stop_reply_queue)
7473 if (ptid == event->ptid
7474 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7475 return 1;
7476 return 0;
7477 }
7478
7479 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7480 starting with P and ending with PEND matches PREFIX. */
7481
7482 static int
7483 strprefix (const char *p, const char *pend, const char *prefix)
7484 {
7485 for ( ; p < pend; p++, prefix++)
7486 if (*p != *prefix)
7487 return 0;
7488 return *prefix == '\0';
7489 }
7490
7491 /* Parse the stop reply in BUF. Either the function succeeds, and the
7492 result is stored in EVENT, or throws an error. */
7493
7494 void
7495 remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
7496 {
7497 remote_arch_state *rsa = NULL;
7498 ULONGEST addr;
7499 const char *p;
7500 int skipregs = 0;
7501
7502 event->ptid = null_ptid;
7503 event->rs = get_remote_state ();
7504 event->ws.kind = TARGET_WAITKIND_IGNORE;
7505 event->ws.value.integer = 0;
7506 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7507 event->regcache.clear ();
7508 event->core = -1;
7509
7510 switch (buf[0])
7511 {
7512 case 'T': /* Status with PC, SP, FP, ... */
7513 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7514 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7515 ss = signal number
7516 n... = register number
7517 r... = register contents
7518 */
7519
7520 p = &buf[3]; /* after Txx */
7521 while (*p)
7522 {
7523 const char *p1;
7524 int fieldsize;
7525
7526 p1 = strchr (p, ':');
7527 if (p1 == NULL)
7528 error (_("Malformed packet(a) (missing colon): %s\n\
7529 Packet: '%s'\n"),
7530 p, buf);
7531 if (p == p1)
7532 error (_("Malformed packet(a) (missing register number): %s\n\
7533 Packet: '%s'\n"),
7534 p, buf);
7535
7536 /* Some "registers" are actually extended stop information.
7537 Note if you're adding a new entry here: GDB 7.9 and
7538 earlier assume that all register "numbers" that start
7539 with an hex digit are real register numbers. Make sure
7540 the server only sends such a packet if it knows the
7541 client understands it. */
7542
7543 if (strprefix (p, p1, "thread"))
7544 event->ptid = read_ptid (++p1, &p);
7545 else if (strprefix (p, p1, "syscall_entry"))
7546 {
7547 ULONGEST sysno;
7548
7549 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7550 p = unpack_varlen_hex (++p1, &sysno);
7551 event->ws.value.syscall_number = (int) sysno;
7552 }
7553 else if (strprefix (p, p1, "syscall_return"))
7554 {
7555 ULONGEST sysno;
7556
7557 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7558 p = unpack_varlen_hex (++p1, &sysno);
7559 event->ws.value.syscall_number = (int) sysno;
7560 }
7561 else if (strprefix (p, p1, "watch")
7562 || strprefix (p, p1, "rwatch")
7563 || strprefix (p, p1, "awatch"))
7564 {
7565 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7566 p = unpack_varlen_hex (++p1, &addr);
7567 event->watch_data_address = (CORE_ADDR) addr;
7568 }
7569 else if (strprefix (p, p1, "swbreak"))
7570 {
7571 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7572
7573 /* Make sure the stub doesn't forget to indicate support
7574 with qSupported. */
7575 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7576 error (_("Unexpected swbreak stop reason"));
7577
7578 /* The value part is documented as "must be empty",
7579 though we ignore it, in case we ever decide to make
7580 use of it in a backward compatible way. */
7581 p = strchrnul (p1 + 1, ';');
7582 }
7583 else if (strprefix (p, p1, "hwbreak"))
7584 {
7585 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7586
7587 /* Make sure the stub doesn't forget to indicate support
7588 with qSupported. */
7589 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7590 error (_("Unexpected hwbreak stop reason"));
7591
7592 /* See above. */
7593 p = strchrnul (p1 + 1, ';');
7594 }
7595 else if (strprefix (p, p1, "library"))
7596 {
7597 event->ws.kind = TARGET_WAITKIND_LOADED;
7598 p = strchrnul (p1 + 1, ';');
7599 }
7600 else if (strprefix (p, p1, "replaylog"))
7601 {
7602 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7603 /* p1 will indicate "begin" or "end", but it makes
7604 no difference for now, so ignore it. */
7605 p = strchrnul (p1 + 1, ';');
7606 }
7607 else if (strprefix (p, p1, "core"))
7608 {
7609 ULONGEST c;
7610
7611 p = unpack_varlen_hex (++p1, &c);
7612 event->core = c;
7613 }
7614 else if (strprefix (p, p1, "fork"))
7615 {
7616 event->ws.value.related_pid = read_ptid (++p1, &p);
7617 event->ws.kind = TARGET_WAITKIND_FORKED;
7618 }
7619 else if (strprefix (p, p1, "vfork"))
7620 {
7621 event->ws.value.related_pid = read_ptid (++p1, &p);
7622 event->ws.kind = TARGET_WAITKIND_VFORKED;
7623 }
7624 else if (strprefix (p, p1, "vforkdone"))
7625 {
7626 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
7627 p = strchrnul (p1 + 1, ';');
7628 }
7629 else if (strprefix (p, p1, "exec"))
7630 {
7631 ULONGEST ignored;
7632 int pathlen;
7633
7634 /* Determine the length of the execd pathname. */
7635 p = unpack_varlen_hex (++p1, &ignored);
7636 pathlen = (p - p1) / 2;
7637
7638 /* Save the pathname for event reporting and for
7639 the next run command. */
7640 gdb::unique_xmalloc_ptr<char[]> pathname
7641 ((char *) xmalloc (pathlen + 1));
7642 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
7643 pathname[pathlen] = '\0';
7644
7645 /* This is freed during event handling. */
7646 event->ws.value.execd_pathname = pathname.release ();
7647 event->ws.kind = TARGET_WAITKIND_EXECD;
7648
7649 /* Skip the registers included in this packet, since
7650 they may be for an architecture different from the
7651 one used by the original program. */
7652 skipregs = 1;
7653 }
7654 else if (strprefix (p, p1, "create"))
7655 {
7656 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
7657 p = strchrnul (p1 + 1, ';');
7658 }
7659 else
7660 {
7661 ULONGEST pnum;
7662 const char *p_temp;
7663
7664 if (skipregs)
7665 {
7666 p = strchrnul (p1 + 1, ';');
7667 p++;
7668 continue;
7669 }
7670
7671 /* Maybe a real ``P'' register number. */
7672 p_temp = unpack_varlen_hex (p, &pnum);
7673 /* If the first invalid character is the colon, we got a
7674 register number. Otherwise, it's an unknown stop
7675 reason. */
7676 if (p_temp == p1)
7677 {
7678 /* If we haven't parsed the event's thread yet, find
7679 it now, in order to find the architecture of the
7680 reported expedited registers. */
7681 if (event->ptid == null_ptid)
7682 {
7683 /* If there is no thread-id information then leave
7684 the event->ptid as null_ptid. Later in
7685 process_stop_reply we will pick a suitable
7686 thread. */
7687 const char *thr = strstr (p1 + 1, ";thread:");
7688 if (thr != NULL)
7689 event->ptid = read_ptid (thr + strlen (";thread:"),
7690 NULL);
7691 }
7692
7693 if (rsa == NULL)
7694 {
7695 inferior *inf
7696 = (event->ptid == null_ptid
7697 ? NULL
7698 : find_inferior_ptid (this, event->ptid));
7699 /* If this is the first time we learn anything
7700 about this process, skip the registers
7701 included in this packet, since we don't yet
7702 know which architecture to use to parse them.
7703 We'll determine the architecture later when
7704 we process the stop reply and retrieve the
7705 target description, via
7706 remote_notice_new_inferior ->
7707 post_create_inferior. */
7708 if (inf == NULL)
7709 {
7710 p = strchrnul (p1 + 1, ';');
7711 p++;
7712 continue;
7713 }
7714
7715 event->arch = inf->gdbarch;
7716 rsa = event->rs->get_remote_arch_state (event->arch);
7717 }
7718
7719 packet_reg *reg
7720 = packet_reg_from_pnum (event->arch, rsa, pnum);
7721 cached_reg_t cached_reg;
7722
7723 if (reg == NULL)
7724 error (_("Remote sent bad register number %s: %s\n\
7725 Packet: '%s'\n"),
7726 hex_string (pnum), p, buf);
7727
7728 cached_reg.num = reg->regnum;
7729 cached_reg.data = (gdb_byte *)
7730 xmalloc (register_size (event->arch, reg->regnum));
7731
7732 p = p1 + 1;
7733 fieldsize = hex2bin (p, cached_reg.data,
7734 register_size (event->arch, reg->regnum));
7735 p += 2 * fieldsize;
7736 if (fieldsize < register_size (event->arch, reg->regnum))
7737 warning (_("Remote reply is too short: %s"), buf);
7738
7739 event->regcache.push_back (cached_reg);
7740 }
7741 else
7742 {
7743 /* Not a number. Silently skip unknown optional
7744 info. */
7745 p = strchrnul (p1 + 1, ';');
7746 }
7747 }
7748
7749 if (*p != ';')
7750 error (_("Remote register badly formatted: %s\nhere: %s"),
7751 buf, p);
7752 ++p;
7753 }
7754
7755 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7756 break;
7757
7758 /* fall through */
7759 case 'S': /* Old style status, just signal only. */
7760 {
7761 int sig;
7762
7763 event->ws.kind = TARGET_WAITKIND_STOPPED;
7764 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7765 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7766 event->ws.value.sig = (enum gdb_signal) sig;
7767 else
7768 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7769 }
7770 break;
7771 case 'w': /* Thread exited. */
7772 {
7773 ULONGEST value;
7774
7775 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7776 p = unpack_varlen_hex (&buf[1], &value);
7777 event->ws.value.integer = value;
7778 if (*p != ';')
7779 error (_("stop reply packet badly formatted: %s"), buf);
7780 event->ptid = read_ptid (++p, NULL);
7781 break;
7782 }
7783 case 'W': /* Target exited. */
7784 case 'X':
7785 {
7786 ULONGEST value;
7787
7788 /* GDB used to accept only 2 hex chars here. Stubs should
7789 only send more if they detect GDB supports multi-process
7790 support. */
7791 p = unpack_varlen_hex (&buf[1], &value);
7792
7793 if (buf[0] == 'W')
7794 {
7795 /* The remote process exited. */
7796 event->ws.kind = TARGET_WAITKIND_EXITED;
7797 event->ws.value.integer = value;
7798 }
7799 else
7800 {
7801 /* The remote process exited with a signal. */
7802 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7803 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7804 event->ws.value.sig = (enum gdb_signal) value;
7805 else
7806 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7807 }
7808
7809 /* If no process is specified, return null_ptid, and let the
7810 caller figure out the right process to use. */
7811 int pid = 0;
7812 if (*p == '\0')
7813 ;
7814 else if (*p == ';')
7815 {
7816 p++;
7817
7818 if (*p == '\0')
7819 ;
7820 else if (startswith (p, "process:"))
7821 {
7822 ULONGEST upid;
7823
7824 p += sizeof ("process:") - 1;
7825 unpack_varlen_hex (p, &upid);
7826 pid = upid;
7827 }
7828 else
7829 error (_("unknown stop reply packet: %s"), buf);
7830 }
7831 else
7832 error (_("unknown stop reply packet: %s"), buf);
7833 event->ptid = ptid_t (pid);
7834 }
7835 break;
7836 case 'N':
7837 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7838 event->ptid = minus_one_ptid;
7839 break;
7840 }
7841 }
7842
7843 /* When the stub wants to tell GDB about a new notification reply, it
7844 sends a notification (%Stop, for example). Those can come it at
7845 any time, hence, we have to make sure that any pending
7846 putpkt/getpkt sequence we're making is finished, before querying
7847 the stub for more events with the corresponding ack command
7848 (vStopped, for example). E.g., if we started a vStopped sequence
7849 immediately upon receiving the notification, something like this
7850 could happen:
7851
7852 1.1) --> Hg 1
7853 1.2) <-- OK
7854 1.3) --> g
7855 1.4) <-- %Stop
7856 1.5) --> vStopped
7857 1.6) <-- (registers reply to step #1.3)
7858
7859 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7860 query.
7861
7862 To solve this, whenever we parse a %Stop notification successfully,
7863 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7864 doing whatever we were doing:
7865
7866 2.1) --> Hg 1
7867 2.2) <-- OK
7868 2.3) --> g
7869 2.4) <-- %Stop
7870 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7871 2.5) <-- (registers reply to step #2.3)
7872
7873 Eventually after step #2.5, we return to the event loop, which
7874 notices there's an event on the
7875 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7876 associated callback --- the function below. At this point, we're
7877 always safe to start a vStopped sequence. :
7878
7879 2.6) --> vStopped
7880 2.7) <-- T05 thread:2
7881 2.8) --> vStopped
7882 2.9) --> OK
7883 */
7884
7885 void
7886 remote_target::remote_notif_get_pending_events (notif_client *nc)
7887 {
7888 struct remote_state *rs = get_remote_state ();
7889
7890 if (rs->notif_state->pending_event[nc->id] != NULL)
7891 {
7892 if (notif_debug)
7893 fprintf_unfiltered (gdb_stdlog,
7894 "notif: process: '%s' ack pending event\n",
7895 nc->name);
7896
7897 /* acknowledge */
7898 nc->ack (this, nc, rs->buf.data (),
7899 rs->notif_state->pending_event[nc->id]);
7900 rs->notif_state->pending_event[nc->id] = NULL;
7901
7902 while (1)
7903 {
7904 getpkt (&rs->buf, 0);
7905 if (strcmp (rs->buf.data (), "OK") == 0)
7906 break;
7907 else
7908 remote_notif_ack (this, nc, rs->buf.data ());
7909 }
7910 }
7911 else
7912 {
7913 if (notif_debug)
7914 fprintf_unfiltered (gdb_stdlog,
7915 "notif: process: '%s' no pending reply\n",
7916 nc->name);
7917 }
7918 }
7919
7920 /* Wrapper around remote_target::remote_notif_get_pending_events to
7921 avoid having to export the whole remote_target class. */
7922
7923 void
7924 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7925 {
7926 remote->remote_notif_get_pending_events (nc);
7927 }
7928
7929 /* Called from process_stop_reply when the stop packet we are responding
7930 to didn't include a process-id or thread-id. STATUS is the stop event
7931 we are responding to.
7932
7933 It is the task of this function to select a suitable thread (or process)
7934 and return its ptid, this is the thread (or process) we will assume the
7935 stop event came from.
7936
7937 In some cases there isn't really any choice about which thread (or
7938 process) is selected, a basic remote with a single process containing a
7939 single thread might choose not to send any process-id or thread-id in
7940 its stop packets, this function will select and return the one and only
7941 thread.
7942
7943 However, if a target supports multiple threads (or processes) and still
7944 doesn't include a thread-id (or process-id) in its stop packet then
7945 first, this is a badly behaving target, and second, we're going to have
7946 to select a thread (or process) at random and use that. This function
7947 will print a warning to the user if it detects that there is the
7948 possibility that GDB is guessing which thread (or process) to
7949 report.
7950
7951 Note that this is called before GDB fetches the updated thread list from the
7952 target. So it's possible for the stop reply to be ambiguous and for GDB to
7953 not realize it. For example, if there's initially one thread, the target
7954 spawns a second thread, and then sends a stop reply without an id that
7955 concerns the first thread. GDB will assume the stop reply is about the
7956 first thread - the only thread it knows about - without printing a warning.
7957 Anyway, if the remote meant for the stop reply to be about the second thread,
7958 then it would be really broken, because GDB doesn't know about that thread
7959 yet. */
7960
7961 ptid_t
7962 remote_target::select_thread_for_ambiguous_stop_reply
7963 (const struct target_waitstatus *status)
7964 {
7965 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7966
7967 /* Some stop events apply to all threads in an inferior, while others
7968 only apply to a single thread. */
7969 bool process_wide_stop
7970 = (status->kind == TARGET_WAITKIND_EXITED
7971 || status->kind == TARGET_WAITKIND_SIGNALLED);
7972
7973 remote_debug_printf ("process_wide_stop = %d", process_wide_stop);
7974
7975 thread_info *first_resumed_thread = nullptr;
7976 bool ambiguous = false;
7977
7978 /* Consider all non-exited threads of the target, find the first resumed
7979 one. */
7980 for (thread_info *thr : all_non_exited_threads (this))
7981 {
7982 remote_thread_info *remote_thr = get_remote_thread_info (thr);
7983
7984 if (remote_thr->get_resume_state () != resume_state::RESUMED)
7985 continue;
7986
7987 if (first_resumed_thread == nullptr)
7988 first_resumed_thread = thr;
7989 else if (!process_wide_stop
7990 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7991 ambiguous = true;
7992 }
7993
7994 remote_debug_printf ("first resumed thread is %s",
7995 pid_to_str (first_resumed_thread->ptid).c_str ());
7996 remote_debug_printf ("is this guess ambiguous? = %d", ambiguous);
7997
7998 gdb_assert (first_resumed_thread != nullptr);
7999
8000 /* Warn if the remote target is sending ambiguous stop replies. */
8001 if (ambiguous)
8002 {
8003 static bool warned = false;
8004
8005 if (!warned)
8006 {
8007 /* If you are seeing this warning then the remote target has
8008 stopped without specifying a thread-id, but the target
8009 does have multiple threads (or inferiors), and so GDB is
8010 having to guess which thread stopped.
8011
8012 Examples of what might cause this are the target sending
8013 and 'S' stop packet, or a 'T' stop packet and not
8014 including a thread-id.
8015
8016 Additionally, the target might send a 'W' or 'X packet
8017 without including a process-id, when the target has
8018 multiple running inferiors. */
8019 if (process_wide_stop)
8020 warning (_("multi-inferior target stopped without "
8021 "sending a process-id, using first "
8022 "non-exited inferior"));
8023 else
8024 warning (_("multi-threaded target stopped without "
8025 "sending a thread-id, using first "
8026 "non-exited thread"));
8027 warned = true;
8028 }
8029 }
8030
8031 /* If this is a stop for all threads then don't use a particular threads
8032 ptid, instead create a new ptid where only the pid field is set. */
8033 if (process_wide_stop)
8034 return ptid_t (first_resumed_thread->ptid.pid ());
8035 else
8036 return first_resumed_thread->ptid;
8037 }
8038
8039 /* Called when it is decided that STOP_REPLY holds the info of the
8040 event that is to be returned to the core. This function always
8041 destroys STOP_REPLY. */
8042
8043 ptid_t
8044 remote_target::process_stop_reply (struct stop_reply *stop_reply,
8045 struct target_waitstatus *status)
8046 {
8047 *status = stop_reply->ws;
8048 ptid_t ptid = stop_reply->ptid;
8049
8050 /* If no thread/process was reported by the stub then select a suitable
8051 thread/process. */
8052 if (ptid == null_ptid)
8053 ptid = select_thread_for_ambiguous_stop_reply (status);
8054 gdb_assert (ptid != null_ptid);
8055
8056 if (status->kind != TARGET_WAITKIND_EXITED
8057 && status->kind != TARGET_WAITKIND_SIGNALLED
8058 && status->kind != TARGET_WAITKIND_NO_RESUMED)
8059 {
8060 /* Expedited registers. */
8061 if (!stop_reply->regcache.empty ())
8062 {
8063 struct regcache *regcache
8064 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
8065
8066 for (cached_reg_t &reg : stop_reply->regcache)
8067 {
8068 regcache->raw_supply (reg.num, reg.data);
8069 xfree (reg.data);
8070 }
8071
8072 stop_reply->regcache.clear ();
8073 }
8074
8075 remote_notice_new_inferior (ptid, false);
8076 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
8077 remote_thr->core = stop_reply->core;
8078 remote_thr->stop_reason = stop_reply->stop_reason;
8079 remote_thr->watch_data_address = stop_reply->watch_data_address;
8080
8081 if (target_is_non_stop_p ())
8082 {
8083 /* If the target works in non-stop mode, a stop-reply indicates that
8084 only this thread stopped. */
8085 remote_thr->set_not_resumed ();
8086 }
8087 else
8088 {
8089 /* If the target works in all-stop mode, a stop-reply indicates that
8090 all the target's threads stopped. */
8091 for (thread_info *tp : all_non_exited_threads (this))
8092 get_remote_thread_info (tp)->set_not_resumed ();
8093 }
8094 }
8095
8096 delete stop_reply;
8097 return ptid;
8098 }
8099
8100 /* The non-stop mode version of target_wait. */
8101
8102 ptid_t
8103 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
8104 target_wait_flags options)
8105 {
8106 struct remote_state *rs = get_remote_state ();
8107 struct stop_reply *stop_reply;
8108 int ret;
8109 int is_notif = 0;
8110
8111 /* If in non-stop mode, get out of getpkt even if a
8112 notification is received. */
8113
8114 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
8115 while (1)
8116 {
8117 if (ret != -1 && !is_notif)
8118 switch (rs->buf[0])
8119 {
8120 case 'E': /* Error of some sort. */
8121 /* We're out of sync with the target now. Did it continue
8122 or not? We can't tell which thread it was in non-stop,
8123 so just ignore this. */
8124 warning (_("Remote failure reply: %s"), rs->buf.data ());
8125 break;
8126 case 'O': /* Console output. */
8127 remote_console_output (&rs->buf[1]);
8128 break;
8129 default:
8130 warning (_("Invalid remote reply: %s"), rs->buf.data ());
8131 break;
8132 }
8133
8134 /* Acknowledge a pending stop reply that may have arrived in the
8135 mean time. */
8136 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
8137 remote_notif_get_pending_events (&notif_client_stop);
8138
8139 /* If indeed we noticed a stop reply, we're done. */
8140 stop_reply = queued_stop_reply (ptid);
8141 if (stop_reply != NULL)
8142 return process_stop_reply (stop_reply, status);
8143
8144 /* Still no event. If we're just polling for an event, then
8145 return to the event loop. */
8146 if (options & TARGET_WNOHANG)
8147 {
8148 status->kind = TARGET_WAITKIND_IGNORE;
8149 return minus_one_ptid;
8150 }
8151
8152 /* Otherwise do a blocking wait. */
8153 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
8154 }
8155 }
8156
8157 /* Return the first resumed thread. */
8158
8159 static ptid_t
8160 first_remote_resumed_thread (remote_target *target)
8161 {
8162 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
8163 if (tp->resumed ())
8164 return tp->ptid;
8165 return null_ptid;
8166 }
8167
8168 /* Wait until the remote machine stops, then return, storing status in
8169 STATUS just as `wait' would. */
8170
8171 ptid_t
8172 remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
8173 target_wait_flags options)
8174 {
8175 struct remote_state *rs = get_remote_state ();
8176 ptid_t event_ptid = null_ptid;
8177 char *buf;
8178 struct stop_reply *stop_reply;
8179
8180 again:
8181
8182 status->kind = TARGET_WAITKIND_IGNORE;
8183 status->value.integer = 0;
8184
8185 stop_reply = queued_stop_reply (ptid);
8186 if (stop_reply != NULL)
8187 return process_stop_reply (stop_reply, status);
8188
8189 if (rs->cached_wait_status)
8190 /* Use the cached wait status, but only once. */
8191 rs->cached_wait_status = 0;
8192 else
8193 {
8194 int ret;
8195 int is_notif;
8196 int forever = ((options & TARGET_WNOHANG) == 0
8197 && rs->wait_forever_enabled_p);
8198
8199 if (!rs->waiting_for_stop_reply)
8200 {
8201 status->kind = TARGET_WAITKIND_NO_RESUMED;
8202 return minus_one_ptid;
8203 }
8204
8205 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8206 _never_ wait for ever -> test on target_is_async_p().
8207 However, before we do that we need to ensure that the caller
8208 knows how to take the target into/out of async mode. */
8209 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
8210
8211 /* GDB gets a notification. Return to core as this event is
8212 not interesting. */
8213 if (ret != -1 && is_notif)
8214 return minus_one_ptid;
8215
8216 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8217 return minus_one_ptid;
8218 }
8219
8220 buf = rs->buf.data ();
8221
8222 /* Assume that the target has acknowledged Ctrl-C unless we receive
8223 an 'F' or 'O' packet. */
8224 if (buf[0] != 'F' && buf[0] != 'O')
8225 rs->ctrlc_pending_p = 0;
8226
8227 switch (buf[0])
8228 {
8229 case 'E': /* Error of some sort. */
8230 /* We're out of sync with the target now. Did it continue or
8231 not? Not is more likely, so report a stop. */
8232 rs->waiting_for_stop_reply = 0;
8233
8234 warning (_("Remote failure reply: %s"), buf);
8235 status->kind = TARGET_WAITKIND_STOPPED;
8236 status->value.sig = GDB_SIGNAL_0;
8237 break;
8238 case 'F': /* File-I/O request. */
8239 /* GDB may access the inferior memory while handling the File-I/O
8240 request, but we don't want GDB accessing memory while waiting
8241 for a stop reply. See the comments in putpkt_binary. Set
8242 waiting_for_stop_reply to 0 temporarily. */
8243 rs->waiting_for_stop_reply = 0;
8244 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
8245 rs->ctrlc_pending_p = 0;
8246 /* GDB handled the File-I/O request, and the target is running
8247 again. Keep waiting for events. */
8248 rs->waiting_for_stop_reply = 1;
8249 break;
8250 case 'N': case 'T': case 'S': case 'X': case 'W':
8251 {
8252 /* There is a stop reply to handle. */
8253 rs->waiting_for_stop_reply = 0;
8254
8255 stop_reply
8256 = (struct stop_reply *) remote_notif_parse (this,
8257 &notif_client_stop,
8258 rs->buf.data ());
8259
8260 event_ptid = process_stop_reply (stop_reply, status);
8261 break;
8262 }
8263 case 'O': /* Console output. */
8264 remote_console_output (buf + 1);
8265 break;
8266 case '\0':
8267 if (rs->last_sent_signal != GDB_SIGNAL_0)
8268 {
8269 /* Zero length reply means that we tried 'S' or 'C' and the
8270 remote system doesn't support it. */
8271 target_terminal::ours_for_output ();
8272 printf_filtered
8273 ("Can't send signals to this remote system. %s not sent.\n",
8274 gdb_signal_to_name (rs->last_sent_signal));
8275 rs->last_sent_signal = GDB_SIGNAL_0;
8276 target_terminal::inferior ();
8277
8278 strcpy (buf, rs->last_sent_step ? "s" : "c");
8279 putpkt (buf);
8280 break;
8281 }
8282 /* fallthrough */
8283 default:
8284 warning (_("Invalid remote reply: %s"), buf);
8285 break;
8286 }
8287
8288 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8289 return minus_one_ptid;
8290 else if (status->kind == TARGET_WAITKIND_IGNORE)
8291 {
8292 /* Nothing interesting happened. If we're doing a non-blocking
8293 poll, we're done. Otherwise, go back to waiting. */
8294 if (options & TARGET_WNOHANG)
8295 return minus_one_ptid;
8296 else
8297 goto again;
8298 }
8299 else if (status->kind != TARGET_WAITKIND_EXITED
8300 && status->kind != TARGET_WAITKIND_SIGNALLED)
8301 {
8302 if (event_ptid != null_ptid)
8303 record_currthread (rs, event_ptid);
8304 else
8305 event_ptid = first_remote_resumed_thread (this);
8306 }
8307 else
8308 {
8309 /* A process exit. Invalidate our notion of current thread. */
8310 record_currthread (rs, minus_one_ptid);
8311 /* It's possible that the packet did not include a pid. */
8312 if (event_ptid == null_ptid)
8313 event_ptid = first_remote_resumed_thread (this);
8314 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8315 if (event_ptid == null_ptid)
8316 event_ptid = magic_null_ptid;
8317 }
8318
8319 return event_ptid;
8320 }
8321
8322 /* Wait until the remote machine stops, then return, storing status in
8323 STATUS just as `wait' would. */
8324
8325 ptid_t
8326 remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8327 target_wait_flags options)
8328 {
8329 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
8330
8331 remote_state *rs = get_remote_state ();
8332
8333 /* Start by clearing the flag that asks for our wait method to be called,
8334 we'll mark it again at the end if needed. */
8335 if (target_is_async_p ())
8336 clear_async_event_handler (rs->remote_async_inferior_event_token);
8337
8338 ptid_t event_ptid;
8339
8340 if (target_is_non_stop_p ())
8341 event_ptid = wait_ns (ptid, status, options);
8342 else
8343 event_ptid = wait_as (ptid, status, options);
8344
8345 if (target_is_async_p ())
8346 {
8347 /* If there are events left in the queue, or unacknowledged
8348 notifications, then tell the event loop to call us again. */
8349 if (!rs->stop_reply_queue.empty ()
8350 || rs->notif_state->pending_event[notif_client_stop.id] != nullptr)
8351 mark_async_event_handler (rs->remote_async_inferior_event_token);
8352 }
8353
8354 return event_ptid;
8355 }
8356
8357 /* Fetch a single register using a 'p' packet. */
8358
8359 int
8360 remote_target::fetch_register_using_p (struct regcache *regcache,
8361 packet_reg *reg)
8362 {
8363 struct gdbarch *gdbarch = regcache->arch ();
8364 struct remote_state *rs = get_remote_state ();
8365 char *buf, *p;
8366 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8367 int i;
8368
8369 if (packet_support (PACKET_p) == PACKET_DISABLE)
8370 return 0;
8371
8372 if (reg->pnum == -1)
8373 return 0;
8374
8375 p = rs->buf.data ();
8376 *p++ = 'p';
8377 p += hexnumstr (p, reg->pnum);
8378 *p++ = '\0';
8379 putpkt (rs->buf);
8380 getpkt (&rs->buf, 0);
8381
8382 buf = rs->buf.data ();
8383
8384 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
8385 {
8386 case PACKET_OK:
8387 break;
8388 case PACKET_UNKNOWN:
8389 return 0;
8390 case PACKET_ERROR:
8391 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
8392 gdbarch_register_name (regcache->arch (),
8393 reg->regnum),
8394 buf);
8395 }
8396
8397 /* If this register is unfetchable, tell the regcache. */
8398 if (buf[0] == 'x')
8399 {
8400 regcache->raw_supply (reg->regnum, NULL);
8401 return 1;
8402 }
8403
8404 /* Otherwise, parse and supply the value. */
8405 p = buf;
8406 i = 0;
8407 while (p[0] != 0)
8408 {
8409 if (p[1] == 0)
8410 error (_("fetch_register_using_p: early buf termination"));
8411
8412 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8413 p += 2;
8414 }
8415 regcache->raw_supply (reg->regnum, regp);
8416 return 1;
8417 }
8418
8419 /* Fetch the registers included in the target's 'g' packet. */
8420
8421 int
8422 remote_target::send_g_packet ()
8423 {
8424 struct remote_state *rs = get_remote_state ();
8425 int buf_len;
8426
8427 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
8428 putpkt (rs->buf);
8429 getpkt (&rs->buf, 0);
8430 if (packet_check_result (rs->buf) == PACKET_ERROR)
8431 error (_("Could not read registers; remote failure reply '%s'"),
8432 rs->buf.data ());
8433
8434 /* We can get out of synch in various cases. If the first character
8435 in the buffer is not a hex character, assume that has happened
8436 and try to fetch another packet to read. */
8437 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8438 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8439 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8440 && rs->buf[0] != 'x') /* New: unavailable register value. */
8441 {
8442 remote_debug_printf ("Bad register packet; fetching a new packet");
8443 getpkt (&rs->buf, 0);
8444 }
8445
8446 buf_len = strlen (rs->buf.data ());
8447
8448 /* Sanity check the received packet. */
8449 if (buf_len % 2 != 0)
8450 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
8451
8452 return buf_len / 2;
8453 }
8454
8455 void
8456 remote_target::process_g_packet (struct regcache *regcache)
8457 {
8458 struct gdbarch *gdbarch = regcache->arch ();
8459 struct remote_state *rs = get_remote_state ();
8460 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8461 int i, buf_len;
8462 char *p;
8463 char *regs;
8464
8465 buf_len = strlen (rs->buf.data ());
8466
8467 /* Further sanity checks, with knowledge of the architecture. */
8468 if (buf_len > 2 * rsa->sizeof_g_packet)
8469 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8470 "bytes): %s"),
8471 rsa->sizeof_g_packet, buf_len / 2,
8472 rs->buf.data ());
8473
8474 /* Save the size of the packet sent to us by the target. It is used
8475 as a heuristic when determining the max size of packets that the
8476 target can safely receive. */
8477 if (rsa->actual_register_packet_size == 0)
8478 rsa->actual_register_packet_size = buf_len;
8479
8480 /* If this is smaller than we guessed the 'g' packet would be,
8481 update our records. A 'g' reply that doesn't include a register's
8482 value implies either that the register is not available, or that
8483 the 'p' packet must be used. */
8484 if (buf_len < 2 * rsa->sizeof_g_packet)
8485 {
8486 long sizeof_g_packet = buf_len / 2;
8487
8488 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8489 {
8490 long offset = rsa->regs[i].offset;
8491 long reg_size = register_size (gdbarch, i);
8492
8493 if (rsa->regs[i].pnum == -1)
8494 continue;
8495
8496 if (offset >= sizeof_g_packet)
8497 rsa->regs[i].in_g_packet = 0;
8498 else if (offset + reg_size > sizeof_g_packet)
8499 error (_("Truncated register %d in remote 'g' packet"), i);
8500 else
8501 rsa->regs[i].in_g_packet = 1;
8502 }
8503
8504 /* Looks valid enough, we can assume this is the correct length
8505 for a 'g' packet. It's important not to adjust
8506 rsa->sizeof_g_packet if we have truncated registers otherwise
8507 this "if" won't be run the next time the method is called
8508 with a packet of the same size and one of the internal errors
8509 below will trigger instead. */
8510 rsa->sizeof_g_packet = sizeof_g_packet;
8511 }
8512
8513 regs = (char *) alloca (rsa->sizeof_g_packet);
8514
8515 /* Unimplemented registers read as all bits zero. */
8516 memset (regs, 0, rsa->sizeof_g_packet);
8517
8518 /* Reply describes registers byte by byte, each byte encoded as two
8519 hex characters. Suck them all up, then supply them to the
8520 register cacheing/storage mechanism. */
8521
8522 p = rs->buf.data ();
8523 for (i = 0; i < rsa->sizeof_g_packet; i++)
8524 {
8525 if (p[0] == 0 || p[1] == 0)
8526 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8527 internal_error (__FILE__, __LINE__,
8528 _("unexpected end of 'g' packet reply"));
8529
8530 if (p[0] == 'x' && p[1] == 'x')
8531 regs[i] = 0; /* 'x' */
8532 else
8533 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8534 p += 2;
8535 }
8536
8537 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8538 {
8539 struct packet_reg *r = &rsa->regs[i];
8540 long reg_size = register_size (gdbarch, i);
8541
8542 if (r->in_g_packet)
8543 {
8544 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
8545 /* This shouldn't happen - we adjusted in_g_packet above. */
8546 internal_error (__FILE__, __LINE__,
8547 _("unexpected end of 'g' packet reply"));
8548 else if (rs->buf[r->offset * 2] == 'x')
8549 {
8550 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
8551 /* The register isn't available, mark it as such (at
8552 the same time setting the value to zero). */
8553 regcache->raw_supply (r->regnum, NULL);
8554 }
8555 else
8556 regcache->raw_supply (r->regnum, regs + r->offset);
8557 }
8558 }
8559 }
8560
8561 void
8562 remote_target::fetch_registers_using_g (struct regcache *regcache)
8563 {
8564 send_g_packet ();
8565 process_g_packet (regcache);
8566 }
8567
8568 /* Make the remote selected traceframe match GDB's selected
8569 traceframe. */
8570
8571 void
8572 remote_target::set_remote_traceframe ()
8573 {
8574 int newnum;
8575 struct remote_state *rs = get_remote_state ();
8576
8577 if (rs->remote_traceframe_number == get_traceframe_number ())
8578 return;
8579
8580 /* Avoid recursion, remote_trace_find calls us again. */
8581 rs->remote_traceframe_number = get_traceframe_number ();
8582
8583 newnum = target_trace_find (tfind_number,
8584 get_traceframe_number (), 0, 0, NULL);
8585
8586 /* Should not happen. If it does, all bets are off. */
8587 if (newnum != get_traceframe_number ())
8588 warning (_("could not set remote traceframe"));
8589 }
8590
8591 void
8592 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8593 {
8594 struct gdbarch *gdbarch = regcache->arch ();
8595 struct remote_state *rs = get_remote_state ();
8596 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8597 int i;
8598
8599 set_remote_traceframe ();
8600 set_general_thread (regcache->ptid ());
8601
8602 if (regnum >= 0)
8603 {
8604 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8605
8606 gdb_assert (reg != NULL);
8607
8608 /* If this register might be in the 'g' packet, try that first -
8609 we are likely to read more than one register. If this is the
8610 first 'g' packet, we might be overly optimistic about its
8611 contents, so fall back to 'p'. */
8612 if (reg->in_g_packet)
8613 {
8614 fetch_registers_using_g (regcache);
8615 if (reg->in_g_packet)
8616 return;
8617 }
8618
8619 if (fetch_register_using_p (regcache, reg))
8620 return;
8621
8622 /* This register is not available. */
8623 regcache->raw_supply (reg->regnum, NULL);
8624
8625 return;
8626 }
8627
8628 fetch_registers_using_g (regcache);
8629
8630 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8631 if (!rsa->regs[i].in_g_packet)
8632 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8633 {
8634 /* This register is not available. */
8635 regcache->raw_supply (i, NULL);
8636 }
8637 }
8638
8639 /* Prepare to store registers. Since we may send them all (using a
8640 'G' request), we have to read out the ones we don't want to change
8641 first. */
8642
8643 void
8644 remote_target::prepare_to_store (struct regcache *regcache)
8645 {
8646 struct remote_state *rs = get_remote_state ();
8647 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8648 int i;
8649
8650 /* Make sure the entire registers array is valid. */
8651 switch (packet_support (PACKET_P))
8652 {
8653 case PACKET_DISABLE:
8654 case PACKET_SUPPORT_UNKNOWN:
8655 /* Make sure all the necessary registers are cached. */
8656 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8657 if (rsa->regs[i].in_g_packet)
8658 regcache->raw_update (rsa->regs[i].regnum);
8659 break;
8660 case PACKET_ENABLE:
8661 break;
8662 }
8663 }
8664
8665 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8666 packet was not recognized. */
8667
8668 int
8669 remote_target::store_register_using_P (const struct regcache *regcache,
8670 packet_reg *reg)
8671 {
8672 struct gdbarch *gdbarch = regcache->arch ();
8673 struct remote_state *rs = get_remote_state ();
8674 /* Try storing a single register. */
8675 char *buf = rs->buf.data ();
8676 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8677 char *p;
8678
8679 if (packet_support (PACKET_P) == PACKET_DISABLE)
8680 return 0;
8681
8682 if (reg->pnum == -1)
8683 return 0;
8684
8685 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8686 p = buf + strlen (buf);
8687 regcache->raw_collect (reg->regnum, regp);
8688 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8689 putpkt (rs->buf);
8690 getpkt (&rs->buf, 0);
8691
8692 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8693 {
8694 case PACKET_OK:
8695 return 1;
8696 case PACKET_ERROR:
8697 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8698 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
8699 case PACKET_UNKNOWN:
8700 return 0;
8701 default:
8702 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8703 }
8704 }
8705
8706 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8707 contents of the register cache buffer. FIXME: ignores errors. */
8708
8709 void
8710 remote_target::store_registers_using_G (const struct regcache *regcache)
8711 {
8712 struct remote_state *rs = get_remote_state ();
8713 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8714 gdb_byte *regs;
8715 char *p;
8716
8717 /* Extract all the registers in the regcache copying them into a
8718 local buffer. */
8719 {
8720 int i;
8721
8722 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8723 memset (regs, 0, rsa->sizeof_g_packet);
8724 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8725 {
8726 struct packet_reg *r = &rsa->regs[i];
8727
8728 if (r->in_g_packet)
8729 regcache->raw_collect (r->regnum, regs + r->offset);
8730 }
8731 }
8732
8733 /* Command describes registers byte by byte,
8734 each byte encoded as two hex characters. */
8735 p = rs->buf.data ();
8736 *p++ = 'G';
8737 bin2hex (regs, p, rsa->sizeof_g_packet);
8738 putpkt (rs->buf);
8739 getpkt (&rs->buf, 0);
8740 if (packet_check_result (rs->buf) == PACKET_ERROR)
8741 error (_("Could not write registers; remote failure reply '%s'"),
8742 rs->buf.data ());
8743 }
8744
8745 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8746 of the register cache buffer. FIXME: ignores errors. */
8747
8748 void
8749 remote_target::store_registers (struct regcache *regcache, int regnum)
8750 {
8751 struct gdbarch *gdbarch = regcache->arch ();
8752 struct remote_state *rs = get_remote_state ();
8753 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8754 int i;
8755
8756 set_remote_traceframe ();
8757 set_general_thread (regcache->ptid ());
8758
8759 if (regnum >= 0)
8760 {
8761 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8762
8763 gdb_assert (reg != NULL);
8764
8765 /* Always prefer to store registers using the 'P' packet if
8766 possible; we often change only a small number of registers.
8767 Sometimes we change a larger number; we'd need help from a
8768 higher layer to know to use 'G'. */
8769 if (store_register_using_P (regcache, reg))
8770 return;
8771
8772 /* For now, don't complain if we have no way to write the
8773 register. GDB loses track of unavailable registers too
8774 easily. Some day, this may be an error. We don't have
8775 any way to read the register, either... */
8776 if (!reg->in_g_packet)
8777 return;
8778
8779 store_registers_using_G (regcache);
8780 return;
8781 }
8782
8783 store_registers_using_G (regcache);
8784
8785 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8786 if (!rsa->regs[i].in_g_packet)
8787 if (!store_register_using_P (regcache, &rsa->regs[i]))
8788 /* See above for why we do not issue an error here. */
8789 continue;
8790 }
8791 \f
8792
8793 /* Return the number of hex digits in num. */
8794
8795 static int
8796 hexnumlen (ULONGEST num)
8797 {
8798 int i;
8799
8800 for (i = 0; num != 0; i++)
8801 num >>= 4;
8802
8803 return std::max (i, 1);
8804 }
8805
8806 /* Set BUF to the minimum number of hex digits representing NUM. */
8807
8808 static int
8809 hexnumstr (char *buf, ULONGEST num)
8810 {
8811 int len = hexnumlen (num);
8812
8813 return hexnumnstr (buf, num, len);
8814 }
8815
8816
8817 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8818
8819 static int
8820 hexnumnstr (char *buf, ULONGEST num, int width)
8821 {
8822 int i;
8823
8824 buf[width] = '\0';
8825
8826 for (i = width - 1; i >= 0; i--)
8827 {
8828 buf[i] = "0123456789abcdef"[(num & 0xf)];
8829 num >>= 4;
8830 }
8831
8832 return width;
8833 }
8834
8835 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8836
8837 static CORE_ADDR
8838 remote_address_masked (CORE_ADDR addr)
8839 {
8840 unsigned int address_size = remote_address_size;
8841
8842 /* If "remoteaddresssize" was not set, default to target address size. */
8843 if (!address_size)
8844 address_size = gdbarch_addr_bit (target_gdbarch ());
8845
8846 if (address_size > 0
8847 && address_size < (sizeof (ULONGEST) * 8))
8848 {
8849 /* Only create a mask when that mask can safely be constructed
8850 in a ULONGEST variable. */
8851 ULONGEST mask = 1;
8852
8853 mask = (mask << address_size) - 1;
8854 addr &= mask;
8855 }
8856 return addr;
8857 }
8858
8859 /* Determine whether the remote target supports binary downloading.
8860 This is accomplished by sending a no-op memory write of zero length
8861 to the target at the specified address. It does not suffice to send
8862 the whole packet, since many stubs strip the eighth bit and
8863 subsequently compute a wrong checksum, which causes real havoc with
8864 remote_write_bytes.
8865
8866 NOTE: This can still lose if the serial line is not eight-bit
8867 clean. In cases like this, the user should clear "remote
8868 X-packet". */
8869
8870 void
8871 remote_target::check_binary_download (CORE_ADDR addr)
8872 {
8873 struct remote_state *rs = get_remote_state ();
8874
8875 switch (packet_support (PACKET_X))
8876 {
8877 case PACKET_DISABLE:
8878 break;
8879 case PACKET_ENABLE:
8880 break;
8881 case PACKET_SUPPORT_UNKNOWN:
8882 {
8883 char *p;
8884
8885 p = rs->buf.data ();
8886 *p++ = 'X';
8887 p += hexnumstr (p, (ULONGEST) addr);
8888 *p++ = ',';
8889 p += hexnumstr (p, (ULONGEST) 0);
8890 *p++ = ':';
8891 *p = '\0';
8892
8893 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8894 getpkt (&rs->buf, 0);
8895
8896 if (rs->buf[0] == '\0')
8897 {
8898 remote_debug_printf ("binary downloading NOT supported by target");
8899 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8900 }
8901 else
8902 {
8903 remote_debug_printf ("binary downloading supported by target");
8904 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8905 }
8906 break;
8907 }
8908 }
8909 }
8910
8911 /* Helper function to resize the payload in order to try to get a good
8912 alignment. We try to write an amount of data such that the next write will
8913 start on an address aligned on REMOTE_ALIGN_WRITES. */
8914
8915 static int
8916 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8917 {
8918 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8919 }
8920
8921 /* Write memory data directly to the remote machine.
8922 This does not inform the data cache; the data cache uses this.
8923 HEADER is the starting part of the packet.
8924 MEMADDR is the address in the remote memory space.
8925 MYADDR is the address of the buffer in our space.
8926 LEN_UNITS is the number of addressable units to write.
8927 UNIT_SIZE is the length in bytes of an addressable unit.
8928 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8929 should send data as binary ('X'), or hex-encoded ('M').
8930
8931 The function creates packet of the form
8932 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8933
8934 where encoding of <DATA> is terminated by PACKET_FORMAT.
8935
8936 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8937 are omitted.
8938
8939 Return the transferred status, error or OK (an
8940 'enum target_xfer_status' value). Save the number of addressable units
8941 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8942
8943 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8944 exchange between gdb and the stub could look like (?? in place of the
8945 checksum):
8946
8947 -> $m1000,4#??
8948 <- aaaabbbbccccdddd
8949
8950 -> $M1000,3:eeeeffffeeee#??
8951 <- OK
8952
8953 -> $m1000,4#??
8954 <- eeeeffffeeeedddd */
8955
8956 target_xfer_status
8957 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8958 const gdb_byte *myaddr,
8959 ULONGEST len_units,
8960 int unit_size,
8961 ULONGEST *xfered_len_units,
8962 char packet_format, int use_length)
8963 {
8964 struct remote_state *rs = get_remote_state ();
8965 char *p;
8966 char *plen = NULL;
8967 int plenlen = 0;
8968 int todo_units;
8969 int units_written;
8970 int payload_capacity_bytes;
8971 int payload_length_bytes;
8972
8973 if (packet_format != 'X' && packet_format != 'M')
8974 internal_error (__FILE__, __LINE__,
8975 _("remote_write_bytes_aux: bad packet format"));
8976
8977 if (len_units == 0)
8978 return TARGET_XFER_EOF;
8979
8980 payload_capacity_bytes = get_memory_write_packet_size ();
8981
8982 /* The packet buffer will be large enough for the payload;
8983 get_memory_packet_size ensures this. */
8984 rs->buf[0] = '\0';
8985
8986 /* Compute the size of the actual payload by subtracting out the
8987 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8988
8989 payload_capacity_bytes -= strlen ("$,:#NN");
8990 if (!use_length)
8991 /* The comma won't be used. */
8992 payload_capacity_bytes += 1;
8993 payload_capacity_bytes -= strlen (header);
8994 payload_capacity_bytes -= hexnumlen (memaddr);
8995
8996 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8997
8998 strcat (rs->buf.data (), header);
8999 p = rs->buf.data () + strlen (header);
9000
9001 /* Compute a best guess of the number of bytes actually transfered. */
9002 if (packet_format == 'X')
9003 {
9004 /* Best guess at number of bytes that will fit. */
9005 todo_units = std::min (len_units,
9006 (ULONGEST) payload_capacity_bytes / unit_size);
9007 if (use_length)
9008 payload_capacity_bytes -= hexnumlen (todo_units);
9009 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
9010 }
9011 else
9012 {
9013 /* Number of bytes that will fit. */
9014 todo_units
9015 = std::min (len_units,
9016 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
9017 if (use_length)
9018 payload_capacity_bytes -= hexnumlen (todo_units);
9019 todo_units = std::min (todo_units,
9020 (payload_capacity_bytes / unit_size) / 2);
9021 }
9022
9023 if (todo_units <= 0)
9024 internal_error (__FILE__, __LINE__,
9025 _("minimum packet size too small to write data"));
9026
9027 /* If we already need another packet, then try to align the end
9028 of this packet to a useful boundary. */
9029 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
9030 todo_units = align_for_efficient_write (todo_units, memaddr);
9031
9032 /* Append "<memaddr>". */
9033 memaddr = remote_address_masked (memaddr);
9034 p += hexnumstr (p, (ULONGEST) memaddr);
9035
9036 if (use_length)
9037 {
9038 /* Append ",". */
9039 *p++ = ',';
9040
9041 /* Append the length and retain its location and size. It may need to be
9042 adjusted once the packet body has been created. */
9043 plen = p;
9044 plenlen = hexnumstr (p, (ULONGEST) todo_units);
9045 p += plenlen;
9046 }
9047
9048 /* Append ":". */
9049 *p++ = ':';
9050 *p = '\0';
9051
9052 /* Append the packet body. */
9053 if (packet_format == 'X')
9054 {
9055 /* Binary mode. Send target system values byte by byte, in
9056 increasing byte addresses. Only escape certain critical
9057 characters. */
9058 payload_length_bytes =
9059 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
9060 &units_written, payload_capacity_bytes);
9061
9062 /* If not all TODO units fit, then we'll need another packet. Make
9063 a second try to keep the end of the packet aligned. Don't do
9064 this if the packet is tiny. */
9065 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
9066 {
9067 int new_todo_units;
9068
9069 new_todo_units = align_for_efficient_write (units_written, memaddr);
9070
9071 if (new_todo_units != units_written)
9072 payload_length_bytes =
9073 remote_escape_output (myaddr, new_todo_units, unit_size,
9074 (gdb_byte *) p, &units_written,
9075 payload_capacity_bytes);
9076 }
9077
9078 p += payload_length_bytes;
9079 if (use_length && units_written < todo_units)
9080 {
9081 /* Escape chars have filled up the buffer prematurely,
9082 and we have actually sent fewer units than planned.
9083 Fix-up the length field of the packet. Use the same
9084 number of characters as before. */
9085 plen += hexnumnstr (plen, (ULONGEST) units_written,
9086 plenlen);
9087 *plen = ':'; /* overwrite \0 from hexnumnstr() */
9088 }
9089 }
9090 else
9091 {
9092 /* Normal mode: Send target system values byte by byte, in
9093 increasing byte addresses. Each byte is encoded as a two hex
9094 value. */
9095 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
9096 units_written = todo_units;
9097 }
9098
9099 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
9100 getpkt (&rs->buf, 0);
9101
9102 if (rs->buf[0] == 'E')
9103 return TARGET_XFER_E_IO;
9104
9105 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
9106 send fewer units than we'd planned. */
9107 *xfered_len_units = (ULONGEST) units_written;
9108 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9109 }
9110
9111 /* Write memory data directly to the remote machine.
9112 This does not inform the data cache; the data cache uses this.
9113 MEMADDR is the address in the remote memory space.
9114 MYADDR is the address of the buffer in our space.
9115 LEN is the number of bytes.
9116
9117 Return the transferred status, error or OK (an
9118 'enum target_xfer_status' value). Save the number of bytes
9119 transferred in *XFERED_LEN. Only transfer a single packet. */
9120
9121 target_xfer_status
9122 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
9123 ULONGEST len, int unit_size,
9124 ULONGEST *xfered_len)
9125 {
9126 const char *packet_format = NULL;
9127
9128 /* Check whether the target supports binary download. */
9129 check_binary_download (memaddr);
9130
9131 switch (packet_support (PACKET_X))
9132 {
9133 case PACKET_ENABLE:
9134 packet_format = "X";
9135 break;
9136 case PACKET_DISABLE:
9137 packet_format = "M";
9138 break;
9139 case PACKET_SUPPORT_UNKNOWN:
9140 internal_error (__FILE__, __LINE__,
9141 _("remote_write_bytes: bad internal state"));
9142 default:
9143 internal_error (__FILE__, __LINE__, _("bad switch"));
9144 }
9145
9146 return remote_write_bytes_aux (packet_format,
9147 memaddr, myaddr, len, unit_size, xfered_len,
9148 packet_format[0], 1);
9149 }
9150
9151 /* Read memory data directly from the remote machine.
9152 This does not use the data cache; the data cache uses this.
9153 MEMADDR is the address in the remote memory space.
9154 MYADDR is the address of the buffer in our space.
9155 LEN_UNITS is the number of addressable memory units to read..
9156 UNIT_SIZE is the length in bytes of an addressable unit.
9157
9158 Return the transferred status, error or OK (an
9159 'enum target_xfer_status' value). Save the number of bytes
9160 transferred in *XFERED_LEN_UNITS.
9161
9162 See the comment of remote_write_bytes_aux for an example of
9163 memory read/write exchange between gdb and the stub. */
9164
9165 target_xfer_status
9166 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
9167 ULONGEST len_units,
9168 int unit_size, ULONGEST *xfered_len_units)
9169 {
9170 struct remote_state *rs = get_remote_state ();
9171 int buf_size_bytes; /* Max size of packet output buffer. */
9172 char *p;
9173 int todo_units;
9174 int decoded_bytes;
9175
9176 buf_size_bytes = get_memory_read_packet_size ();
9177 /* The packet buffer will be large enough for the payload;
9178 get_memory_packet_size ensures this. */
9179
9180 /* Number of units that will fit. */
9181 todo_units = std::min (len_units,
9182 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9183
9184 /* Construct "m"<memaddr>","<len>". */
9185 memaddr = remote_address_masked (memaddr);
9186 p = rs->buf.data ();
9187 *p++ = 'm';
9188 p += hexnumstr (p, (ULONGEST) memaddr);
9189 *p++ = ',';
9190 p += hexnumstr (p, (ULONGEST) todo_units);
9191 *p = '\0';
9192 putpkt (rs->buf);
9193 getpkt (&rs->buf, 0);
9194 if (rs->buf[0] == 'E'
9195 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9196 && rs->buf[3] == '\0')
9197 return TARGET_XFER_E_IO;
9198 /* Reply describes memory byte by byte, each byte encoded as two hex
9199 characters. */
9200 p = rs->buf.data ();
9201 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9202 /* Return what we have. Let higher layers handle partial reads. */
9203 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9204 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9205 }
9206
9207 /* Using the set of read-only target sections of remote, read live
9208 read-only memory.
9209
9210 For interface/parameters/return description see target.h,
9211 to_xfer_partial. */
9212
9213 target_xfer_status
9214 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9215 ULONGEST memaddr,
9216 ULONGEST len,
9217 int unit_size,
9218 ULONGEST *xfered_len)
9219 {
9220 const struct target_section *secp;
9221
9222 secp = target_section_by_addr (this, memaddr);
9223 if (secp != NULL
9224 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
9225 {
9226 ULONGEST memend = memaddr + len;
9227
9228 const target_section_table *table = target_get_section_table (this);
9229 for (const target_section &p : *table)
9230 {
9231 if (memaddr >= p.addr)
9232 {
9233 if (memend <= p.endaddr)
9234 {
9235 /* Entire transfer is within this section. */
9236 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9237 xfered_len);
9238 }
9239 else if (memaddr >= p.endaddr)
9240 {
9241 /* This section ends before the transfer starts. */
9242 continue;
9243 }
9244 else
9245 {
9246 /* This section overlaps the transfer. Just do half. */
9247 len = p.endaddr - memaddr;
9248 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9249 xfered_len);
9250 }
9251 }
9252 }
9253 }
9254
9255 return TARGET_XFER_EOF;
9256 }
9257
9258 /* Similar to remote_read_bytes_1, but it reads from the remote stub
9259 first if the requested memory is unavailable in traceframe.
9260 Otherwise, fall back to remote_read_bytes_1. */
9261
9262 target_xfer_status
9263 remote_target::remote_read_bytes (CORE_ADDR memaddr,
9264 gdb_byte *myaddr, ULONGEST len, int unit_size,
9265 ULONGEST *xfered_len)
9266 {
9267 if (len == 0)
9268 return TARGET_XFER_EOF;
9269
9270 if (get_traceframe_number () != -1)
9271 {
9272 std::vector<mem_range> available;
9273
9274 /* If we fail to get the set of available memory, then the
9275 target does not support querying traceframe info, and so we
9276 attempt reading from the traceframe anyway (assuming the
9277 target implements the old QTro packet then). */
9278 if (traceframe_available_memory (&available, memaddr, len))
9279 {
9280 if (available.empty () || available[0].start != memaddr)
9281 {
9282 enum target_xfer_status res;
9283
9284 /* Don't read into the traceframe's available
9285 memory. */
9286 if (!available.empty ())
9287 {
9288 LONGEST oldlen = len;
9289
9290 len = available[0].start - memaddr;
9291 gdb_assert (len <= oldlen);
9292 }
9293
9294 /* This goes through the topmost target again. */
9295 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
9296 len, unit_size, xfered_len);
9297 if (res == TARGET_XFER_OK)
9298 return TARGET_XFER_OK;
9299 else
9300 {
9301 /* No use trying further, we know some memory starting
9302 at MEMADDR isn't available. */
9303 *xfered_len = len;
9304 return (*xfered_len != 0) ?
9305 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
9306 }
9307 }
9308
9309 /* Don't try to read more than how much is available, in
9310 case the target implements the deprecated QTro packet to
9311 cater for older GDBs (the target's knowledge of read-only
9312 sections may be outdated by now). */
9313 len = available[0].length;
9314 }
9315 }
9316
9317 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
9318 }
9319
9320 \f
9321
9322 /* Sends a packet with content determined by the printf format string
9323 FORMAT and the remaining arguments, then gets the reply. Returns
9324 whether the packet was a success, a failure, or unknown. */
9325
9326 packet_result
9327 remote_target::remote_send_printf (const char *format, ...)
9328 {
9329 struct remote_state *rs = get_remote_state ();
9330 int max_size = get_remote_packet_size ();
9331 va_list ap;
9332
9333 va_start (ap, format);
9334
9335 rs->buf[0] = '\0';
9336 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
9337
9338 va_end (ap);
9339
9340 if (size >= max_size)
9341 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
9342
9343 if (putpkt (rs->buf) < 0)
9344 error (_("Communication problem with target."));
9345
9346 rs->buf[0] = '\0';
9347 getpkt (&rs->buf, 0);
9348
9349 return packet_check_result (rs->buf);
9350 }
9351
9352 /* Flash writing can take quite some time. We'll set
9353 effectively infinite timeout for flash operations.
9354 In future, we'll need to decide on a better approach. */
9355 static const int remote_flash_timeout = 1000;
9356
9357 void
9358 remote_target::flash_erase (ULONGEST address, LONGEST length)
9359 {
9360 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
9361 enum packet_result ret;
9362 scoped_restore restore_timeout
9363 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9364
9365 ret = remote_send_printf ("vFlashErase:%s,%s",
9366 phex (address, addr_size),
9367 phex (length, 4));
9368 switch (ret)
9369 {
9370 case PACKET_UNKNOWN:
9371 error (_("Remote target does not support flash erase"));
9372 case PACKET_ERROR:
9373 error (_("Error erasing flash with vFlashErase packet"));
9374 default:
9375 break;
9376 }
9377 }
9378
9379 target_xfer_status
9380 remote_target::remote_flash_write (ULONGEST address,
9381 ULONGEST length, ULONGEST *xfered_len,
9382 const gdb_byte *data)
9383 {
9384 scoped_restore restore_timeout
9385 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9386 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9387 xfered_len,'X', 0);
9388 }
9389
9390 void
9391 remote_target::flash_done ()
9392 {
9393 int ret;
9394
9395 scoped_restore restore_timeout
9396 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9397
9398 ret = remote_send_printf ("vFlashDone");
9399
9400 switch (ret)
9401 {
9402 case PACKET_UNKNOWN:
9403 error (_("Remote target does not support vFlashDone"));
9404 case PACKET_ERROR:
9405 error (_("Error finishing flash operation"));
9406 default:
9407 break;
9408 }
9409 }
9410
9411 void
9412 remote_target::files_info ()
9413 {
9414 puts_filtered ("Debugging a target over a serial line.\n");
9415 }
9416 \f
9417 /* Stuff for dealing with the packets which are part of this protocol.
9418 See comment at top of file for details. */
9419
9420 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9421 error to higher layers. Called when a serial error is detected.
9422 The exception message is STRING, followed by a colon and a blank,
9423 the system error message for errno at function entry and final dot
9424 for output compatibility with throw_perror_with_name. */
9425
9426 static void
9427 unpush_and_perror (remote_target *target, const char *string)
9428 {
9429 int saved_errno = errno;
9430
9431 remote_unpush_target (target);
9432 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9433 safe_strerror (saved_errno));
9434 }
9435
9436 /* Read a single character from the remote end. The current quit
9437 handler is overridden to avoid quitting in the middle of packet
9438 sequence, as that would break communication with the remote server.
9439 See remote_serial_quit_handler for more detail. */
9440
9441 int
9442 remote_target::readchar (int timeout)
9443 {
9444 int ch;
9445 struct remote_state *rs = get_remote_state ();
9446
9447 {
9448 scoped_restore restore_quit_target
9449 = make_scoped_restore (&curr_quit_handler_target, this);
9450 scoped_restore restore_quit
9451 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9452
9453 rs->got_ctrlc_during_io = 0;
9454
9455 ch = serial_readchar (rs->remote_desc, timeout);
9456
9457 if (rs->got_ctrlc_during_io)
9458 set_quit_flag ();
9459 }
9460
9461 if (ch >= 0)
9462 return ch;
9463
9464 switch ((enum serial_rc) ch)
9465 {
9466 case SERIAL_EOF:
9467 remote_unpush_target (this);
9468 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
9469 /* no return */
9470 case SERIAL_ERROR:
9471 unpush_and_perror (this, _("Remote communication error. "
9472 "Target disconnected."));
9473 /* no return */
9474 case SERIAL_TIMEOUT:
9475 break;
9476 }
9477 return ch;
9478 }
9479
9480 /* Wrapper for serial_write that closes the target and throws if
9481 writing fails. The current quit handler is overridden to avoid
9482 quitting in the middle of packet sequence, as that would break
9483 communication with the remote server. See
9484 remote_serial_quit_handler for more detail. */
9485
9486 void
9487 remote_target::remote_serial_write (const char *str, int len)
9488 {
9489 struct remote_state *rs = get_remote_state ();
9490
9491 scoped_restore restore_quit_target
9492 = make_scoped_restore (&curr_quit_handler_target, this);
9493 scoped_restore restore_quit
9494 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9495
9496 rs->got_ctrlc_during_io = 0;
9497
9498 if (serial_write (rs->remote_desc, str, len))
9499 {
9500 unpush_and_perror (this, _("Remote communication error. "
9501 "Target disconnected."));
9502 }
9503
9504 if (rs->got_ctrlc_during_io)
9505 set_quit_flag ();
9506 }
9507
9508 /* Return a string representing an escaped version of BUF, of len N.
9509 E.g. \n is converted to \\n, \t to \\t, etc. */
9510
9511 static std::string
9512 escape_buffer (const char *buf, int n)
9513 {
9514 string_file stb;
9515
9516 stb.putstrn (buf, n, '\\');
9517 return std::move (stb.string ());
9518 }
9519
9520 /* Display a null-terminated packet on stdout, for debugging, using C
9521 string notation. */
9522
9523 static void
9524 print_packet (const char *buf)
9525 {
9526 puts_filtered ("\"");
9527 fputstr_filtered (buf, '"', gdb_stdout);
9528 puts_filtered ("\"");
9529 }
9530
9531 int
9532 remote_target::putpkt (const char *buf)
9533 {
9534 return putpkt_binary (buf, strlen (buf));
9535 }
9536
9537 /* Wrapper around remote_target::putpkt to avoid exporting
9538 remote_target. */
9539
9540 int
9541 putpkt (remote_target *remote, const char *buf)
9542 {
9543 return remote->putpkt (buf);
9544 }
9545
9546 /* Send a packet to the remote machine, with error checking. The data
9547 of the packet is in BUF. The string in BUF can be at most
9548 get_remote_packet_size () - 5 to account for the $, # and checksum,
9549 and for a possible /0 if we are debugging (remote_debug) and want
9550 to print the sent packet as a string. */
9551
9552 int
9553 remote_target::putpkt_binary (const char *buf, int cnt)
9554 {
9555 struct remote_state *rs = get_remote_state ();
9556 int i;
9557 unsigned char csum = 0;
9558 gdb::def_vector<char> data (cnt + 6);
9559 char *buf2 = data.data ();
9560
9561 int ch;
9562 int tcount = 0;
9563 char *p;
9564
9565 /* Catch cases like trying to read memory or listing threads while
9566 we're waiting for a stop reply. The remote server wouldn't be
9567 ready to handle this request, so we'd hang and timeout. We don't
9568 have to worry about this in synchronous mode, because in that
9569 case it's not possible to issue a command while the target is
9570 running. This is not a problem in non-stop mode, because in that
9571 case, the stub is always ready to process serial input. */
9572 if (!target_is_non_stop_p ()
9573 && target_is_async_p ()
9574 && rs->waiting_for_stop_reply)
9575 {
9576 error (_("Cannot execute this command while the target is running.\n"
9577 "Use the \"interrupt\" command to stop the target\n"
9578 "and then try again."));
9579 }
9580
9581 /* We're sending out a new packet. Make sure we don't look at a
9582 stale cached response. */
9583 rs->cached_wait_status = 0;
9584
9585 /* Copy the packet into buffer BUF2, encapsulating it
9586 and giving it a checksum. */
9587
9588 p = buf2;
9589 *p++ = '$';
9590
9591 for (i = 0; i < cnt; i++)
9592 {
9593 csum += buf[i];
9594 *p++ = buf[i];
9595 }
9596 *p++ = '#';
9597 *p++ = tohex ((csum >> 4) & 0xf);
9598 *p++ = tohex (csum & 0xf);
9599
9600 /* Send it over and over until we get a positive ack. */
9601
9602 while (1)
9603 {
9604 if (remote_debug)
9605 {
9606 *p = '\0';
9607
9608 int len = (int) (p - buf2);
9609 int max_chars;
9610
9611 if (remote_packet_max_chars < 0)
9612 max_chars = len;
9613 else
9614 max_chars = remote_packet_max_chars;
9615
9616 std::string str
9617 = escape_buffer (buf2, std::min (len, max_chars));
9618
9619 if (len > max_chars)
9620 remote_debug_printf_nofunc
9621 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9622 len - max_chars);
9623 else
9624 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
9625 }
9626 remote_serial_write (buf2, p - buf2);
9627
9628 /* If this is a no acks version of the remote protocol, send the
9629 packet and move on. */
9630 if (rs->noack_mode)
9631 break;
9632
9633 /* Read until either a timeout occurs (-2) or '+' is read.
9634 Handle any notification that arrives in the mean time. */
9635 while (1)
9636 {
9637 ch = readchar (remote_timeout);
9638
9639 switch (ch)
9640 {
9641 case '+':
9642 remote_debug_printf_nofunc ("Received Ack");
9643 return 1;
9644 case '-':
9645 remote_debug_printf_nofunc ("Received Nak");
9646 /* FALLTHROUGH */
9647 case SERIAL_TIMEOUT:
9648 tcount++;
9649 if (tcount > 3)
9650 return 0;
9651 break; /* Retransmit buffer. */
9652 case '$':
9653 {
9654 remote_debug_printf ("Packet instead of Ack, ignoring it");
9655 /* It's probably an old response sent because an ACK
9656 was lost. Gobble up the packet and ack it so it
9657 doesn't get retransmitted when we resend this
9658 packet. */
9659 skip_frame ();
9660 remote_serial_write ("+", 1);
9661 continue; /* Now, go look for +. */
9662 }
9663
9664 case '%':
9665 {
9666 int val;
9667
9668 /* If we got a notification, handle it, and go back to looking
9669 for an ack. */
9670 /* We've found the start of a notification. Now
9671 collect the data. */
9672 val = read_frame (&rs->buf);
9673 if (val >= 0)
9674 {
9675 remote_debug_printf_nofunc
9676 (" Notification received: %s",
9677 escape_buffer (rs->buf.data (), val).c_str ());
9678
9679 handle_notification (rs->notif_state, rs->buf.data ());
9680 /* We're in sync now, rewait for the ack. */
9681 tcount = 0;
9682 }
9683 else
9684 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9685 rs->buf.data ());
9686 continue;
9687 }
9688 /* fall-through */
9689 default:
9690 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9691 rs->buf.data ());
9692 continue;
9693 }
9694 break; /* Here to retransmit. */
9695 }
9696
9697 #if 0
9698 /* This is wrong. If doing a long backtrace, the user should be
9699 able to get out next time we call QUIT, without anything as
9700 violent as interrupt_query. If we want to provide a way out of
9701 here without getting to the next QUIT, it should be based on
9702 hitting ^C twice as in remote_wait. */
9703 if (quit_flag)
9704 {
9705 quit_flag = 0;
9706 interrupt_query ();
9707 }
9708 #endif
9709 }
9710
9711 return 0;
9712 }
9713
9714 /* Come here after finding the start of a frame when we expected an
9715 ack. Do our best to discard the rest of this packet. */
9716
9717 void
9718 remote_target::skip_frame ()
9719 {
9720 int c;
9721
9722 while (1)
9723 {
9724 c = readchar (remote_timeout);
9725 switch (c)
9726 {
9727 case SERIAL_TIMEOUT:
9728 /* Nothing we can do. */
9729 return;
9730 case '#':
9731 /* Discard the two bytes of checksum and stop. */
9732 c = readchar (remote_timeout);
9733 if (c >= 0)
9734 c = readchar (remote_timeout);
9735
9736 return;
9737 case '*': /* Run length encoding. */
9738 /* Discard the repeat count. */
9739 c = readchar (remote_timeout);
9740 if (c < 0)
9741 return;
9742 break;
9743 default:
9744 /* A regular character. */
9745 break;
9746 }
9747 }
9748 }
9749
9750 /* Come here after finding the start of the frame. Collect the rest
9751 into *BUF, verifying the checksum, length, and handling run-length
9752 compression. NUL terminate the buffer. If there is not enough room,
9753 expand *BUF.
9754
9755 Returns -1 on error, number of characters in buffer (ignoring the
9756 trailing NULL) on success. (could be extended to return one of the
9757 SERIAL status indications). */
9758
9759 long
9760 remote_target::read_frame (gdb::char_vector *buf_p)
9761 {
9762 unsigned char csum;
9763 long bc;
9764 int c;
9765 char *buf = buf_p->data ();
9766 struct remote_state *rs = get_remote_state ();
9767
9768 csum = 0;
9769 bc = 0;
9770
9771 while (1)
9772 {
9773 c = readchar (remote_timeout);
9774 switch (c)
9775 {
9776 case SERIAL_TIMEOUT:
9777 remote_debug_printf ("Timeout in mid-packet, retrying");
9778 return -1;
9779
9780 case '$':
9781 remote_debug_printf ("Saw new packet start in middle of old one");
9782 return -1; /* Start a new packet, count retries. */
9783
9784 case '#':
9785 {
9786 unsigned char pktcsum;
9787 int check_0 = 0;
9788 int check_1 = 0;
9789
9790 buf[bc] = '\0';
9791
9792 check_0 = readchar (remote_timeout);
9793 if (check_0 >= 0)
9794 check_1 = readchar (remote_timeout);
9795
9796 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9797 {
9798 remote_debug_printf ("Timeout in checksum, retrying");
9799 return -1;
9800 }
9801 else if (check_0 < 0 || check_1 < 0)
9802 {
9803 remote_debug_printf ("Communication error in checksum");
9804 return -1;
9805 }
9806
9807 /* Don't recompute the checksum; with no ack packets we
9808 don't have any way to indicate a packet retransmission
9809 is necessary. */
9810 if (rs->noack_mode)
9811 return bc;
9812
9813 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9814 if (csum == pktcsum)
9815 return bc;
9816
9817 remote_debug_printf
9818 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9819 pktcsum, csum, escape_buffer (buf, bc).c_str ());
9820
9821 /* Number of characters in buffer ignoring trailing
9822 NULL. */
9823 return -1;
9824 }
9825 case '*': /* Run length encoding. */
9826 {
9827 int repeat;
9828
9829 csum += c;
9830 c = readchar (remote_timeout);
9831 csum += c;
9832 repeat = c - ' ' + 3; /* Compute repeat count. */
9833
9834 /* The character before ``*'' is repeated. */
9835
9836 if (repeat > 0 && repeat <= 255 && bc > 0)
9837 {
9838 if (bc + repeat - 1 >= buf_p->size () - 1)
9839 {
9840 /* Make some more room in the buffer. */
9841 buf_p->resize (buf_p->size () + repeat);
9842 buf = buf_p->data ();
9843 }
9844
9845 memset (&buf[bc], buf[bc - 1], repeat);
9846 bc += repeat;
9847 continue;
9848 }
9849
9850 buf[bc] = '\0';
9851 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9852 return -1;
9853 }
9854 default:
9855 if (bc >= buf_p->size () - 1)
9856 {
9857 /* Make some more room in the buffer. */
9858 buf_p->resize (buf_p->size () * 2);
9859 buf = buf_p->data ();
9860 }
9861
9862 buf[bc++] = c;
9863 csum += c;
9864 continue;
9865 }
9866 }
9867 }
9868
9869 /* Set this to the maximum number of seconds to wait instead of waiting forever
9870 in target_wait(). If this timer times out, then it generates an error and
9871 the command is aborted. This replaces most of the need for timeouts in the
9872 GDB test suite, and makes it possible to distinguish between a hung target
9873 and one with slow communications. */
9874
9875 static int watchdog = 0;
9876 static void
9877 show_watchdog (struct ui_file *file, int from_tty,
9878 struct cmd_list_element *c, const char *value)
9879 {
9880 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9881 }
9882
9883 /* Read a packet from the remote machine, with error checking, and
9884 store it in *BUF. Resize *BUF if necessary to hold the result. If
9885 FOREVER, wait forever rather than timing out; this is used (in
9886 synchronous mode) to wait for a target that is is executing user
9887 code to stop. */
9888 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9889 don't have to change all the calls to getpkt to deal with the
9890 return value, because at the moment I don't know what the right
9891 thing to do it for those. */
9892
9893 void
9894 remote_target::getpkt (gdb::char_vector *buf, int forever)
9895 {
9896 getpkt_sane (buf, forever);
9897 }
9898
9899
9900 /* Read a packet from the remote machine, with error checking, and
9901 store it in *BUF. Resize *BUF if necessary to hold the result. If
9902 FOREVER, wait forever rather than timing out; this is used (in
9903 synchronous mode) to wait for a target that is is executing user
9904 code to stop. If FOREVER == 0, this function is allowed to time
9905 out gracefully and return an indication of this to the caller.
9906 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9907 consider receiving a notification enough reason to return to the
9908 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9909 holds a notification or not (a regular packet). */
9910
9911 int
9912 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9913 int forever, int expecting_notif,
9914 int *is_notif)
9915 {
9916 struct remote_state *rs = get_remote_state ();
9917 int c;
9918 int tries;
9919 int timeout;
9920 int val = -1;
9921
9922 /* We're reading a new response. Make sure we don't look at a
9923 previously cached response. */
9924 rs->cached_wait_status = 0;
9925
9926 strcpy (buf->data (), "timeout");
9927
9928 if (forever)
9929 timeout = watchdog > 0 ? watchdog : -1;
9930 else if (expecting_notif)
9931 timeout = 0; /* There should already be a char in the buffer. If
9932 not, bail out. */
9933 else
9934 timeout = remote_timeout;
9935
9936 #define MAX_TRIES 3
9937
9938 /* Process any number of notifications, and then return when
9939 we get a packet. */
9940 for (;;)
9941 {
9942 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9943 times. */
9944 for (tries = 1; tries <= MAX_TRIES; tries++)
9945 {
9946 /* This can loop forever if the remote side sends us
9947 characters continuously, but if it pauses, we'll get
9948 SERIAL_TIMEOUT from readchar because of timeout. Then
9949 we'll count that as a retry.
9950
9951 Note that even when forever is set, we will only wait
9952 forever prior to the start of a packet. After that, we
9953 expect characters to arrive at a brisk pace. They should
9954 show up within remote_timeout intervals. */
9955 do
9956 c = readchar (timeout);
9957 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9958
9959 if (c == SERIAL_TIMEOUT)
9960 {
9961 if (expecting_notif)
9962 return -1; /* Don't complain, it's normal to not get
9963 anything in this case. */
9964
9965 if (forever) /* Watchdog went off? Kill the target. */
9966 {
9967 remote_unpush_target (this);
9968 throw_error (TARGET_CLOSE_ERROR,
9969 _("Watchdog timeout has expired. "
9970 "Target detached."));
9971 }
9972
9973 remote_debug_printf ("Timed out.");
9974 }
9975 else
9976 {
9977 /* We've found the start of a packet or notification.
9978 Now collect the data. */
9979 val = read_frame (buf);
9980 if (val >= 0)
9981 break;
9982 }
9983
9984 remote_serial_write ("-", 1);
9985 }
9986
9987 if (tries > MAX_TRIES)
9988 {
9989 /* We have tried hard enough, and just can't receive the
9990 packet/notification. Give up. */
9991 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9992
9993 /* Skip the ack char if we're in no-ack mode. */
9994 if (!rs->noack_mode)
9995 remote_serial_write ("+", 1);
9996 return -1;
9997 }
9998
9999 /* If we got an ordinary packet, return that to our caller. */
10000 if (c == '$')
10001 {
10002 if (remote_debug)
10003 {
10004 int max_chars;
10005
10006 if (remote_packet_max_chars < 0)
10007 max_chars = val;
10008 else
10009 max_chars = remote_packet_max_chars;
10010
10011 std::string str
10012 = escape_buffer (buf->data (),
10013 std::min (val, max_chars));
10014
10015 if (val > max_chars)
10016 remote_debug_printf_nofunc
10017 ("Packet received: %s [%d bytes omitted]", str.c_str (),
10018 val - max_chars);
10019 else
10020 remote_debug_printf_nofunc ("Packet received: %s",
10021 str.c_str ());
10022 }
10023
10024 /* Skip the ack char if we're in no-ack mode. */
10025 if (!rs->noack_mode)
10026 remote_serial_write ("+", 1);
10027 if (is_notif != NULL)
10028 *is_notif = 0;
10029 return val;
10030 }
10031
10032 /* If we got a notification, handle it, and go back to looking
10033 for a packet. */
10034 else
10035 {
10036 gdb_assert (c == '%');
10037
10038 remote_debug_printf_nofunc
10039 (" Notification received: %s",
10040 escape_buffer (buf->data (), val).c_str ());
10041
10042 if (is_notif != NULL)
10043 *is_notif = 1;
10044
10045 handle_notification (rs->notif_state, buf->data ());
10046
10047 /* Notifications require no acknowledgement. */
10048
10049 if (expecting_notif)
10050 return val;
10051 }
10052 }
10053 }
10054
10055 int
10056 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
10057 {
10058 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
10059 }
10060
10061 int
10062 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
10063 int *is_notif)
10064 {
10065 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
10066 }
10067
10068 /* Kill any new fork children of process PID that haven't been
10069 processed by follow_fork. */
10070
10071 void
10072 remote_target::kill_new_fork_children (int pid)
10073 {
10074 remote_state *rs = get_remote_state ();
10075 struct notif_client *notif = &notif_client_stop;
10076
10077 /* Kill the fork child threads of any threads in process PID
10078 that are stopped at a fork event. */
10079 for (thread_info *thread : all_non_exited_threads (this))
10080 {
10081 struct target_waitstatus *ws = &thread->pending_follow;
10082
10083 if (is_pending_fork_parent (ws, pid, thread->ptid))
10084 {
10085 int child_pid = ws->value.related_pid.pid ();
10086 int res;
10087
10088 res = remote_vkill (child_pid);
10089 if (res != 0)
10090 error (_("Can't kill fork child process %d"), child_pid);
10091 }
10092 }
10093
10094 /* Check for any pending fork events (not reported or processed yet)
10095 in process PID and kill those fork child threads as well. */
10096 remote_notif_get_pending_events (notif);
10097 for (auto &event : rs->stop_reply_queue)
10098 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
10099 {
10100 int child_pid = event->ws.value.related_pid.pid ();
10101 int res;
10102
10103 res = remote_vkill (child_pid);
10104 if (res != 0)
10105 error (_("Can't kill fork child process %d"), child_pid);
10106 }
10107 }
10108
10109 \f
10110 /* Target hook to kill the current inferior. */
10111
10112 void
10113 remote_target::kill ()
10114 {
10115 int res = -1;
10116 int pid = inferior_ptid.pid ();
10117 struct remote_state *rs = get_remote_state ();
10118
10119 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
10120 {
10121 /* If we're stopped while forking and we haven't followed yet,
10122 kill the child task. We need to do this before killing the
10123 parent task because if this is a vfork then the parent will
10124 be sleeping. */
10125 kill_new_fork_children (pid);
10126
10127 res = remote_vkill (pid);
10128 if (res == 0)
10129 {
10130 target_mourn_inferior (inferior_ptid);
10131 return;
10132 }
10133 }
10134
10135 /* If we are in 'target remote' mode and we are killing the only
10136 inferior, then we will tell gdbserver to exit and unpush the
10137 target. */
10138 if (res == -1 && !remote_multi_process_p (rs)
10139 && number_of_live_inferiors (this) == 1)
10140 {
10141 remote_kill_k ();
10142
10143 /* We've killed the remote end, we get to mourn it. If we are
10144 not in extended mode, mourning the inferior also unpushes
10145 remote_ops from the target stack, which closes the remote
10146 connection. */
10147 target_mourn_inferior (inferior_ptid);
10148
10149 return;
10150 }
10151
10152 error (_("Can't kill process"));
10153 }
10154
10155 /* Send a kill request to the target using the 'vKill' packet. */
10156
10157 int
10158 remote_target::remote_vkill (int pid)
10159 {
10160 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
10161 return -1;
10162
10163 remote_state *rs = get_remote_state ();
10164
10165 /* Tell the remote target to detach. */
10166 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
10167 putpkt (rs->buf);
10168 getpkt (&rs->buf, 0);
10169
10170 switch (packet_ok (rs->buf,
10171 &remote_protocol_packets[PACKET_vKill]))
10172 {
10173 case PACKET_OK:
10174 return 0;
10175 case PACKET_ERROR:
10176 return 1;
10177 case PACKET_UNKNOWN:
10178 return -1;
10179 default:
10180 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10181 }
10182 }
10183
10184 /* Send a kill request to the target using the 'k' packet. */
10185
10186 void
10187 remote_target::remote_kill_k ()
10188 {
10189 /* Catch errors so the user can quit from gdb even when we
10190 aren't on speaking terms with the remote system. */
10191 try
10192 {
10193 putpkt ("k");
10194 }
10195 catch (const gdb_exception_error &ex)
10196 {
10197 if (ex.error == TARGET_CLOSE_ERROR)
10198 {
10199 /* If we got an (EOF) error that caused the target
10200 to go away, then we're done, that's what we wanted.
10201 "k" is susceptible to cause a premature EOF, given
10202 that the remote server isn't actually required to
10203 reply to "k", and it can happen that it doesn't
10204 even get to reply ACK to the "k". */
10205 return;
10206 }
10207
10208 /* Otherwise, something went wrong. We didn't actually kill
10209 the target. Just propagate the exception, and let the
10210 user or higher layers decide what to do. */
10211 throw;
10212 }
10213 }
10214
10215 void
10216 remote_target::mourn_inferior ()
10217 {
10218 struct remote_state *rs = get_remote_state ();
10219
10220 /* We're no longer interested in notification events of an inferior
10221 that exited or was killed/detached. */
10222 discard_pending_stop_replies (current_inferior ());
10223
10224 /* In 'target remote' mode with one inferior, we close the connection. */
10225 if (!rs->extended && number_of_live_inferiors (this) <= 1)
10226 {
10227 remote_unpush_target (this);
10228 return;
10229 }
10230
10231 /* In case we got here due to an error, but we're going to stay
10232 connected. */
10233 rs->waiting_for_stop_reply = 0;
10234
10235 /* If the current general thread belonged to the process we just
10236 detached from or has exited, the remote side current general
10237 thread becomes undefined. Considering a case like this:
10238
10239 - We just got here due to a detach.
10240 - The process that we're detaching from happens to immediately
10241 report a global breakpoint being hit in non-stop mode, in the
10242 same thread we had selected before.
10243 - GDB attaches to this process again.
10244 - This event happens to be the next event we handle.
10245
10246 GDB would consider that the current general thread didn't need to
10247 be set on the stub side (with Hg), since for all it knew,
10248 GENERAL_THREAD hadn't changed.
10249
10250 Notice that although in all-stop mode, the remote server always
10251 sets the current thread to the thread reporting the stop event,
10252 that doesn't happen in non-stop mode; in non-stop, the stub *must
10253 not* change the current thread when reporting a breakpoint hit,
10254 due to the decoupling of event reporting and event handling.
10255
10256 To keep things simple, we always invalidate our notion of the
10257 current thread. */
10258 record_currthread (rs, minus_one_ptid);
10259
10260 /* Call common code to mark the inferior as not running. */
10261 generic_mourn_inferior ();
10262 }
10263
10264 bool
10265 extended_remote_target::supports_disable_randomization ()
10266 {
10267 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
10268 }
10269
10270 void
10271 remote_target::extended_remote_disable_randomization (int val)
10272 {
10273 struct remote_state *rs = get_remote_state ();
10274 char *reply;
10275
10276 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10277 "QDisableRandomization:%x", val);
10278 putpkt (rs->buf);
10279 reply = remote_get_noisy_reply ();
10280 if (*reply == '\0')
10281 error (_("Target does not support QDisableRandomization."));
10282 if (strcmp (reply, "OK") != 0)
10283 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10284 }
10285
10286 int
10287 remote_target::extended_remote_run (const std::string &args)
10288 {
10289 struct remote_state *rs = get_remote_state ();
10290 int len;
10291 const char *remote_exec_file = get_remote_exec_file ();
10292
10293 /* If the user has disabled vRun support, or we have detected that
10294 support is not available, do not try it. */
10295 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
10296 return -1;
10297
10298 strcpy (rs->buf.data (), "vRun;");
10299 len = strlen (rs->buf.data ());
10300
10301 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10302 error (_("Remote file name too long for run packet"));
10303 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
10304 strlen (remote_exec_file));
10305
10306 if (!args.empty ())
10307 {
10308 int i;
10309
10310 gdb_argv argv (args.c_str ());
10311 for (i = 0; argv[i] != NULL; i++)
10312 {
10313 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10314 error (_("Argument list too long for run packet"));
10315 rs->buf[len++] = ';';
10316 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
10317 strlen (argv[i]));
10318 }
10319 }
10320
10321 rs->buf[len++] = '\0';
10322
10323 putpkt (rs->buf);
10324 getpkt (&rs->buf, 0);
10325
10326 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
10327 {
10328 case PACKET_OK:
10329 /* We have a wait response. All is well. */
10330 return 0;
10331 case PACKET_UNKNOWN:
10332 return -1;
10333 case PACKET_ERROR:
10334 if (remote_exec_file[0] == '\0')
10335 error (_("Running the default executable on the remote target failed; "
10336 "try \"set remote exec-file\"?"));
10337 else
10338 error (_("Running \"%s\" on the remote target failed"),
10339 remote_exec_file);
10340 default:
10341 gdb_assert_not_reached (_("bad switch"));
10342 }
10343 }
10344
10345 /* Helper function to send set/unset environment packets. ACTION is
10346 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10347 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10348 sent. */
10349
10350 void
10351 remote_target::send_environment_packet (const char *action,
10352 const char *packet,
10353 const char *value)
10354 {
10355 remote_state *rs = get_remote_state ();
10356
10357 /* Convert the environment variable to an hex string, which
10358 is the best format to be transmitted over the wire. */
10359 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10360 strlen (value));
10361
10362 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10363 "%s:%s", packet, encoded_value.c_str ());
10364
10365 putpkt (rs->buf);
10366 getpkt (&rs->buf, 0);
10367 if (strcmp (rs->buf.data (), "OK") != 0)
10368 warning (_("Unable to %s environment variable '%s' on remote."),
10369 action, value);
10370 }
10371
10372 /* Helper function to handle the QEnvironment* packets. */
10373
10374 void
10375 remote_target::extended_remote_environment_support ()
10376 {
10377 remote_state *rs = get_remote_state ();
10378
10379 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10380 {
10381 putpkt ("QEnvironmentReset");
10382 getpkt (&rs->buf, 0);
10383 if (strcmp (rs->buf.data (), "OK") != 0)
10384 warning (_("Unable to reset environment on remote."));
10385 }
10386
10387 gdb_environ *e = &current_inferior ()->environment;
10388
10389 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10390 for (const std::string &el : e->user_set_env ())
10391 send_environment_packet ("set", "QEnvironmentHexEncoded",
10392 el.c_str ());
10393
10394 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10395 for (const std::string &el : e->user_unset_env ())
10396 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10397 }
10398
10399 /* Helper function to set the current working directory for the
10400 inferior in the remote target. */
10401
10402 void
10403 remote_target::extended_remote_set_inferior_cwd ()
10404 {
10405 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10406 {
10407 const std::string &inferior_cwd = current_inferior ()->cwd ();
10408 remote_state *rs = get_remote_state ();
10409
10410 if (!inferior_cwd.empty ())
10411 {
10412 std::string hexpath
10413 = bin2hex ((const gdb_byte *) inferior_cwd.data (),
10414 inferior_cwd.size ());
10415
10416 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10417 "QSetWorkingDir:%s", hexpath.c_str ());
10418 }
10419 else
10420 {
10421 /* An empty inferior_cwd means that the user wants us to
10422 reset the remote server's inferior's cwd. */
10423 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10424 "QSetWorkingDir:");
10425 }
10426
10427 putpkt (rs->buf);
10428 getpkt (&rs->buf, 0);
10429 if (packet_ok (rs->buf,
10430 &remote_protocol_packets[PACKET_QSetWorkingDir])
10431 != PACKET_OK)
10432 error (_("\
10433 Remote replied unexpectedly while setting the inferior's working\n\
10434 directory: %s"),
10435 rs->buf.data ());
10436
10437 }
10438 }
10439
10440 /* In the extended protocol we want to be able to do things like
10441 "run" and have them basically work as expected. So we need
10442 a special create_inferior function. We support changing the
10443 executable file and the command line arguments, but not the
10444 environment. */
10445
10446 void
10447 extended_remote_target::create_inferior (const char *exec_file,
10448 const std::string &args,
10449 char **env, int from_tty)
10450 {
10451 int run_worked;
10452 char *stop_reply;
10453 struct remote_state *rs = get_remote_state ();
10454 const char *remote_exec_file = get_remote_exec_file ();
10455
10456 /* If running asynchronously, register the target file descriptor
10457 with the event loop. */
10458 if (target_can_async_p ())
10459 target_async (1);
10460
10461 /* Disable address space randomization if requested (and supported). */
10462 if (supports_disable_randomization ())
10463 extended_remote_disable_randomization (disable_randomization);
10464
10465 /* If startup-with-shell is on, we inform gdbserver to start the
10466 remote inferior using a shell. */
10467 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10468 {
10469 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10470 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10471 putpkt (rs->buf);
10472 getpkt (&rs->buf, 0);
10473 if (strcmp (rs->buf.data (), "OK") != 0)
10474 error (_("\
10475 Remote replied unexpectedly while setting startup-with-shell: %s"),
10476 rs->buf.data ());
10477 }
10478
10479 extended_remote_environment_support ();
10480
10481 extended_remote_set_inferior_cwd ();
10482
10483 /* Now restart the remote server. */
10484 run_worked = extended_remote_run (args) != -1;
10485 if (!run_worked)
10486 {
10487 /* vRun was not supported. Fail if we need it to do what the
10488 user requested. */
10489 if (remote_exec_file[0])
10490 error (_("Remote target does not support \"set remote exec-file\""));
10491 if (!args.empty ())
10492 error (_("Remote target does not support \"set args\" or run ARGS"));
10493
10494 /* Fall back to "R". */
10495 extended_remote_restart ();
10496 }
10497
10498 /* vRun's success return is a stop reply. */
10499 stop_reply = run_worked ? rs->buf.data () : NULL;
10500 add_current_inferior_and_thread (stop_reply);
10501
10502 /* Get updated offsets, if the stub uses qOffsets. */
10503 get_offsets ();
10504 }
10505 \f
10506
10507 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10508 the list of conditions (in agent expression bytecode format), if any, the
10509 target needs to evaluate. The output is placed into the packet buffer
10510 started from BUF and ended at BUF_END. */
10511
10512 static int
10513 remote_add_target_side_condition (struct gdbarch *gdbarch,
10514 struct bp_target_info *bp_tgt, char *buf,
10515 char *buf_end)
10516 {
10517 if (bp_tgt->conditions.empty ())
10518 return 0;
10519
10520 buf += strlen (buf);
10521 xsnprintf (buf, buf_end - buf, "%s", ";");
10522 buf++;
10523
10524 /* Send conditions to the target. */
10525 for (agent_expr *aexpr : bp_tgt->conditions)
10526 {
10527 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10528 buf += strlen (buf);
10529 for (int i = 0; i < aexpr->len; ++i)
10530 buf = pack_hex_byte (buf, aexpr->buf[i]);
10531 *buf = '\0';
10532 }
10533 return 0;
10534 }
10535
10536 static void
10537 remote_add_target_side_commands (struct gdbarch *gdbarch,
10538 struct bp_target_info *bp_tgt, char *buf)
10539 {
10540 if (bp_tgt->tcommands.empty ())
10541 return;
10542
10543 buf += strlen (buf);
10544
10545 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10546 buf += strlen (buf);
10547
10548 /* Concatenate all the agent expressions that are commands into the
10549 cmds parameter. */
10550 for (agent_expr *aexpr : bp_tgt->tcommands)
10551 {
10552 sprintf (buf, "X%x,", aexpr->len);
10553 buf += strlen (buf);
10554 for (int i = 0; i < aexpr->len; ++i)
10555 buf = pack_hex_byte (buf, aexpr->buf[i]);
10556 *buf = '\0';
10557 }
10558 }
10559
10560 /* Insert a breakpoint. On targets that have software breakpoint
10561 support, we ask the remote target to do the work; on targets
10562 which don't, we insert a traditional memory breakpoint. */
10563
10564 int
10565 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10566 struct bp_target_info *bp_tgt)
10567 {
10568 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10569 If it succeeds, then set the support to PACKET_ENABLE. If it
10570 fails, and the user has explicitly requested the Z support then
10571 report an error, otherwise, mark it disabled and go on. */
10572
10573 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10574 {
10575 CORE_ADDR addr = bp_tgt->reqstd_address;
10576 struct remote_state *rs;
10577 char *p, *endbuf;
10578
10579 /* Make sure the remote is pointing at the right process, if
10580 necessary. */
10581 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10582 set_general_process ();
10583
10584 rs = get_remote_state ();
10585 p = rs->buf.data ();
10586 endbuf = p + get_remote_packet_size ();
10587
10588 *(p++) = 'Z';
10589 *(p++) = '0';
10590 *(p++) = ',';
10591 addr = (ULONGEST) remote_address_masked (addr);
10592 p += hexnumstr (p, addr);
10593 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10594
10595 if (supports_evaluation_of_breakpoint_conditions ())
10596 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10597
10598 if (can_run_breakpoint_commands ())
10599 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10600
10601 putpkt (rs->buf);
10602 getpkt (&rs->buf, 0);
10603
10604 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10605 {
10606 case PACKET_ERROR:
10607 return -1;
10608 case PACKET_OK:
10609 return 0;
10610 case PACKET_UNKNOWN:
10611 break;
10612 }
10613 }
10614
10615 /* If this breakpoint has target-side commands but this stub doesn't
10616 support Z0 packets, throw error. */
10617 if (!bp_tgt->tcommands.empty ())
10618 throw_error (NOT_SUPPORTED_ERROR, _("\
10619 Target doesn't support breakpoints that have target side commands."));
10620
10621 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10622 }
10623
10624 int
10625 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10626 struct bp_target_info *bp_tgt,
10627 enum remove_bp_reason reason)
10628 {
10629 CORE_ADDR addr = bp_tgt->placed_address;
10630 struct remote_state *rs = get_remote_state ();
10631
10632 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10633 {
10634 char *p = rs->buf.data ();
10635 char *endbuf = p + get_remote_packet_size ();
10636
10637 /* Make sure the remote is pointing at the right process, if
10638 necessary. */
10639 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10640 set_general_process ();
10641
10642 *(p++) = 'z';
10643 *(p++) = '0';
10644 *(p++) = ',';
10645
10646 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10647 p += hexnumstr (p, addr);
10648 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10649
10650 putpkt (rs->buf);
10651 getpkt (&rs->buf, 0);
10652
10653 return (rs->buf[0] == 'E');
10654 }
10655
10656 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10657 }
10658
10659 static enum Z_packet_type
10660 watchpoint_to_Z_packet (int type)
10661 {
10662 switch (type)
10663 {
10664 case hw_write:
10665 return Z_PACKET_WRITE_WP;
10666 break;
10667 case hw_read:
10668 return Z_PACKET_READ_WP;
10669 break;
10670 case hw_access:
10671 return Z_PACKET_ACCESS_WP;
10672 break;
10673 default:
10674 internal_error (__FILE__, __LINE__,
10675 _("hw_bp_to_z: bad watchpoint type %d"), type);
10676 }
10677 }
10678
10679 int
10680 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10681 enum target_hw_bp_type type, struct expression *cond)
10682 {
10683 struct remote_state *rs = get_remote_state ();
10684 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10685 char *p;
10686 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10687
10688 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10689 return 1;
10690
10691 /* Make sure the remote is pointing at the right process, if
10692 necessary. */
10693 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10694 set_general_process ();
10695
10696 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10697 p = strchr (rs->buf.data (), '\0');
10698 addr = remote_address_masked (addr);
10699 p += hexnumstr (p, (ULONGEST) addr);
10700 xsnprintf (p, endbuf - p, ",%x", len);
10701
10702 putpkt (rs->buf);
10703 getpkt (&rs->buf, 0);
10704
10705 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10706 {
10707 case PACKET_ERROR:
10708 return -1;
10709 case PACKET_UNKNOWN:
10710 return 1;
10711 case PACKET_OK:
10712 return 0;
10713 }
10714 internal_error (__FILE__, __LINE__,
10715 _("remote_insert_watchpoint: reached end of function"));
10716 }
10717
10718 bool
10719 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10720 CORE_ADDR start, int length)
10721 {
10722 CORE_ADDR diff = remote_address_masked (addr - start);
10723
10724 return diff < length;
10725 }
10726
10727
10728 int
10729 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10730 enum target_hw_bp_type type, struct expression *cond)
10731 {
10732 struct remote_state *rs = get_remote_state ();
10733 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10734 char *p;
10735 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10736
10737 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10738 return -1;
10739
10740 /* Make sure the remote is pointing at the right process, if
10741 necessary. */
10742 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10743 set_general_process ();
10744
10745 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10746 p = strchr (rs->buf.data (), '\0');
10747 addr = remote_address_masked (addr);
10748 p += hexnumstr (p, (ULONGEST) addr);
10749 xsnprintf (p, endbuf - p, ",%x", len);
10750 putpkt (rs->buf);
10751 getpkt (&rs->buf, 0);
10752
10753 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10754 {
10755 case PACKET_ERROR:
10756 case PACKET_UNKNOWN:
10757 return -1;
10758 case PACKET_OK:
10759 return 0;
10760 }
10761 internal_error (__FILE__, __LINE__,
10762 _("remote_remove_watchpoint: reached end of function"));
10763 }
10764
10765
10766 static int remote_hw_watchpoint_limit = -1;
10767 static int remote_hw_watchpoint_length_limit = -1;
10768 static int remote_hw_breakpoint_limit = -1;
10769
10770 int
10771 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10772 {
10773 if (remote_hw_watchpoint_length_limit == 0)
10774 return 0;
10775 else if (remote_hw_watchpoint_length_limit < 0)
10776 return 1;
10777 else if (len <= remote_hw_watchpoint_length_limit)
10778 return 1;
10779 else
10780 return 0;
10781 }
10782
10783 int
10784 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10785 {
10786 if (type == bp_hardware_breakpoint)
10787 {
10788 if (remote_hw_breakpoint_limit == 0)
10789 return 0;
10790 else if (remote_hw_breakpoint_limit < 0)
10791 return 1;
10792 else if (cnt <= remote_hw_breakpoint_limit)
10793 return 1;
10794 }
10795 else
10796 {
10797 if (remote_hw_watchpoint_limit == 0)
10798 return 0;
10799 else if (remote_hw_watchpoint_limit < 0)
10800 return 1;
10801 else if (ot)
10802 return -1;
10803 else if (cnt <= remote_hw_watchpoint_limit)
10804 return 1;
10805 }
10806 return -1;
10807 }
10808
10809 /* The to_stopped_by_sw_breakpoint method of target remote. */
10810
10811 bool
10812 remote_target::stopped_by_sw_breakpoint ()
10813 {
10814 struct thread_info *thread = inferior_thread ();
10815
10816 return (thread->priv != NULL
10817 && (get_remote_thread_info (thread)->stop_reason
10818 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10819 }
10820
10821 /* The to_supports_stopped_by_sw_breakpoint method of target
10822 remote. */
10823
10824 bool
10825 remote_target::supports_stopped_by_sw_breakpoint ()
10826 {
10827 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10828 }
10829
10830 /* The to_stopped_by_hw_breakpoint method of target remote. */
10831
10832 bool
10833 remote_target::stopped_by_hw_breakpoint ()
10834 {
10835 struct thread_info *thread = inferior_thread ();
10836
10837 return (thread->priv != NULL
10838 && (get_remote_thread_info (thread)->stop_reason
10839 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10840 }
10841
10842 /* The to_supports_stopped_by_hw_breakpoint method of target
10843 remote. */
10844
10845 bool
10846 remote_target::supports_stopped_by_hw_breakpoint ()
10847 {
10848 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10849 }
10850
10851 bool
10852 remote_target::stopped_by_watchpoint ()
10853 {
10854 struct thread_info *thread = inferior_thread ();
10855
10856 return (thread->priv != NULL
10857 && (get_remote_thread_info (thread)->stop_reason
10858 == TARGET_STOPPED_BY_WATCHPOINT));
10859 }
10860
10861 bool
10862 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10863 {
10864 struct thread_info *thread = inferior_thread ();
10865
10866 if (thread->priv != NULL
10867 && (get_remote_thread_info (thread)->stop_reason
10868 == TARGET_STOPPED_BY_WATCHPOINT))
10869 {
10870 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10871 return true;
10872 }
10873
10874 return false;
10875 }
10876
10877
10878 int
10879 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10880 struct bp_target_info *bp_tgt)
10881 {
10882 CORE_ADDR addr = bp_tgt->reqstd_address;
10883 struct remote_state *rs;
10884 char *p, *endbuf;
10885 char *message;
10886
10887 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10888 return -1;
10889
10890 /* Make sure the remote is pointing at the right process, if
10891 necessary. */
10892 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10893 set_general_process ();
10894
10895 rs = get_remote_state ();
10896 p = rs->buf.data ();
10897 endbuf = p + get_remote_packet_size ();
10898
10899 *(p++) = 'Z';
10900 *(p++) = '1';
10901 *(p++) = ',';
10902
10903 addr = remote_address_masked (addr);
10904 p += hexnumstr (p, (ULONGEST) addr);
10905 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10906
10907 if (supports_evaluation_of_breakpoint_conditions ())
10908 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10909
10910 if (can_run_breakpoint_commands ())
10911 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10912
10913 putpkt (rs->buf);
10914 getpkt (&rs->buf, 0);
10915
10916 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10917 {
10918 case PACKET_ERROR:
10919 if (rs->buf[1] == '.')
10920 {
10921 message = strchr (&rs->buf[2], '.');
10922 if (message)
10923 error (_("Remote failure reply: %s"), message + 1);
10924 }
10925 return -1;
10926 case PACKET_UNKNOWN:
10927 return -1;
10928 case PACKET_OK:
10929 return 0;
10930 }
10931 internal_error (__FILE__, __LINE__,
10932 _("remote_insert_hw_breakpoint: reached end of function"));
10933 }
10934
10935
10936 int
10937 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10938 struct bp_target_info *bp_tgt)
10939 {
10940 CORE_ADDR addr;
10941 struct remote_state *rs = get_remote_state ();
10942 char *p = rs->buf.data ();
10943 char *endbuf = p + get_remote_packet_size ();
10944
10945 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10946 return -1;
10947
10948 /* Make sure the remote is pointing at the right process, if
10949 necessary. */
10950 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10951 set_general_process ();
10952
10953 *(p++) = 'z';
10954 *(p++) = '1';
10955 *(p++) = ',';
10956
10957 addr = remote_address_masked (bp_tgt->placed_address);
10958 p += hexnumstr (p, (ULONGEST) addr);
10959 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10960
10961 putpkt (rs->buf);
10962 getpkt (&rs->buf, 0);
10963
10964 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10965 {
10966 case PACKET_ERROR:
10967 case PACKET_UNKNOWN:
10968 return -1;
10969 case PACKET_OK:
10970 return 0;
10971 }
10972 internal_error (__FILE__, __LINE__,
10973 _("remote_remove_hw_breakpoint: reached end of function"));
10974 }
10975
10976 /* Verify memory using the "qCRC:" request. */
10977
10978 int
10979 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10980 {
10981 struct remote_state *rs = get_remote_state ();
10982 unsigned long host_crc, target_crc;
10983 char *tmp;
10984
10985 /* It doesn't make sense to use qCRC if the remote target is
10986 connected but not running. */
10987 if (target_has_execution ()
10988 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10989 {
10990 enum packet_result result;
10991
10992 /* Make sure the remote is pointing at the right process. */
10993 set_general_process ();
10994
10995 /* FIXME: assumes lma can fit into long. */
10996 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10997 (long) lma, (long) size);
10998 putpkt (rs->buf);
10999
11000 /* Be clever; compute the host_crc before waiting for target
11001 reply. */
11002 host_crc = xcrc32 (data, size, 0xffffffff);
11003
11004 getpkt (&rs->buf, 0);
11005
11006 result = packet_ok (rs->buf,
11007 &remote_protocol_packets[PACKET_qCRC]);
11008 if (result == PACKET_ERROR)
11009 return -1;
11010 else if (result == PACKET_OK)
11011 {
11012 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
11013 target_crc = target_crc * 16 + fromhex (*tmp);
11014
11015 return (host_crc == target_crc);
11016 }
11017 }
11018
11019 return simple_verify_memory (this, data, lma, size);
11020 }
11021
11022 /* compare-sections command
11023
11024 With no arguments, compares each loadable section in the exec bfd
11025 with the same memory range on the target, and reports mismatches.
11026 Useful for verifying the image on the target against the exec file. */
11027
11028 static void
11029 compare_sections_command (const char *args, int from_tty)
11030 {
11031 asection *s;
11032 const char *sectname;
11033 bfd_size_type size;
11034 bfd_vma lma;
11035 int matched = 0;
11036 int mismatched = 0;
11037 int res;
11038 int read_only = 0;
11039
11040 if (!current_program_space->exec_bfd ())
11041 error (_("command cannot be used without an exec file"));
11042
11043 if (args != NULL && strcmp (args, "-r") == 0)
11044 {
11045 read_only = 1;
11046 args = NULL;
11047 }
11048
11049 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
11050 {
11051 if (!(s->flags & SEC_LOAD))
11052 continue; /* Skip non-loadable section. */
11053
11054 if (read_only && (s->flags & SEC_READONLY) == 0)
11055 continue; /* Skip writeable sections */
11056
11057 size = bfd_section_size (s);
11058 if (size == 0)
11059 continue; /* Skip zero-length section. */
11060
11061 sectname = bfd_section_name (s);
11062 if (args && strcmp (args, sectname) != 0)
11063 continue; /* Not the section selected by user. */
11064
11065 matched = 1; /* Do this section. */
11066 lma = s->lma;
11067
11068 gdb::byte_vector sectdata (size);
11069 bfd_get_section_contents (current_program_space->exec_bfd (), s,
11070 sectdata.data (), 0, size);
11071
11072 res = target_verify_memory (sectdata.data (), lma, size);
11073
11074 if (res == -1)
11075 error (_("target memory fault, section %s, range %s -- %s"), sectname,
11076 paddress (target_gdbarch (), lma),
11077 paddress (target_gdbarch (), lma + size));
11078
11079 printf_filtered ("Section %s, range %s -- %s: ", sectname,
11080 paddress (target_gdbarch (), lma),
11081 paddress (target_gdbarch (), lma + size));
11082 if (res)
11083 printf_filtered ("matched.\n");
11084 else
11085 {
11086 printf_filtered ("MIS-MATCHED!\n");
11087 mismatched++;
11088 }
11089 }
11090 if (mismatched > 0)
11091 warning (_("One or more sections of the target image does not match\n\
11092 the loaded file\n"));
11093 if (args && !matched)
11094 printf_filtered (_("No loaded section named '%s'.\n"), args);
11095 }
11096
11097 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
11098 into remote target. The number of bytes written to the remote
11099 target is returned, or -1 for error. */
11100
11101 target_xfer_status
11102 remote_target::remote_write_qxfer (const char *object_name,
11103 const char *annex, const gdb_byte *writebuf,
11104 ULONGEST offset, LONGEST len,
11105 ULONGEST *xfered_len,
11106 struct packet_config *packet)
11107 {
11108 int i, buf_len;
11109 ULONGEST n;
11110 struct remote_state *rs = get_remote_state ();
11111 int max_size = get_memory_write_packet_size ();
11112
11113 if (packet_config_support (packet) == PACKET_DISABLE)
11114 return TARGET_XFER_E_IO;
11115
11116 /* Insert header. */
11117 i = snprintf (rs->buf.data (), max_size,
11118 "qXfer:%s:write:%s:%s:",
11119 object_name, annex ? annex : "",
11120 phex_nz (offset, sizeof offset));
11121 max_size -= (i + 1);
11122
11123 /* Escape as much data as fits into rs->buf. */
11124 buf_len = remote_escape_output
11125 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
11126
11127 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11128 || getpkt_sane (&rs->buf, 0) < 0
11129 || packet_ok (rs->buf, packet) != PACKET_OK)
11130 return TARGET_XFER_E_IO;
11131
11132 unpack_varlen_hex (rs->buf.data (), &n);
11133
11134 *xfered_len = n;
11135 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11136 }
11137
11138 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11139 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11140 number of bytes read is returned, or 0 for EOF, or -1 for error.
11141 The number of bytes read may be less than LEN without indicating an
11142 EOF. PACKET is checked and updated to indicate whether the remote
11143 target supports this object. */
11144
11145 target_xfer_status
11146 remote_target::remote_read_qxfer (const char *object_name,
11147 const char *annex,
11148 gdb_byte *readbuf, ULONGEST offset,
11149 LONGEST len,
11150 ULONGEST *xfered_len,
11151 struct packet_config *packet)
11152 {
11153 struct remote_state *rs = get_remote_state ();
11154 LONGEST i, n, packet_len;
11155
11156 if (packet_config_support (packet) == PACKET_DISABLE)
11157 return TARGET_XFER_E_IO;
11158
11159 /* Check whether we've cached an end-of-object packet that matches
11160 this request. */
11161 if (rs->finished_object)
11162 {
11163 if (strcmp (object_name, rs->finished_object) == 0
11164 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11165 && offset == rs->finished_offset)
11166 return TARGET_XFER_EOF;
11167
11168
11169 /* Otherwise, we're now reading something different. Discard
11170 the cache. */
11171 xfree (rs->finished_object);
11172 xfree (rs->finished_annex);
11173 rs->finished_object = NULL;
11174 rs->finished_annex = NULL;
11175 }
11176
11177 /* Request only enough to fit in a single packet. The actual data
11178 may not, since we don't know how much of it will need to be escaped;
11179 the target is free to respond with slightly less data. We subtract
11180 five to account for the response type and the protocol frame. */
11181 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
11182 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11183 "qXfer:%s:read:%s:%s,%s",
11184 object_name, annex ? annex : "",
11185 phex_nz (offset, sizeof offset),
11186 phex_nz (n, sizeof n));
11187 i = putpkt (rs->buf);
11188 if (i < 0)
11189 return TARGET_XFER_E_IO;
11190
11191 rs->buf[0] = '\0';
11192 packet_len = getpkt_sane (&rs->buf, 0);
11193 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
11194 return TARGET_XFER_E_IO;
11195
11196 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
11197 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
11198
11199 /* 'm' means there is (or at least might be) more data after this
11200 batch. That does not make sense unless there's at least one byte
11201 of data in this reply. */
11202 if (rs->buf[0] == 'm' && packet_len == 1)
11203 error (_("Remote qXfer reply contained no data."));
11204
11205 /* Got some data. */
11206 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
11207 packet_len - 1, readbuf, n);
11208
11209 /* 'l' is an EOF marker, possibly including a final block of data,
11210 or possibly empty. If we have the final block of a non-empty
11211 object, record this fact to bypass a subsequent partial read. */
11212 if (rs->buf[0] == 'l' && offset + i > 0)
11213 {
11214 rs->finished_object = xstrdup (object_name);
11215 rs->finished_annex = xstrdup (annex ? annex : "");
11216 rs->finished_offset = offset + i;
11217 }
11218
11219 if (i == 0)
11220 return TARGET_XFER_EOF;
11221 else
11222 {
11223 *xfered_len = i;
11224 return TARGET_XFER_OK;
11225 }
11226 }
11227
11228 enum target_xfer_status
11229 remote_target::xfer_partial (enum target_object object,
11230 const char *annex, gdb_byte *readbuf,
11231 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11232 ULONGEST *xfered_len)
11233 {
11234 struct remote_state *rs;
11235 int i;
11236 char *p2;
11237 char query_type;
11238 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
11239
11240 set_remote_traceframe ();
11241 set_general_thread (inferior_ptid);
11242
11243 rs = get_remote_state ();
11244
11245 /* Handle memory using the standard memory routines. */
11246 if (object == TARGET_OBJECT_MEMORY)
11247 {
11248 /* If the remote target is connected but not running, we should
11249 pass this request down to a lower stratum (e.g. the executable
11250 file). */
11251 if (!target_has_execution ())
11252 return TARGET_XFER_EOF;
11253
11254 if (writebuf != NULL)
11255 return remote_write_bytes (offset, writebuf, len, unit_size,
11256 xfered_len);
11257 else
11258 return remote_read_bytes (offset, readbuf, len, unit_size,
11259 xfered_len);
11260 }
11261
11262 /* Handle extra signal info using qxfer packets. */
11263 if (object == TARGET_OBJECT_SIGNAL_INFO)
11264 {
11265 if (readbuf)
11266 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
11267 xfered_len, &remote_protocol_packets
11268 [PACKET_qXfer_siginfo_read]);
11269 else
11270 return remote_write_qxfer ("siginfo", annex,
11271 writebuf, offset, len, xfered_len,
11272 &remote_protocol_packets
11273 [PACKET_qXfer_siginfo_write]);
11274 }
11275
11276 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11277 {
11278 if (readbuf)
11279 return remote_read_qxfer ("statictrace", annex,
11280 readbuf, offset, len, xfered_len,
11281 &remote_protocol_packets
11282 [PACKET_qXfer_statictrace_read]);
11283 else
11284 return TARGET_XFER_E_IO;
11285 }
11286
11287 /* Only handle flash writes. */
11288 if (writebuf != NULL)
11289 {
11290 switch (object)
11291 {
11292 case TARGET_OBJECT_FLASH:
11293 return remote_flash_write (offset, len, xfered_len,
11294 writebuf);
11295
11296 default:
11297 return TARGET_XFER_E_IO;
11298 }
11299 }
11300
11301 /* Map pre-existing objects onto letters. DO NOT do this for new
11302 objects!!! Instead specify new query packets. */
11303 switch (object)
11304 {
11305 case TARGET_OBJECT_AVR:
11306 query_type = 'R';
11307 break;
11308
11309 case TARGET_OBJECT_AUXV:
11310 gdb_assert (annex == NULL);
11311 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
11312 xfered_len,
11313 &remote_protocol_packets[PACKET_qXfer_auxv]);
11314
11315 case TARGET_OBJECT_AVAILABLE_FEATURES:
11316 return remote_read_qxfer
11317 ("features", annex, readbuf, offset, len, xfered_len,
11318 &remote_protocol_packets[PACKET_qXfer_features]);
11319
11320 case TARGET_OBJECT_LIBRARIES:
11321 return remote_read_qxfer
11322 ("libraries", annex, readbuf, offset, len, xfered_len,
11323 &remote_protocol_packets[PACKET_qXfer_libraries]);
11324
11325 case TARGET_OBJECT_LIBRARIES_SVR4:
11326 return remote_read_qxfer
11327 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
11328 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11329
11330 case TARGET_OBJECT_MEMORY_MAP:
11331 gdb_assert (annex == NULL);
11332 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
11333 xfered_len,
11334 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11335
11336 case TARGET_OBJECT_OSDATA:
11337 /* Should only get here if we're connected. */
11338 gdb_assert (rs->remote_desc);
11339 return remote_read_qxfer
11340 ("osdata", annex, readbuf, offset, len, xfered_len,
11341 &remote_protocol_packets[PACKET_qXfer_osdata]);
11342
11343 case TARGET_OBJECT_THREADS:
11344 gdb_assert (annex == NULL);
11345 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
11346 xfered_len,
11347 &remote_protocol_packets[PACKET_qXfer_threads]);
11348
11349 case TARGET_OBJECT_TRACEFRAME_INFO:
11350 gdb_assert (annex == NULL);
11351 return remote_read_qxfer
11352 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11353 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11354
11355 case TARGET_OBJECT_FDPIC:
11356 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11357 xfered_len,
11358 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11359
11360 case TARGET_OBJECT_OPENVMS_UIB:
11361 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11362 xfered_len,
11363 &remote_protocol_packets[PACKET_qXfer_uib]);
11364
11365 case TARGET_OBJECT_BTRACE:
11366 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11367 xfered_len,
11368 &remote_protocol_packets[PACKET_qXfer_btrace]);
11369
11370 case TARGET_OBJECT_BTRACE_CONF:
11371 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11372 len, xfered_len,
11373 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11374
11375 case TARGET_OBJECT_EXEC_FILE:
11376 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11377 len, xfered_len,
11378 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11379
11380 default:
11381 return TARGET_XFER_E_IO;
11382 }
11383
11384 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11385 large enough let the caller deal with it. */
11386 if (len < get_remote_packet_size ())
11387 return TARGET_XFER_E_IO;
11388 len = get_remote_packet_size ();
11389
11390 /* Except for querying the minimum buffer size, target must be open. */
11391 if (!rs->remote_desc)
11392 error (_("remote query is only available after target open"));
11393
11394 gdb_assert (annex != NULL);
11395 gdb_assert (readbuf != NULL);
11396
11397 p2 = rs->buf.data ();
11398 *p2++ = 'q';
11399 *p2++ = query_type;
11400
11401 /* We used one buffer char for the remote protocol q command and
11402 another for the query type. As the remote protocol encapsulation
11403 uses 4 chars plus one extra in case we are debugging
11404 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11405 string. */
11406 i = 0;
11407 while (annex[i] && (i < (get_remote_packet_size () - 8)))
11408 {
11409 /* Bad caller may have sent forbidden characters. */
11410 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11411 *p2++ = annex[i];
11412 i++;
11413 }
11414 *p2 = '\0';
11415 gdb_assert (annex[i] == '\0');
11416
11417 i = putpkt (rs->buf);
11418 if (i < 0)
11419 return TARGET_XFER_E_IO;
11420
11421 getpkt (&rs->buf, 0);
11422 strcpy ((char *) readbuf, rs->buf.data ());
11423
11424 *xfered_len = strlen ((char *) readbuf);
11425 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11426 }
11427
11428 /* Implementation of to_get_memory_xfer_limit. */
11429
11430 ULONGEST
11431 remote_target::get_memory_xfer_limit ()
11432 {
11433 return get_memory_write_packet_size ();
11434 }
11435
11436 int
11437 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11438 const gdb_byte *pattern, ULONGEST pattern_len,
11439 CORE_ADDR *found_addrp)
11440 {
11441 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11442 struct remote_state *rs = get_remote_state ();
11443 int max_size = get_memory_write_packet_size ();
11444 struct packet_config *packet =
11445 &remote_protocol_packets[PACKET_qSearch_memory];
11446 /* Number of packet bytes used to encode the pattern;
11447 this could be more than PATTERN_LEN due to escape characters. */
11448 int escaped_pattern_len;
11449 /* Amount of pattern that was encodable in the packet. */
11450 int used_pattern_len;
11451 int i;
11452 int found;
11453 ULONGEST found_addr;
11454
11455 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11456 {
11457 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11458 == len);
11459 };
11460
11461 /* Don't go to the target if we don't have to. This is done before
11462 checking packet_config_support to avoid the possibility that a
11463 success for this edge case means the facility works in
11464 general. */
11465 if (pattern_len > search_space_len)
11466 return 0;
11467 if (pattern_len == 0)
11468 {
11469 *found_addrp = start_addr;
11470 return 1;
11471 }
11472
11473 /* If we already know the packet isn't supported, fall back to the simple
11474 way of searching memory. */
11475
11476 if (packet_config_support (packet) == PACKET_DISABLE)
11477 {
11478 /* Target doesn't provided special support, fall back and use the
11479 standard support (copy memory and do the search here). */
11480 return simple_search_memory (read_memory, start_addr, search_space_len,
11481 pattern, pattern_len, found_addrp);
11482 }
11483
11484 /* Make sure the remote is pointing at the right process. */
11485 set_general_process ();
11486
11487 /* Insert header. */
11488 i = snprintf (rs->buf.data (), max_size,
11489 "qSearch:memory:%s;%s;",
11490 phex_nz (start_addr, addr_size),
11491 phex_nz (search_space_len, sizeof (search_space_len)));
11492 max_size -= (i + 1);
11493
11494 /* Escape as much data as fits into rs->buf. */
11495 escaped_pattern_len =
11496 remote_escape_output (pattern, pattern_len, 1,
11497 (gdb_byte *) rs->buf.data () + i,
11498 &used_pattern_len, max_size);
11499
11500 /* Bail if the pattern is too large. */
11501 if (used_pattern_len != pattern_len)
11502 error (_("Pattern is too large to transmit to remote target."));
11503
11504 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11505 || getpkt_sane (&rs->buf, 0) < 0
11506 || packet_ok (rs->buf, packet) != PACKET_OK)
11507 {
11508 /* The request may not have worked because the command is not
11509 supported. If so, fall back to the simple way. */
11510 if (packet_config_support (packet) == PACKET_DISABLE)
11511 {
11512 return simple_search_memory (read_memory, start_addr, search_space_len,
11513 pattern, pattern_len, found_addrp);
11514 }
11515 return -1;
11516 }
11517
11518 if (rs->buf[0] == '0')
11519 found = 0;
11520 else if (rs->buf[0] == '1')
11521 {
11522 found = 1;
11523 if (rs->buf[1] != ',')
11524 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11525 unpack_varlen_hex (&rs->buf[2], &found_addr);
11526 *found_addrp = found_addr;
11527 }
11528 else
11529 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11530
11531 return found;
11532 }
11533
11534 void
11535 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11536 {
11537 struct remote_state *rs = get_remote_state ();
11538 char *p = rs->buf.data ();
11539
11540 if (!rs->remote_desc)
11541 error (_("remote rcmd is only available after target open"));
11542
11543 /* Send a NULL command across as an empty command. */
11544 if (command == NULL)
11545 command = "";
11546
11547 /* The query prefix. */
11548 strcpy (rs->buf.data (), "qRcmd,");
11549 p = strchr (rs->buf.data (), '\0');
11550
11551 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11552 > get_remote_packet_size ())
11553 error (_("\"monitor\" command ``%s'' is too long."), command);
11554
11555 /* Encode the actual command. */
11556 bin2hex ((const gdb_byte *) command, p, strlen (command));
11557
11558 if (putpkt (rs->buf) < 0)
11559 error (_("Communication problem with target."));
11560
11561 /* get/display the response */
11562 while (1)
11563 {
11564 char *buf;
11565
11566 /* XXX - see also remote_get_noisy_reply(). */
11567 QUIT; /* Allow user to bail out with ^C. */
11568 rs->buf[0] = '\0';
11569 if (getpkt_sane (&rs->buf, 0) == -1)
11570 {
11571 /* Timeout. Continue to (try to) read responses.
11572 This is better than stopping with an error, assuming the stub
11573 is still executing the (long) monitor command.
11574 If needed, the user can interrupt gdb using C-c, obtaining
11575 an effect similar to stop on timeout. */
11576 continue;
11577 }
11578 buf = rs->buf.data ();
11579 if (buf[0] == '\0')
11580 error (_("Target does not support this command."));
11581 if (buf[0] == 'O' && buf[1] != 'K')
11582 {
11583 remote_console_output (buf + 1); /* 'O' message from stub. */
11584 continue;
11585 }
11586 if (strcmp (buf, "OK") == 0)
11587 break;
11588 if (strlen (buf) == 3 && buf[0] == 'E'
11589 && isdigit (buf[1]) && isdigit (buf[2]))
11590 {
11591 error (_("Protocol error with Rcmd"));
11592 }
11593 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11594 {
11595 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11596
11597 fputc_unfiltered (c, outbuf);
11598 }
11599 break;
11600 }
11601 }
11602
11603 std::vector<mem_region>
11604 remote_target::memory_map ()
11605 {
11606 std::vector<mem_region> result;
11607 gdb::optional<gdb::char_vector> text
11608 = target_read_stralloc (current_inferior ()->top_target (),
11609 TARGET_OBJECT_MEMORY_MAP, NULL);
11610
11611 if (text)
11612 result = parse_memory_map (text->data ());
11613
11614 return result;
11615 }
11616
11617 static void
11618 packet_command (const char *args, int from_tty)
11619 {
11620 remote_target *remote = get_current_remote_target ();
11621
11622 if (remote == nullptr)
11623 error (_("command can only be used with remote target"));
11624
11625 remote->packet_command (args, from_tty);
11626 }
11627
11628 void
11629 remote_target::packet_command (const char *args, int from_tty)
11630 {
11631 if (!args)
11632 error (_("remote-packet command requires packet text as argument"));
11633
11634 puts_filtered ("sending: ");
11635 print_packet (args);
11636 puts_filtered ("\n");
11637 putpkt (args);
11638
11639 remote_state *rs = get_remote_state ();
11640
11641 getpkt (&rs->buf, 0);
11642 puts_filtered ("received: ");
11643 print_packet (rs->buf.data ());
11644 puts_filtered ("\n");
11645 }
11646
11647 #if 0
11648 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11649
11650 static void display_thread_info (struct gdb_ext_thread_info *info);
11651
11652 static void threadset_test_cmd (char *cmd, int tty);
11653
11654 static void threadalive_test (char *cmd, int tty);
11655
11656 static void threadlist_test_cmd (char *cmd, int tty);
11657
11658 int get_and_display_threadinfo (threadref *ref);
11659
11660 static void threadinfo_test_cmd (char *cmd, int tty);
11661
11662 static int thread_display_step (threadref *ref, void *context);
11663
11664 static void threadlist_update_test_cmd (char *cmd, int tty);
11665
11666 static void init_remote_threadtests (void);
11667
11668 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11669
11670 static void
11671 threadset_test_cmd (const char *cmd, int tty)
11672 {
11673 int sample_thread = SAMPLE_THREAD;
11674
11675 printf_filtered (_("Remote threadset test\n"));
11676 set_general_thread (sample_thread);
11677 }
11678
11679
11680 static void
11681 threadalive_test (const char *cmd, int tty)
11682 {
11683 int sample_thread = SAMPLE_THREAD;
11684 int pid = inferior_ptid.pid ();
11685 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11686
11687 if (remote_thread_alive (ptid))
11688 printf_filtered ("PASS: Thread alive test\n");
11689 else
11690 printf_filtered ("FAIL: Thread alive test\n");
11691 }
11692
11693 void output_threadid (char *title, threadref *ref);
11694
11695 void
11696 output_threadid (char *title, threadref *ref)
11697 {
11698 char hexid[20];
11699
11700 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
11701 hexid[16] = 0;
11702 printf_filtered ("%s %s\n", title, (&hexid[0]));
11703 }
11704
11705 static void
11706 threadlist_test_cmd (const char *cmd, int tty)
11707 {
11708 int startflag = 1;
11709 threadref nextthread;
11710 int done, result_count;
11711 threadref threadlist[3];
11712
11713 printf_filtered ("Remote Threadlist test\n");
11714 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11715 &result_count, &threadlist[0]))
11716 printf_filtered ("FAIL: threadlist test\n");
11717 else
11718 {
11719 threadref *scan = threadlist;
11720 threadref *limit = scan + result_count;
11721
11722 while (scan < limit)
11723 output_threadid (" thread ", scan++);
11724 }
11725 }
11726
11727 void
11728 display_thread_info (struct gdb_ext_thread_info *info)
11729 {
11730 output_threadid ("Threadid: ", &info->threadid);
11731 printf_filtered ("Name: %s\n ", info->shortname);
11732 printf_filtered ("State: %s\n", info->display);
11733 printf_filtered ("other: %s\n\n", info->more_display);
11734 }
11735
11736 int
11737 get_and_display_threadinfo (threadref *ref)
11738 {
11739 int result;
11740 int set;
11741 struct gdb_ext_thread_info threadinfo;
11742
11743 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11744 | TAG_MOREDISPLAY | TAG_DISPLAY;
11745 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11746 display_thread_info (&threadinfo);
11747 return result;
11748 }
11749
11750 static void
11751 threadinfo_test_cmd (const char *cmd, int tty)
11752 {
11753 int athread = SAMPLE_THREAD;
11754 threadref thread;
11755 int set;
11756
11757 int_to_threadref (&thread, athread);
11758 printf_filtered ("Remote Threadinfo test\n");
11759 if (!get_and_display_threadinfo (&thread))
11760 printf_filtered ("FAIL cannot get thread info\n");
11761 }
11762
11763 static int
11764 thread_display_step (threadref *ref, void *context)
11765 {
11766 /* output_threadid(" threadstep ",ref); *//* simple test */
11767 return get_and_display_threadinfo (ref);
11768 }
11769
11770 static void
11771 threadlist_update_test_cmd (const char *cmd, int tty)
11772 {
11773 printf_filtered ("Remote Threadlist update test\n");
11774 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11775 }
11776
11777 static void
11778 init_remote_threadtests (void)
11779 {
11780 add_com ("tlist", class_obscure, threadlist_test_cmd,
11781 _("Fetch and print the remote list of "
11782 "thread identifiers, one pkt only."));
11783 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11784 _("Fetch and display info about one thread."));
11785 add_com ("tset", class_obscure, threadset_test_cmd,
11786 _("Test setting to a different thread."));
11787 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11788 _("Iterate through updating all remote thread info."));
11789 add_com ("talive", class_obscure, threadalive_test,
11790 _("Remote thread alive test."));
11791 }
11792
11793 #endif /* 0 */
11794
11795 /* Convert a thread ID to a string. */
11796
11797 std::string
11798 remote_target::pid_to_str (ptid_t ptid)
11799 {
11800 struct remote_state *rs = get_remote_state ();
11801
11802 if (ptid == null_ptid)
11803 return normal_pid_to_str (ptid);
11804 else if (ptid.is_pid ())
11805 {
11806 /* Printing an inferior target id. */
11807
11808 /* When multi-process extensions are off, there's no way in the
11809 remote protocol to know the remote process id, if there's any
11810 at all. There's one exception --- when we're connected with
11811 target extended-remote, and we manually attached to a process
11812 with "attach PID". We don't record anywhere a flag that
11813 allows us to distinguish that case from the case of
11814 connecting with extended-remote and the stub already being
11815 attached to a process, and reporting yes to qAttached, hence
11816 no smart special casing here. */
11817 if (!remote_multi_process_p (rs))
11818 return "Remote target";
11819
11820 return normal_pid_to_str (ptid);
11821 }
11822 else
11823 {
11824 if (magic_null_ptid == ptid)
11825 return "Thread <main>";
11826 else if (remote_multi_process_p (rs))
11827 if (ptid.lwp () == 0)
11828 return normal_pid_to_str (ptid);
11829 else
11830 return string_printf ("Thread %d.%ld",
11831 ptid.pid (), ptid.lwp ());
11832 else
11833 return string_printf ("Thread %ld", ptid.lwp ());
11834 }
11835 }
11836
11837 /* Get the address of the thread local variable in OBJFILE which is
11838 stored at OFFSET within the thread local storage for thread PTID. */
11839
11840 CORE_ADDR
11841 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11842 CORE_ADDR offset)
11843 {
11844 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11845 {
11846 struct remote_state *rs = get_remote_state ();
11847 char *p = rs->buf.data ();
11848 char *endp = p + get_remote_packet_size ();
11849 enum packet_result result;
11850
11851 strcpy (p, "qGetTLSAddr:");
11852 p += strlen (p);
11853 p = write_ptid (p, endp, ptid);
11854 *p++ = ',';
11855 p += hexnumstr (p, offset);
11856 *p++ = ',';
11857 p += hexnumstr (p, lm);
11858 *p++ = '\0';
11859
11860 putpkt (rs->buf);
11861 getpkt (&rs->buf, 0);
11862 result = packet_ok (rs->buf,
11863 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11864 if (result == PACKET_OK)
11865 {
11866 ULONGEST addr;
11867
11868 unpack_varlen_hex (rs->buf.data (), &addr);
11869 return addr;
11870 }
11871 else if (result == PACKET_UNKNOWN)
11872 throw_error (TLS_GENERIC_ERROR,
11873 _("Remote target doesn't support qGetTLSAddr packet"));
11874 else
11875 throw_error (TLS_GENERIC_ERROR,
11876 _("Remote target failed to process qGetTLSAddr request"));
11877 }
11878 else
11879 throw_error (TLS_GENERIC_ERROR,
11880 _("TLS not supported or disabled on this target"));
11881 /* Not reached. */
11882 return 0;
11883 }
11884
11885 /* Provide thread local base, i.e. Thread Information Block address.
11886 Returns 1 if ptid is found and thread_local_base is non zero. */
11887
11888 bool
11889 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11890 {
11891 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11892 {
11893 struct remote_state *rs = get_remote_state ();
11894 char *p = rs->buf.data ();
11895 char *endp = p + get_remote_packet_size ();
11896 enum packet_result result;
11897
11898 strcpy (p, "qGetTIBAddr:");
11899 p += strlen (p);
11900 p = write_ptid (p, endp, ptid);
11901 *p++ = '\0';
11902
11903 putpkt (rs->buf);
11904 getpkt (&rs->buf, 0);
11905 result = packet_ok (rs->buf,
11906 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11907 if (result == PACKET_OK)
11908 {
11909 ULONGEST val;
11910 unpack_varlen_hex (rs->buf.data (), &val);
11911 if (addr)
11912 *addr = (CORE_ADDR) val;
11913 return true;
11914 }
11915 else if (result == PACKET_UNKNOWN)
11916 error (_("Remote target doesn't support qGetTIBAddr packet"));
11917 else
11918 error (_("Remote target failed to process qGetTIBAddr request"));
11919 }
11920 else
11921 error (_("qGetTIBAddr not supported or disabled on this target"));
11922 /* Not reached. */
11923 return false;
11924 }
11925
11926 /* Support for inferring a target description based on the current
11927 architecture and the size of a 'g' packet. While the 'g' packet
11928 can have any size (since optional registers can be left off the
11929 end), some sizes are easily recognizable given knowledge of the
11930 approximate architecture. */
11931
11932 struct remote_g_packet_guess
11933 {
11934 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11935 : bytes (bytes_),
11936 tdesc (tdesc_)
11937 {
11938 }
11939
11940 int bytes;
11941 const struct target_desc *tdesc;
11942 };
11943
11944 struct remote_g_packet_data : public allocate_on_obstack
11945 {
11946 std::vector<remote_g_packet_guess> guesses;
11947 };
11948
11949 static struct gdbarch_data *remote_g_packet_data_handle;
11950
11951 static void *
11952 remote_g_packet_data_init (struct obstack *obstack)
11953 {
11954 return new (obstack) remote_g_packet_data;
11955 }
11956
11957 void
11958 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11959 const struct target_desc *tdesc)
11960 {
11961 struct remote_g_packet_data *data
11962 = ((struct remote_g_packet_data *)
11963 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11964
11965 gdb_assert (tdesc != NULL);
11966
11967 for (const remote_g_packet_guess &guess : data->guesses)
11968 if (guess.bytes == bytes)
11969 internal_error (__FILE__, __LINE__,
11970 _("Duplicate g packet description added for size %d"),
11971 bytes);
11972
11973 data->guesses.emplace_back (bytes, tdesc);
11974 }
11975
11976 /* Return true if remote_read_description would do anything on this target
11977 and architecture, false otherwise. */
11978
11979 static bool
11980 remote_read_description_p (struct target_ops *target)
11981 {
11982 struct remote_g_packet_data *data
11983 = ((struct remote_g_packet_data *)
11984 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11985
11986 return !data->guesses.empty ();
11987 }
11988
11989 const struct target_desc *
11990 remote_target::read_description ()
11991 {
11992 struct remote_g_packet_data *data
11993 = ((struct remote_g_packet_data *)
11994 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11995
11996 /* Do not try this during initial connection, when we do not know
11997 whether there is a running but stopped thread. */
11998 if (!target_has_execution () || inferior_ptid == null_ptid)
11999 return beneath ()->read_description ();
12000
12001 if (!data->guesses.empty ())
12002 {
12003 int bytes = send_g_packet ();
12004
12005 for (const remote_g_packet_guess &guess : data->guesses)
12006 if (guess.bytes == bytes)
12007 return guess.tdesc;
12008
12009 /* We discard the g packet. A minor optimization would be to
12010 hold on to it, and fill the register cache once we have selected
12011 an architecture, but it's too tricky to do safely. */
12012 }
12013
12014 return beneath ()->read_description ();
12015 }
12016
12017 /* Remote file transfer support. This is host-initiated I/O, not
12018 target-initiated; for target-initiated, see remote-fileio.c. */
12019
12020 /* If *LEFT is at least the length of STRING, copy STRING to
12021 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12022 decrease *LEFT. Otherwise raise an error. */
12023
12024 static void
12025 remote_buffer_add_string (char **buffer, int *left, const char *string)
12026 {
12027 int len = strlen (string);
12028
12029 if (len > *left)
12030 error (_("Packet too long for target."));
12031
12032 memcpy (*buffer, string, len);
12033 *buffer += len;
12034 *left -= len;
12035
12036 /* NUL-terminate the buffer as a convenience, if there is
12037 room. */
12038 if (*left)
12039 **buffer = '\0';
12040 }
12041
12042 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
12043 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12044 decrease *LEFT. Otherwise raise an error. */
12045
12046 static void
12047 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
12048 int len)
12049 {
12050 if (2 * len > *left)
12051 error (_("Packet too long for target."));
12052
12053 bin2hex (bytes, *buffer, len);
12054 *buffer += 2 * len;
12055 *left -= 2 * len;
12056
12057 /* NUL-terminate the buffer as a convenience, if there is
12058 room. */
12059 if (*left)
12060 **buffer = '\0';
12061 }
12062
12063 /* If *LEFT is large enough, convert VALUE to hex and add it to
12064 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12065 decrease *LEFT. Otherwise raise an error. */
12066
12067 static void
12068 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
12069 {
12070 int len = hexnumlen (value);
12071
12072 if (len > *left)
12073 error (_("Packet too long for target."));
12074
12075 hexnumstr (*buffer, value);
12076 *buffer += len;
12077 *left -= len;
12078
12079 /* NUL-terminate the buffer as a convenience, if there is
12080 room. */
12081 if (*left)
12082 **buffer = '\0';
12083 }
12084
12085 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
12086 value, *REMOTE_ERRNO to the remote error number or zero if none
12087 was included, and *ATTACHMENT to point to the start of the annex
12088 if any. The length of the packet isn't needed here; there may
12089 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
12090
12091 Return 0 if the packet could be parsed, -1 if it could not. If
12092 -1 is returned, the other variables may not be initialized. */
12093
12094 static int
12095 remote_hostio_parse_result (const char *buffer, int *retcode,
12096 int *remote_errno, const char **attachment)
12097 {
12098 char *p, *p2;
12099
12100 *remote_errno = 0;
12101 *attachment = NULL;
12102
12103 if (buffer[0] != 'F')
12104 return -1;
12105
12106 errno = 0;
12107 *retcode = strtol (&buffer[1], &p, 16);
12108 if (errno != 0 || p == &buffer[1])
12109 return -1;
12110
12111 /* Check for ",errno". */
12112 if (*p == ',')
12113 {
12114 errno = 0;
12115 *remote_errno = strtol (p + 1, &p2, 16);
12116 if (errno != 0 || p + 1 == p2)
12117 return -1;
12118 p = p2;
12119 }
12120
12121 /* Check for ";attachment". If there is no attachment, the
12122 packet should end here. */
12123 if (*p == ';')
12124 {
12125 *attachment = p + 1;
12126 return 0;
12127 }
12128 else if (*p == '\0')
12129 return 0;
12130 else
12131 return -1;
12132 }
12133
12134 /* Send a prepared I/O packet to the target and read its response.
12135 The prepared packet is in the global RS->BUF before this function
12136 is called, and the answer is there when we return.
12137
12138 COMMAND_BYTES is the length of the request to send, which may include
12139 binary data. WHICH_PACKET is the packet configuration to check
12140 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12141 is set to the error number and -1 is returned. Otherwise the value
12142 returned by the function is returned.
12143
12144 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12145 attachment is expected; an error will be reported if there's a
12146 mismatch. If one is found, *ATTACHMENT will be set to point into
12147 the packet buffer and *ATTACHMENT_LEN will be set to the
12148 attachment's length. */
12149
12150 int
12151 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
12152 int *remote_errno, const char **attachment,
12153 int *attachment_len)
12154 {
12155 struct remote_state *rs = get_remote_state ();
12156 int ret, bytes_read;
12157 const char *attachment_tmp;
12158
12159 if (packet_support (which_packet) == PACKET_DISABLE)
12160 {
12161 *remote_errno = FILEIO_ENOSYS;
12162 return -1;
12163 }
12164
12165 putpkt_binary (rs->buf.data (), command_bytes);
12166 bytes_read = getpkt_sane (&rs->buf, 0);
12167
12168 /* If it timed out, something is wrong. Don't try to parse the
12169 buffer. */
12170 if (bytes_read < 0)
12171 {
12172 *remote_errno = FILEIO_EINVAL;
12173 return -1;
12174 }
12175
12176 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12177 {
12178 case PACKET_ERROR:
12179 *remote_errno = FILEIO_EINVAL;
12180 return -1;
12181 case PACKET_UNKNOWN:
12182 *remote_errno = FILEIO_ENOSYS;
12183 return -1;
12184 case PACKET_OK:
12185 break;
12186 }
12187
12188 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
12189 &attachment_tmp))
12190 {
12191 *remote_errno = FILEIO_EINVAL;
12192 return -1;
12193 }
12194
12195 /* Make sure we saw an attachment if and only if we expected one. */
12196 if ((attachment_tmp == NULL && attachment != NULL)
12197 || (attachment_tmp != NULL && attachment == NULL))
12198 {
12199 *remote_errno = FILEIO_EINVAL;
12200 return -1;
12201 }
12202
12203 /* If an attachment was found, it must point into the packet buffer;
12204 work out how many bytes there were. */
12205 if (attachment_tmp != NULL)
12206 {
12207 *attachment = attachment_tmp;
12208 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
12209 }
12210
12211 return ret;
12212 }
12213
12214 /* See declaration.h. */
12215
12216 void
12217 readahead_cache::invalidate ()
12218 {
12219 this->fd = -1;
12220 }
12221
12222 /* See declaration.h. */
12223
12224 void
12225 readahead_cache::invalidate_fd (int fd)
12226 {
12227 if (this->fd == fd)
12228 this->fd = -1;
12229 }
12230
12231 /* Set the filesystem remote_hostio functions that take FILENAME
12232 arguments will use. Return 0 on success, or -1 if an error
12233 occurs (and set *REMOTE_ERRNO). */
12234
12235 int
12236 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12237 int *remote_errno)
12238 {
12239 struct remote_state *rs = get_remote_state ();
12240 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
12241 char *p = rs->buf.data ();
12242 int left = get_remote_packet_size () - 1;
12243 char arg[9];
12244 int ret;
12245
12246 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12247 return 0;
12248
12249 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12250 return 0;
12251
12252 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12253
12254 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12255 remote_buffer_add_string (&p, &left, arg);
12256
12257 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
12258 remote_errno, NULL, NULL);
12259
12260 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12261 return 0;
12262
12263 if (ret == 0)
12264 rs->fs_pid = required_pid;
12265
12266 return ret;
12267 }
12268
12269 /* Implementation of to_fileio_open. */
12270
12271 int
12272 remote_target::remote_hostio_open (inferior *inf, const char *filename,
12273 int flags, int mode, int warn_if_slow,
12274 int *remote_errno)
12275 {
12276 struct remote_state *rs = get_remote_state ();
12277 char *p = rs->buf.data ();
12278 int left = get_remote_packet_size () - 1;
12279
12280 if (warn_if_slow)
12281 {
12282 static int warning_issued = 0;
12283
12284 printf_unfiltered (_("Reading %s from remote target...\n"),
12285 filename);
12286
12287 if (!warning_issued)
12288 {
12289 warning (_("File transfers from remote targets can be slow."
12290 " Use \"set sysroot\" to access files locally"
12291 " instead."));
12292 warning_issued = 1;
12293 }
12294 }
12295
12296 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12297 return -1;
12298
12299 remote_buffer_add_string (&p, &left, "vFile:open:");
12300
12301 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12302 strlen (filename));
12303 remote_buffer_add_string (&p, &left, ",");
12304
12305 remote_buffer_add_int (&p, &left, flags);
12306 remote_buffer_add_string (&p, &left, ",");
12307
12308 remote_buffer_add_int (&p, &left, mode);
12309
12310 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
12311 remote_errno, NULL, NULL);
12312 }
12313
12314 int
12315 remote_target::fileio_open (struct inferior *inf, const char *filename,
12316 int flags, int mode, int warn_if_slow,
12317 int *remote_errno)
12318 {
12319 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
12320 remote_errno);
12321 }
12322
12323 /* Implementation of to_fileio_pwrite. */
12324
12325 int
12326 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12327 ULONGEST offset, int *remote_errno)
12328 {
12329 struct remote_state *rs = get_remote_state ();
12330 char *p = rs->buf.data ();
12331 int left = get_remote_packet_size ();
12332 int out_len;
12333
12334 rs->readahead_cache.invalidate_fd (fd);
12335
12336 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12337
12338 remote_buffer_add_int (&p, &left, fd);
12339 remote_buffer_add_string (&p, &left, ",");
12340
12341 remote_buffer_add_int (&p, &left, offset);
12342 remote_buffer_add_string (&p, &left, ",");
12343
12344 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
12345 (get_remote_packet_size ()
12346 - (p - rs->buf.data ())));
12347
12348 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
12349 remote_errno, NULL, NULL);
12350 }
12351
12352 int
12353 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12354 ULONGEST offset, int *remote_errno)
12355 {
12356 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12357 }
12358
12359 /* Helper for the implementation of to_fileio_pread. Read the file
12360 from the remote side with vFile:pread. */
12361
12362 int
12363 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12364 ULONGEST offset, int *remote_errno)
12365 {
12366 struct remote_state *rs = get_remote_state ();
12367 char *p = rs->buf.data ();
12368 const char *attachment;
12369 int left = get_remote_packet_size ();
12370 int ret, attachment_len;
12371 int read_len;
12372
12373 remote_buffer_add_string (&p, &left, "vFile:pread:");
12374
12375 remote_buffer_add_int (&p, &left, fd);
12376 remote_buffer_add_string (&p, &left, ",");
12377
12378 remote_buffer_add_int (&p, &left, len);
12379 remote_buffer_add_string (&p, &left, ",");
12380
12381 remote_buffer_add_int (&p, &left, offset);
12382
12383 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
12384 remote_errno, &attachment,
12385 &attachment_len);
12386
12387 if (ret < 0)
12388 return ret;
12389
12390 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12391 read_buf, len);
12392 if (read_len != ret)
12393 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12394
12395 return ret;
12396 }
12397
12398 /* See declaration.h. */
12399
12400 int
12401 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12402 ULONGEST offset)
12403 {
12404 if (this->fd == fd
12405 && this->offset <= offset
12406 && offset < this->offset + this->bufsize)
12407 {
12408 ULONGEST max = this->offset + this->bufsize;
12409
12410 if (offset + len > max)
12411 len = max - offset;
12412
12413 memcpy (read_buf, this->buf + offset - this->offset, len);
12414 return len;
12415 }
12416
12417 return 0;
12418 }
12419
12420 /* Implementation of to_fileio_pread. */
12421
12422 int
12423 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12424 ULONGEST offset, int *remote_errno)
12425 {
12426 int ret;
12427 struct remote_state *rs = get_remote_state ();
12428 readahead_cache *cache = &rs->readahead_cache;
12429
12430 ret = cache->pread (fd, read_buf, len, offset);
12431 if (ret > 0)
12432 {
12433 cache->hit_count++;
12434
12435 remote_debug_printf ("readahead cache hit %s",
12436 pulongest (cache->hit_count));
12437 return ret;
12438 }
12439
12440 cache->miss_count++;
12441
12442 remote_debug_printf ("readahead cache miss %s",
12443 pulongest (cache->miss_count));
12444
12445 cache->fd = fd;
12446 cache->offset = offset;
12447 cache->bufsize = get_remote_packet_size ();
12448 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12449
12450 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12451 cache->offset, remote_errno);
12452 if (ret <= 0)
12453 {
12454 cache->invalidate_fd (fd);
12455 return ret;
12456 }
12457
12458 cache->bufsize = ret;
12459 return cache->pread (fd, read_buf, len, offset);
12460 }
12461
12462 int
12463 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12464 ULONGEST offset, int *remote_errno)
12465 {
12466 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12467 }
12468
12469 /* Implementation of to_fileio_close. */
12470
12471 int
12472 remote_target::remote_hostio_close (int fd, int *remote_errno)
12473 {
12474 struct remote_state *rs = get_remote_state ();
12475 char *p = rs->buf.data ();
12476 int left = get_remote_packet_size () - 1;
12477
12478 rs->readahead_cache.invalidate_fd (fd);
12479
12480 remote_buffer_add_string (&p, &left, "vFile:close:");
12481
12482 remote_buffer_add_int (&p, &left, fd);
12483
12484 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12485 remote_errno, NULL, NULL);
12486 }
12487
12488 int
12489 remote_target::fileio_close (int fd, int *remote_errno)
12490 {
12491 return remote_hostio_close (fd, remote_errno);
12492 }
12493
12494 /* Implementation of to_fileio_unlink. */
12495
12496 int
12497 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12498 int *remote_errno)
12499 {
12500 struct remote_state *rs = get_remote_state ();
12501 char *p = rs->buf.data ();
12502 int left = get_remote_packet_size () - 1;
12503
12504 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12505 return -1;
12506
12507 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12508
12509 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12510 strlen (filename));
12511
12512 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12513 remote_errno, NULL, NULL);
12514 }
12515
12516 int
12517 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12518 int *remote_errno)
12519 {
12520 return remote_hostio_unlink (inf, filename, remote_errno);
12521 }
12522
12523 /* Implementation of to_fileio_readlink. */
12524
12525 gdb::optional<std::string>
12526 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12527 int *remote_errno)
12528 {
12529 struct remote_state *rs = get_remote_state ();
12530 char *p = rs->buf.data ();
12531 const char *attachment;
12532 int left = get_remote_packet_size ();
12533 int len, attachment_len;
12534 int read_len;
12535
12536 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12537 return {};
12538
12539 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12540
12541 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12542 strlen (filename));
12543
12544 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12545 remote_errno, &attachment,
12546 &attachment_len);
12547
12548 if (len < 0)
12549 return {};
12550
12551 std::string ret (len, '\0');
12552
12553 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12554 (gdb_byte *) &ret[0], len);
12555 if (read_len != len)
12556 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12557
12558 return ret;
12559 }
12560
12561 /* Implementation of to_fileio_fstat. */
12562
12563 int
12564 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12565 {
12566 struct remote_state *rs = get_remote_state ();
12567 char *p = rs->buf.data ();
12568 int left = get_remote_packet_size ();
12569 int attachment_len, ret;
12570 const char *attachment;
12571 struct fio_stat fst;
12572 int read_len;
12573
12574 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12575
12576 remote_buffer_add_int (&p, &left, fd);
12577
12578 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12579 remote_errno, &attachment,
12580 &attachment_len);
12581 if (ret < 0)
12582 {
12583 if (*remote_errno != FILEIO_ENOSYS)
12584 return ret;
12585
12586 /* Strictly we should return -1, ENOSYS here, but when
12587 "set sysroot remote:" was implemented in August 2008
12588 BFD's need for a stat function was sidestepped with
12589 this hack. This was not remedied until March 2015
12590 so we retain the previous behavior to avoid breaking
12591 compatibility.
12592
12593 Note that the memset is a March 2015 addition; older
12594 GDBs set st_size *and nothing else* so the structure
12595 would have garbage in all other fields. This might
12596 break something but retaining the previous behavior
12597 here would be just too wrong. */
12598
12599 memset (st, 0, sizeof (struct stat));
12600 st->st_size = INT_MAX;
12601 return 0;
12602 }
12603
12604 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12605 (gdb_byte *) &fst, sizeof (fst));
12606
12607 if (read_len != ret)
12608 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12609
12610 if (read_len != sizeof (fst))
12611 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12612 read_len, (int) sizeof (fst));
12613
12614 remote_fileio_to_host_stat (&fst, st);
12615
12616 return 0;
12617 }
12618
12619 /* Implementation of to_filesystem_is_local. */
12620
12621 bool
12622 remote_target::filesystem_is_local ()
12623 {
12624 /* Valgrind GDB presents itself as a remote target but works
12625 on the local filesystem: it does not implement remote get
12626 and users are not expected to set a sysroot. To handle
12627 this case we treat the remote filesystem as local if the
12628 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12629 does not support vFile:open. */
12630 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
12631 {
12632 enum packet_support ps = packet_support (PACKET_vFile_open);
12633
12634 if (ps == PACKET_SUPPORT_UNKNOWN)
12635 {
12636 int fd, remote_errno;
12637
12638 /* Try opening a file to probe support. The supplied
12639 filename is irrelevant, we only care about whether
12640 the stub recognizes the packet or not. */
12641 fd = remote_hostio_open (NULL, "just probing",
12642 FILEIO_O_RDONLY, 0700, 0,
12643 &remote_errno);
12644
12645 if (fd >= 0)
12646 remote_hostio_close (fd, &remote_errno);
12647
12648 ps = packet_support (PACKET_vFile_open);
12649 }
12650
12651 if (ps == PACKET_DISABLE)
12652 {
12653 static int warning_issued = 0;
12654
12655 if (!warning_issued)
12656 {
12657 warning (_("remote target does not support file"
12658 " transfer, attempting to access files"
12659 " from local filesystem."));
12660 warning_issued = 1;
12661 }
12662
12663 return true;
12664 }
12665 }
12666
12667 return false;
12668 }
12669
12670 static int
12671 remote_fileio_errno_to_host (int errnum)
12672 {
12673 switch (errnum)
12674 {
12675 case FILEIO_EPERM:
12676 return EPERM;
12677 case FILEIO_ENOENT:
12678 return ENOENT;
12679 case FILEIO_EINTR:
12680 return EINTR;
12681 case FILEIO_EIO:
12682 return EIO;
12683 case FILEIO_EBADF:
12684 return EBADF;
12685 case FILEIO_EACCES:
12686 return EACCES;
12687 case FILEIO_EFAULT:
12688 return EFAULT;
12689 case FILEIO_EBUSY:
12690 return EBUSY;
12691 case FILEIO_EEXIST:
12692 return EEXIST;
12693 case FILEIO_ENODEV:
12694 return ENODEV;
12695 case FILEIO_ENOTDIR:
12696 return ENOTDIR;
12697 case FILEIO_EISDIR:
12698 return EISDIR;
12699 case FILEIO_EINVAL:
12700 return EINVAL;
12701 case FILEIO_ENFILE:
12702 return ENFILE;
12703 case FILEIO_EMFILE:
12704 return EMFILE;
12705 case FILEIO_EFBIG:
12706 return EFBIG;
12707 case FILEIO_ENOSPC:
12708 return ENOSPC;
12709 case FILEIO_ESPIPE:
12710 return ESPIPE;
12711 case FILEIO_EROFS:
12712 return EROFS;
12713 case FILEIO_ENOSYS:
12714 return ENOSYS;
12715 case FILEIO_ENAMETOOLONG:
12716 return ENAMETOOLONG;
12717 }
12718 return -1;
12719 }
12720
12721 static char *
12722 remote_hostio_error (int errnum)
12723 {
12724 int host_error = remote_fileio_errno_to_host (errnum);
12725
12726 if (host_error == -1)
12727 error (_("Unknown remote I/O error %d"), errnum);
12728 else
12729 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12730 }
12731
12732 /* A RAII wrapper around a remote file descriptor. */
12733
12734 class scoped_remote_fd
12735 {
12736 public:
12737 scoped_remote_fd (remote_target *remote, int fd)
12738 : m_remote (remote), m_fd (fd)
12739 {
12740 }
12741
12742 ~scoped_remote_fd ()
12743 {
12744 if (m_fd != -1)
12745 {
12746 try
12747 {
12748 int remote_errno;
12749 m_remote->remote_hostio_close (m_fd, &remote_errno);
12750 }
12751 catch (...)
12752 {
12753 /* Swallow exception before it escapes the dtor. If
12754 something goes wrong, likely the connection is gone,
12755 and there's nothing else that can be done. */
12756 }
12757 }
12758 }
12759
12760 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12761
12762 /* Release ownership of the file descriptor, and return it. */
12763 ATTRIBUTE_UNUSED_RESULT int release () noexcept
12764 {
12765 int fd = m_fd;
12766 m_fd = -1;
12767 return fd;
12768 }
12769
12770 /* Return the owned file descriptor. */
12771 int get () const noexcept
12772 {
12773 return m_fd;
12774 }
12775
12776 private:
12777 /* The remote target. */
12778 remote_target *m_remote;
12779
12780 /* The owned remote I/O file descriptor. */
12781 int m_fd;
12782 };
12783
12784 void
12785 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12786 {
12787 remote_target *remote = get_current_remote_target ();
12788
12789 if (remote == nullptr)
12790 error (_("command can only be used with remote target"));
12791
12792 remote->remote_file_put (local_file, remote_file, from_tty);
12793 }
12794
12795 void
12796 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12797 int from_tty)
12798 {
12799 int retcode, remote_errno, bytes, io_size;
12800 int bytes_in_buffer;
12801 int saw_eof;
12802 ULONGEST offset;
12803
12804 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12805 if (file == NULL)
12806 perror_with_name (local_file);
12807
12808 scoped_remote_fd fd
12809 (this, remote_hostio_open (NULL,
12810 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12811 | FILEIO_O_TRUNC),
12812 0700, 0, &remote_errno));
12813 if (fd.get () == -1)
12814 remote_hostio_error (remote_errno);
12815
12816 /* Send up to this many bytes at once. They won't all fit in the
12817 remote packet limit, so we'll transfer slightly fewer. */
12818 io_size = get_remote_packet_size ();
12819 gdb::byte_vector buffer (io_size);
12820
12821 bytes_in_buffer = 0;
12822 saw_eof = 0;
12823 offset = 0;
12824 while (bytes_in_buffer || !saw_eof)
12825 {
12826 if (!saw_eof)
12827 {
12828 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12829 io_size - bytes_in_buffer,
12830 file.get ());
12831 if (bytes == 0)
12832 {
12833 if (ferror (file.get ()))
12834 error (_("Error reading %s."), local_file);
12835 else
12836 {
12837 /* EOF. Unless there is something still in the
12838 buffer from the last iteration, we are done. */
12839 saw_eof = 1;
12840 if (bytes_in_buffer == 0)
12841 break;
12842 }
12843 }
12844 }
12845 else
12846 bytes = 0;
12847
12848 bytes += bytes_in_buffer;
12849 bytes_in_buffer = 0;
12850
12851 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12852 offset, &remote_errno);
12853
12854 if (retcode < 0)
12855 remote_hostio_error (remote_errno);
12856 else if (retcode == 0)
12857 error (_("Remote write of %d bytes returned 0!"), bytes);
12858 else if (retcode < bytes)
12859 {
12860 /* Short write. Save the rest of the read data for the next
12861 write. */
12862 bytes_in_buffer = bytes - retcode;
12863 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12864 }
12865
12866 offset += retcode;
12867 }
12868
12869 if (remote_hostio_close (fd.release (), &remote_errno))
12870 remote_hostio_error (remote_errno);
12871
12872 if (from_tty)
12873 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12874 }
12875
12876 void
12877 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12878 {
12879 remote_target *remote = get_current_remote_target ();
12880
12881 if (remote == nullptr)
12882 error (_("command can only be used with remote target"));
12883
12884 remote->remote_file_get (remote_file, local_file, from_tty);
12885 }
12886
12887 void
12888 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12889 int from_tty)
12890 {
12891 int remote_errno, bytes, io_size;
12892 ULONGEST offset;
12893
12894 scoped_remote_fd fd
12895 (this, remote_hostio_open (NULL,
12896 remote_file, FILEIO_O_RDONLY, 0, 0,
12897 &remote_errno));
12898 if (fd.get () == -1)
12899 remote_hostio_error (remote_errno);
12900
12901 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12902 if (file == NULL)
12903 perror_with_name (local_file);
12904
12905 /* Send up to this many bytes at once. They won't all fit in the
12906 remote packet limit, so we'll transfer slightly fewer. */
12907 io_size = get_remote_packet_size ();
12908 gdb::byte_vector buffer (io_size);
12909
12910 offset = 0;
12911 while (1)
12912 {
12913 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12914 &remote_errno);
12915 if (bytes == 0)
12916 /* Success, but no bytes, means end-of-file. */
12917 break;
12918 if (bytes == -1)
12919 remote_hostio_error (remote_errno);
12920
12921 offset += bytes;
12922
12923 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12924 if (bytes == 0)
12925 perror_with_name (local_file);
12926 }
12927
12928 if (remote_hostio_close (fd.release (), &remote_errno))
12929 remote_hostio_error (remote_errno);
12930
12931 if (from_tty)
12932 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12933 }
12934
12935 void
12936 remote_file_delete (const char *remote_file, int from_tty)
12937 {
12938 remote_target *remote = get_current_remote_target ();
12939
12940 if (remote == nullptr)
12941 error (_("command can only be used with remote target"));
12942
12943 remote->remote_file_delete (remote_file, from_tty);
12944 }
12945
12946 void
12947 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12948 {
12949 int retcode, remote_errno;
12950
12951 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12952 if (retcode == -1)
12953 remote_hostio_error (remote_errno);
12954
12955 if (from_tty)
12956 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12957 }
12958
12959 static void
12960 remote_put_command (const char *args, int from_tty)
12961 {
12962 if (args == NULL)
12963 error_no_arg (_("file to put"));
12964
12965 gdb_argv argv (args);
12966 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12967 error (_("Invalid parameters to remote put"));
12968
12969 remote_file_put (argv[0], argv[1], from_tty);
12970 }
12971
12972 static void
12973 remote_get_command (const char *args, int from_tty)
12974 {
12975 if (args == NULL)
12976 error_no_arg (_("file to get"));
12977
12978 gdb_argv argv (args);
12979 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12980 error (_("Invalid parameters to remote get"));
12981
12982 remote_file_get (argv[0], argv[1], from_tty);
12983 }
12984
12985 static void
12986 remote_delete_command (const char *args, int from_tty)
12987 {
12988 if (args == NULL)
12989 error_no_arg (_("file to delete"));
12990
12991 gdb_argv argv (args);
12992 if (argv[0] == NULL || argv[1] != NULL)
12993 error (_("Invalid parameters to remote delete"));
12994
12995 remote_file_delete (argv[0], from_tty);
12996 }
12997
12998 bool
12999 remote_target::can_execute_reverse ()
13000 {
13001 if (packet_support (PACKET_bs) == PACKET_ENABLE
13002 || packet_support (PACKET_bc) == PACKET_ENABLE)
13003 return true;
13004 else
13005 return false;
13006 }
13007
13008 bool
13009 remote_target::supports_non_stop ()
13010 {
13011 return true;
13012 }
13013
13014 bool
13015 remote_target::supports_disable_randomization ()
13016 {
13017 /* Only supported in extended mode. */
13018 return false;
13019 }
13020
13021 bool
13022 remote_target::supports_multi_process ()
13023 {
13024 struct remote_state *rs = get_remote_state ();
13025
13026 return remote_multi_process_p (rs);
13027 }
13028
13029 static int
13030 remote_supports_cond_tracepoints ()
13031 {
13032 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
13033 }
13034
13035 bool
13036 remote_target::supports_evaluation_of_breakpoint_conditions ()
13037 {
13038 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
13039 }
13040
13041 static int
13042 remote_supports_fast_tracepoints ()
13043 {
13044 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
13045 }
13046
13047 static int
13048 remote_supports_static_tracepoints ()
13049 {
13050 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
13051 }
13052
13053 static int
13054 remote_supports_install_in_trace ()
13055 {
13056 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
13057 }
13058
13059 bool
13060 remote_target::supports_enable_disable_tracepoint ()
13061 {
13062 return (packet_support (PACKET_EnableDisableTracepoints_feature)
13063 == PACKET_ENABLE);
13064 }
13065
13066 bool
13067 remote_target::supports_string_tracing ()
13068 {
13069 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
13070 }
13071
13072 bool
13073 remote_target::can_run_breakpoint_commands ()
13074 {
13075 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
13076 }
13077
13078 void
13079 remote_target::trace_init ()
13080 {
13081 struct remote_state *rs = get_remote_state ();
13082
13083 putpkt ("QTinit");
13084 remote_get_noisy_reply ();
13085 if (strcmp (rs->buf.data (), "OK") != 0)
13086 error (_("Target does not support this command."));
13087 }
13088
13089 /* Recursive routine to walk through command list including loops, and
13090 download packets for each command. */
13091
13092 void
13093 remote_target::remote_download_command_source (int num, ULONGEST addr,
13094 struct command_line *cmds)
13095 {
13096 struct remote_state *rs = get_remote_state ();
13097 struct command_line *cmd;
13098
13099 for (cmd = cmds; cmd; cmd = cmd->next)
13100 {
13101 QUIT; /* Allow user to bail out with ^C. */
13102 strcpy (rs->buf.data (), "QTDPsrc:");
13103 encode_source_string (num, addr, "cmd", cmd->line,
13104 rs->buf.data () + strlen (rs->buf.data ()),
13105 rs->buf.size () - strlen (rs->buf.data ()));
13106 putpkt (rs->buf);
13107 remote_get_noisy_reply ();
13108 if (strcmp (rs->buf.data (), "OK"))
13109 warning (_("Target does not support source download."));
13110
13111 if (cmd->control_type == while_control
13112 || cmd->control_type == while_stepping_control)
13113 {
13114 remote_download_command_source (num, addr, cmd->body_list_0.get ());
13115
13116 QUIT; /* Allow user to bail out with ^C. */
13117 strcpy (rs->buf.data (), "QTDPsrc:");
13118 encode_source_string (num, addr, "cmd", "end",
13119 rs->buf.data () + strlen (rs->buf.data ()),
13120 rs->buf.size () - strlen (rs->buf.data ()));
13121 putpkt (rs->buf);
13122 remote_get_noisy_reply ();
13123 if (strcmp (rs->buf.data (), "OK"))
13124 warning (_("Target does not support source download."));
13125 }
13126 }
13127 }
13128
13129 void
13130 remote_target::download_tracepoint (struct bp_location *loc)
13131 {
13132 CORE_ADDR tpaddr;
13133 char addrbuf[40];
13134 std::vector<std::string> tdp_actions;
13135 std::vector<std::string> stepping_actions;
13136 char *pkt;
13137 struct breakpoint *b = loc->owner;
13138 struct tracepoint *t = (struct tracepoint *) b;
13139 struct remote_state *rs = get_remote_state ();
13140 int ret;
13141 const char *err_msg = _("Tracepoint packet too large for target.");
13142 size_t size_left;
13143
13144 /* We use a buffer other than rs->buf because we'll build strings
13145 across multiple statements, and other statements in between could
13146 modify rs->buf. */
13147 gdb::char_vector buf (get_remote_packet_size ());
13148
13149 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
13150
13151 tpaddr = loc->address;
13152 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
13153 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13154 b->number, addrbuf, /* address */
13155 (b->enable_state == bp_enabled ? 'E' : 'D'),
13156 t->step_count, t->pass_count);
13157
13158 if (ret < 0 || ret >= buf.size ())
13159 error ("%s", err_msg);
13160
13161 /* Fast tracepoints are mostly handled by the target, but we can
13162 tell the target how big of an instruction block should be moved
13163 around. */
13164 if (b->type == bp_fast_tracepoint)
13165 {
13166 /* Only test for support at download time; we may not know
13167 target capabilities at definition time. */
13168 if (remote_supports_fast_tracepoints ())
13169 {
13170 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13171 NULL))
13172 {
13173 size_left = buf.size () - strlen (buf.data ());
13174 ret = snprintf (buf.data () + strlen (buf.data ()),
13175 size_left, ":F%x",
13176 gdb_insn_length (loc->gdbarch, tpaddr));
13177
13178 if (ret < 0 || ret >= size_left)
13179 error ("%s", err_msg);
13180 }
13181 else
13182 /* If it passed validation at definition but fails now,
13183 something is very wrong. */
13184 internal_error (__FILE__, __LINE__,
13185 _("Fast tracepoint not "
13186 "valid during download"));
13187 }
13188 else
13189 /* Fast tracepoints are functionally identical to regular
13190 tracepoints, so don't take lack of support as a reason to
13191 give up on the trace run. */
13192 warning (_("Target does not support fast tracepoints, "
13193 "downloading %d as regular tracepoint"), b->number);
13194 }
13195 else if (b->type == bp_static_tracepoint)
13196 {
13197 /* Only test for support at download time; we may not know
13198 target capabilities at definition time. */
13199 if (remote_supports_static_tracepoints ())
13200 {
13201 struct static_tracepoint_marker marker;
13202
13203 if (target_static_tracepoint_marker_at (tpaddr, &marker))
13204 {
13205 size_left = buf.size () - strlen (buf.data ());
13206 ret = snprintf (buf.data () + strlen (buf.data ()),
13207 size_left, ":S");
13208
13209 if (ret < 0 || ret >= size_left)
13210 error ("%s", err_msg);
13211 }
13212 else
13213 error (_("Static tracepoint not valid during download"));
13214 }
13215 else
13216 /* Fast tracepoints are functionally identical to regular
13217 tracepoints, so don't take lack of support as a reason
13218 to give up on the trace run. */
13219 error (_("Target does not support static tracepoints"));
13220 }
13221 /* If the tracepoint has a conditional, make it into an agent
13222 expression and append to the definition. */
13223 if (loc->cond)
13224 {
13225 /* Only test support at download time, we may not know target
13226 capabilities at definition time. */
13227 if (remote_supports_cond_tracepoints ())
13228 {
13229 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13230 loc->cond.get ());
13231
13232 size_left = buf.size () - strlen (buf.data ());
13233
13234 ret = snprintf (buf.data () + strlen (buf.data ()),
13235 size_left, ":X%x,", aexpr->len);
13236
13237 if (ret < 0 || ret >= size_left)
13238 error ("%s", err_msg);
13239
13240 size_left = buf.size () - strlen (buf.data ());
13241
13242 /* Two bytes to encode each aexpr byte, plus the terminating
13243 null byte. */
13244 if (aexpr->len * 2 + 1 > size_left)
13245 error ("%s", err_msg);
13246
13247 pkt = buf.data () + strlen (buf.data ());
13248
13249 for (int ndx = 0; ndx < aexpr->len; ++ndx)
13250 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13251 *pkt = '\0';
13252 }
13253 else
13254 warning (_("Target does not support conditional tracepoints, "
13255 "ignoring tp %d cond"), b->number);
13256 }
13257
13258 if (b->commands || *default_collect)
13259 {
13260 size_left = buf.size () - strlen (buf.data ());
13261
13262 ret = snprintf (buf.data () + strlen (buf.data ()),
13263 size_left, "-");
13264
13265 if (ret < 0 || ret >= size_left)
13266 error ("%s", err_msg);
13267 }
13268
13269 putpkt (buf.data ());
13270 remote_get_noisy_reply ();
13271 if (strcmp (rs->buf.data (), "OK"))
13272 error (_("Target does not support tracepoints."));
13273
13274 /* do_single_steps (t); */
13275 for (auto action_it = tdp_actions.begin ();
13276 action_it != tdp_actions.end (); action_it++)
13277 {
13278 QUIT; /* Allow user to bail out with ^C. */
13279
13280 bool has_more = ((action_it + 1) != tdp_actions.end ()
13281 || !stepping_actions.empty ());
13282
13283 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13284 b->number, addrbuf, /* address */
13285 action_it->c_str (),
13286 has_more ? '-' : 0);
13287
13288 if (ret < 0 || ret >= buf.size ())
13289 error ("%s", err_msg);
13290
13291 putpkt (buf.data ());
13292 remote_get_noisy_reply ();
13293 if (strcmp (rs->buf.data (), "OK"))
13294 error (_("Error on target while setting tracepoints."));
13295 }
13296
13297 for (auto action_it = stepping_actions.begin ();
13298 action_it != stepping_actions.end (); action_it++)
13299 {
13300 QUIT; /* Allow user to bail out with ^C. */
13301
13302 bool is_first = action_it == stepping_actions.begin ();
13303 bool has_more = (action_it + 1) != stepping_actions.end ();
13304
13305 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13306 b->number, addrbuf, /* address */
13307 is_first ? "S" : "",
13308 action_it->c_str (),
13309 has_more ? "-" : "");
13310
13311 if (ret < 0 || ret >= buf.size ())
13312 error ("%s", err_msg);
13313
13314 putpkt (buf.data ());
13315 remote_get_noisy_reply ();
13316 if (strcmp (rs->buf.data (), "OK"))
13317 error (_("Error on target while setting tracepoints."));
13318 }
13319
13320 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
13321 {
13322 if (b->location != NULL)
13323 {
13324 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13325
13326 if (ret < 0 || ret >= buf.size ())
13327 error ("%s", err_msg);
13328
13329 encode_source_string (b->number, loc->address, "at",
13330 event_location_to_string (b->location.get ()),
13331 buf.data () + strlen (buf.data ()),
13332 buf.size () - strlen (buf.data ()));
13333 putpkt (buf.data ());
13334 remote_get_noisy_reply ();
13335 if (strcmp (rs->buf.data (), "OK"))
13336 warning (_("Target does not support source download."));
13337 }
13338 if (b->cond_string)
13339 {
13340 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13341
13342 if (ret < 0 || ret >= buf.size ())
13343 error ("%s", err_msg);
13344
13345 encode_source_string (b->number, loc->address,
13346 "cond", b->cond_string,
13347 buf.data () + strlen (buf.data ()),
13348 buf.size () - strlen (buf.data ()));
13349 putpkt (buf.data ());
13350 remote_get_noisy_reply ();
13351 if (strcmp (rs->buf.data (), "OK"))
13352 warning (_("Target does not support source download."));
13353 }
13354 remote_download_command_source (b->number, loc->address,
13355 breakpoint_commands (b));
13356 }
13357 }
13358
13359 bool
13360 remote_target::can_download_tracepoint ()
13361 {
13362 struct remote_state *rs = get_remote_state ();
13363 struct trace_status *ts;
13364 int status;
13365
13366 /* Don't try to install tracepoints until we've relocated our
13367 symbols, and fetched and merged the target's tracepoint list with
13368 ours. */
13369 if (rs->starting_up)
13370 return false;
13371
13372 ts = current_trace_status ();
13373 status = get_trace_status (ts);
13374
13375 if (status == -1 || !ts->running_known || !ts->running)
13376 return false;
13377
13378 /* If we are in a tracing experiment, but remote stub doesn't support
13379 installing tracepoint in trace, we have to return. */
13380 if (!remote_supports_install_in_trace ())
13381 return false;
13382
13383 return true;
13384 }
13385
13386
13387 void
13388 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13389 {
13390 struct remote_state *rs = get_remote_state ();
13391 char *p;
13392
13393 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
13394 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13395 tsv.builtin);
13396 p = rs->buf.data () + strlen (rs->buf.data ());
13397 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13398 >= get_remote_packet_size ())
13399 error (_("Trace state variable name too long for tsv definition packet"));
13400 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13401 *p++ = '\0';
13402 putpkt (rs->buf);
13403 remote_get_noisy_reply ();
13404 if (rs->buf[0] == '\0')
13405 error (_("Target does not support this command."));
13406 if (strcmp (rs->buf.data (), "OK") != 0)
13407 error (_("Error on target while downloading trace state variable."));
13408 }
13409
13410 void
13411 remote_target::enable_tracepoint (struct bp_location *location)
13412 {
13413 struct remote_state *rs = get_remote_state ();
13414
13415 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13416 location->owner->number,
13417 phex (location->address, sizeof (CORE_ADDR)));
13418 putpkt (rs->buf);
13419 remote_get_noisy_reply ();
13420 if (rs->buf[0] == '\0')
13421 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13422 if (strcmp (rs->buf.data (), "OK") != 0)
13423 error (_("Error on target while enabling tracepoint."));
13424 }
13425
13426 void
13427 remote_target::disable_tracepoint (struct bp_location *location)
13428 {
13429 struct remote_state *rs = get_remote_state ();
13430
13431 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13432 location->owner->number,
13433 phex (location->address, sizeof (CORE_ADDR)));
13434 putpkt (rs->buf);
13435 remote_get_noisy_reply ();
13436 if (rs->buf[0] == '\0')
13437 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13438 if (strcmp (rs->buf.data (), "OK") != 0)
13439 error (_("Error on target while disabling tracepoint."));
13440 }
13441
13442 void
13443 remote_target::trace_set_readonly_regions ()
13444 {
13445 asection *s;
13446 bfd_size_type size;
13447 bfd_vma vma;
13448 int anysecs = 0;
13449 int offset = 0;
13450
13451 if (!current_program_space->exec_bfd ())
13452 return; /* No information to give. */
13453
13454 struct remote_state *rs = get_remote_state ();
13455
13456 strcpy (rs->buf.data (), "QTro");
13457 offset = strlen (rs->buf.data ());
13458 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
13459 {
13460 char tmp1[40], tmp2[40];
13461 int sec_length;
13462
13463 if ((s->flags & SEC_LOAD) == 0 ||
13464 /* (s->flags & SEC_CODE) == 0 || */
13465 (s->flags & SEC_READONLY) == 0)
13466 continue;
13467
13468 anysecs = 1;
13469 vma = bfd_section_vma (s);
13470 size = bfd_section_size (s);
13471 sprintf_vma (tmp1, vma);
13472 sprintf_vma (tmp2, vma + size);
13473 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13474 if (offset + sec_length + 1 > rs->buf.size ())
13475 {
13476 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13477 warning (_("\
13478 Too many sections for read-only sections definition packet."));
13479 break;
13480 }
13481 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13482 tmp1, tmp2);
13483 offset += sec_length;
13484 }
13485 if (anysecs)
13486 {
13487 putpkt (rs->buf);
13488 getpkt (&rs->buf, 0);
13489 }
13490 }
13491
13492 void
13493 remote_target::trace_start ()
13494 {
13495 struct remote_state *rs = get_remote_state ();
13496
13497 putpkt ("QTStart");
13498 remote_get_noisy_reply ();
13499 if (rs->buf[0] == '\0')
13500 error (_("Target does not support this command."));
13501 if (strcmp (rs->buf.data (), "OK") != 0)
13502 error (_("Bogus reply from target: %s"), rs->buf.data ());
13503 }
13504
13505 int
13506 remote_target::get_trace_status (struct trace_status *ts)
13507 {
13508 /* Initialize it just to avoid a GCC false warning. */
13509 char *p = NULL;
13510 enum packet_result result;
13511 struct remote_state *rs = get_remote_state ();
13512
13513 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13514 return -1;
13515
13516 /* FIXME we need to get register block size some other way. */
13517 trace_regblock_size
13518 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13519
13520 putpkt ("qTStatus");
13521
13522 try
13523 {
13524 p = remote_get_noisy_reply ();
13525 }
13526 catch (const gdb_exception_error &ex)
13527 {
13528 if (ex.error != TARGET_CLOSE_ERROR)
13529 {
13530 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13531 return -1;
13532 }
13533 throw;
13534 }
13535
13536 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13537
13538 /* If the remote target doesn't do tracing, flag it. */
13539 if (result == PACKET_UNKNOWN)
13540 return -1;
13541
13542 /* We're working with a live target. */
13543 ts->filename = NULL;
13544
13545 if (*p++ != 'T')
13546 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13547
13548 /* Function 'parse_trace_status' sets default value of each field of
13549 'ts' at first, so we don't have to do it here. */
13550 parse_trace_status (p, ts);
13551
13552 return ts->running;
13553 }
13554
13555 void
13556 remote_target::get_tracepoint_status (struct breakpoint *bp,
13557 struct uploaded_tp *utp)
13558 {
13559 struct remote_state *rs = get_remote_state ();
13560 char *reply;
13561 struct tracepoint *tp = (struct tracepoint *) bp;
13562 size_t size = get_remote_packet_size ();
13563
13564 if (tp)
13565 {
13566 tp->hit_count = 0;
13567 tp->traceframe_usage = 0;
13568 for (bp_location *loc : tp->locations ())
13569 {
13570 /* If the tracepoint was never downloaded, don't go asking for
13571 any status. */
13572 if (tp->number_on_target == 0)
13573 continue;
13574 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13575 phex_nz (loc->address, 0));
13576 putpkt (rs->buf);
13577 reply = remote_get_noisy_reply ();
13578 if (reply && *reply)
13579 {
13580 if (*reply == 'V')
13581 parse_tracepoint_status (reply + 1, bp, utp);
13582 }
13583 }
13584 }
13585 else if (utp)
13586 {
13587 utp->hit_count = 0;
13588 utp->traceframe_usage = 0;
13589 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13590 phex_nz (utp->addr, 0));
13591 putpkt (rs->buf);
13592 reply = remote_get_noisy_reply ();
13593 if (reply && *reply)
13594 {
13595 if (*reply == 'V')
13596 parse_tracepoint_status (reply + 1, bp, utp);
13597 }
13598 }
13599 }
13600
13601 void
13602 remote_target::trace_stop ()
13603 {
13604 struct remote_state *rs = get_remote_state ();
13605
13606 putpkt ("QTStop");
13607 remote_get_noisy_reply ();
13608 if (rs->buf[0] == '\0')
13609 error (_("Target does not support this command."));
13610 if (strcmp (rs->buf.data (), "OK") != 0)
13611 error (_("Bogus reply from target: %s"), rs->buf.data ());
13612 }
13613
13614 int
13615 remote_target::trace_find (enum trace_find_type type, int num,
13616 CORE_ADDR addr1, CORE_ADDR addr2,
13617 int *tpp)
13618 {
13619 struct remote_state *rs = get_remote_state ();
13620 char *endbuf = rs->buf.data () + get_remote_packet_size ();
13621 char *p, *reply;
13622 int target_frameno = -1, target_tracept = -1;
13623
13624 /* Lookups other than by absolute frame number depend on the current
13625 trace selected, so make sure it is correct on the remote end
13626 first. */
13627 if (type != tfind_number)
13628 set_remote_traceframe ();
13629
13630 p = rs->buf.data ();
13631 strcpy (p, "QTFrame:");
13632 p = strchr (p, '\0');
13633 switch (type)
13634 {
13635 case tfind_number:
13636 xsnprintf (p, endbuf - p, "%x", num);
13637 break;
13638 case tfind_pc:
13639 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13640 break;
13641 case tfind_tp:
13642 xsnprintf (p, endbuf - p, "tdp:%x", num);
13643 break;
13644 case tfind_range:
13645 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13646 phex_nz (addr2, 0));
13647 break;
13648 case tfind_outside:
13649 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13650 phex_nz (addr2, 0));
13651 break;
13652 default:
13653 error (_("Unknown trace find type %d"), type);
13654 }
13655
13656 putpkt (rs->buf);
13657 reply = remote_get_noisy_reply ();
13658 if (*reply == '\0')
13659 error (_("Target does not support this command."));
13660
13661 while (reply && *reply)
13662 switch (*reply)
13663 {
13664 case 'F':
13665 p = ++reply;
13666 target_frameno = (int) strtol (p, &reply, 16);
13667 if (reply == p)
13668 error (_("Unable to parse trace frame number"));
13669 /* Don't update our remote traceframe number cache on failure
13670 to select a remote traceframe. */
13671 if (target_frameno == -1)
13672 return -1;
13673 break;
13674 case 'T':
13675 p = ++reply;
13676 target_tracept = (int) strtol (p, &reply, 16);
13677 if (reply == p)
13678 error (_("Unable to parse tracepoint number"));
13679 break;
13680 case 'O': /* "OK"? */
13681 if (reply[1] == 'K' && reply[2] == '\0')
13682 reply += 2;
13683 else
13684 error (_("Bogus reply from target: %s"), reply);
13685 break;
13686 default:
13687 error (_("Bogus reply from target: %s"), reply);
13688 }
13689 if (tpp)
13690 *tpp = target_tracept;
13691
13692 rs->remote_traceframe_number = target_frameno;
13693 return target_frameno;
13694 }
13695
13696 bool
13697 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13698 {
13699 struct remote_state *rs = get_remote_state ();
13700 char *reply;
13701 ULONGEST uval;
13702
13703 set_remote_traceframe ();
13704
13705 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13706 putpkt (rs->buf);
13707 reply = remote_get_noisy_reply ();
13708 if (reply && *reply)
13709 {
13710 if (*reply == 'V')
13711 {
13712 unpack_varlen_hex (reply + 1, &uval);
13713 *val = (LONGEST) uval;
13714 return true;
13715 }
13716 }
13717 return false;
13718 }
13719
13720 int
13721 remote_target::save_trace_data (const char *filename)
13722 {
13723 struct remote_state *rs = get_remote_state ();
13724 char *p, *reply;
13725
13726 p = rs->buf.data ();
13727 strcpy (p, "QTSave:");
13728 p += strlen (p);
13729 if ((p - rs->buf.data ()) + strlen (filename) * 2
13730 >= get_remote_packet_size ())
13731 error (_("Remote file name too long for trace save packet"));
13732 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13733 *p++ = '\0';
13734 putpkt (rs->buf);
13735 reply = remote_get_noisy_reply ();
13736 if (*reply == '\0')
13737 error (_("Target does not support this command."));
13738 if (strcmp (reply, "OK") != 0)
13739 error (_("Bogus reply from target: %s"), reply);
13740 return 0;
13741 }
13742
13743 /* This is basically a memory transfer, but needs to be its own packet
13744 because we don't know how the target actually organizes its trace
13745 memory, plus we want to be able to ask for as much as possible, but
13746 not be unhappy if we don't get as much as we ask for. */
13747
13748 LONGEST
13749 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13750 {
13751 struct remote_state *rs = get_remote_state ();
13752 char *reply;
13753 char *p;
13754 int rslt;
13755
13756 p = rs->buf.data ();
13757 strcpy (p, "qTBuffer:");
13758 p += strlen (p);
13759 p += hexnumstr (p, offset);
13760 *p++ = ',';
13761 p += hexnumstr (p, len);
13762 *p++ = '\0';
13763
13764 putpkt (rs->buf);
13765 reply = remote_get_noisy_reply ();
13766 if (reply && *reply)
13767 {
13768 /* 'l' by itself means we're at the end of the buffer and
13769 there is nothing more to get. */
13770 if (*reply == 'l')
13771 return 0;
13772
13773 /* Convert the reply into binary. Limit the number of bytes to
13774 convert according to our passed-in buffer size, rather than
13775 what was returned in the packet; if the target is
13776 unexpectedly generous and gives us a bigger reply than we
13777 asked for, we don't want to crash. */
13778 rslt = hex2bin (reply, buf, len);
13779 return rslt;
13780 }
13781
13782 /* Something went wrong, flag as an error. */
13783 return -1;
13784 }
13785
13786 void
13787 remote_target::set_disconnected_tracing (int val)
13788 {
13789 struct remote_state *rs = get_remote_state ();
13790
13791 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13792 {
13793 char *reply;
13794
13795 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13796 "QTDisconnected:%x", val);
13797 putpkt (rs->buf);
13798 reply = remote_get_noisy_reply ();
13799 if (*reply == '\0')
13800 error (_("Target does not support this command."));
13801 if (strcmp (reply, "OK") != 0)
13802 error (_("Bogus reply from target: %s"), reply);
13803 }
13804 else if (val)
13805 warning (_("Target does not support disconnected tracing."));
13806 }
13807
13808 int
13809 remote_target::core_of_thread (ptid_t ptid)
13810 {
13811 thread_info *info = find_thread_ptid (this, ptid);
13812
13813 if (info != NULL && info->priv != NULL)
13814 return get_remote_thread_info (info)->core;
13815
13816 return -1;
13817 }
13818
13819 void
13820 remote_target::set_circular_trace_buffer (int val)
13821 {
13822 struct remote_state *rs = get_remote_state ();
13823 char *reply;
13824
13825 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13826 "QTBuffer:circular:%x", val);
13827 putpkt (rs->buf);
13828 reply = remote_get_noisy_reply ();
13829 if (*reply == '\0')
13830 error (_("Target does not support this command."));
13831 if (strcmp (reply, "OK") != 0)
13832 error (_("Bogus reply from target: %s"), reply);
13833 }
13834
13835 traceframe_info_up
13836 remote_target::traceframe_info ()
13837 {
13838 gdb::optional<gdb::char_vector> text
13839 = target_read_stralloc (current_inferior ()->top_target (),
13840 TARGET_OBJECT_TRACEFRAME_INFO,
13841 NULL);
13842 if (text)
13843 return parse_traceframe_info (text->data ());
13844
13845 return NULL;
13846 }
13847
13848 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13849 instruction on which a fast tracepoint may be placed. Returns -1
13850 if the packet is not supported, and 0 if the minimum instruction
13851 length is unknown. */
13852
13853 int
13854 remote_target::get_min_fast_tracepoint_insn_len ()
13855 {
13856 struct remote_state *rs = get_remote_state ();
13857 char *reply;
13858
13859 /* If we're not debugging a process yet, the IPA can't be
13860 loaded. */
13861 if (!target_has_execution ())
13862 return 0;
13863
13864 /* Make sure the remote is pointing at the right process. */
13865 set_general_process ();
13866
13867 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13868 putpkt (rs->buf);
13869 reply = remote_get_noisy_reply ();
13870 if (*reply == '\0')
13871 return -1;
13872 else
13873 {
13874 ULONGEST min_insn_len;
13875
13876 unpack_varlen_hex (reply, &min_insn_len);
13877
13878 return (int) min_insn_len;
13879 }
13880 }
13881
13882 void
13883 remote_target::set_trace_buffer_size (LONGEST val)
13884 {
13885 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13886 {
13887 struct remote_state *rs = get_remote_state ();
13888 char *buf = rs->buf.data ();
13889 char *endbuf = buf + get_remote_packet_size ();
13890 enum packet_result result;
13891
13892 gdb_assert (val >= 0 || val == -1);
13893 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13894 /* Send -1 as literal "-1" to avoid host size dependency. */
13895 if (val < 0)
13896 {
13897 *buf++ = '-';
13898 buf += hexnumstr (buf, (ULONGEST) -val);
13899 }
13900 else
13901 buf += hexnumstr (buf, (ULONGEST) val);
13902
13903 putpkt (rs->buf);
13904 remote_get_noisy_reply ();
13905 result = packet_ok (rs->buf,
13906 &remote_protocol_packets[PACKET_QTBuffer_size]);
13907
13908 if (result != PACKET_OK)
13909 warning (_("Bogus reply from target: %s"), rs->buf.data ());
13910 }
13911 }
13912
13913 bool
13914 remote_target::set_trace_notes (const char *user, const char *notes,
13915 const char *stop_notes)
13916 {
13917 struct remote_state *rs = get_remote_state ();
13918 char *reply;
13919 char *buf = rs->buf.data ();
13920 char *endbuf = buf + get_remote_packet_size ();
13921 int nbytes;
13922
13923 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13924 if (user)
13925 {
13926 buf += xsnprintf (buf, endbuf - buf, "user:");
13927 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13928 buf += 2 * nbytes;
13929 *buf++ = ';';
13930 }
13931 if (notes)
13932 {
13933 buf += xsnprintf (buf, endbuf - buf, "notes:");
13934 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13935 buf += 2 * nbytes;
13936 *buf++ = ';';
13937 }
13938 if (stop_notes)
13939 {
13940 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13941 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13942 buf += 2 * nbytes;
13943 *buf++ = ';';
13944 }
13945 /* Ensure the buffer is terminated. */
13946 *buf = '\0';
13947
13948 putpkt (rs->buf);
13949 reply = remote_get_noisy_reply ();
13950 if (*reply == '\0')
13951 return false;
13952
13953 if (strcmp (reply, "OK") != 0)
13954 error (_("Bogus reply from target: %s"), reply);
13955
13956 return true;
13957 }
13958
13959 bool
13960 remote_target::use_agent (bool use)
13961 {
13962 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13963 {
13964 struct remote_state *rs = get_remote_state ();
13965
13966 /* If the stub supports QAgent. */
13967 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13968 putpkt (rs->buf);
13969 getpkt (&rs->buf, 0);
13970
13971 if (strcmp (rs->buf.data (), "OK") == 0)
13972 {
13973 ::use_agent = use;
13974 return true;
13975 }
13976 }
13977
13978 return false;
13979 }
13980
13981 bool
13982 remote_target::can_use_agent ()
13983 {
13984 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13985 }
13986
13987 struct btrace_target_info
13988 {
13989 /* The ptid of the traced thread. */
13990 ptid_t ptid;
13991
13992 /* The obtained branch trace configuration. */
13993 struct btrace_config conf;
13994 };
13995
13996 /* Reset our idea of our target's btrace configuration. */
13997
13998 static void
13999 remote_btrace_reset (remote_state *rs)
14000 {
14001 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
14002 }
14003
14004 /* Synchronize the configuration with the target. */
14005
14006 void
14007 remote_target::btrace_sync_conf (const btrace_config *conf)
14008 {
14009 struct packet_config *packet;
14010 struct remote_state *rs;
14011 char *buf, *pos, *endbuf;
14012
14013 rs = get_remote_state ();
14014 buf = rs->buf.data ();
14015 endbuf = buf + get_remote_packet_size ();
14016
14017 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
14018 if (packet_config_support (packet) == PACKET_ENABLE
14019 && conf->bts.size != rs->btrace_config.bts.size)
14020 {
14021 pos = buf;
14022 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14023 conf->bts.size);
14024
14025 putpkt (buf);
14026 getpkt (&rs->buf, 0);
14027
14028 if (packet_ok (buf, packet) == PACKET_ERROR)
14029 {
14030 if (buf[0] == 'E' && buf[1] == '.')
14031 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
14032 else
14033 error (_("Failed to configure the BTS buffer size."));
14034 }
14035
14036 rs->btrace_config.bts.size = conf->bts.size;
14037 }
14038
14039 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
14040 if (packet_config_support (packet) == PACKET_ENABLE
14041 && conf->pt.size != rs->btrace_config.pt.size)
14042 {
14043 pos = buf;
14044 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14045 conf->pt.size);
14046
14047 putpkt (buf);
14048 getpkt (&rs->buf, 0);
14049
14050 if (packet_ok (buf, packet) == PACKET_ERROR)
14051 {
14052 if (buf[0] == 'E' && buf[1] == '.')
14053 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
14054 else
14055 error (_("Failed to configure the trace buffer size."));
14056 }
14057
14058 rs->btrace_config.pt.size = conf->pt.size;
14059 }
14060 }
14061
14062 /* Read the current thread's btrace configuration from the target and
14063 store it into CONF. */
14064
14065 static void
14066 btrace_read_config (struct btrace_config *conf)
14067 {
14068 gdb::optional<gdb::char_vector> xml
14069 = target_read_stralloc (current_inferior ()->top_target (),
14070 TARGET_OBJECT_BTRACE_CONF, "");
14071 if (xml)
14072 parse_xml_btrace_conf (conf, xml->data ());
14073 }
14074
14075 /* Maybe reopen target btrace. */
14076
14077 void
14078 remote_target::remote_btrace_maybe_reopen ()
14079 {
14080 struct remote_state *rs = get_remote_state ();
14081 int btrace_target_pushed = 0;
14082 #if !defined (HAVE_LIBIPT)
14083 int warned = 0;
14084 #endif
14085
14086 /* Don't bother walking the entirety of the remote thread list when
14087 we know the feature isn't supported by the remote. */
14088 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
14089 return;
14090
14091 scoped_restore_current_thread restore_thread;
14092
14093 for (thread_info *tp : all_non_exited_threads (this))
14094 {
14095 set_general_thread (tp->ptid);
14096
14097 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
14098 btrace_read_config (&rs->btrace_config);
14099
14100 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
14101 continue;
14102
14103 #if !defined (HAVE_LIBIPT)
14104 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
14105 {
14106 if (!warned)
14107 {
14108 warned = 1;
14109 warning (_("Target is recording using Intel Processor Trace "
14110 "but support was disabled at compile time."));
14111 }
14112
14113 continue;
14114 }
14115 #endif /* !defined (HAVE_LIBIPT) */
14116
14117 /* Push target, once, but before anything else happens. This way our
14118 changes to the threads will be cleaned up by unpushing the target
14119 in case btrace_read_config () throws. */
14120 if (!btrace_target_pushed)
14121 {
14122 btrace_target_pushed = 1;
14123 record_btrace_push_target ();
14124 printf_filtered (_("Target is recording using %s.\n"),
14125 btrace_format_string (rs->btrace_config.format));
14126 }
14127
14128 tp->btrace.target = XCNEW (struct btrace_target_info);
14129 tp->btrace.target->ptid = tp->ptid;
14130 tp->btrace.target->conf = rs->btrace_config;
14131 }
14132 }
14133
14134 /* Enable branch tracing. */
14135
14136 struct btrace_target_info *
14137 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
14138 {
14139 struct btrace_target_info *tinfo = NULL;
14140 struct packet_config *packet = NULL;
14141 struct remote_state *rs = get_remote_state ();
14142 char *buf = rs->buf.data ();
14143 char *endbuf = buf + get_remote_packet_size ();
14144
14145 switch (conf->format)
14146 {
14147 case BTRACE_FORMAT_BTS:
14148 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14149 break;
14150
14151 case BTRACE_FORMAT_PT:
14152 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14153 break;
14154 }
14155
14156 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
14157 error (_("Target does not support branch tracing."));
14158
14159 btrace_sync_conf (conf);
14160
14161 set_general_thread (ptid);
14162
14163 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14164 putpkt (rs->buf);
14165 getpkt (&rs->buf, 0);
14166
14167 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14168 {
14169 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14170 error (_("Could not enable branch tracing for %s: %s"),
14171 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
14172 else
14173 error (_("Could not enable branch tracing for %s."),
14174 target_pid_to_str (ptid).c_str ());
14175 }
14176
14177 tinfo = XCNEW (struct btrace_target_info);
14178 tinfo->ptid = ptid;
14179
14180 /* If we fail to read the configuration, we lose some information, but the
14181 tracing itself is not impacted. */
14182 try
14183 {
14184 btrace_read_config (&tinfo->conf);
14185 }
14186 catch (const gdb_exception_error &err)
14187 {
14188 if (err.message != NULL)
14189 warning ("%s", err.what ());
14190 }
14191
14192 return tinfo;
14193 }
14194
14195 /* Disable branch tracing. */
14196
14197 void
14198 remote_target::disable_btrace (struct btrace_target_info *tinfo)
14199 {
14200 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14201 struct remote_state *rs = get_remote_state ();
14202 char *buf = rs->buf.data ();
14203 char *endbuf = buf + get_remote_packet_size ();
14204
14205 if (packet_config_support (packet) != PACKET_ENABLE)
14206 error (_("Target does not support branch tracing."));
14207
14208 set_general_thread (tinfo->ptid);
14209
14210 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14211 putpkt (rs->buf);
14212 getpkt (&rs->buf, 0);
14213
14214 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14215 {
14216 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14217 error (_("Could not disable branch tracing for %s: %s"),
14218 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
14219 else
14220 error (_("Could not disable branch tracing for %s."),
14221 target_pid_to_str (tinfo->ptid).c_str ());
14222 }
14223
14224 xfree (tinfo);
14225 }
14226
14227 /* Teardown branch tracing. */
14228
14229 void
14230 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
14231 {
14232 /* We must not talk to the target during teardown. */
14233 xfree (tinfo);
14234 }
14235
14236 /* Read the branch trace. */
14237
14238 enum btrace_error
14239 remote_target::read_btrace (struct btrace_data *btrace,
14240 struct btrace_target_info *tinfo,
14241 enum btrace_read_type type)
14242 {
14243 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
14244 const char *annex;
14245
14246 if (packet_config_support (packet) != PACKET_ENABLE)
14247 error (_("Target does not support branch tracing."));
14248
14249 #if !defined(HAVE_LIBEXPAT)
14250 error (_("Cannot process branch tracing result. XML parsing not supported."));
14251 #endif
14252
14253 switch (type)
14254 {
14255 case BTRACE_READ_ALL:
14256 annex = "all";
14257 break;
14258 case BTRACE_READ_NEW:
14259 annex = "new";
14260 break;
14261 case BTRACE_READ_DELTA:
14262 annex = "delta";
14263 break;
14264 default:
14265 internal_error (__FILE__, __LINE__,
14266 _("Bad branch tracing read type: %u."),
14267 (unsigned int) type);
14268 }
14269
14270 gdb::optional<gdb::char_vector> xml
14271 = target_read_stralloc (current_inferior ()->top_target (),
14272 TARGET_OBJECT_BTRACE, annex);
14273 if (!xml)
14274 return BTRACE_ERR_UNKNOWN;
14275
14276 parse_xml_btrace (btrace, xml->data ());
14277
14278 return BTRACE_ERR_NONE;
14279 }
14280
14281 const struct btrace_config *
14282 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
14283 {
14284 return &tinfo->conf;
14285 }
14286
14287 bool
14288 remote_target::augmented_libraries_svr4_read ()
14289 {
14290 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14291 == PACKET_ENABLE);
14292 }
14293
14294 /* Implementation of to_load. */
14295
14296 void
14297 remote_target::load (const char *name, int from_tty)
14298 {
14299 generic_load (name, from_tty);
14300 }
14301
14302 /* Accepts an integer PID; returns a string representing a file that
14303 can be opened on the remote side to get the symbols for the child
14304 process. Returns NULL if the operation is not supported. */
14305
14306 char *
14307 remote_target::pid_to_exec_file (int pid)
14308 {
14309 static gdb::optional<gdb::char_vector> filename;
14310 char *annex = NULL;
14311
14312 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14313 return NULL;
14314
14315 inferior *inf = find_inferior_pid (this, pid);
14316 if (inf == NULL)
14317 internal_error (__FILE__, __LINE__,
14318 _("not currently attached to process %d"), pid);
14319
14320 if (!inf->fake_pid_p)
14321 {
14322 const int annex_size = 9;
14323
14324 annex = (char *) alloca (annex_size);
14325 xsnprintf (annex, annex_size, "%x", pid);
14326 }
14327
14328 filename = target_read_stralloc (current_inferior ()->top_target (),
14329 TARGET_OBJECT_EXEC_FILE, annex);
14330
14331 return filename ? filename->data () : nullptr;
14332 }
14333
14334 /* Implement the to_can_do_single_step target_ops method. */
14335
14336 int
14337 remote_target::can_do_single_step ()
14338 {
14339 /* We can only tell whether target supports single step or not by
14340 supported s and S vCont actions if the stub supports vContSupported
14341 feature. If the stub doesn't support vContSupported feature,
14342 we have conservatively to think target doesn't supports single
14343 step. */
14344 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14345 {
14346 struct remote_state *rs = get_remote_state ();
14347
14348 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14349 remote_vcont_probe ();
14350
14351 return rs->supports_vCont.s && rs->supports_vCont.S;
14352 }
14353 else
14354 return 0;
14355 }
14356
14357 /* Implementation of the to_execution_direction method for the remote
14358 target. */
14359
14360 enum exec_direction_kind
14361 remote_target::execution_direction ()
14362 {
14363 struct remote_state *rs = get_remote_state ();
14364
14365 return rs->last_resume_exec_dir;
14366 }
14367
14368 /* Return pointer to the thread_info struct which corresponds to
14369 THREAD_HANDLE (having length HANDLE_LEN). */
14370
14371 thread_info *
14372 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14373 int handle_len,
14374 inferior *inf)
14375 {
14376 for (thread_info *tp : all_non_exited_threads (this))
14377 {
14378 remote_thread_info *priv = get_remote_thread_info (tp);
14379
14380 if (tp->inf == inf && priv != NULL)
14381 {
14382 if (handle_len != priv->thread_handle.size ())
14383 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14384 handle_len, priv->thread_handle.size ());
14385 if (memcmp (thread_handle, priv->thread_handle.data (),
14386 handle_len) == 0)
14387 return tp;
14388 }
14389 }
14390
14391 return NULL;
14392 }
14393
14394 gdb::byte_vector
14395 remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14396 {
14397 remote_thread_info *priv = get_remote_thread_info (tp);
14398 return priv->thread_handle;
14399 }
14400
14401 bool
14402 remote_target::can_async_p ()
14403 {
14404 struct remote_state *rs = get_remote_state ();
14405
14406 /* We don't go async if the user has explicitly prevented it with the
14407 "maint set target-async" command. */
14408 if (!target_async_permitted)
14409 return false;
14410
14411 /* We're async whenever the serial device is. */
14412 return serial_can_async_p (rs->remote_desc);
14413 }
14414
14415 bool
14416 remote_target::is_async_p ()
14417 {
14418 struct remote_state *rs = get_remote_state ();
14419
14420 if (!target_async_permitted)
14421 /* We only enable async when the user specifically asks for it. */
14422 return false;
14423
14424 /* We're async whenever the serial device is. */
14425 return serial_is_async_p (rs->remote_desc);
14426 }
14427
14428 /* Pass the SERIAL event on and up to the client. One day this code
14429 will be able to delay notifying the client of an event until the
14430 point where an entire packet has been received. */
14431
14432 static serial_event_ftype remote_async_serial_handler;
14433
14434 static void
14435 remote_async_serial_handler (struct serial *scb, void *context)
14436 {
14437 /* Don't propogate error information up to the client. Instead let
14438 the client find out about the error by querying the target. */
14439 inferior_event_handler (INF_REG_EVENT);
14440 }
14441
14442 static void
14443 remote_async_inferior_event_handler (gdb_client_data data)
14444 {
14445 inferior_event_handler (INF_REG_EVENT);
14446 }
14447
14448 int
14449 remote_target::async_wait_fd ()
14450 {
14451 struct remote_state *rs = get_remote_state ();
14452 return rs->remote_desc->fd;
14453 }
14454
14455 void
14456 remote_target::async (int enable)
14457 {
14458 struct remote_state *rs = get_remote_state ();
14459
14460 if (enable)
14461 {
14462 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14463
14464 /* If there are pending events in the stop reply queue tell the
14465 event loop to process them. */
14466 if (!rs->stop_reply_queue.empty ())
14467 mark_async_event_handler (rs->remote_async_inferior_event_token);
14468 /* For simplicity, below we clear the pending events token
14469 without remembering whether it is marked, so here we always
14470 mark it. If there's actually no pending notification to
14471 process, this ends up being a no-op (other than a spurious
14472 event-loop wakeup). */
14473 if (target_is_non_stop_p ())
14474 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14475 }
14476 else
14477 {
14478 serial_async (rs->remote_desc, NULL, NULL);
14479 /* If the core is disabling async, it doesn't want to be
14480 disturbed with target events. Clear all async event sources
14481 too. */
14482 clear_async_event_handler (rs->remote_async_inferior_event_token);
14483 if (target_is_non_stop_p ())
14484 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14485 }
14486 }
14487
14488 /* Implementation of the to_thread_events method. */
14489
14490 void
14491 remote_target::thread_events (int enable)
14492 {
14493 struct remote_state *rs = get_remote_state ();
14494 size_t size = get_remote_packet_size ();
14495
14496 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14497 return;
14498
14499 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14500 putpkt (rs->buf);
14501 getpkt (&rs->buf, 0);
14502
14503 switch (packet_ok (rs->buf,
14504 &remote_protocol_packets[PACKET_QThreadEvents]))
14505 {
14506 case PACKET_OK:
14507 if (strcmp (rs->buf.data (), "OK") != 0)
14508 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14509 break;
14510 case PACKET_ERROR:
14511 warning (_("Remote failure reply: %s"), rs->buf.data ());
14512 break;
14513 case PACKET_UNKNOWN:
14514 break;
14515 }
14516 }
14517
14518 static void
14519 show_remote_cmd (const char *args, int from_tty)
14520 {
14521 /* We can't just use cmd_show_list here, because we want to skip
14522 the redundant "show remote Z-packet" and the legacy aliases. */
14523 struct cmd_list_element *list = remote_show_cmdlist;
14524 struct ui_out *uiout = current_uiout;
14525
14526 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14527 for (; list != NULL; list = list->next)
14528 if (strcmp (list->name, "Z-packet") == 0)
14529 continue;
14530 else if (list->type == not_set_cmd)
14531 /* Alias commands are exactly like the original, except they
14532 don't have the normal type. */
14533 continue;
14534 else
14535 {
14536 ui_out_emit_tuple option_emitter (uiout, "option");
14537
14538 uiout->field_string ("name", list->name);
14539 uiout->text (": ");
14540 if (list->type == show_cmd)
14541 do_show_command (NULL, from_tty, list);
14542 else
14543 cmd_func (list, NULL, from_tty);
14544 }
14545 }
14546
14547
14548 /* Function to be called whenever a new objfile (shlib) is detected. */
14549 static void
14550 remote_new_objfile (struct objfile *objfile)
14551 {
14552 remote_target *remote = get_current_remote_target ();
14553
14554 /* First, check whether the current inferior's process target is a remote
14555 target. */
14556 if (remote == nullptr)
14557 return;
14558
14559 /* When we are attaching or handling a fork child and the shared library
14560 subsystem reads the list of loaded libraries, we receive new objfile
14561 events in between each found library. The libraries are read in an
14562 undefined order, so if we gave the remote side a chance to look up
14563 symbols between each objfile, we might give it an inconsistent picture
14564 of the inferior. It could appear that a library A appears loaded but
14565 a library B does not, even though library A requires library B. That
14566 would present a state that couldn't normally exist in the inferior.
14567
14568 So, skip these events, we'll give the remote a chance to look up symbols
14569 once all the loaded libraries and their symbols are known to GDB. */
14570 if (current_inferior ()->in_initial_library_scan)
14571 return;
14572
14573 remote->remote_check_symbols ();
14574 }
14575
14576 /* Pull all the tracepoints defined on the target and create local
14577 data structures representing them. We don't want to create real
14578 tracepoints yet, we don't want to mess up the user's existing
14579 collection. */
14580
14581 int
14582 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14583 {
14584 struct remote_state *rs = get_remote_state ();
14585 char *p;
14586
14587 /* Ask for a first packet of tracepoint definition. */
14588 putpkt ("qTfP");
14589 getpkt (&rs->buf, 0);
14590 p = rs->buf.data ();
14591 while (*p && *p != 'l')
14592 {
14593 parse_tracepoint_definition (p, utpp);
14594 /* Ask for another packet of tracepoint definition. */
14595 putpkt ("qTsP");
14596 getpkt (&rs->buf, 0);
14597 p = rs->buf.data ();
14598 }
14599 return 0;
14600 }
14601
14602 int
14603 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14604 {
14605 struct remote_state *rs = get_remote_state ();
14606 char *p;
14607
14608 /* Ask for a first packet of variable definition. */
14609 putpkt ("qTfV");
14610 getpkt (&rs->buf, 0);
14611 p = rs->buf.data ();
14612 while (*p && *p != 'l')
14613 {
14614 parse_tsv_definition (p, utsvp);
14615 /* Ask for another packet of variable definition. */
14616 putpkt ("qTsV");
14617 getpkt (&rs->buf, 0);
14618 p = rs->buf.data ();
14619 }
14620 return 0;
14621 }
14622
14623 /* The "set/show range-stepping" show hook. */
14624
14625 static void
14626 show_range_stepping (struct ui_file *file, int from_tty,
14627 struct cmd_list_element *c,
14628 const char *value)
14629 {
14630 fprintf_filtered (file,
14631 _("Debugger's willingness to use range stepping "
14632 "is %s.\n"), value);
14633 }
14634
14635 /* Return true if the vCont;r action is supported by the remote
14636 stub. */
14637
14638 bool
14639 remote_target::vcont_r_supported ()
14640 {
14641 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14642 remote_vcont_probe ();
14643
14644 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14645 && get_remote_state ()->supports_vCont.r);
14646 }
14647
14648 /* The "set/show range-stepping" set hook. */
14649
14650 static void
14651 set_range_stepping (const char *ignore_args, int from_tty,
14652 struct cmd_list_element *c)
14653 {
14654 /* When enabling, check whether range stepping is actually supported
14655 by the target, and warn if not. */
14656 if (use_range_stepping)
14657 {
14658 remote_target *remote = get_current_remote_target ();
14659 if (remote == NULL
14660 || !remote->vcont_r_supported ())
14661 warning (_("Range stepping is not supported by the current target"));
14662 }
14663 }
14664
14665 static void
14666 show_remote_debug (struct ui_file *file, int from_tty,
14667 struct cmd_list_element *c, const char *value)
14668 {
14669 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14670 value);
14671 }
14672
14673 static void
14674 show_remote_timeout (struct ui_file *file, int from_tty,
14675 struct cmd_list_element *c, const char *value)
14676 {
14677 fprintf_filtered (file,
14678 _("Timeout limit to wait for target to respond is %s.\n"),
14679 value);
14680 }
14681
14682 /* Implement the "supports_memory_tagging" target_ops method. */
14683
14684 bool
14685 remote_target::supports_memory_tagging ()
14686 {
14687 return remote_memory_tagging_p ();
14688 }
14689
14690 /* Create the qMemTags packet given ADDRESS, LEN and TYPE. */
14691
14692 static void
14693 create_fetch_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14694 size_t len, int type)
14695 {
14696 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14697
14698 std::string request = string_printf ("qMemTags:%s,%s:%s",
14699 phex_nz (address, addr_size),
14700 phex_nz (len, sizeof (len)),
14701 phex_nz (type, sizeof (type)));
14702
14703 strcpy (packet.data (), request.c_str ());
14704 }
14705
14706 /* Parse the qMemTags packet reply into TAGS.
14707
14708 Return true if successful, false otherwise. */
14709
14710 static bool
14711 parse_fetch_memtags_reply (const gdb::char_vector &reply,
14712 gdb::byte_vector &tags)
14713 {
14714 if (reply.empty () || reply[0] == 'E' || reply[0] != 'm')
14715 return false;
14716
14717 /* Copy the tag data. */
14718 tags = hex2bin (reply.data () + 1);
14719
14720 return true;
14721 }
14722
14723 /* Create the QMemTags packet given ADDRESS, LEN, TYPE and TAGS. */
14724
14725 static void
14726 create_store_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14727 size_t len, int type,
14728 const gdb::byte_vector &tags)
14729 {
14730 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14731
14732 /* Put together the main packet, address and length. */
14733 std::string request = string_printf ("QMemTags:%s,%s:%s:",
14734 phex_nz (address, addr_size),
14735 phex_nz (len, sizeof (len)),
14736 phex_nz (type, sizeof (type)));
14737 request += bin2hex (tags.data (), tags.size ());
14738
14739 /* Check if we have exceeded the maximum packet size. */
14740 if (packet.size () < request.length ())
14741 error (_("Contents too big for packet QMemTags."));
14742
14743 strcpy (packet.data (), request.c_str ());
14744 }
14745
14746 /* Implement the "fetch_memtags" target_ops method. */
14747
14748 bool
14749 remote_target::fetch_memtags (CORE_ADDR address, size_t len,
14750 gdb::byte_vector &tags, int type)
14751 {
14752 /* Make sure the qMemTags packet is supported. */
14753 if (!remote_memory_tagging_p ())
14754 gdb_assert_not_reached ("remote fetch_memtags called with packet disabled");
14755
14756 struct remote_state *rs = get_remote_state ();
14757
14758 create_fetch_memtags_request (rs->buf, address, len, type);
14759
14760 putpkt (rs->buf);
14761 getpkt (&rs->buf, 0);
14762
14763 return parse_fetch_memtags_reply (rs->buf, tags);
14764 }
14765
14766 /* Implement the "store_memtags" target_ops method. */
14767
14768 bool
14769 remote_target::store_memtags (CORE_ADDR address, size_t len,
14770 const gdb::byte_vector &tags, int type)
14771 {
14772 /* Make sure the QMemTags packet is supported. */
14773 if (!remote_memory_tagging_p ())
14774 gdb_assert_not_reached ("remote store_memtags called with packet disabled");
14775
14776 struct remote_state *rs = get_remote_state ();
14777
14778 create_store_memtags_request (rs->buf, address, len, type, tags);
14779
14780 putpkt (rs->buf);
14781 getpkt (&rs->buf, 0);
14782
14783 /* Verify if the request was successful. */
14784 return packet_check_result (rs->buf.data ()) == PACKET_OK;
14785 }
14786
14787 /* Return true if remote target T is non-stop. */
14788
14789 bool
14790 remote_target_is_non_stop_p (remote_target *t)
14791 {
14792 scoped_restore_current_thread restore_thread;
14793 switch_to_target_no_thread (t);
14794
14795 return target_is_non_stop_p ();
14796 }
14797
14798 #if GDB_SELF_TEST
14799
14800 namespace selftests {
14801
14802 static void
14803 test_memory_tagging_functions ()
14804 {
14805 remote_target remote;
14806
14807 struct packet_config *config
14808 = &remote_protocol_packets[PACKET_memory_tagging_feature];
14809
14810 scoped_restore restore_memtag_support_
14811 = make_scoped_restore (&config->support);
14812
14813 /* Test memory tagging packet support. */
14814 config->support = PACKET_SUPPORT_UNKNOWN;
14815 SELF_CHECK (remote.supports_memory_tagging () == false);
14816 config->support = PACKET_DISABLE;
14817 SELF_CHECK (remote.supports_memory_tagging () == false);
14818 config->support = PACKET_ENABLE;
14819 SELF_CHECK (remote.supports_memory_tagging () == true);
14820
14821 /* Setup testing. */
14822 gdb::char_vector packet;
14823 gdb::byte_vector tags, bv;
14824 std::string expected, reply;
14825 packet.resize (32000);
14826
14827 /* Test creating a qMemTags request. */
14828
14829 expected = "qMemTags:0,0:0";
14830 create_fetch_memtags_request (packet, 0x0, 0x0, 0);
14831 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14832
14833 expected = "qMemTags:deadbeef,10:1";
14834 create_fetch_memtags_request (packet, 0xdeadbeef, 16, 1);
14835 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14836
14837 /* Test parsing a qMemTags reply. */
14838
14839 /* Error reply, tags vector unmodified. */
14840 reply = "E00";
14841 strcpy (packet.data (), reply.c_str ());
14842 tags.resize (0);
14843 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == false);
14844 SELF_CHECK (tags.size () == 0);
14845
14846 /* Valid reply, tags vector updated. */
14847 tags.resize (0);
14848 bv.resize (0);
14849
14850 for (int i = 0; i < 5; i++)
14851 bv.push_back (i);
14852
14853 reply = "m" + bin2hex (bv.data (), bv.size ());
14854 strcpy (packet.data (), reply.c_str ());
14855
14856 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == true);
14857 SELF_CHECK (tags.size () == 5);
14858
14859 for (int i = 0; i < 5; i++)
14860 SELF_CHECK (tags[i] == i);
14861
14862 /* Test creating a QMemTags request. */
14863
14864 /* Empty tag data. */
14865 tags.resize (0);
14866 expected = "QMemTags:0,0:0:";
14867 create_store_memtags_request (packet, 0x0, 0x0, 0, tags);
14868 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14869 expected.length ()) == 0);
14870
14871 /* Non-empty tag data. */
14872 tags.resize (0);
14873 for (int i = 0; i < 5; i++)
14874 tags.push_back (i);
14875 expected = "QMemTags:deadbeef,ff:1:0001020304";
14876 create_store_memtags_request (packet, 0xdeadbeef, 255, 1, tags);
14877 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14878 expected.length ()) == 0);
14879 }
14880
14881 } // namespace selftests
14882 #endif /* GDB_SELF_TEST */
14883
14884 void _initialize_remote ();
14885 void
14886 _initialize_remote ()
14887 {
14888 /* architecture specific data */
14889 remote_g_packet_data_handle =
14890 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14891
14892 add_target (remote_target_info, remote_target::open);
14893 add_target (extended_remote_target_info, extended_remote_target::open);
14894
14895 /* Hook into new objfile notification. */
14896 gdb::observers::new_objfile.attach (remote_new_objfile, "remote");
14897
14898 #if 0
14899 init_remote_threadtests ();
14900 #endif
14901
14902 /* set/show remote ... */
14903
14904 add_basic_prefix_cmd ("remote", class_maintenance, _("\
14905 Remote protocol specific variables.\n\
14906 Configure various remote-protocol specific variables such as\n\
14907 the packets being used."),
14908 &remote_set_cmdlist,
14909 0 /* allow-unknown */, &setlist);
14910 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14911 Remote protocol specific variables.\n\
14912 Configure various remote-protocol specific variables such as\n\
14913 the packets being used."),
14914 &remote_show_cmdlist,
14915 0 /* allow-unknown */, &showlist);
14916
14917 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14918 Compare section data on target to the exec file.\n\
14919 Argument is a single section name (default: all loaded sections).\n\
14920 To compare only read-only loaded sections, specify the -r option."),
14921 &cmdlist);
14922
14923 add_cmd ("packet", class_maintenance, packet_command, _("\
14924 Send an arbitrary packet to a remote target.\n\
14925 maintenance packet TEXT\n\
14926 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14927 this command sends the string TEXT to the inferior, and displays the\n\
14928 response packet. GDB supplies the initial `$' character, and the\n\
14929 terminating `#' character and checksum."),
14930 &maintenancelist);
14931
14932 set_show_commands remotebreak_cmds
14933 = add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14934 Set whether to send break if interrupted."), _("\
14935 Show whether to send break if interrupted."), _("\
14936 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14937 set_remotebreak, show_remotebreak,
14938 &setlist, &showlist);
14939 deprecate_cmd (remotebreak_cmds.set, "set remote interrupt-sequence");
14940 deprecate_cmd (remotebreak_cmds.show, "show remote interrupt-sequence");
14941
14942 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14943 interrupt_sequence_modes, &interrupt_sequence_mode,
14944 _("\
14945 Set interrupt sequence to remote target."), _("\
14946 Show interrupt sequence to remote target."), _("\
14947 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14948 NULL, show_interrupt_sequence,
14949 &remote_set_cmdlist,
14950 &remote_show_cmdlist);
14951
14952 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14953 &interrupt_on_connect, _("\
14954 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14955 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14956 If set, interrupt sequence is sent to remote target."),
14957 NULL, NULL,
14958 &remote_set_cmdlist, &remote_show_cmdlist);
14959
14960 /* Install commands for configuring memory read/write packets. */
14961
14962 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14963 Set the maximum number of bytes per memory write packet (deprecated)."),
14964 &setlist);
14965 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14966 Show the maximum number of bytes per memory write packet (deprecated)."),
14967 &showlist);
14968 add_cmd ("memory-write-packet-size", no_class,
14969 set_memory_write_packet_size, _("\
14970 Set the maximum number of bytes per memory-write packet.\n\
14971 Specify the number of bytes in a packet or 0 (zero) for the\n\
14972 default packet size. The actual limit is further reduced\n\
14973 dependent on the target. Specify ``fixed'' to disable the\n\
14974 further restriction and ``limit'' to enable that restriction."),
14975 &remote_set_cmdlist);
14976 add_cmd ("memory-read-packet-size", no_class,
14977 set_memory_read_packet_size, _("\
14978 Set the maximum number of bytes per memory-read packet.\n\
14979 Specify the number of bytes in a packet or 0 (zero) for the\n\
14980 default packet size. The actual limit is further reduced\n\
14981 dependent on the target. Specify ``fixed'' to disable the\n\
14982 further restriction and ``limit'' to enable that restriction."),
14983 &remote_set_cmdlist);
14984 add_cmd ("memory-write-packet-size", no_class,
14985 show_memory_write_packet_size,
14986 _("Show the maximum number of bytes per memory-write packet."),
14987 &remote_show_cmdlist);
14988 add_cmd ("memory-read-packet-size", no_class,
14989 show_memory_read_packet_size,
14990 _("Show the maximum number of bytes per memory-read packet."),
14991 &remote_show_cmdlist);
14992
14993 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14994 &remote_hw_watchpoint_limit, _("\
14995 Set the maximum number of target hardware watchpoints."), _("\
14996 Show the maximum number of target hardware watchpoints."), _("\
14997 Specify \"unlimited\" for unlimited hardware watchpoints."),
14998 NULL, show_hardware_watchpoint_limit,
14999 &remote_set_cmdlist,
15000 &remote_show_cmdlist);
15001 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
15002 no_class,
15003 &remote_hw_watchpoint_length_limit, _("\
15004 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
15005 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
15006 Specify \"unlimited\" to allow watchpoints of unlimited size."),
15007 NULL, show_hardware_watchpoint_length_limit,
15008 &remote_set_cmdlist, &remote_show_cmdlist);
15009 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
15010 &remote_hw_breakpoint_limit, _("\
15011 Set the maximum number of target hardware breakpoints."), _("\
15012 Show the maximum number of target hardware breakpoints."), _("\
15013 Specify \"unlimited\" for unlimited hardware breakpoints."),
15014 NULL, show_hardware_breakpoint_limit,
15015 &remote_set_cmdlist, &remote_show_cmdlist);
15016
15017 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
15018 &remote_address_size, _("\
15019 Set the maximum size of the address (in bits) in a memory packet."), _("\
15020 Show the maximum size of the address (in bits) in a memory packet."), NULL,
15021 NULL,
15022 NULL, /* FIXME: i18n: */
15023 &setlist, &showlist);
15024
15025 init_all_packet_configs ();
15026
15027 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
15028 "X", "binary-download", 1);
15029
15030 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
15031 "vCont", "verbose-resume", 0);
15032
15033 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
15034 "QPassSignals", "pass-signals", 0);
15035
15036 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
15037 "QCatchSyscalls", "catch-syscalls", 0);
15038
15039 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
15040 "QProgramSignals", "program-signals", 0);
15041
15042 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
15043 "QSetWorkingDir", "set-working-dir", 0);
15044
15045 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
15046 "QStartupWithShell", "startup-with-shell", 0);
15047
15048 add_packet_config_cmd (&remote_protocol_packets
15049 [PACKET_QEnvironmentHexEncoded],
15050 "QEnvironmentHexEncoded", "environment-hex-encoded",
15051 0);
15052
15053 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
15054 "QEnvironmentReset", "environment-reset",
15055 0);
15056
15057 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
15058 "QEnvironmentUnset", "environment-unset",
15059 0);
15060
15061 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
15062 "qSymbol", "symbol-lookup", 0);
15063
15064 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
15065 "P", "set-register", 1);
15066
15067 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
15068 "p", "fetch-register", 1);
15069
15070 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
15071 "Z0", "software-breakpoint", 0);
15072
15073 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
15074 "Z1", "hardware-breakpoint", 0);
15075
15076 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
15077 "Z2", "write-watchpoint", 0);
15078
15079 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
15080 "Z3", "read-watchpoint", 0);
15081
15082 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
15083 "Z4", "access-watchpoint", 0);
15084
15085 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
15086 "qXfer:auxv:read", "read-aux-vector", 0);
15087
15088 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
15089 "qXfer:exec-file:read", "pid-to-exec-file", 0);
15090
15091 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
15092 "qXfer:features:read", "target-features", 0);
15093
15094 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
15095 "qXfer:libraries:read", "library-info", 0);
15096
15097 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
15098 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
15099
15100 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
15101 "qXfer:memory-map:read", "memory-map", 0);
15102
15103 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
15104 "qXfer:osdata:read", "osdata", 0);
15105
15106 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
15107 "qXfer:threads:read", "threads", 0);
15108
15109 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
15110 "qXfer:siginfo:read", "read-siginfo-object", 0);
15111
15112 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
15113 "qXfer:siginfo:write", "write-siginfo-object", 0);
15114
15115 add_packet_config_cmd
15116 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
15117 "qXfer:traceframe-info:read", "traceframe-info", 0);
15118
15119 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
15120 "qXfer:uib:read", "unwind-info-block", 0);
15121
15122 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
15123 "qGetTLSAddr", "get-thread-local-storage-address",
15124 0);
15125
15126 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
15127 "qGetTIBAddr", "get-thread-information-block-address",
15128 0);
15129
15130 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
15131 "bc", "reverse-continue", 0);
15132
15133 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
15134 "bs", "reverse-step", 0);
15135
15136 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
15137 "qSupported", "supported-packets", 0);
15138
15139 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
15140 "qSearch:memory", "search-memory", 0);
15141
15142 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
15143 "qTStatus", "trace-status", 0);
15144
15145 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
15146 "vFile:setfs", "hostio-setfs", 0);
15147
15148 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
15149 "vFile:open", "hostio-open", 0);
15150
15151 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
15152 "vFile:pread", "hostio-pread", 0);
15153
15154 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
15155 "vFile:pwrite", "hostio-pwrite", 0);
15156
15157 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
15158 "vFile:close", "hostio-close", 0);
15159
15160 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
15161 "vFile:unlink", "hostio-unlink", 0);
15162
15163 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
15164 "vFile:readlink", "hostio-readlink", 0);
15165
15166 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
15167 "vFile:fstat", "hostio-fstat", 0);
15168
15169 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
15170 "vAttach", "attach", 0);
15171
15172 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
15173 "vRun", "run", 0);
15174
15175 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
15176 "QStartNoAckMode", "noack", 0);
15177
15178 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
15179 "vKill", "kill", 0);
15180
15181 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
15182 "qAttached", "query-attached", 0);
15183
15184 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
15185 "ConditionalTracepoints",
15186 "conditional-tracepoints", 0);
15187
15188 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
15189 "ConditionalBreakpoints",
15190 "conditional-breakpoints", 0);
15191
15192 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
15193 "BreakpointCommands",
15194 "breakpoint-commands", 0);
15195
15196 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
15197 "FastTracepoints", "fast-tracepoints", 0);
15198
15199 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
15200 "TracepointSource", "TracepointSource", 0);
15201
15202 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
15203 "QAllow", "allow", 0);
15204
15205 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
15206 "StaticTracepoints", "static-tracepoints", 0);
15207
15208 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
15209 "InstallInTrace", "install-in-trace", 0);
15210
15211 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
15212 "qXfer:statictrace:read", "read-sdata-object", 0);
15213
15214 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
15215 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
15216
15217 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
15218 "QDisableRandomization", "disable-randomization", 0);
15219
15220 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
15221 "QAgent", "agent", 0);
15222
15223 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
15224 "QTBuffer:size", "trace-buffer-size", 0);
15225
15226 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
15227 "Qbtrace:off", "disable-btrace", 0);
15228
15229 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
15230 "Qbtrace:bts", "enable-btrace-bts", 0);
15231
15232 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
15233 "Qbtrace:pt", "enable-btrace-pt", 0);
15234
15235 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
15236 "qXfer:btrace", "read-btrace", 0);
15237
15238 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
15239 "qXfer:btrace-conf", "read-btrace-conf", 0);
15240
15241 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
15242 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
15243
15244 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
15245 "multiprocess-feature", "multiprocess-feature", 0);
15246
15247 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
15248 "swbreak-feature", "swbreak-feature", 0);
15249
15250 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
15251 "hwbreak-feature", "hwbreak-feature", 0);
15252
15253 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
15254 "fork-event-feature", "fork-event-feature", 0);
15255
15256 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
15257 "vfork-event-feature", "vfork-event-feature", 0);
15258
15259 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
15260 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
15261
15262 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
15263 "vContSupported", "verbose-resume-supported", 0);
15264
15265 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
15266 "exec-event-feature", "exec-event-feature", 0);
15267
15268 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
15269 "vCtrlC", "ctrl-c", 0);
15270
15271 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
15272 "QThreadEvents", "thread-events", 0);
15273
15274 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
15275 "N stop reply", "no-resumed-stop-reply", 0);
15276
15277 add_packet_config_cmd (&remote_protocol_packets[PACKET_memory_tagging_feature],
15278 "memory-tagging-feature", "memory-tagging-feature", 0);
15279
15280 /* Assert that we've registered "set remote foo-packet" commands
15281 for all packet configs. */
15282 {
15283 int i;
15284
15285 for (i = 0; i < PACKET_MAX; i++)
15286 {
15287 /* Ideally all configs would have a command associated. Some
15288 still don't though. */
15289 int excepted;
15290
15291 switch (i)
15292 {
15293 case PACKET_QNonStop:
15294 case PACKET_EnableDisableTracepoints_feature:
15295 case PACKET_tracenz_feature:
15296 case PACKET_DisconnectedTracing_feature:
15297 case PACKET_augmented_libraries_svr4_read_feature:
15298 case PACKET_qCRC:
15299 /* Additions to this list need to be well justified:
15300 pre-existing packets are OK; new packets are not. */
15301 excepted = 1;
15302 break;
15303 default:
15304 excepted = 0;
15305 break;
15306 }
15307
15308 /* This catches both forgetting to add a config command, and
15309 forgetting to remove a packet from the exception list. */
15310 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
15311 }
15312 }
15313
15314 /* Keep the old ``set remote Z-packet ...'' working. Each individual
15315 Z sub-packet has its own set and show commands, but users may
15316 have sets to this variable in their .gdbinit files (or in their
15317 documentation). */
15318 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
15319 &remote_Z_packet_detect, _("\
15320 Set use of remote protocol `Z' packets."), _("\
15321 Show use of remote protocol `Z' packets."), _("\
15322 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
15323 packets."),
15324 set_remote_protocol_Z_packet_cmd,
15325 show_remote_protocol_Z_packet_cmd,
15326 /* FIXME: i18n: Use of remote protocol
15327 `Z' packets is %s. */
15328 &remote_set_cmdlist, &remote_show_cmdlist);
15329
15330 add_basic_prefix_cmd ("remote", class_files, _("\
15331 Manipulate files on the remote system.\n\
15332 Transfer files to and from the remote target system."),
15333 &remote_cmdlist,
15334 0 /* allow-unknown */, &cmdlist);
15335
15336 add_cmd ("put", class_files, remote_put_command,
15337 _("Copy a local file to the remote system."),
15338 &remote_cmdlist);
15339
15340 add_cmd ("get", class_files, remote_get_command,
15341 _("Copy a remote file to the local system."),
15342 &remote_cmdlist);
15343
15344 add_cmd ("delete", class_files, remote_delete_command,
15345 _("Delete a remote file."),
15346 &remote_cmdlist);
15347
15348 add_setshow_string_noescape_cmd ("exec-file", class_files,
15349 &remote_exec_file_var, _("\
15350 Set the remote pathname for \"run\"."), _("\
15351 Show the remote pathname for \"run\"."), NULL,
15352 set_remote_exec_file,
15353 show_remote_exec_file,
15354 &remote_set_cmdlist,
15355 &remote_show_cmdlist);
15356
15357 add_setshow_boolean_cmd ("range-stepping", class_run,
15358 &use_range_stepping, _("\
15359 Enable or disable range stepping."), _("\
15360 Show whether target-assisted range stepping is enabled."), _("\
15361 If on, and the target supports it, when stepping a source line, GDB\n\
15362 tells the target to step the corresponding range of addresses itself instead\n\
15363 of issuing multiple single-steps. This speeds up source level\n\
15364 stepping. If off, GDB always issues single-steps, even if range\n\
15365 stepping is supported by the target. The default is on."),
15366 set_range_stepping,
15367 show_range_stepping,
15368 &setlist,
15369 &showlist);
15370
15371 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15372 Set watchdog timer."), _("\
15373 Show watchdog timer."), _("\
15374 When non-zero, this timeout is used instead of waiting forever for a target\n\
15375 to finish a low-level step or continue operation. If the specified amount\n\
15376 of time passes without a response from the target, an error occurs."),
15377 NULL,
15378 show_watchdog,
15379 &setlist, &showlist);
15380
15381 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15382 &remote_packet_max_chars, _("\
15383 Set the maximum number of characters to display for each remote packet."), _("\
15384 Show the maximum number of characters to display for each remote packet."), _("\
15385 Specify \"unlimited\" to display all the characters."),
15386 NULL, show_remote_packet_max_chars,
15387 &setdebuglist, &showdebuglist);
15388
15389 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15390 _("Set debugging of remote protocol."),
15391 _("Show debugging of remote protocol."),
15392 _("\
15393 When enabled, each packet sent or received with the remote target\n\
15394 is displayed."),
15395 NULL,
15396 show_remote_debug,
15397 &setdebuglist, &showdebuglist);
15398
15399 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15400 &remote_timeout, _("\
15401 Set timeout limit to wait for target to respond."), _("\
15402 Show timeout limit to wait for target to respond."), _("\
15403 This value is used to set the time limit for gdb to wait for a response\n\
15404 from the target."),
15405 NULL,
15406 show_remote_timeout,
15407 &setlist, &showlist);
15408
15409 /* Eventually initialize fileio. See fileio.c */
15410 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
15411
15412 #if GDB_SELF_TEST
15413 selftests::register_test ("remote_memory_tagging",
15414 selftests::test_memory_tagging_functions);
15415 #endif
15416 }