gdb: pass/return setting setter/getter scalar values by value
[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 std::string 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 set_pspace_remote_exec_file (current_program_space,
1359 remote_exec_file_var.c_str ());
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 /* The "show remote foo-packet" command created for this packet. */
1877 cmd_list_element *show_cmd;
1878
1879 /* Does the target support this packet? */
1880 enum packet_support support;
1881 };
1882
1883 static enum packet_support packet_config_support (struct packet_config *config);
1884 static enum packet_support packet_support (int packet);
1885
1886 static void
1887 show_packet_config_cmd (struct packet_config *config)
1888 {
1889 const char *support = "internal-error";
1890
1891 switch (packet_config_support (config))
1892 {
1893 case PACKET_ENABLE:
1894 support = "enabled";
1895 break;
1896 case PACKET_DISABLE:
1897 support = "disabled";
1898 break;
1899 case PACKET_SUPPORT_UNKNOWN:
1900 support = "unknown";
1901 break;
1902 }
1903 switch (config->detect)
1904 {
1905 case AUTO_BOOLEAN_AUTO:
1906 printf_filtered (_("Support for the `%s' packet "
1907 "is auto-detected, currently %s.\n"),
1908 config->name, support);
1909 break;
1910 case AUTO_BOOLEAN_TRUE:
1911 case AUTO_BOOLEAN_FALSE:
1912 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1913 config->name, support);
1914 break;
1915 }
1916 }
1917
1918 static void
1919 add_packet_config_cmd (struct packet_config *config, const char *name,
1920 const char *title, int legacy)
1921 {
1922 char *set_doc;
1923 char *show_doc;
1924 char *cmd_name;
1925
1926 config->name = name;
1927 config->title = title;
1928 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1929 name, title);
1930 show_doc = xstrprintf ("Show current use of remote "
1931 "protocol `%s' (%s) packet.",
1932 name, title);
1933 /* set/show TITLE-packet {auto,on,off} */
1934 cmd_name = xstrprintf ("%s-packet", title);
1935 set_show_commands cmds
1936 = add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1937 &config->detect, set_doc,
1938 show_doc, NULL, /* help_doc */
1939 NULL,
1940 show_remote_protocol_packet_cmd,
1941 &remote_set_cmdlist, &remote_show_cmdlist);
1942 config->show_cmd = cmds.show;
1943
1944 /* The command code copies the documentation strings. */
1945 xfree (set_doc);
1946 xfree (show_doc);
1947
1948 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1949 if (legacy)
1950 {
1951 char *legacy_name;
1952
1953 legacy_name = xstrprintf ("%s-packet", name);
1954 add_alias_cmd (legacy_name, cmds.set, class_obscure, 0,
1955 &remote_set_cmdlist);
1956 add_alias_cmd (legacy_name, cmds.show, class_obscure, 0,
1957 &remote_show_cmdlist);
1958 }
1959 }
1960
1961 static enum packet_result
1962 packet_check_result (const char *buf)
1963 {
1964 if (buf[0] != '\0')
1965 {
1966 /* The stub recognized the packet request. Check that the
1967 operation succeeded. */
1968 if (buf[0] == 'E'
1969 && isxdigit (buf[1]) && isxdigit (buf[2])
1970 && buf[3] == '\0')
1971 /* "Enn" - definitely an error. */
1972 return PACKET_ERROR;
1973
1974 /* Always treat "E." as an error. This will be used for
1975 more verbose error messages, such as E.memtypes. */
1976 if (buf[0] == 'E' && buf[1] == '.')
1977 return PACKET_ERROR;
1978
1979 /* The packet may or may not be OK. Just assume it is. */
1980 return PACKET_OK;
1981 }
1982 else
1983 /* The stub does not support the packet. */
1984 return PACKET_UNKNOWN;
1985 }
1986
1987 static enum packet_result
1988 packet_check_result (const gdb::char_vector &buf)
1989 {
1990 return packet_check_result (buf.data ());
1991 }
1992
1993 static enum packet_result
1994 packet_ok (const char *buf, struct packet_config *config)
1995 {
1996 enum packet_result result;
1997
1998 if (config->detect != AUTO_BOOLEAN_TRUE
1999 && config->support == PACKET_DISABLE)
2000 internal_error (__FILE__, __LINE__,
2001 _("packet_ok: attempt to use a disabled packet"));
2002
2003 result = packet_check_result (buf);
2004 switch (result)
2005 {
2006 case PACKET_OK:
2007 case PACKET_ERROR:
2008 /* The stub recognized the packet request. */
2009 if (config->support == PACKET_SUPPORT_UNKNOWN)
2010 {
2011 remote_debug_printf ("Packet %s (%s) is supported",
2012 config->name, config->title);
2013 config->support = PACKET_ENABLE;
2014 }
2015 break;
2016 case PACKET_UNKNOWN:
2017 /* The stub does not support the packet. */
2018 if (config->detect == AUTO_BOOLEAN_AUTO
2019 && config->support == PACKET_ENABLE)
2020 {
2021 /* If the stub previously indicated that the packet was
2022 supported then there is a protocol error. */
2023 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2024 config->name, config->title);
2025 }
2026 else if (config->detect == AUTO_BOOLEAN_TRUE)
2027 {
2028 /* The user set it wrong. */
2029 error (_("Enabled packet %s (%s) not recognized by stub"),
2030 config->name, config->title);
2031 }
2032
2033 remote_debug_printf ("Packet %s (%s) is NOT supported",
2034 config->name, config->title);
2035 config->support = PACKET_DISABLE;
2036 break;
2037 }
2038
2039 return result;
2040 }
2041
2042 static enum packet_result
2043 packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2044 {
2045 return packet_ok (buf.data (), config);
2046 }
2047
2048 enum {
2049 PACKET_vCont = 0,
2050 PACKET_X,
2051 PACKET_qSymbol,
2052 PACKET_P,
2053 PACKET_p,
2054 PACKET_Z0,
2055 PACKET_Z1,
2056 PACKET_Z2,
2057 PACKET_Z3,
2058 PACKET_Z4,
2059 PACKET_vFile_setfs,
2060 PACKET_vFile_open,
2061 PACKET_vFile_pread,
2062 PACKET_vFile_pwrite,
2063 PACKET_vFile_close,
2064 PACKET_vFile_unlink,
2065 PACKET_vFile_readlink,
2066 PACKET_vFile_fstat,
2067 PACKET_qXfer_auxv,
2068 PACKET_qXfer_features,
2069 PACKET_qXfer_exec_file,
2070 PACKET_qXfer_libraries,
2071 PACKET_qXfer_libraries_svr4,
2072 PACKET_qXfer_memory_map,
2073 PACKET_qXfer_osdata,
2074 PACKET_qXfer_threads,
2075 PACKET_qXfer_statictrace_read,
2076 PACKET_qXfer_traceframe_info,
2077 PACKET_qXfer_uib,
2078 PACKET_qGetTIBAddr,
2079 PACKET_qGetTLSAddr,
2080 PACKET_qSupported,
2081 PACKET_qTStatus,
2082 PACKET_QPassSignals,
2083 PACKET_QCatchSyscalls,
2084 PACKET_QProgramSignals,
2085 PACKET_QSetWorkingDir,
2086 PACKET_QStartupWithShell,
2087 PACKET_QEnvironmentHexEncoded,
2088 PACKET_QEnvironmentReset,
2089 PACKET_QEnvironmentUnset,
2090 PACKET_qCRC,
2091 PACKET_qSearch_memory,
2092 PACKET_vAttach,
2093 PACKET_vRun,
2094 PACKET_QStartNoAckMode,
2095 PACKET_vKill,
2096 PACKET_qXfer_siginfo_read,
2097 PACKET_qXfer_siginfo_write,
2098 PACKET_qAttached,
2099
2100 /* Support for conditional tracepoints. */
2101 PACKET_ConditionalTracepoints,
2102
2103 /* Support for target-side breakpoint conditions. */
2104 PACKET_ConditionalBreakpoints,
2105
2106 /* Support for target-side breakpoint commands. */
2107 PACKET_BreakpointCommands,
2108
2109 /* Support for fast tracepoints. */
2110 PACKET_FastTracepoints,
2111
2112 /* Support for static tracepoints. */
2113 PACKET_StaticTracepoints,
2114
2115 /* Support for installing tracepoints while a trace experiment is
2116 running. */
2117 PACKET_InstallInTrace,
2118
2119 PACKET_bc,
2120 PACKET_bs,
2121 PACKET_TracepointSource,
2122 PACKET_QAllow,
2123 PACKET_qXfer_fdpic,
2124 PACKET_QDisableRandomization,
2125 PACKET_QAgent,
2126 PACKET_QTBuffer_size,
2127 PACKET_Qbtrace_off,
2128 PACKET_Qbtrace_bts,
2129 PACKET_Qbtrace_pt,
2130 PACKET_qXfer_btrace,
2131
2132 /* Support for the QNonStop packet. */
2133 PACKET_QNonStop,
2134
2135 /* Support for the QThreadEvents packet. */
2136 PACKET_QThreadEvents,
2137
2138 /* Support for multi-process extensions. */
2139 PACKET_multiprocess_feature,
2140
2141 /* Support for enabling and disabling tracepoints while a trace
2142 experiment is running. */
2143 PACKET_EnableDisableTracepoints_feature,
2144
2145 /* Support for collecting strings using the tracenz bytecode. */
2146 PACKET_tracenz_feature,
2147
2148 /* Support for continuing to run a trace experiment while GDB is
2149 disconnected. */
2150 PACKET_DisconnectedTracing_feature,
2151
2152 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2153 PACKET_augmented_libraries_svr4_read_feature,
2154
2155 /* Support for the qXfer:btrace-conf:read packet. */
2156 PACKET_qXfer_btrace_conf,
2157
2158 /* Support for the Qbtrace-conf:bts:size packet. */
2159 PACKET_Qbtrace_conf_bts_size,
2160
2161 /* Support for swbreak+ feature. */
2162 PACKET_swbreak_feature,
2163
2164 /* Support for hwbreak+ feature. */
2165 PACKET_hwbreak_feature,
2166
2167 /* Support for fork events. */
2168 PACKET_fork_event_feature,
2169
2170 /* Support for vfork events. */
2171 PACKET_vfork_event_feature,
2172
2173 /* Support for the Qbtrace-conf:pt:size packet. */
2174 PACKET_Qbtrace_conf_pt_size,
2175
2176 /* Support for exec events. */
2177 PACKET_exec_event_feature,
2178
2179 /* Support for query supported vCont actions. */
2180 PACKET_vContSupported,
2181
2182 /* Support remote CTRL-C. */
2183 PACKET_vCtrlC,
2184
2185 /* Support TARGET_WAITKIND_NO_RESUMED. */
2186 PACKET_no_resumed,
2187
2188 /* Support for memory tagging, allocation tag fetch/store
2189 packets and the tag violation stop replies. */
2190 PACKET_memory_tagging_feature,
2191
2192 PACKET_MAX
2193 };
2194
2195 /* FIXME: needs to be per-remote-target. Ignoring this for now,
2196 assuming all remote targets are the same server (thus all support
2197 the same packets). */
2198 static struct packet_config remote_protocol_packets[PACKET_MAX];
2199
2200 /* Returns the packet's corresponding "set remote foo-packet" command
2201 state. See struct packet_config for more details. */
2202
2203 static enum auto_boolean
2204 packet_set_cmd_state (int packet)
2205 {
2206 return remote_protocol_packets[packet].detect;
2207 }
2208
2209 /* Returns whether a given packet or feature is supported. This takes
2210 into account the state of the corresponding "set remote foo-packet"
2211 command, which may be used to bypass auto-detection. */
2212
2213 static enum packet_support
2214 packet_config_support (struct packet_config *config)
2215 {
2216 switch (config->detect)
2217 {
2218 case AUTO_BOOLEAN_TRUE:
2219 return PACKET_ENABLE;
2220 case AUTO_BOOLEAN_FALSE:
2221 return PACKET_DISABLE;
2222 case AUTO_BOOLEAN_AUTO:
2223 return config->support;
2224 default:
2225 gdb_assert_not_reached (_("bad switch"));
2226 }
2227 }
2228
2229 /* Same as packet_config_support, but takes the packet's enum value as
2230 argument. */
2231
2232 static enum packet_support
2233 packet_support (int packet)
2234 {
2235 struct packet_config *config = &remote_protocol_packets[packet];
2236
2237 return packet_config_support (config);
2238 }
2239
2240 static void
2241 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2242 struct cmd_list_element *c,
2243 const char *value)
2244 {
2245 struct packet_config *packet;
2246 gdb_assert (c->var.has_value ());
2247
2248 for (packet = remote_protocol_packets;
2249 packet < &remote_protocol_packets[PACKET_MAX];
2250 packet++)
2251 {
2252 if (c == packet->show_cmd)
2253 {
2254 show_packet_config_cmd (packet);
2255 return;
2256 }
2257 }
2258 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2259 c->name);
2260 }
2261
2262 /* Should we try one of the 'Z' requests? */
2263
2264 enum Z_packet_type
2265 {
2266 Z_PACKET_SOFTWARE_BP,
2267 Z_PACKET_HARDWARE_BP,
2268 Z_PACKET_WRITE_WP,
2269 Z_PACKET_READ_WP,
2270 Z_PACKET_ACCESS_WP,
2271 NR_Z_PACKET_TYPES
2272 };
2273
2274 /* For compatibility with older distributions. Provide a ``set remote
2275 Z-packet ...'' command that updates all the Z packet types. */
2276
2277 static enum auto_boolean remote_Z_packet_detect;
2278
2279 static void
2280 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2281 struct cmd_list_element *c)
2282 {
2283 int i;
2284
2285 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2286 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2287 }
2288
2289 static void
2290 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2291 struct cmd_list_element *c,
2292 const char *value)
2293 {
2294 int i;
2295
2296 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2297 {
2298 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2299 }
2300 }
2301
2302 /* Returns true if the multi-process extensions are in effect. */
2303
2304 static int
2305 remote_multi_process_p (struct remote_state *rs)
2306 {
2307 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2308 }
2309
2310 /* Returns true if fork events are supported. */
2311
2312 static int
2313 remote_fork_event_p (struct remote_state *rs)
2314 {
2315 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2316 }
2317
2318 /* Returns true if vfork events are supported. */
2319
2320 static int
2321 remote_vfork_event_p (struct remote_state *rs)
2322 {
2323 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2324 }
2325
2326 /* Returns true if exec events are supported. */
2327
2328 static int
2329 remote_exec_event_p (struct remote_state *rs)
2330 {
2331 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2332 }
2333
2334 /* Returns true if memory tagging is supported, false otherwise. */
2335
2336 static bool
2337 remote_memory_tagging_p ()
2338 {
2339 return packet_support (PACKET_memory_tagging_feature) == PACKET_ENABLE;
2340 }
2341
2342 /* Insert fork catchpoint target routine. If fork events are enabled
2343 then return success, nothing more to do. */
2344
2345 int
2346 remote_target::insert_fork_catchpoint (int pid)
2347 {
2348 struct remote_state *rs = get_remote_state ();
2349
2350 return !remote_fork_event_p (rs);
2351 }
2352
2353 /* Remove fork catchpoint target routine. Nothing to do, just
2354 return success. */
2355
2356 int
2357 remote_target::remove_fork_catchpoint (int pid)
2358 {
2359 return 0;
2360 }
2361
2362 /* Insert vfork catchpoint target routine. If vfork events are enabled
2363 then return success, nothing more to do. */
2364
2365 int
2366 remote_target::insert_vfork_catchpoint (int pid)
2367 {
2368 struct remote_state *rs = get_remote_state ();
2369
2370 return !remote_vfork_event_p (rs);
2371 }
2372
2373 /* Remove vfork catchpoint target routine. Nothing to do, just
2374 return success. */
2375
2376 int
2377 remote_target::remove_vfork_catchpoint (int pid)
2378 {
2379 return 0;
2380 }
2381
2382 /* Insert exec catchpoint target routine. If exec events are
2383 enabled, just return success. */
2384
2385 int
2386 remote_target::insert_exec_catchpoint (int pid)
2387 {
2388 struct remote_state *rs = get_remote_state ();
2389
2390 return !remote_exec_event_p (rs);
2391 }
2392
2393 /* Remove exec catchpoint target routine. Nothing to do, just
2394 return success. */
2395
2396 int
2397 remote_target::remove_exec_catchpoint (int pid)
2398 {
2399 return 0;
2400 }
2401
2402 \f
2403
2404 /* Take advantage of the fact that the TID field is not used, to tag
2405 special ptids with it set to != 0. */
2406 static const ptid_t magic_null_ptid (42000, -1, 1);
2407 static const ptid_t not_sent_ptid (42000, -2, 1);
2408 static const ptid_t any_thread_ptid (42000, 0, 1);
2409
2410 /* Find out if the stub attached to PID (and hence GDB should offer to
2411 detach instead of killing it when bailing out). */
2412
2413 int
2414 remote_target::remote_query_attached (int pid)
2415 {
2416 struct remote_state *rs = get_remote_state ();
2417 size_t size = get_remote_packet_size ();
2418
2419 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2420 return 0;
2421
2422 if (remote_multi_process_p (rs))
2423 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
2424 else
2425 xsnprintf (rs->buf.data (), size, "qAttached");
2426
2427 putpkt (rs->buf);
2428 getpkt (&rs->buf, 0);
2429
2430 switch (packet_ok (rs->buf,
2431 &remote_protocol_packets[PACKET_qAttached]))
2432 {
2433 case PACKET_OK:
2434 if (strcmp (rs->buf.data (), "1") == 0)
2435 return 1;
2436 break;
2437 case PACKET_ERROR:
2438 warning (_("Remote failure reply: %s"), rs->buf.data ());
2439 break;
2440 case PACKET_UNKNOWN:
2441 break;
2442 }
2443
2444 return 0;
2445 }
2446
2447 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2448 has been invented by GDB, instead of reported by the target. Since
2449 we can be connected to a remote system before before knowing about
2450 any inferior, mark the target with execution when we find the first
2451 inferior. If ATTACHED is 1, then we had just attached to this
2452 inferior. If it is 0, then we just created this inferior. If it
2453 is -1, then try querying the remote stub to find out if it had
2454 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2455 attempt to open this inferior's executable as the main executable
2456 if no main executable is open already. */
2457
2458 inferior *
2459 remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
2460 int try_open_exec)
2461 {
2462 struct inferior *inf;
2463
2464 /* Check whether this process we're learning about is to be
2465 considered attached, or if is to be considered to have been
2466 spawned by the stub. */
2467 if (attached == -1)
2468 attached = remote_query_attached (pid);
2469
2470 if (gdbarch_has_global_solist (target_gdbarch ()))
2471 {
2472 /* If the target shares code across all inferiors, then every
2473 attach adds a new inferior. */
2474 inf = add_inferior (pid);
2475
2476 /* ... and every inferior is bound to the same program space.
2477 However, each inferior may still have its own address
2478 space. */
2479 inf->aspace = maybe_new_address_space ();
2480 inf->pspace = current_program_space;
2481 }
2482 else
2483 {
2484 /* In the traditional debugging scenario, there's a 1-1 match
2485 between program/address spaces. We simply bind the inferior
2486 to the program space's address space. */
2487 inf = current_inferior ();
2488
2489 /* However, if the current inferior is already bound to a
2490 process, find some other empty inferior. */
2491 if (inf->pid != 0)
2492 {
2493 inf = nullptr;
2494 for (inferior *it : all_inferiors ())
2495 if (it->pid == 0)
2496 {
2497 inf = it;
2498 break;
2499 }
2500 }
2501 if (inf == nullptr)
2502 {
2503 /* Since all inferiors were already bound to a process, add
2504 a new inferior. */
2505 inf = add_inferior_with_spaces ();
2506 }
2507 switch_to_inferior_no_thread (inf);
2508 inf->push_target (this);
2509 inferior_appeared (inf, pid);
2510 }
2511
2512 inf->attach_flag = attached;
2513 inf->fake_pid_p = fake_pid_p;
2514
2515 /* If no main executable is currently open then attempt to
2516 open the file that was executed to create this inferior. */
2517 if (try_open_exec && get_exec_file (0) == NULL)
2518 exec_file_locate_attach (pid, 0, 1);
2519
2520 /* Check for exec file mismatch, and let the user solve it. */
2521 validate_exec_file (1);
2522
2523 return inf;
2524 }
2525
2526 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2527 static remote_thread_info *get_remote_thread_info (remote_target *target,
2528 ptid_t ptid);
2529
2530 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2531 according to RUNNING. */
2532
2533 thread_info *
2534 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2535 {
2536 struct remote_state *rs = get_remote_state ();
2537 struct thread_info *thread;
2538
2539 /* GDB historically didn't pull threads in the initial connection
2540 setup. If the remote target doesn't even have a concept of
2541 threads (e.g., a bare-metal target), even if internally we
2542 consider that a single-threaded target, mentioning a new thread
2543 might be confusing to the user. Be silent then, preserving the
2544 age old behavior. */
2545 if (rs->starting_up)
2546 thread = add_thread_silent (this, ptid);
2547 else
2548 thread = add_thread (this, ptid);
2549
2550 /* We start by assuming threads are resumed. That state then gets updated
2551 when we process a matching stop reply. */
2552 get_remote_thread_info (thread)->set_resumed ();
2553
2554 set_executing (this, ptid, executing);
2555 set_running (this, ptid, running);
2556
2557 return thread;
2558 }
2559
2560 /* Come here when we learn about a thread id from the remote target.
2561 It may be the first time we hear about such thread, so take the
2562 opportunity to add it to GDB's thread list. In case this is the
2563 first time we're noticing its corresponding inferior, add it to
2564 GDB's inferior list as well. EXECUTING indicates whether the
2565 thread is (internally) executing or stopped. */
2566
2567 void
2568 remote_target::remote_notice_new_inferior (ptid_t currthread, bool executing)
2569 {
2570 /* In non-stop mode, we assume new found threads are (externally)
2571 running until proven otherwise with a stop reply. In all-stop,
2572 we can only get here if all threads are stopped. */
2573 bool running = target_is_non_stop_p ();
2574
2575 /* If this is a new thread, add it to GDB's thread list.
2576 If we leave it up to WFI to do this, bad things will happen. */
2577
2578 thread_info *tp = find_thread_ptid (this, currthread);
2579 if (tp != NULL && tp->state == THREAD_EXITED)
2580 {
2581 /* We're seeing an event on a thread id we knew had exited.
2582 This has to be a new thread reusing the old id. Add it. */
2583 remote_add_thread (currthread, running, executing);
2584 return;
2585 }
2586
2587 if (!in_thread_list (this, currthread))
2588 {
2589 struct inferior *inf = NULL;
2590 int pid = currthread.pid ();
2591
2592 if (inferior_ptid.is_pid ()
2593 && pid == inferior_ptid.pid ())
2594 {
2595 /* inferior_ptid has no thread member yet. This can happen
2596 with the vAttach -> remote_wait,"TAAthread:" path if the
2597 stub doesn't support qC. This is the first stop reported
2598 after an attach, so this is the main thread. Update the
2599 ptid in the thread list. */
2600 if (in_thread_list (this, ptid_t (pid)))
2601 thread_change_ptid (this, inferior_ptid, currthread);
2602 else
2603 {
2604 thread_info *thr
2605 = remote_add_thread (currthread, running, executing);
2606 switch_to_thread (thr);
2607 }
2608 return;
2609 }
2610
2611 if (magic_null_ptid == inferior_ptid)
2612 {
2613 /* inferior_ptid is not set yet. This can happen with the
2614 vRun -> remote_wait,"TAAthread:" path if the stub
2615 doesn't support qC. This is the first stop reported
2616 after an attach, so this is the main thread. Update the
2617 ptid in the thread list. */
2618 thread_change_ptid (this, inferior_ptid, currthread);
2619 return;
2620 }
2621
2622 /* When connecting to a target remote, or to a target
2623 extended-remote which already was debugging an inferior, we
2624 may not know about it yet. Add it before adding its child
2625 thread, so notifications are emitted in a sensible order. */
2626 if (find_inferior_pid (this, currthread.pid ()) == NULL)
2627 {
2628 struct remote_state *rs = get_remote_state ();
2629 bool fake_pid_p = !remote_multi_process_p (rs);
2630
2631 inf = remote_add_inferior (fake_pid_p,
2632 currthread.pid (), -1, 1);
2633 }
2634
2635 /* This is really a new thread. Add it. */
2636 thread_info *new_thr
2637 = remote_add_thread (currthread, running, executing);
2638
2639 /* If we found a new inferior, let the common code do whatever
2640 it needs to with it (e.g., read shared libraries, insert
2641 breakpoints), unless we're just setting up an all-stop
2642 connection. */
2643 if (inf != NULL)
2644 {
2645 struct remote_state *rs = get_remote_state ();
2646
2647 if (!rs->starting_up)
2648 notice_new_inferior (new_thr, executing, 0);
2649 }
2650 }
2651 }
2652
2653 /* Return THREAD's private thread data, creating it if necessary. */
2654
2655 static remote_thread_info *
2656 get_remote_thread_info (thread_info *thread)
2657 {
2658 gdb_assert (thread != NULL);
2659
2660 if (thread->priv == NULL)
2661 thread->priv.reset (new remote_thread_info);
2662
2663 return static_cast<remote_thread_info *> (thread->priv.get ());
2664 }
2665
2666 /* Return PTID's private thread data, creating it if necessary. */
2667
2668 static remote_thread_info *
2669 get_remote_thread_info (remote_target *target, ptid_t ptid)
2670 {
2671 thread_info *thr = find_thread_ptid (target, ptid);
2672 return get_remote_thread_info (thr);
2673 }
2674
2675 /* Call this function as a result of
2676 1) A halt indication (T packet) containing a thread id
2677 2) A direct query of currthread
2678 3) Successful execution of set thread */
2679
2680 static void
2681 record_currthread (struct remote_state *rs, ptid_t currthread)
2682 {
2683 rs->general_thread = currthread;
2684 }
2685
2686 /* If 'QPassSignals' is supported, tell the remote stub what signals
2687 it can simply pass through to the inferior without reporting. */
2688
2689 void
2690 remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
2691 {
2692 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2693 {
2694 char *pass_packet, *p;
2695 int count = 0;
2696 struct remote_state *rs = get_remote_state ();
2697
2698 gdb_assert (pass_signals.size () < 256);
2699 for (size_t i = 0; i < pass_signals.size (); i++)
2700 {
2701 if (pass_signals[i])
2702 count++;
2703 }
2704 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2705 strcpy (pass_packet, "QPassSignals:");
2706 p = pass_packet + strlen (pass_packet);
2707 for (size_t i = 0; i < pass_signals.size (); i++)
2708 {
2709 if (pass_signals[i])
2710 {
2711 if (i >= 16)
2712 *p++ = tohex (i >> 4);
2713 *p++ = tohex (i & 15);
2714 if (count)
2715 *p++ = ';';
2716 else
2717 break;
2718 count--;
2719 }
2720 }
2721 *p = 0;
2722 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2723 {
2724 putpkt (pass_packet);
2725 getpkt (&rs->buf, 0);
2726 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2727 xfree (rs->last_pass_packet);
2728 rs->last_pass_packet = pass_packet;
2729 }
2730 else
2731 xfree (pass_packet);
2732 }
2733 }
2734
2735 /* If 'QCatchSyscalls' is supported, tell the remote stub
2736 to report syscalls to GDB. */
2737
2738 int
2739 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2740 gdb::array_view<const int> syscall_counts)
2741 {
2742 const char *catch_packet;
2743 enum packet_result result;
2744 int n_sysno = 0;
2745
2746 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2747 {
2748 /* Not supported. */
2749 return 1;
2750 }
2751
2752 if (needed && any_count == 0)
2753 {
2754 /* Count how many syscalls are to be caught. */
2755 for (size_t i = 0; i < syscall_counts.size (); i++)
2756 {
2757 if (syscall_counts[i] != 0)
2758 n_sysno++;
2759 }
2760 }
2761
2762 remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
2763 pid, needed, any_count, n_sysno);
2764
2765 std::string built_packet;
2766 if (needed)
2767 {
2768 /* Prepare a packet with the sysno list, assuming max 8+1
2769 characters for a sysno. If the resulting packet size is too
2770 big, fallback on the non-selective packet. */
2771 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2772 built_packet.reserve (maxpktsz);
2773 built_packet = "QCatchSyscalls:1";
2774 if (any_count == 0)
2775 {
2776 /* Add in each syscall to be caught. */
2777 for (size_t i = 0; i < syscall_counts.size (); i++)
2778 {
2779 if (syscall_counts[i] != 0)
2780 string_appendf (built_packet, ";%zx", i);
2781 }
2782 }
2783 if (built_packet.size () > get_remote_packet_size ())
2784 {
2785 /* catch_packet too big. Fallback to less efficient
2786 non selective mode, with GDB doing the filtering. */
2787 catch_packet = "QCatchSyscalls:1";
2788 }
2789 else
2790 catch_packet = built_packet.c_str ();
2791 }
2792 else
2793 catch_packet = "QCatchSyscalls:0";
2794
2795 struct remote_state *rs = get_remote_state ();
2796
2797 putpkt (catch_packet);
2798 getpkt (&rs->buf, 0);
2799 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2800 if (result == PACKET_OK)
2801 return 0;
2802 else
2803 return -1;
2804 }
2805
2806 /* If 'QProgramSignals' is supported, tell the remote stub what
2807 signals it should pass through to the inferior when detaching. */
2808
2809 void
2810 remote_target::program_signals (gdb::array_view<const unsigned char> signals)
2811 {
2812 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2813 {
2814 char *packet, *p;
2815 int count = 0;
2816 struct remote_state *rs = get_remote_state ();
2817
2818 gdb_assert (signals.size () < 256);
2819 for (size_t i = 0; i < signals.size (); i++)
2820 {
2821 if (signals[i])
2822 count++;
2823 }
2824 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2825 strcpy (packet, "QProgramSignals:");
2826 p = packet + strlen (packet);
2827 for (size_t i = 0; i < signals.size (); i++)
2828 {
2829 if (signal_pass_state (i))
2830 {
2831 if (i >= 16)
2832 *p++ = tohex (i >> 4);
2833 *p++ = tohex (i & 15);
2834 if (count)
2835 *p++ = ';';
2836 else
2837 break;
2838 count--;
2839 }
2840 }
2841 *p = 0;
2842 if (!rs->last_program_signals_packet
2843 || strcmp (rs->last_program_signals_packet, packet) != 0)
2844 {
2845 putpkt (packet);
2846 getpkt (&rs->buf, 0);
2847 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2848 xfree (rs->last_program_signals_packet);
2849 rs->last_program_signals_packet = packet;
2850 }
2851 else
2852 xfree (packet);
2853 }
2854 }
2855
2856 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2857 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2858 thread. If GEN is set, set the general thread, if not, then set
2859 the step/continue thread. */
2860 void
2861 remote_target::set_thread (ptid_t ptid, int gen)
2862 {
2863 struct remote_state *rs = get_remote_state ();
2864 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2865 char *buf = rs->buf.data ();
2866 char *endbuf = buf + get_remote_packet_size ();
2867
2868 if (state == ptid)
2869 return;
2870
2871 *buf++ = 'H';
2872 *buf++ = gen ? 'g' : 'c';
2873 if (ptid == magic_null_ptid)
2874 xsnprintf (buf, endbuf - buf, "0");
2875 else if (ptid == any_thread_ptid)
2876 xsnprintf (buf, endbuf - buf, "0");
2877 else if (ptid == minus_one_ptid)
2878 xsnprintf (buf, endbuf - buf, "-1");
2879 else
2880 write_ptid (buf, endbuf, ptid);
2881 putpkt (rs->buf);
2882 getpkt (&rs->buf, 0);
2883 if (gen)
2884 rs->general_thread = ptid;
2885 else
2886 rs->continue_thread = ptid;
2887 }
2888
2889 void
2890 remote_target::set_general_thread (ptid_t ptid)
2891 {
2892 set_thread (ptid, 1);
2893 }
2894
2895 void
2896 remote_target::set_continue_thread (ptid_t ptid)
2897 {
2898 set_thread (ptid, 0);
2899 }
2900
2901 /* Change the remote current process. Which thread within the process
2902 ends up selected isn't important, as long as it is the same process
2903 as what INFERIOR_PTID points to.
2904
2905 This comes from that fact that there is no explicit notion of
2906 "selected process" in the protocol. The selected process for
2907 general operations is the process the selected general thread
2908 belongs to. */
2909
2910 void
2911 remote_target::set_general_process ()
2912 {
2913 struct remote_state *rs = get_remote_state ();
2914
2915 /* If the remote can't handle multiple processes, don't bother. */
2916 if (!remote_multi_process_p (rs))
2917 return;
2918
2919 /* We only need to change the remote current thread if it's pointing
2920 at some other process. */
2921 if (rs->general_thread.pid () != inferior_ptid.pid ())
2922 set_general_thread (inferior_ptid);
2923 }
2924
2925 \f
2926 /* Return nonzero if this is the main thread that we made up ourselves
2927 to model non-threaded targets as single-threaded. */
2928
2929 static int
2930 remote_thread_always_alive (ptid_t ptid)
2931 {
2932 if (ptid == magic_null_ptid)
2933 /* The main thread is always alive. */
2934 return 1;
2935
2936 if (ptid.pid () != 0 && ptid.lwp () == 0)
2937 /* The main thread is always alive. This can happen after a
2938 vAttach, if the remote side doesn't support
2939 multi-threading. */
2940 return 1;
2941
2942 return 0;
2943 }
2944
2945 /* Return nonzero if the thread PTID is still alive on the remote
2946 system. */
2947
2948 bool
2949 remote_target::thread_alive (ptid_t ptid)
2950 {
2951 struct remote_state *rs = get_remote_state ();
2952 char *p, *endp;
2953
2954 /* Check if this is a thread that we made up ourselves to model
2955 non-threaded targets as single-threaded. */
2956 if (remote_thread_always_alive (ptid))
2957 return 1;
2958
2959 p = rs->buf.data ();
2960 endp = p + get_remote_packet_size ();
2961
2962 *p++ = 'T';
2963 write_ptid (p, endp, ptid);
2964
2965 putpkt (rs->buf);
2966 getpkt (&rs->buf, 0);
2967 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2968 }
2969
2970 /* Return a pointer to a thread name if we know it and NULL otherwise.
2971 The thread_info object owns the memory for the name. */
2972
2973 const char *
2974 remote_target::thread_name (struct thread_info *info)
2975 {
2976 if (info->priv != NULL)
2977 {
2978 const std::string &name = get_remote_thread_info (info)->name;
2979 return !name.empty () ? name.c_str () : NULL;
2980 }
2981
2982 return NULL;
2983 }
2984
2985 /* About these extended threadlist and threadinfo packets. They are
2986 variable length packets but, the fields within them are often fixed
2987 length. They are redundant enough to send over UDP as is the
2988 remote protocol in general. There is a matching unit test module
2989 in libstub. */
2990
2991 /* WARNING: This threadref data structure comes from the remote O.S.,
2992 libstub protocol encoding, and remote.c. It is not particularly
2993 changable. */
2994
2995 /* Right now, the internal structure is int. We want it to be bigger.
2996 Plan to fix this. */
2997
2998 typedef int gdb_threadref; /* Internal GDB thread reference. */
2999
3000 /* gdb_ext_thread_info is an internal GDB data structure which is
3001 equivalent to the reply of the remote threadinfo packet. */
3002
3003 struct gdb_ext_thread_info
3004 {
3005 threadref threadid; /* External form of thread reference. */
3006 int active; /* Has state interesting to GDB?
3007 regs, stack. */
3008 char display[256]; /* Brief state display, name,
3009 blocked/suspended. */
3010 char shortname[32]; /* To be used to name threads. */
3011 char more_display[256]; /* Long info, statistics, queue depth,
3012 whatever. */
3013 };
3014
3015 /* The volume of remote transfers can be limited by submitting
3016 a mask containing bits specifying the desired information.
3017 Use a union of these values as the 'selection' parameter to
3018 get_thread_info. FIXME: Make these TAG names more thread specific. */
3019
3020 #define TAG_THREADID 1
3021 #define TAG_EXISTS 2
3022 #define TAG_DISPLAY 4
3023 #define TAG_THREADNAME 8
3024 #define TAG_MOREDISPLAY 16
3025
3026 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
3027
3028 static const char *unpack_nibble (const char *buf, int *val);
3029
3030 static const char *unpack_byte (const char *buf, int *value);
3031
3032 static char *pack_int (char *buf, int value);
3033
3034 static const char *unpack_int (const char *buf, int *value);
3035
3036 static const char *unpack_string (const char *src, char *dest, int length);
3037
3038 static char *pack_threadid (char *pkt, threadref *id);
3039
3040 static const char *unpack_threadid (const char *inbuf, threadref *id);
3041
3042 void int_to_threadref (threadref *id, int value);
3043
3044 static int threadref_to_int (threadref *ref);
3045
3046 static void copy_threadref (threadref *dest, threadref *src);
3047
3048 static int threadmatch (threadref *dest, threadref *src);
3049
3050 static char *pack_threadinfo_request (char *pkt, int mode,
3051 threadref *id);
3052
3053 static char *pack_threadlist_request (char *pkt, int startflag,
3054 int threadcount,
3055 threadref *nextthread);
3056
3057 static int remote_newthread_step (threadref *ref, void *context);
3058
3059
3060 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3061 buffer we're allowed to write to. Returns
3062 BUF+CHARACTERS_WRITTEN. */
3063
3064 char *
3065 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
3066 {
3067 int pid, tid;
3068 struct remote_state *rs = get_remote_state ();
3069
3070 if (remote_multi_process_p (rs))
3071 {
3072 pid = ptid.pid ();
3073 if (pid < 0)
3074 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3075 else
3076 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3077 }
3078 tid = ptid.lwp ();
3079 if (tid < 0)
3080 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3081 else
3082 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3083
3084 return buf;
3085 }
3086
3087 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3088 last parsed char. Returns null_ptid if no thread id is found, and
3089 throws an error if the thread id has an invalid format. */
3090
3091 static ptid_t
3092 read_ptid (const char *buf, const char **obuf)
3093 {
3094 const char *p = buf;
3095 const char *pp;
3096 ULONGEST pid = 0, tid = 0;
3097
3098 if (*p == 'p')
3099 {
3100 /* Multi-process ptid. */
3101 pp = unpack_varlen_hex (p + 1, &pid);
3102 if (*pp != '.')
3103 error (_("invalid remote ptid: %s"), p);
3104
3105 p = pp;
3106 pp = unpack_varlen_hex (p + 1, &tid);
3107 if (obuf)
3108 *obuf = pp;
3109 return ptid_t (pid, tid);
3110 }
3111
3112 /* No multi-process. Just a tid. */
3113 pp = unpack_varlen_hex (p, &tid);
3114
3115 /* Return null_ptid when no thread id is found. */
3116 if (p == pp)
3117 {
3118 if (obuf)
3119 *obuf = pp;
3120 return null_ptid;
3121 }
3122
3123 /* Since the stub is not sending a process id, then default to
3124 what's in inferior_ptid, unless it's null at this point. If so,
3125 then since there's no way to know the pid of the reported
3126 threads, use the magic number. */
3127 if (inferior_ptid == null_ptid)
3128 pid = magic_null_ptid.pid ();
3129 else
3130 pid = inferior_ptid.pid ();
3131
3132 if (obuf)
3133 *obuf = pp;
3134 return ptid_t (pid, tid);
3135 }
3136
3137 static int
3138 stubhex (int ch)
3139 {
3140 if (ch >= 'a' && ch <= 'f')
3141 return ch - 'a' + 10;
3142 if (ch >= '0' && ch <= '9')
3143 return ch - '0';
3144 if (ch >= 'A' && ch <= 'F')
3145 return ch - 'A' + 10;
3146 return -1;
3147 }
3148
3149 static int
3150 stub_unpack_int (const char *buff, int fieldlength)
3151 {
3152 int nibble;
3153 int retval = 0;
3154
3155 while (fieldlength)
3156 {
3157 nibble = stubhex (*buff++);
3158 retval |= nibble;
3159 fieldlength--;
3160 if (fieldlength)
3161 retval = retval << 4;
3162 }
3163 return retval;
3164 }
3165
3166 static const char *
3167 unpack_nibble (const char *buf, int *val)
3168 {
3169 *val = fromhex (*buf++);
3170 return buf;
3171 }
3172
3173 static const char *
3174 unpack_byte (const char *buf, int *value)
3175 {
3176 *value = stub_unpack_int (buf, 2);
3177 return buf + 2;
3178 }
3179
3180 static char *
3181 pack_int (char *buf, int value)
3182 {
3183 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3184 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3185 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3186 buf = pack_hex_byte (buf, (value & 0xff));
3187 return buf;
3188 }
3189
3190 static const char *
3191 unpack_int (const char *buf, int *value)
3192 {
3193 *value = stub_unpack_int (buf, 8);
3194 return buf + 8;
3195 }
3196
3197 #if 0 /* Currently unused, uncomment when needed. */
3198 static char *pack_string (char *pkt, char *string);
3199
3200 static char *
3201 pack_string (char *pkt, char *string)
3202 {
3203 char ch;
3204 int len;
3205
3206 len = strlen (string);
3207 if (len > 200)
3208 len = 200; /* Bigger than most GDB packets, junk??? */
3209 pkt = pack_hex_byte (pkt, len);
3210 while (len-- > 0)
3211 {
3212 ch = *string++;
3213 if ((ch == '\0') || (ch == '#'))
3214 ch = '*'; /* Protect encapsulation. */
3215 *pkt++ = ch;
3216 }
3217 return pkt;
3218 }
3219 #endif /* 0 (unused) */
3220
3221 static const char *
3222 unpack_string (const char *src, char *dest, int length)
3223 {
3224 while (length--)
3225 *dest++ = *src++;
3226 *dest = '\0';
3227 return src;
3228 }
3229
3230 static char *
3231 pack_threadid (char *pkt, threadref *id)
3232 {
3233 char *limit;
3234 unsigned char *altid;
3235
3236 altid = (unsigned char *) id;
3237 limit = pkt + BUF_THREAD_ID_SIZE;
3238 while (pkt < limit)
3239 pkt = pack_hex_byte (pkt, *altid++);
3240 return pkt;
3241 }
3242
3243
3244 static const char *
3245 unpack_threadid (const char *inbuf, threadref *id)
3246 {
3247 char *altref;
3248 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
3249 int x, y;
3250
3251 altref = (char *) id;
3252
3253 while (inbuf < limit)
3254 {
3255 x = stubhex (*inbuf++);
3256 y = stubhex (*inbuf++);
3257 *altref++ = (x << 4) | y;
3258 }
3259 return inbuf;
3260 }
3261
3262 /* Externally, threadrefs are 64 bits but internally, they are still
3263 ints. This is due to a mismatch of specifications. We would like
3264 to use 64bit thread references internally. This is an adapter
3265 function. */
3266
3267 void
3268 int_to_threadref (threadref *id, int value)
3269 {
3270 unsigned char *scan;
3271
3272 scan = (unsigned char *) id;
3273 {
3274 int i = 4;
3275 while (i--)
3276 *scan++ = 0;
3277 }
3278 *scan++ = (value >> 24) & 0xff;
3279 *scan++ = (value >> 16) & 0xff;
3280 *scan++ = (value >> 8) & 0xff;
3281 *scan++ = (value & 0xff);
3282 }
3283
3284 static int
3285 threadref_to_int (threadref *ref)
3286 {
3287 int i, value = 0;
3288 unsigned char *scan;
3289
3290 scan = *ref;
3291 scan += 4;
3292 i = 4;
3293 while (i-- > 0)
3294 value = (value << 8) | ((*scan++) & 0xff);
3295 return value;
3296 }
3297
3298 static void
3299 copy_threadref (threadref *dest, threadref *src)
3300 {
3301 int i;
3302 unsigned char *csrc, *cdest;
3303
3304 csrc = (unsigned char *) src;
3305 cdest = (unsigned char *) dest;
3306 i = 8;
3307 while (i--)
3308 *cdest++ = *csrc++;
3309 }
3310
3311 static int
3312 threadmatch (threadref *dest, threadref *src)
3313 {
3314 /* Things are broken right now, so just assume we got a match. */
3315 #if 0
3316 unsigned char *srcp, *destp;
3317 int i, result;
3318 srcp = (char *) src;
3319 destp = (char *) dest;
3320
3321 result = 1;
3322 while (i-- > 0)
3323 result &= (*srcp++ == *destp++) ? 1 : 0;
3324 return result;
3325 #endif
3326 return 1;
3327 }
3328
3329 /*
3330 threadid:1, # always request threadid
3331 context_exists:2,
3332 display:4,
3333 unique_name:8,
3334 more_display:16
3335 */
3336
3337 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3338
3339 static char *
3340 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3341 {
3342 *pkt++ = 'q'; /* Info Query */
3343 *pkt++ = 'P'; /* process or thread info */
3344 pkt = pack_int (pkt, mode); /* mode */
3345 pkt = pack_threadid (pkt, id); /* threadid */
3346 *pkt = '\0'; /* terminate */
3347 return pkt;
3348 }
3349
3350 /* These values tag the fields in a thread info response packet. */
3351 /* Tagging the fields allows us to request specific fields and to
3352 add more fields as time goes by. */
3353
3354 #define TAG_THREADID 1 /* Echo the thread identifier. */
3355 #define TAG_EXISTS 2 /* Is this process defined enough to
3356 fetch registers and its stack? */
3357 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3358 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3359 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3360 the process. */
3361
3362 int
3363 remote_target::remote_unpack_thread_info_response (const char *pkt,
3364 threadref *expectedref,
3365 gdb_ext_thread_info *info)
3366 {
3367 struct remote_state *rs = get_remote_state ();
3368 int mask, length;
3369 int tag;
3370 threadref ref;
3371 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
3372 int retval = 1;
3373
3374 /* info->threadid = 0; FIXME: implement zero_threadref. */
3375 info->active = 0;
3376 info->display[0] = '\0';
3377 info->shortname[0] = '\0';
3378 info->more_display[0] = '\0';
3379
3380 /* Assume the characters indicating the packet type have been
3381 stripped. */
3382 pkt = unpack_int (pkt, &mask); /* arg mask */
3383 pkt = unpack_threadid (pkt, &ref);
3384
3385 if (mask == 0)
3386 warning (_("Incomplete response to threadinfo request."));
3387 if (!threadmatch (&ref, expectedref))
3388 { /* This is an answer to a different request. */
3389 warning (_("ERROR RMT Thread info mismatch."));
3390 return 0;
3391 }
3392 copy_threadref (&info->threadid, &ref);
3393
3394 /* Loop on tagged fields , try to bail if something goes wrong. */
3395
3396 /* Packets are terminated with nulls. */
3397 while ((pkt < limit) && mask && *pkt)
3398 {
3399 pkt = unpack_int (pkt, &tag); /* tag */
3400 pkt = unpack_byte (pkt, &length); /* length */
3401 if (!(tag & mask)) /* Tags out of synch with mask. */
3402 {
3403 warning (_("ERROR RMT: threadinfo tag mismatch."));
3404 retval = 0;
3405 break;
3406 }
3407 if (tag == TAG_THREADID)
3408 {
3409 if (length != 16)
3410 {
3411 warning (_("ERROR RMT: length of threadid is not 16."));
3412 retval = 0;
3413 break;
3414 }
3415 pkt = unpack_threadid (pkt, &ref);
3416 mask = mask & ~TAG_THREADID;
3417 continue;
3418 }
3419 if (tag == TAG_EXISTS)
3420 {
3421 info->active = stub_unpack_int (pkt, length);
3422 pkt += length;
3423 mask = mask & ~(TAG_EXISTS);
3424 if (length > 8)
3425 {
3426 warning (_("ERROR RMT: 'exists' length too long."));
3427 retval = 0;
3428 break;
3429 }
3430 continue;
3431 }
3432 if (tag == TAG_THREADNAME)
3433 {
3434 pkt = unpack_string (pkt, &info->shortname[0], length);
3435 mask = mask & ~TAG_THREADNAME;
3436 continue;
3437 }
3438 if (tag == TAG_DISPLAY)
3439 {
3440 pkt = unpack_string (pkt, &info->display[0], length);
3441 mask = mask & ~TAG_DISPLAY;
3442 continue;
3443 }
3444 if (tag == TAG_MOREDISPLAY)
3445 {
3446 pkt = unpack_string (pkt, &info->more_display[0], length);
3447 mask = mask & ~TAG_MOREDISPLAY;
3448 continue;
3449 }
3450 warning (_("ERROR RMT: unknown thread info tag."));
3451 break; /* Not a tag we know about. */
3452 }
3453 return retval;
3454 }
3455
3456 int
3457 remote_target::remote_get_threadinfo (threadref *threadid,
3458 int fieldset,
3459 gdb_ext_thread_info *info)
3460 {
3461 struct remote_state *rs = get_remote_state ();
3462 int result;
3463
3464 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
3465 putpkt (rs->buf);
3466 getpkt (&rs->buf, 0);
3467
3468 if (rs->buf[0] == '\0')
3469 return 0;
3470
3471 result = remote_unpack_thread_info_response (&rs->buf[2],
3472 threadid, info);
3473 return result;
3474 }
3475
3476 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3477
3478 static char *
3479 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3480 threadref *nextthread)
3481 {
3482 *pkt++ = 'q'; /* info query packet */
3483 *pkt++ = 'L'; /* Process LIST or threadLIST request */
3484 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
3485 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3486 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3487 *pkt = '\0';
3488 return pkt;
3489 }
3490
3491 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3492
3493 int
3494 remote_target::parse_threadlist_response (const char *pkt, int result_limit,
3495 threadref *original_echo,
3496 threadref *resultlist,
3497 int *doneflag)
3498 {
3499 struct remote_state *rs = get_remote_state ();
3500 int count, resultcount, done;
3501
3502 resultcount = 0;
3503 /* Assume the 'q' and 'M chars have been stripped. */
3504 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
3505 /* done parse past here */
3506 pkt = unpack_byte (pkt, &count); /* count field */
3507 pkt = unpack_nibble (pkt, &done);
3508 /* The first threadid is the argument threadid. */
3509 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3510 while ((count-- > 0) && (pkt < limit))
3511 {
3512 pkt = unpack_threadid (pkt, resultlist++);
3513 if (resultcount++ >= result_limit)
3514 break;
3515 }
3516 if (doneflag)
3517 *doneflag = done;
3518 return resultcount;
3519 }
3520
3521 /* Fetch the next batch of threads from the remote. Returns -1 if the
3522 qL packet is not supported, 0 on error and 1 on success. */
3523
3524 int
3525 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3526 int result_limit, int *done, int *result_count,
3527 threadref *threadlist)
3528 {
3529 struct remote_state *rs = get_remote_state ();
3530 int result = 1;
3531
3532 /* Truncate result limit to be smaller than the packet size. */
3533 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3534 >= get_remote_packet_size ())
3535 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3536
3537 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3538 nextthread);
3539 putpkt (rs->buf);
3540 getpkt (&rs->buf, 0);
3541 if (rs->buf[0] == '\0')
3542 {
3543 /* Packet not supported. */
3544 return -1;
3545 }
3546
3547 *result_count =
3548 parse_threadlist_response (&rs->buf[2], result_limit,
3549 &rs->echo_nextthread, threadlist, done);
3550
3551 if (!threadmatch (&rs->echo_nextthread, nextthread))
3552 {
3553 /* FIXME: This is a good reason to drop the packet. */
3554 /* Possibly, there is a duplicate response. */
3555 /* Possibilities :
3556 retransmit immediatly - race conditions
3557 retransmit after timeout - yes
3558 exit
3559 wait for packet, then exit
3560 */
3561 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3562 return 0; /* I choose simply exiting. */
3563 }
3564 if (*result_count <= 0)
3565 {
3566 if (*done != 1)
3567 {
3568 warning (_("RMT ERROR : failed to get remote thread list."));
3569 result = 0;
3570 }
3571 return result; /* break; */
3572 }
3573 if (*result_count > result_limit)
3574 {
3575 *result_count = 0;
3576 warning (_("RMT ERROR: threadlist response longer than requested."));
3577 return 0;
3578 }
3579 return result;
3580 }
3581
3582 /* Fetch the list of remote threads, with the qL packet, and call
3583 STEPFUNCTION for each thread found. Stops iterating and returns 1
3584 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3585 STEPFUNCTION returns false. If the packet is not supported,
3586 returns -1. */
3587
3588 int
3589 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3590 void *context, int looplimit)
3591 {
3592 struct remote_state *rs = get_remote_state ();
3593 int done, i, result_count;
3594 int startflag = 1;
3595 int result = 1;
3596 int loopcount = 0;
3597
3598 done = 0;
3599 while (!done)
3600 {
3601 if (loopcount++ > looplimit)
3602 {
3603 result = 0;
3604 warning (_("Remote fetch threadlist -infinite loop-."));
3605 break;
3606 }
3607 result = remote_get_threadlist (startflag, &rs->nextthread,
3608 MAXTHREADLISTRESULTS,
3609 &done, &result_count,
3610 rs->resultthreadlist);
3611 if (result <= 0)
3612 break;
3613 /* Clear for later iterations. */
3614 startflag = 0;
3615 /* Setup to resume next batch of thread references, set nextthread. */
3616 if (result_count >= 1)
3617 copy_threadref (&rs->nextthread,
3618 &rs->resultthreadlist[result_count - 1]);
3619 i = 0;
3620 while (result_count--)
3621 {
3622 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3623 {
3624 result = 0;
3625 break;
3626 }
3627 }
3628 }
3629 return result;
3630 }
3631
3632 /* A thread found on the remote target. */
3633
3634 struct thread_item
3635 {
3636 explicit thread_item (ptid_t ptid_)
3637 : ptid (ptid_)
3638 {}
3639
3640 thread_item (thread_item &&other) = default;
3641 thread_item &operator= (thread_item &&other) = default;
3642
3643 DISABLE_COPY_AND_ASSIGN (thread_item);
3644
3645 /* The thread's PTID. */
3646 ptid_t ptid;
3647
3648 /* The thread's extra info. */
3649 std::string extra;
3650
3651 /* The thread's name. */
3652 std::string name;
3653
3654 /* The core the thread was running on. -1 if not known. */
3655 int core = -1;
3656
3657 /* The thread handle associated with the thread. */
3658 gdb::byte_vector thread_handle;
3659 };
3660
3661 /* Context passed around to the various methods listing remote
3662 threads. As new threads are found, they're added to the ITEMS
3663 vector. */
3664
3665 struct threads_listing_context
3666 {
3667 /* Return true if this object contains an entry for a thread with ptid
3668 PTID. */
3669
3670 bool contains_thread (ptid_t ptid) const
3671 {
3672 auto match_ptid = [&] (const thread_item &item)
3673 {
3674 return item.ptid == ptid;
3675 };
3676
3677 auto it = std::find_if (this->items.begin (),
3678 this->items.end (),
3679 match_ptid);
3680
3681 return it != this->items.end ();
3682 }
3683
3684 /* Remove the thread with ptid PTID. */
3685
3686 void remove_thread (ptid_t ptid)
3687 {
3688 auto match_ptid = [&] (const thread_item &item)
3689 {
3690 return item.ptid == ptid;
3691 };
3692
3693 auto it = std::remove_if (this->items.begin (),
3694 this->items.end (),
3695 match_ptid);
3696
3697 if (it != this->items.end ())
3698 this->items.erase (it);
3699 }
3700
3701 /* The threads found on the remote target. */
3702 std::vector<thread_item> items;
3703 };
3704
3705 static int
3706 remote_newthread_step (threadref *ref, void *data)
3707 {
3708 struct threads_listing_context *context
3709 = (struct threads_listing_context *) data;
3710 int pid = inferior_ptid.pid ();
3711 int lwp = threadref_to_int (ref);
3712 ptid_t ptid (pid, lwp);
3713
3714 context->items.emplace_back (ptid);
3715
3716 return 1; /* continue iterator */
3717 }
3718
3719 #define CRAZY_MAX_THREADS 1000
3720
3721 ptid_t
3722 remote_target::remote_current_thread (ptid_t oldpid)
3723 {
3724 struct remote_state *rs = get_remote_state ();
3725
3726 putpkt ("qC");
3727 getpkt (&rs->buf, 0);
3728 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3729 {
3730 const char *obuf;
3731 ptid_t result;
3732
3733 result = read_ptid (&rs->buf[2], &obuf);
3734 if (*obuf != '\0')
3735 remote_debug_printf ("warning: garbage in qC reply");
3736
3737 return result;
3738 }
3739 else
3740 return oldpid;
3741 }
3742
3743 /* List remote threads using the deprecated qL packet. */
3744
3745 int
3746 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3747 {
3748 if (remote_threadlist_iterator (remote_newthread_step, context,
3749 CRAZY_MAX_THREADS) >= 0)
3750 return 1;
3751
3752 return 0;
3753 }
3754
3755 #if defined(HAVE_LIBEXPAT)
3756
3757 static void
3758 start_thread (struct gdb_xml_parser *parser,
3759 const struct gdb_xml_element *element,
3760 void *user_data,
3761 std::vector<gdb_xml_value> &attributes)
3762 {
3763 struct threads_listing_context *data
3764 = (struct threads_listing_context *) user_data;
3765 struct gdb_xml_value *attr;
3766
3767 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3768 ptid_t ptid = read_ptid (id, NULL);
3769
3770 data->items.emplace_back (ptid);
3771 thread_item &item = data->items.back ();
3772
3773 attr = xml_find_attribute (attributes, "core");
3774 if (attr != NULL)
3775 item.core = *(ULONGEST *) attr->value.get ();
3776
3777 attr = xml_find_attribute (attributes, "name");
3778 if (attr != NULL)
3779 item.name = (const char *) attr->value.get ();
3780
3781 attr = xml_find_attribute (attributes, "handle");
3782 if (attr != NULL)
3783 item.thread_handle = hex2bin ((const char *) attr->value.get ());
3784 }
3785
3786 static void
3787 end_thread (struct gdb_xml_parser *parser,
3788 const struct gdb_xml_element *element,
3789 void *user_data, const char *body_text)
3790 {
3791 struct threads_listing_context *data
3792 = (struct threads_listing_context *) user_data;
3793
3794 if (body_text != NULL && *body_text != '\0')
3795 data->items.back ().extra = body_text;
3796 }
3797
3798 const struct gdb_xml_attribute thread_attributes[] = {
3799 { "id", GDB_XML_AF_NONE, NULL, NULL },
3800 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3801 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3802 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3803 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3804 };
3805
3806 const struct gdb_xml_element thread_children[] = {
3807 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3808 };
3809
3810 const struct gdb_xml_element threads_children[] = {
3811 { "thread", thread_attributes, thread_children,
3812 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3813 start_thread, end_thread },
3814 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3815 };
3816
3817 const struct gdb_xml_element threads_elements[] = {
3818 { "threads", NULL, threads_children,
3819 GDB_XML_EF_NONE, NULL, NULL },
3820 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3821 };
3822
3823 #endif
3824
3825 /* List remote threads using qXfer:threads:read. */
3826
3827 int
3828 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3829 {
3830 #if defined(HAVE_LIBEXPAT)
3831 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3832 {
3833 gdb::optional<gdb::char_vector> xml
3834 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3835
3836 if (xml && (*xml)[0] != '\0')
3837 {
3838 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3839 threads_elements, xml->data (), context);
3840 }
3841
3842 return 1;
3843 }
3844 #endif
3845
3846 return 0;
3847 }
3848
3849 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3850
3851 int
3852 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3853 {
3854 struct remote_state *rs = get_remote_state ();
3855
3856 if (rs->use_threadinfo_query)
3857 {
3858 const char *bufp;
3859
3860 putpkt ("qfThreadInfo");
3861 getpkt (&rs->buf, 0);
3862 bufp = rs->buf.data ();
3863 if (bufp[0] != '\0') /* q packet recognized */
3864 {
3865 while (*bufp++ == 'm') /* reply contains one or more TID */
3866 {
3867 do
3868 {
3869 ptid_t ptid = read_ptid (bufp, &bufp);
3870 context->items.emplace_back (ptid);
3871 }
3872 while (*bufp++ == ','); /* comma-separated list */
3873 putpkt ("qsThreadInfo");
3874 getpkt (&rs->buf, 0);
3875 bufp = rs->buf.data ();
3876 }
3877 return 1;
3878 }
3879 else
3880 {
3881 /* Packet not recognized. */
3882 rs->use_threadinfo_query = 0;
3883 }
3884 }
3885
3886 return 0;
3887 }
3888
3889 /* Return true if INF only has one non-exited thread. */
3890
3891 static bool
3892 has_single_non_exited_thread (inferior *inf)
3893 {
3894 int count = 0;
3895 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3896 if (++count > 1)
3897 break;
3898 return count == 1;
3899 }
3900
3901 /* Implement the to_update_thread_list function for the remote
3902 targets. */
3903
3904 void
3905 remote_target::update_thread_list ()
3906 {
3907 struct threads_listing_context context;
3908 int got_list = 0;
3909
3910 /* We have a few different mechanisms to fetch the thread list. Try
3911 them all, starting with the most preferred one first, falling
3912 back to older methods. */
3913 if (remote_get_threads_with_qxfer (&context)
3914 || remote_get_threads_with_qthreadinfo (&context)
3915 || remote_get_threads_with_ql (&context))
3916 {
3917 got_list = 1;
3918
3919 if (context.items.empty ()
3920 && remote_thread_always_alive (inferior_ptid))
3921 {
3922 /* Some targets don't really support threads, but still
3923 reply an (empty) thread list in response to the thread
3924 listing packets, instead of replying "packet not
3925 supported". Exit early so we don't delete the main
3926 thread. */
3927 return;
3928 }
3929
3930 /* CONTEXT now holds the current thread list on the remote
3931 target end. Delete GDB-side threads no longer found on the
3932 target. */
3933 for (thread_info *tp : all_threads_safe ())
3934 {
3935 if (tp->inf->process_target () != this)
3936 continue;
3937
3938 if (!context.contains_thread (tp->ptid))
3939 {
3940 /* Do not remove the thread if it is the last thread in
3941 the inferior. This situation happens when we have a
3942 pending exit process status to process. Otherwise we
3943 may end up with a seemingly live inferior (i.e. pid
3944 != 0) that has no threads. */
3945 if (has_single_non_exited_thread (tp->inf))
3946 continue;
3947
3948 /* Not found. */
3949 delete_thread (tp);
3950 }
3951 }
3952
3953 /* Remove any unreported fork child threads from CONTEXT so
3954 that we don't interfere with follow fork, which is where
3955 creation of such threads is handled. */
3956 remove_new_fork_children (&context);
3957
3958 /* And now add threads we don't know about yet to our list. */
3959 for (thread_item &item : context.items)
3960 {
3961 if (item.ptid != null_ptid)
3962 {
3963 /* In non-stop mode, we assume new found threads are
3964 executing until proven otherwise with a stop reply.
3965 In all-stop, we can only get here if all threads are
3966 stopped. */
3967 bool executing = target_is_non_stop_p ();
3968
3969 remote_notice_new_inferior (item.ptid, executing);
3970
3971 thread_info *tp = find_thread_ptid (this, item.ptid);
3972 remote_thread_info *info = get_remote_thread_info (tp);
3973 info->core = item.core;
3974 info->extra = std::move (item.extra);
3975 info->name = std::move (item.name);
3976 info->thread_handle = std::move (item.thread_handle);
3977 }
3978 }
3979 }
3980
3981 if (!got_list)
3982 {
3983 /* If no thread listing method is supported, then query whether
3984 each known thread is alive, one by one, with the T packet.
3985 If the target doesn't support threads at all, then this is a
3986 no-op. See remote_thread_alive. */
3987 prune_threads ();
3988 }
3989 }
3990
3991 /*
3992 * Collect a descriptive string about the given thread.
3993 * The target may say anything it wants to about the thread
3994 * (typically info about its blocked / runnable state, name, etc.).
3995 * This string will appear in the info threads display.
3996 *
3997 * Optional: targets are not required to implement this function.
3998 */
3999
4000 const char *
4001 remote_target::extra_thread_info (thread_info *tp)
4002 {
4003 struct remote_state *rs = get_remote_state ();
4004 int set;
4005 threadref id;
4006 struct gdb_ext_thread_info threadinfo;
4007
4008 if (rs->remote_desc == 0) /* paranoia */
4009 internal_error (__FILE__, __LINE__,
4010 _("remote_threads_extra_info"));
4011
4012 if (tp->ptid == magic_null_ptid
4013 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
4014 /* This is the main thread which was added by GDB. The remote
4015 server doesn't know about it. */
4016 return NULL;
4017
4018 std::string &extra = get_remote_thread_info (tp)->extra;
4019
4020 /* If already have cached info, use it. */
4021 if (!extra.empty ())
4022 return extra.c_str ();
4023
4024 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
4025 {
4026 /* If we're using qXfer:threads:read, then the extra info is
4027 included in the XML. So if we didn't have anything cached,
4028 it's because there's really no extra info. */
4029 return NULL;
4030 }
4031
4032 if (rs->use_threadextra_query)
4033 {
4034 char *b = rs->buf.data ();
4035 char *endb = b + get_remote_packet_size ();
4036
4037 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4038 b += strlen (b);
4039 write_ptid (b, endb, tp->ptid);
4040
4041 putpkt (rs->buf);
4042 getpkt (&rs->buf, 0);
4043 if (rs->buf[0] != 0)
4044 {
4045 extra.resize (strlen (rs->buf.data ()) / 2);
4046 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
4047 return extra.c_str ();
4048 }
4049 }
4050
4051 /* If the above query fails, fall back to the old method. */
4052 rs->use_threadextra_query = 0;
4053 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4054 | TAG_MOREDISPLAY | TAG_DISPLAY;
4055 int_to_threadref (&id, tp->ptid.lwp ());
4056 if (remote_get_threadinfo (&id, set, &threadinfo))
4057 if (threadinfo.active)
4058 {
4059 if (*threadinfo.shortname)
4060 string_appendf (extra, " Name: %s", threadinfo.shortname);
4061 if (*threadinfo.display)
4062 {
4063 if (!extra.empty ())
4064 extra += ',';
4065 string_appendf (extra, " State: %s", threadinfo.display);
4066 }
4067 if (*threadinfo.more_display)
4068 {
4069 if (!extra.empty ())
4070 extra += ',';
4071 string_appendf (extra, " Priority: %s", threadinfo.more_display);
4072 }
4073 return extra.c_str ();
4074 }
4075 return NULL;
4076 }
4077 \f
4078
4079 bool
4080 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4081 struct static_tracepoint_marker *marker)
4082 {
4083 struct remote_state *rs = get_remote_state ();
4084 char *p = rs->buf.data ();
4085
4086 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
4087 p += strlen (p);
4088 p += hexnumstr (p, addr);
4089 putpkt (rs->buf);
4090 getpkt (&rs->buf, 0);
4091 p = rs->buf.data ();
4092
4093 if (*p == 'E')
4094 error (_("Remote failure reply: %s"), p);
4095
4096 if (*p++ == 'm')
4097 {
4098 parse_static_tracepoint_marker_definition (p, NULL, marker);
4099 return true;
4100 }
4101
4102 return false;
4103 }
4104
4105 std::vector<static_tracepoint_marker>
4106 remote_target::static_tracepoint_markers_by_strid (const char *strid)
4107 {
4108 struct remote_state *rs = get_remote_state ();
4109 std::vector<static_tracepoint_marker> markers;
4110 const char *p;
4111 static_tracepoint_marker marker;
4112
4113 /* Ask for a first packet of static tracepoint marker
4114 definition. */
4115 putpkt ("qTfSTM");
4116 getpkt (&rs->buf, 0);
4117 p = rs->buf.data ();
4118 if (*p == 'E')
4119 error (_("Remote failure reply: %s"), p);
4120
4121 while (*p++ == 'm')
4122 {
4123 do
4124 {
4125 parse_static_tracepoint_marker_definition (p, &p, &marker);
4126
4127 if (strid == NULL || marker.str_id == strid)
4128 markers.push_back (std::move (marker));
4129 }
4130 while (*p++ == ','); /* comma-separated list */
4131 /* Ask for another packet of static tracepoint definition. */
4132 putpkt ("qTsSTM");
4133 getpkt (&rs->buf, 0);
4134 p = rs->buf.data ();
4135 }
4136
4137 return markers;
4138 }
4139
4140 \f
4141 /* Implement the to_get_ada_task_ptid function for the remote targets. */
4142
4143 ptid_t
4144 remote_target::get_ada_task_ptid (long lwp, ULONGEST thread)
4145 {
4146 return ptid_t (inferior_ptid.pid (), lwp);
4147 }
4148 \f
4149
4150 /* Restart the remote side; this is an extended protocol operation. */
4151
4152 void
4153 remote_target::extended_remote_restart ()
4154 {
4155 struct remote_state *rs = get_remote_state ();
4156
4157 /* Send the restart command; for reasons I don't understand the
4158 remote side really expects a number after the "R". */
4159 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
4160 putpkt (rs->buf);
4161
4162 remote_fileio_reset ();
4163 }
4164 \f
4165 /* Clean up connection to a remote debugger. */
4166
4167 void
4168 remote_target::close ()
4169 {
4170 /* Make sure we leave stdin registered in the event loop. */
4171 terminal_ours ();
4172
4173 trace_reset_local_state ();
4174
4175 delete this;
4176 }
4177
4178 remote_target::~remote_target ()
4179 {
4180 struct remote_state *rs = get_remote_state ();
4181
4182 /* Check for NULL because we may get here with a partially
4183 constructed target/connection. */
4184 if (rs->remote_desc == nullptr)
4185 return;
4186
4187 serial_close (rs->remote_desc);
4188
4189 /* We are destroying the remote target, so we should discard
4190 everything of this target. */
4191 discard_pending_stop_replies_in_queue ();
4192
4193 if (rs->remote_async_inferior_event_token)
4194 delete_async_event_handler (&rs->remote_async_inferior_event_token);
4195
4196 delete rs->notif_state;
4197 }
4198
4199 /* Query the remote side for the text, data and bss offsets. */
4200
4201 void
4202 remote_target::get_offsets ()
4203 {
4204 struct remote_state *rs = get_remote_state ();
4205 char *buf;
4206 char *ptr;
4207 int lose, num_segments = 0, do_sections, do_segments;
4208 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4209
4210 if (current_program_space->symfile_object_file == NULL)
4211 return;
4212
4213 putpkt ("qOffsets");
4214 getpkt (&rs->buf, 0);
4215 buf = rs->buf.data ();
4216
4217 if (buf[0] == '\000')
4218 return; /* Return silently. Stub doesn't support
4219 this command. */
4220 if (buf[0] == 'E')
4221 {
4222 warning (_("Remote failure reply: %s"), buf);
4223 return;
4224 }
4225
4226 /* Pick up each field in turn. This used to be done with scanf, but
4227 scanf will make trouble if CORE_ADDR size doesn't match
4228 conversion directives correctly. The following code will work
4229 with any size of CORE_ADDR. */
4230 text_addr = data_addr = bss_addr = 0;
4231 ptr = buf;
4232 lose = 0;
4233
4234 if (startswith (ptr, "Text="))
4235 {
4236 ptr += 5;
4237 /* Don't use strtol, could lose on big values. */
4238 while (*ptr && *ptr != ';')
4239 text_addr = (text_addr << 4) + fromhex (*ptr++);
4240
4241 if (startswith (ptr, ";Data="))
4242 {
4243 ptr += 6;
4244 while (*ptr && *ptr != ';')
4245 data_addr = (data_addr << 4) + fromhex (*ptr++);
4246 }
4247 else
4248 lose = 1;
4249
4250 if (!lose && startswith (ptr, ";Bss="))
4251 {
4252 ptr += 5;
4253 while (*ptr && *ptr != ';')
4254 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4255
4256 if (bss_addr != data_addr)
4257 warning (_("Target reported unsupported offsets: %s"), buf);
4258 }
4259 else
4260 lose = 1;
4261 }
4262 else if (startswith (ptr, "TextSeg="))
4263 {
4264 ptr += 8;
4265 /* Don't use strtol, could lose on big values. */
4266 while (*ptr && *ptr != ';')
4267 text_addr = (text_addr << 4) + fromhex (*ptr++);
4268 num_segments = 1;
4269
4270 if (startswith (ptr, ";DataSeg="))
4271 {
4272 ptr += 9;
4273 while (*ptr && *ptr != ';')
4274 data_addr = (data_addr << 4) + fromhex (*ptr++);
4275 num_segments++;
4276 }
4277 }
4278 else
4279 lose = 1;
4280
4281 if (lose)
4282 error (_("Malformed response to offset query, %s"), buf);
4283 else if (*ptr != '\0')
4284 warning (_("Target reported unsupported offsets: %s"), buf);
4285
4286 objfile *objf = current_program_space->symfile_object_file;
4287 section_offsets offs = objf->section_offsets;
4288
4289 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
4290 do_segments = (data != NULL);
4291 do_sections = num_segments == 0;
4292
4293 if (num_segments > 0)
4294 {
4295 segments[0] = text_addr;
4296 segments[1] = data_addr;
4297 }
4298 /* If we have two segments, we can still try to relocate everything
4299 by assuming that the .text and .data offsets apply to the whole
4300 text and data segments. Convert the offsets given in the packet
4301 to base addresses for symfile_map_offsets_to_segments. */
4302 else if (data != nullptr && data->segments.size () == 2)
4303 {
4304 segments[0] = data->segments[0].base + text_addr;
4305 segments[1] = data->segments[1].base + data_addr;
4306 num_segments = 2;
4307 }
4308 /* If the object file has only one segment, assume that it is text
4309 rather than data; main programs with no writable data are rare,
4310 but programs with no code are useless. Of course the code might
4311 have ended up in the data segment... to detect that we would need
4312 the permissions here. */
4313 else if (data && data->segments.size () == 1)
4314 {
4315 segments[0] = data->segments[0].base + text_addr;
4316 num_segments = 1;
4317 }
4318 /* There's no way to relocate by segment. */
4319 else
4320 do_segments = 0;
4321
4322 if (do_segments)
4323 {
4324 int ret = symfile_map_offsets_to_segments (objf->obfd,
4325 data.get (), offs,
4326 num_segments, segments);
4327
4328 if (ret == 0 && !do_sections)
4329 error (_("Can not handle qOffsets TextSeg "
4330 "response with this symbol file"));
4331
4332 if (ret > 0)
4333 do_sections = 0;
4334 }
4335
4336 if (do_sections)
4337 {
4338 offs[SECT_OFF_TEXT (objf)] = text_addr;
4339
4340 /* This is a temporary kludge to force data and bss to use the
4341 same offsets because that's what nlmconv does now. The real
4342 solution requires changes to the stub and remote.c that I
4343 don't have time to do right now. */
4344
4345 offs[SECT_OFF_DATA (objf)] = data_addr;
4346 offs[SECT_OFF_BSS (objf)] = data_addr;
4347 }
4348
4349 objfile_relocate (objf, offs);
4350 }
4351
4352 /* Send interrupt_sequence to remote target. */
4353
4354 void
4355 remote_target::send_interrupt_sequence ()
4356 {
4357 struct remote_state *rs = get_remote_state ();
4358
4359 if (interrupt_sequence_mode == interrupt_sequence_control_c)
4360 remote_serial_write ("\x03", 1);
4361 else if (interrupt_sequence_mode == interrupt_sequence_break)
4362 serial_send_break (rs->remote_desc);
4363 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4364 {
4365 serial_send_break (rs->remote_desc);
4366 remote_serial_write ("g", 1);
4367 }
4368 else
4369 internal_error (__FILE__, __LINE__,
4370 _("Invalid value for interrupt_sequence_mode: %s."),
4371 interrupt_sequence_mode);
4372 }
4373
4374
4375 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4376 and extract the PTID. Returns NULL_PTID if not found. */
4377
4378 static ptid_t
4379 stop_reply_extract_thread (const char *stop_reply)
4380 {
4381 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4382 {
4383 const char *p;
4384
4385 /* Txx r:val ; r:val (...) */
4386 p = &stop_reply[3];
4387
4388 /* Look for "register" named "thread". */
4389 while (*p != '\0')
4390 {
4391 const char *p1;
4392
4393 p1 = strchr (p, ':');
4394 if (p1 == NULL)
4395 return null_ptid;
4396
4397 if (strncmp (p, "thread", p1 - p) == 0)
4398 return read_ptid (++p1, &p);
4399
4400 p1 = strchr (p, ';');
4401 if (p1 == NULL)
4402 return null_ptid;
4403 p1++;
4404
4405 p = p1;
4406 }
4407 }
4408
4409 return null_ptid;
4410 }
4411
4412 /* Determine the remote side's current thread. If we have a stop
4413 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4414 "thread" register we can extract the current thread from. If not,
4415 ask the remote which is the current thread with qC. The former
4416 method avoids a roundtrip. */
4417
4418 ptid_t
4419 remote_target::get_current_thread (const char *wait_status)
4420 {
4421 ptid_t ptid = null_ptid;
4422
4423 /* Note we don't use remote_parse_stop_reply as that makes use of
4424 the target architecture, which we haven't yet fully determined at
4425 this point. */
4426 if (wait_status != NULL)
4427 ptid = stop_reply_extract_thread (wait_status);
4428 if (ptid == null_ptid)
4429 ptid = remote_current_thread (inferior_ptid);
4430
4431 return ptid;
4432 }
4433
4434 /* Query the remote target for which is the current thread/process,
4435 add it to our tables, and update INFERIOR_PTID. The caller is
4436 responsible for setting the state such that the remote end is ready
4437 to return the current thread.
4438
4439 This function is called after handling the '?' or 'vRun' packets,
4440 whose response is a stop reply from which we can also try
4441 extracting the thread. If the target doesn't support the explicit
4442 qC query, we infer the current thread from that stop reply, passed
4443 in in WAIT_STATUS, which may be NULL.
4444
4445 The function returns pointer to the main thread of the inferior. */
4446
4447 thread_info *
4448 remote_target::add_current_inferior_and_thread (const char *wait_status)
4449 {
4450 struct remote_state *rs = get_remote_state ();
4451 bool fake_pid_p = false;
4452
4453 switch_to_no_thread ();
4454
4455 /* Now, if we have thread information, update the current thread's
4456 ptid. */
4457 ptid_t curr_ptid = get_current_thread (wait_status);
4458
4459 if (curr_ptid != null_ptid)
4460 {
4461 if (!remote_multi_process_p (rs))
4462 fake_pid_p = true;
4463 }
4464 else
4465 {
4466 /* Without this, some commands which require an active target
4467 (such as kill) won't work. This variable serves (at least)
4468 double duty as both the pid of the target process (if it has
4469 such), and as a flag indicating that a target is active. */
4470 curr_ptid = magic_null_ptid;
4471 fake_pid_p = true;
4472 }
4473
4474 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4475
4476 /* Add the main thread and switch to it. Don't try reading
4477 registers yet, since we haven't fetched the target description
4478 yet. */
4479 thread_info *tp = add_thread_silent (this, curr_ptid);
4480 switch_to_thread_no_regs (tp);
4481
4482 return tp;
4483 }
4484
4485 /* Print info about a thread that was found already stopped on
4486 connection. */
4487
4488 void
4489 remote_target::print_one_stopped_thread (thread_info *thread)
4490 {
4491 target_waitstatus ws;
4492
4493 /* If there is a pending waitstatus, use it. If there isn't it's because
4494 the thread's stop was reported with TARGET_WAITKIND_STOPPED / GDB_SIGNAL_0
4495 and process_initial_stop_replies decided it wasn't interesting to save
4496 and report to the core. */
4497 if (thread->has_pending_waitstatus ())
4498 {
4499 ws = thread->pending_waitstatus ();
4500 thread->clear_pending_waitstatus ();
4501 }
4502 else
4503 {
4504 ws.set_stopped (GDB_SIGNAL_0);
4505 }
4506
4507 switch_to_thread (thread);
4508 thread->set_stop_pc (get_frame_pc (get_current_frame ()));
4509 set_current_sal_from_frame (get_current_frame ());
4510
4511 /* For "info program". */
4512 set_last_target_status (this, thread->ptid, ws);
4513
4514 if (ws.kind () == TARGET_WAITKIND_STOPPED)
4515 {
4516 enum gdb_signal sig = ws.sig ();
4517
4518 if (signal_print_state (sig))
4519 gdb::observers::signal_received.notify (sig);
4520 }
4521 gdb::observers::normal_stop.notify (NULL, 1);
4522 }
4523
4524 /* Process all initial stop replies the remote side sent in response
4525 to the ? packet. These indicate threads that were already stopped
4526 on initial connection. We mark these threads as stopped and print
4527 their current frame before giving the user the prompt. */
4528
4529 void
4530 remote_target::process_initial_stop_replies (int from_tty)
4531 {
4532 int pending_stop_replies = stop_reply_queue_length ();
4533 struct thread_info *selected = NULL;
4534 struct thread_info *lowest_stopped = NULL;
4535 struct thread_info *first = NULL;
4536
4537 /* This is only used when the target is non-stop. */
4538 gdb_assert (target_is_non_stop_p ());
4539
4540 /* Consume the initial pending events. */
4541 while (pending_stop_replies-- > 0)
4542 {
4543 ptid_t waiton_ptid = minus_one_ptid;
4544 ptid_t event_ptid;
4545 struct target_waitstatus ws;
4546 int ignore_event = 0;
4547
4548 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4549 if (remote_debug)
4550 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4551
4552 switch (ws.kind ())
4553 {
4554 case TARGET_WAITKIND_IGNORE:
4555 case TARGET_WAITKIND_NO_RESUMED:
4556 case TARGET_WAITKIND_SIGNALLED:
4557 case TARGET_WAITKIND_EXITED:
4558 /* We shouldn't see these, but if we do, just ignore. */
4559 remote_debug_printf ("event ignored");
4560 ignore_event = 1;
4561 break;
4562
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.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.set_stopped (sig);
4582 }
4583
4584 if (ws.kind () != TARGET_WAITKIND_STOPPED
4585 || ws.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.set_stopped (GDB_SIGNAL_0);
6933 sr->arch = tp->inf->gdbarch;
6934 sr->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6935 sr->watch_data_address = 0;
6936 sr->core = 0;
6937 this->push_stop_reply (sr);
6938
6939 /* Pretend that this thread was actually resumed on the
6940 remote target, then stopped. If we leave it in the
6941 RESUMED_PENDING_VCONT state and the commit_resumed
6942 method is called while the stop reply is still in the
6943 queue, we'll end up reporting a stop event to the core
6944 for that thread while it is running on the remote
6945 target... that would be bad. */
6946 remote_thr->set_resumed ();
6947 }
6948 }
6949
6950 /* FIXME: This supports_vCont_probed check is a workaround until
6951 packet_support is per-connection. */
6952 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6953 || !rs->supports_vCont_probed)
6954 remote_vcont_probe ();
6955
6956 if (!rs->supports_vCont.t)
6957 error (_("Remote server does not support stopping threads"));
6958
6959 if (ptid == minus_one_ptid
6960 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6961 p += xsnprintf (p, endp - p, "vCont;t");
6962 else
6963 {
6964 ptid_t nptid;
6965
6966 p += xsnprintf (p, endp - p, "vCont;t:");
6967
6968 if (ptid.is_pid ())
6969 /* All (-1) threads of process. */
6970 nptid = ptid_t (ptid.pid (), -1);
6971 else
6972 {
6973 /* Small optimization: if we already have a stop reply for
6974 this thread, no use in telling the stub we want this
6975 stopped. */
6976 if (peek_stop_reply (ptid))
6977 return;
6978
6979 nptid = ptid;
6980 }
6981
6982 write_ptid (p, endp, nptid);
6983 }
6984
6985 /* In non-stop, we get an immediate OK reply. The stop reply will
6986 come in asynchronously by notification. */
6987 putpkt (rs->buf);
6988 getpkt (&rs->buf, 0);
6989 if (strcmp (rs->buf.data (), "OK") != 0)
6990 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
6991 rs->buf.data ());
6992 }
6993
6994 /* All-stop version of target_interrupt. Sends a break or a ^C to
6995 interrupt the remote target. It is undefined which thread of which
6996 process reports the interrupt. */
6997
6998 void
6999 remote_target::remote_interrupt_as ()
7000 {
7001 struct remote_state *rs = get_remote_state ();
7002
7003 rs->ctrlc_pending_p = 1;
7004
7005 /* If the inferior is stopped already, but the core didn't know
7006 about it yet, just ignore the request. The cached wait status
7007 will be collected in remote_wait. */
7008 if (rs->cached_wait_status)
7009 return;
7010
7011 /* Send interrupt_sequence to remote target. */
7012 send_interrupt_sequence ();
7013 }
7014
7015 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
7016 the remote target. It is undefined which thread of which process
7017 reports the interrupt. Throws an error if the packet is not
7018 supported by the server. */
7019
7020 void
7021 remote_target::remote_interrupt_ns ()
7022 {
7023 struct remote_state *rs = get_remote_state ();
7024 char *p = rs->buf.data ();
7025 char *endp = p + get_remote_packet_size ();
7026
7027 xsnprintf (p, endp - p, "vCtrlC");
7028
7029 /* In non-stop, we get an immediate OK reply. The stop reply will
7030 come in asynchronously by notification. */
7031 putpkt (rs->buf);
7032 getpkt (&rs->buf, 0);
7033
7034 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
7035 {
7036 case PACKET_OK:
7037 break;
7038 case PACKET_UNKNOWN:
7039 error (_("No support for interrupting the remote target."));
7040 case PACKET_ERROR:
7041 error (_("Interrupting target failed: %s"), rs->buf.data ());
7042 }
7043 }
7044
7045 /* Implement the to_stop function for the remote targets. */
7046
7047 void
7048 remote_target::stop (ptid_t ptid)
7049 {
7050 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7051
7052 if (target_is_non_stop_p ())
7053 remote_stop_ns (ptid);
7054 else
7055 {
7056 /* We don't currently have a way to transparently pause the
7057 remote target in all-stop mode. Interrupt it instead. */
7058 remote_interrupt_as ();
7059 }
7060 }
7061
7062 /* Implement the to_interrupt function for the remote targets. */
7063
7064 void
7065 remote_target::interrupt ()
7066 {
7067 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7068
7069 if (target_is_non_stop_p ())
7070 remote_interrupt_ns ();
7071 else
7072 remote_interrupt_as ();
7073 }
7074
7075 /* Implement the to_pass_ctrlc function for the remote targets. */
7076
7077 void
7078 remote_target::pass_ctrlc ()
7079 {
7080 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7081
7082 struct remote_state *rs = get_remote_state ();
7083
7084 /* If we're starting up, we're not fully synced yet. Quit
7085 immediately. */
7086 if (rs->starting_up)
7087 quit ();
7088 /* If ^C has already been sent once, offer to disconnect. */
7089 else if (rs->ctrlc_pending_p)
7090 interrupt_query ();
7091 else
7092 target_interrupt ();
7093 }
7094
7095 /* Ask the user what to do when an interrupt is received. */
7096
7097 void
7098 remote_target::interrupt_query ()
7099 {
7100 struct remote_state *rs = get_remote_state ();
7101
7102 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
7103 {
7104 if (query (_("The target is not responding to interrupt requests.\n"
7105 "Stop debugging it? ")))
7106 {
7107 remote_unpush_target (this);
7108 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
7109 }
7110 }
7111 else
7112 {
7113 if (query (_("Interrupted while waiting for the program.\n"
7114 "Give up waiting? ")))
7115 quit ();
7116 }
7117 }
7118
7119 /* Enable/disable target terminal ownership. Most targets can use
7120 terminal groups to control terminal ownership. Remote targets are
7121 different in that explicit transfer of ownership to/from GDB/target
7122 is required. */
7123
7124 void
7125 remote_target::terminal_inferior ()
7126 {
7127 /* NOTE: At this point we could also register our selves as the
7128 recipient of all input. Any characters typed could then be
7129 passed on down to the target. */
7130 }
7131
7132 void
7133 remote_target::terminal_ours ()
7134 {
7135 }
7136
7137 static void
7138 remote_console_output (const char *msg)
7139 {
7140 const char *p;
7141
7142 for (p = msg; p[0] && p[1]; p += 2)
7143 {
7144 char tb[2];
7145 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
7146
7147 tb[0] = c;
7148 tb[1] = 0;
7149 gdb_stdtarg->puts (tb);
7150 }
7151 gdb_stdtarg->flush ();
7152 }
7153
7154 /* Return the length of the stop reply queue. */
7155
7156 int
7157 remote_target::stop_reply_queue_length ()
7158 {
7159 remote_state *rs = get_remote_state ();
7160 return rs->stop_reply_queue.size ();
7161 }
7162
7163 static void
7164 remote_notif_stop_parse (remote_target *remote,
7165 struct notif_client *self, const char *buf,
7166 struct notif_event *event)
7167 {
7168 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
7169 }
7170
7171 static void
7172 remote_notif_stop_ack (remote_target *remote,
7173 struct notif_client *self, const char *buf,
7174 struct notif_event *event)
7175 {
7176 struct stop_reply *stop_reply = (struct stop_reply *) event;
7177
7178 /* acknowledge */
7179 putpkt (remote, self->ack_command);
7180
7181 /* Kind can be TARGET_WAITKIND_IGNORE if we have meanwhile discarded
7182 the notification. It was left in the queue because we need to
7183 acknowledge it and pull the rest of the notifications out. */
7184 if (stop_reply->ws.kind () != TARGET_WAITKIND_IGNORE)
7185 remote->push_stop_reply (stop_reply);
7186 }
7187
7188 static int
7189 remote_notif_stop_can_get_pending_events (remote_target *remote,
7190 struct notif_client *self)
7191 {
7192 /* We can't get pending events in remote_notif_process for
7193 notification stop, and we have to do this in remote_wait_ns
7194 instead. If we fetch all queued events from stub, remote stub
7195 may exit and we have no chance to process them back in
7196 remote_wait_ns. */
7197 remote_state *rs = remote->get_remote_state ();
7198 mark_async_event_handler (rs->remote_async_inferior_event_token);
7199 return 0;
7200 }
7201
7202 stop_reply::~stop_reply ()
7203 {
7204 for (cached_reg_t &reg : regcache)
7205 xfree (reg.data);
7206 }
7207
7208 static notif_event_up
7209 remote_notif_stop_alloc_reply ()
7210 {
7211 return notif_event_up (new struct stop_reply ());
7212 }
7213
7214 /* A client of notification Stop. */
7215
7216 struct notif_client notif_client_stop =
7217 {
7218 "Stop",
7219 "vStopped",
7220 remote_notif_stop_parse,
7221 remote_notif_stop_ack,
7222 remote_notif_stop_can_get_pending_events,
7223 remote_notif_stop_alloc_reply,
7224 REMOTE_NOTIF_STOP,
7225 };
7226
7227 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
7228 the pid of the process that owns the threads we want to check, or
7229 -1 if we want to check all threads. */
7230
7231 static int
7232 is_pending_fork_parent (const target_waitstatus *ws, int event_pid,
7233 ptid_t thread_ptid)
7234 {
7235 if (ws->kind () == TARGET_WAITKIND_FORKED
7236 || ws->kind () == TARGET_WAITKIND_VFORKED)
7237 {
7238 if (event_pid == -1 || event_pid == thread_ptid.pid ())
7239 return 1;
7240 }
7241
7242 return 0;
7243 }
7244
7245 /* Return the thread's pending status used to determine whether the
7246 thread is a fork parent stopped at a fork event. */
7247
7248 static const target_waitstatus *
7249 thread_pending_fork_status (struct thread_info *thread)
7250 {
7251 if (thread->has_pending_waitstatus ())
7252 return &thread->pending_waitstatus ();
7253 else
7254 return &thread->pending_follow;
7255 }
7256
7257 /* Determine if THREAD is a pending fork parent thread. */
7258
7259 static int
7260 is_pending_fork_parent_thread (struct thread_info *thread)
7261 {
7262 const target_waitstatus *ws = thread_pending_fork_status (thread);
7263 int pid = -1;
7264
7265 return is_pending_fork_parent (ws, pid, thread->ptid);
7266 }
7267
7268 /* If CONTEXT contains any fork child threads that have not been
7269 reported yet, remove them from the CONTEXT list. If such a
7270 thread exists it is because we are stopped at a fork catchpoint
7271 and have not yet called follow_fork, which will set up the
7272 host-side data structures for the new process. */
7273
7274 void
7275 remote_target::remove_new_fork_children (threads_listing_context *context)
7276 {
7277 int pid = -1;
7278 struct notif_client *notif = &notif_client_stop;
7279
7280 /* For any threads stopped at a fork event, remove the corresponding
7281 fork child threads from the CONTEXT list. */
7282 for (thread_info *thread : all_non_exited_threads (this))
7283 {
7284 const target_waitstatus *ws = thread_pending_fork_status (thread);
7285
7286 if (is_pending_fork_parent (ws, pid, thread->ptid))
7287 context->remove_thread (ws->child_ptid ());
7288 }
7289
7290 /* Check for any pending fork events (not reported or processed yet)
7291 in process PID and remove those fork child threads from the
7292 CONTEXT list as well. */
7293 remote_notif_get_pending_events (notif);
7294 for (auto &event : get_remote_state ()->stop_reply_queue)
7295 if (event->ws.kind () == TARGET_WAITKIND_FORKED
7296 || event->ws.kind () == TARGET_WAITKIND_VFORKED
7297 || event->ws.kind () == TARGET_WAITKIND_THREAD_EXITED)
7298 context->remove_thread (event->ws.child_ptid ());
7299 }
7300
7301 /* Check whether any event pending in the vStopped queue would prevent a
7302 global or process wildcard vCont action. Set *may_global_wildcard to
7303 false if we can't do a global wildcard (vCont;c), and clear the event
7304 inferior's may_wildcard_vcont flag if we can't do a process-wide
7305 wildcard resume (vCont;c:pPID.-1). */
7306
7307 void
7308 remote_target::check_pending_events_prevent_wildcard_vcont
7309 (bool *may_global_wildcard)
7310 {
7311 struct notif_client *notif = &notif_client_stop;
7312
7313 remote_notif_get_pending_events (notif);
7314 for (auto &event : get_remote_state ()->stop_reply_queue)
7315 {
7316 if (event->ws.kind () == TARGET_WAITKIND_NO_RESUMED
7317 || event->ws.kind () == TARGET_WAITKIND_NO_HISTORY)
7318 continue;
7319
7320 if (event->ws.kind () == TARGET_WAITKIND_FORKED
7321 || event->ws.kind () == TARGET_WAITKIND_VFORKED)
7322 *may_global_wildcard = false;
7323
7324 /* This may be the first time we heard about this process.
7325 Regardless, we must not do a global wildcard resume, otherwise
7326 we'd resume this process too. */
7327 *may_global_wildcard = false;
7328 if (event->ptid != null_ptid)
7329 {
7330 inferior *inf = find_inferior_ptid (this, event->ptid);
7331 if (inf != NULL)
7332 get_remote_inferior (inf)->may_wildcard_vcont = false;
7333 }
7334 }
7335 }
7336
7337 /* Discard all pending stop replies of inferior INF. */
7338
7339 void
7340 remote_target::discard_pending_stop_replies (struct inferior *inf)
7341 {
7342 struct stop_reply *reply;
7343 struct remote_state *rs = get_remote_state ();
7344 struct remote_notif_state *rns = rs->notif_state;
7345
7346 /* This function can be notified when an inferior exists. When the
7347 target is not remote, the notification state is NULL. */
7348 if (rs->remote_desc == NULL)
7349 return;
7350
7351 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7352
7353 /* Discard the in-flight notification. */
7354 if (reply != NULL && reply->ptid.pid () == inf->pid)
7355 {
7356 /* Leave the notification pending, since the server expects that
7357 we acknowledge it with vStopped. But clear its contents, so
7358 that later on when we acknowledge it, we also discard it. */
7359 reply->ws.set_ignore ();
7360
7361 if (remote_debug)
7362 fprintf_unfiltered (gdb_stdlog,
7363 "discarded in-flight notification\n");
7364 }
7365
7366 /* Discard the stop replies we have already pulled with
7367 vStopped. */
7368 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7369 rs->stop_reply_queue.end (),
7370 [=] (const stop_reply_up &event)
7371 {
7372 return event->ptid.pid () == inf->pid;
7373 });
7374 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7375 }
7376
7377 /* Discard the stop replies for RS in stop_reply_queue. */
7378
7379 void
7380 remote_target::discard_pending_stop_replies_in_queue ()
7381 {
7382 remote_state *rs = get_remote_state ();
7383
7384 /* Discard the stop replies we have already pulled with
7385 vStopped. */
7386 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7387 rs->stop_reply_queue.end (),
7388 [=] (const stop_reply_up &event)
7389 {
7390 return event->rs == rs;
7391 });
7392 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7393 }
7394
7395 /* Remove the first reply in 'stop_reply_queue' which matches
7396 PTID. */
7397
7398 struct stop_reply *
7399 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7400 {
7401 remote_state *rs = get_remote_state ();
7402
7403 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7404 rs->stop_reply_queue.end (),
7405 [=] (const stop_reply_up &event)
7406 {
7407 return event->ptid.matches (ptid);
7408 });
7409 struct stop_reply *result;
7410 if (iter == rs->stop_reply_queue.end ())
7411 result = nullptr;
7412 else
7413 {
7414 result = iter->release ();
7415 rs->stop_reply_queue.erase (iter);
7416 }
7417
7418 if (notif_debug)
7419 fprintf_unfiltered (gdb_stdlog,
7420 "notif: discard queued event: 'Stop' in %s\n",
7421 target_pid_to_str (ptid).c_str ());
7422
7423 return result;
7424 }
7425
7426 /* Look for a queued stop reply belonging to PTID. If one is found,
7427 remove it from the queue, and return it. Returns NULL if none is
7428 found. If there are still queued events left to process, tell the
7429 event loop to get back to target_wait soon. */
7430
7431 struct stop_reply *
7432 remote_target::queued_stop_reply (ptid_t ptid)
7433 {
7434 remote_state *rs = get_remote_state ();
7435 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7436
7437 if (!rs->stop_reply_queue.empty ())
7438 {
7439 /* There's still at least an event left. */
7440 mark_async_event_handler (rs->remote_async_inferior_event_token);
7441 }
7442
7443 return r;
7444 }
7445
7446 /* Push a fully parsed stop reply in the stop reply queue. Since we
7447 know that we now have at least one queued event left to pass to the
7448 core side, tell the event loop to get back to target_wait soon. */
7449
7450 void
7451 remote_target::push_stop_reply (struct stop_reply *new_event)
7452 {
7453 remote_state *rs = get_remote_state ();
7454 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7455
7456 if (notif_debug)
7457 fprintf_unfiltered (gdb_stdlog,
7458 "notif: push 'Stop' %s to queue %d\n",
7459 target_pid_to_str (new_event->ptid).c_str (),
7460 int (rs->stop_reply_queue.size ()));
7461
7462 mark_async_event_handler (rs->remote_async_inferior_event_token);
7463 }
7464
7465 /* Returns true if we have a stop reply for PTID. */
7466
7467 int
7468 remote_target::peek_stop_reply (ptid_t ptid)
7469 {
7470 remote_state *rs = get_remote_state ();
7471 for (auto &event : rs->stop_reply_queue)
7472 if (ptid == event->ptid
7473 && event->ws.kind () == TARGET_WAITKIND_STOPPED)
7474 return 1;
7475 return 0;
7476 }
7477
7478 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7479 starting with P and ending with PEND matches PREFIX. */
7480
7481 static int
7482 strprefix (const char *p, const char *pend, const char *prefix)
7483 {
7484 for ( ; p < pend; p++, prefix++)
7485 if (*p != *prefix)
7486 return 0;
7487 return *prefix == '\0';
7488 }
7489
7490 /* Parse the stop reply in BUF. Either the function succeeds, and the
7491 result is stored in EVENT, or throws an error. */
7492
7493 void
7494 remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
7495 {
7496 remote_arch_state *rsa = NULL;
7497 ULONGEST addr;
7498 const char *p;
7499 int skipregs = 0;
7500
7501 event->ptid = null_ptid;
7502 event->rs = get_remote_state ();
7503 event->ws.set_ignore ();
7504 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7505 event->regcache.clear ();
7506 event->core = -1;
7507
7508 switch (buf[0])
7509 {
7510 case 'T': /* Status with PC, SP, FP, ... */
7511 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7512 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7513 ss = signal number
7514 n... = register number
7515 r... = register contents
7516 */
7517
7518 p = &buf[3]; /* after Txx */
7519 while (*p)
7520 {
7521 const char *p1;
7522 int fieldsize;
7523
7524 p1 = strchr (p, ':');
7525 if (p1 == NULL)
7526 error (_("Malformed packet(a) (missing colon): %s\n\
7527 Packet: '%s'\n"),
7528 p, buf);
7529 if (p == p1)
7530 error (_("Malformed packet(a) (missing register number): %s\n\
7531 Packet: '%s'\n"),
7532 p, buf);
7533
7534 /* Some "registers" are actually extended stop information.
7535 Note if you're adding a new entry here: GDB 7.9 and
7536 earlier assume that all register "numbers" that start
7537 with an hex digit are real register numbers. Make sure
7538 the server only sends such a packet if it knows the
7539 client understands it. */
7540
7541 if (strprefix (p, p1, "thread"))
7542 event->ptid = read_ptid (++p1, &p);
7543 else if (strprefix (p, p1, "syscall_entry"))
7544 {
7545 ULONGEST sysno;
7546
7547 p = unpack_varlen_hex (++p1, &sysno);
7548 event->ws.set_syscall_entry ((int) sysno);
7549 }
7550 else if (strprefix (p, p1, "syscall_return"))
7551 {
7552 ULONGEST sysno;
7553
7554 p = unpack_varlen_hex (++p1, &sysno);
7555 event->ws.set_syscall_return ((int) sysno);
7556 }
7557 else if (strprefix (p, p1, "watch")
7558 || strprefix (p, p1, "rwatch")
7559 || strprefix (p, p1, "awatch"))
7560 {
7561 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7562 p = unpack_varlen_hex (++p1, &addr);
7563 event->watch_data_address = (CORE_ADDR) addr;
7564 }
7565 else if (strprefix (p, p1, "swbreak"))
7566 {
7567 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7568
7569 /* Make sure the stub doesn't forget to indicate support
7570 with qSupported. */
7571 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7572 error (_("Unexpected swbreak stop reason"));
7573
7574 /* The value part is documented as "must be empty",
7575 though we ignore it, in case we ever decide to make
7576 use of it in a backward compatible way. */
7577 p = strchrnul (p1 + 1, ';');
7578 }
7579 else if (strprefix (p, p1, "hwbreak"))
7580 {
7581 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7582
7583 /* Make sure the stub doesn't forget to indicate support
7584 with qSupported. */
7585 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7586 error (_("Unexpected hwbreak stop reason"));
7587
7588 /* See above. */
7589 p = strchrnul (p1 + 1, ';');
7590 }
7591 else if (strprefix (p, p1, "library"))
7592 {
7593 event->ws.set_loaded ();
7594 p = strchrnul (p1 + 1, ';');
7595 }
7596 else if (strprefix (p, p1, "replaylog"))
7597 {
7598 event->ws.set_no_history ();
7599 /* p1 will indicate "begin" or "end", but it makes
7600 no difference for now, so ignore it. */
7601 p = strchrnul (p1 + 1, ';');
7602 }
7603 else if (strprefix (p, p1, "core"))
7604 {
7605 ULONGEST c;
7606
7607 p = unpack_varlen_hex (++p1, &c);
7608 event->core = c;
7609 }
7610 else if (strprefix (p, p1, "fork"))
7611 event->ws.set_forked (read_ptid (++p1, &p));
7612 else if (strprefix (p, p1, "vfork"))
7613 event->ws.set_vforked (read_ptid (++p1, &p));
7614 else if (strprefix (p, p1, "vforkdone"))
7615 {
7616 event->ws.set_vfork_done ();
7617 p = strchrnul (p1 + 1, ';');
7618 }
7619 else if (strprefix (p, p1, "exec"))
7620 {
7621 ULONGEST ignored;
7622 int pathlen;
7623
7624 /* Determine the length of the execd pathname. */
7625 p = unpack_varlen_hex (++p1, &ignored);
7626 pathlen = (p - p1) / 2;
7627
7628 /* Save the pathname for event reporting and for
7629 the next run command. */
7630 gdb::unique_xmalloc_ptr<char> pathname
7631 ((char *) xmalloc (pathlen + 1));
7632 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
7633 pathname.get ()[pathlen] = '\0';
7634
7635 /* This is freed during event handling. */
7636 event->ws.set_execd (std::move (pathname));
7637
7638 /* Skip the registers included in this packet, since
7639 they may be for an architecture different from the
7640 one used by the original program. */
7641 skipregs = 1;
7642 }
7643 else if (strprefix (p, p1, "create"))
7644 {
7645 event->ws.set_thread_created ();
7646 p = strchrnul (p1 + 1, ';');
7647 }
7648 else
7649 {
7650 ULONGEST pnum;
7651 const char *p_temp;
7652
7653 if (skipregs)
7654 {
7655 p = strchrnul (p1 + 1, ';');
7656 p++;
7657 continue;
7658 }
7659
7660 /* Maybe a real ``P'' register number. */
7661 p_temp = unpack_varlen_hex (p, &pnum);
7662 /* If the first invalid character is the colon, we got a
7663 register number. Otherwise, it's an unknown stop
7664 reason. */
7665 if (p_temp == p1)
7666 {
7667 /* If we haven't parsed the event's thread yet, find
7668 it now, in order to find the architecture of the
7669 reported expedited registers. */
7670 if (event->ptid == null_ptid)
7671 {
7672 /* If there is no thread-id information then leave
7673 the event->ptid as null_ptid. Later in
7674 process_stop_reply we will pick a suitable
7675 thread. */
7676 const char *thr = strstr (p1 + 1, ";thread:");
7677 if (thr != NULL)
7678 event->ptid = read_ptid (thr + strlen (";thread:"),
7679 NULL);
7680 }
7681
7682 if (rsa == NULL)
7683 {
7684 inferior *inf
7685 = (event->ptid == null_ptid
7686 ? NULL
7687 : find_inferior_ptid (this, event->ptid));
7688 /* If this is the first time we learn anything
7689 about this process, skip the registers
7690 included in this packet, since we don't yet
7691 know which architecture to use to parse them.
7692 We'll determine the architecture later when
7693 we process the stop reply and retrieve the
7694 target description, via
7695 remote_notice_new_inferior ->
7696 post_create_inferior. */
7697 if (inf == NULL)
7698 {
7699 p = strchrnul (p1 + 1, ';');
7700 p++;
7701 continue;
7702 }
7703
7704 event->arch = inf->gdbarch;
7705 rsa = event->rs->get_remote_arch_state (event->arch);
7706 }
7707
7708 packet_reg *reg
7709 = packet_reg_from_pnum (event->arch, rsa, pnum);
7710 cached_reg_t cached_reg;
7711
7712 if (reg == NULL)
7713 error (_("Remote sent bad register number %s: %s\n\
7714 Packet: '%s'\n"),
7715 hex_string (pnum), p, buf);
7716
7717 cached_reg.num = reg->regnum;
7718 cached_reg.data = (gdb_byte *)
7719 xmalloc (register_size (event->arch, reg->regnum));
7720
7721 p = p1 + 1;
7722 fieldsize = hex2bin (p, cached_reg.data,
7723 register_size (event->arch, reg->regnum));
7724 p += 2 * fieldsize;
7725 if (fieldsize < register_size (event->arch, reg->regnum))
7726 warning (_("Remote reply is too short: %s"), buf);
7727
7728 event->regcache.push_back (cached_reg);
7729 }
7730 else
7731 {
7732 /* Not a number. Silently skip unknown optional
7733 info. */
7734 p = strchrnul (p1 + 1, ';');
7735 }
7736 }
7737
7738 if (*p != ';')
7739 error (_("Remote register badly formatted: %s\nhere: %s"),
7740 buf, p);
7741 ++p;
7742 }
7743
7744 if (event->ws.kind () != TARGET_WAITKIND_IGNORE)
7745 break;
7746
7747 /* fall through */
7748 case 'S': /* Old style status, just signal only. */
7749 {
7750 int sig;
7751
7752 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7753 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7754 event->ws.set_stopped ((enum gdb_signal) sig);
7755 else
7756 event->ws.set_stopped (GDB_SIGNAL_UNKNOWN);
7757 }
7758 break;
7759 case 'w': /* Thread exited. */
7760 {
7761 ULONGEST value;
7762
7763 p = unpack_varlen_hex (&buf[1], &value);
7764 event->ws.set_thread_exited (value);
7765 if (*p != ';')
7766 error (_("stop reply packet badly formatted: %s"), buf);
7767 event->ptid = read_ptid (++p, NULL);
7768 break;
7769 }
7770 case 'W': /* Target exited. */
7771 case 'X':
7772 {
7773 ULONGEST value;
7774
7775 /* GDB used to accept only 2 hex chars here. Stubs should
7776 only send more if they detect GDB supports multi-process
7777 support. */
7778 p = unpack_varlen_hex (&buf[1], &value);
7779
7780 if (buf[0] == 'W')
7781 {
7782 /* The remote process exited. */
7783 event->ws.set_exited (value);
7784 }
7785 else
7786 {
7787 /* The remote process exited with a signal. */
7788 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7789 event->ws.set_signalled ((enum gdb_signal) value);
7790 else
7791 event->ws.set_signalled (GDB_SIGNAL_UNKNOWN);
7792 }
7793
7794 /* If no process is specified, return null_ptid, and let the
7795 caller figure out the right process to use. */
7796 int pid = 0;
7797 if (*p == '\0')
7798 ;
7799 else if (*p == ';')
7800 {
7801 p++;
7802
7803 if (*p == '\0')
7804 ;
7805 else if (startswith (p, "process:"))
7806 {
7807 ULONGEST upid;
7808
7809 p += sizeof ("process:") - 1;
7810 unpack_varlen_hex (p, &upid);
7811 pid = upid;
7812 }
7813 else
7814 error (_("unknown stop reply packet: %s"), buf);
7815 }
7816 else
7817 error (_("unknown stop reply packet: %s"), buf);
7818 event->ptid = ptid_t (pid);
7819 }
7820 break;
7821 case 'N':
7822 event->ws.set_no_resumed ();
7823 event->ptid = minus_one_ptid;
7824 break;
7825 }
7826 }
7827
7828 /* When the stub wants to tell GDB about a new notification reply, it
7829 sends a notification (%Stop, for example). Those can come it at
7830 any time, hence, we have to make sure that any pending
7831 putpkt/getpkt sequence we're making is finished, before querying
7832 the stub for more events with the corresponding ack command
7833 (vStopped, for example). E.g., if we started a vStopped sequence
7834 immediately upon receiving the notification, something like this
7835 could happen:
7836
7837 1.1) --> Hg 1
7838 1.2) <-- OK
7839 1.3) --> g
7840 1.4) <-- %Stop
7841 1.5) --> vStopped
7842 1.6) <-- (registers reply to step #1.3)
7843
7844 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7845 query.
7846
7847 To solve this, whenever we parse a %Stop notification successfully,
7848 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7849 doing whatever we were doing:
7850
7851 2.1) --> Hg 1
7852 2.2) <-- OK
7853 2.3) --> g
7854 2.4) <-- %Stop
7855 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7856 2.5) <-- (registers reply to step #2.3)
7857
7858 Eventually after step #2.5, we return to the event loop, which
7859 notices there's an event on the
7860 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7861 associated callback --- the function below. At this point, we're
7862 always safe to start a vStopped sequence. :
7863
7864 2.6) --> vStopped
7865 2.7) <-- T05 thread:2
7866 2.8) --> vStopped
7867 2.9) --> OK
7868 */
7869
7870 void
7871 remote_target::remote_notif_get_pending_events (notif_client *nc)
7872 {
7873 struct remote_state *rs = get_remote_state ();
7874
7875 if (rs->notif_state->pending_event[nc->id] != NULL)
7876 {
7877 if (notif_debug)
7878 fprintf_unfiltered (gdb_stdlog,
7879 "notif: process: '%s' ack pending event\n",
7880 nc->name);
7881
7882 /* acknowledge */
7883 nc->ack (this, nc, rs->buf.data (),
7884 rs->notif_state->pending_event[nc->id]);
7885 rs->notif_state->pending_event[nc->id] = NULL;
7886
7887 while (1)
7888 {
7889 getpkt (&rs->buf, 0);
7890 if (strcmp (rs->buf.data (), "OK") == 0)
7891 break;
7892 else
7893 remote_notif_ack (this, nc, rs->buf.data ());
7894 }
7895 }
7896 else
7897 {
7898 if (notif_debug)
7899 fprintf_unfiltered (gdb_stdlog,
7900 "notif: process: '%s' no pending reply\n",
7901 nc->name);
7902 }
7903 }
7904
7905 /* Wrapper around remote_target::remote_notif_get_pending_events to
7906 avoid having to export the whole remote_target class. */
7907
7908 void
7909 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7910 {
7911 remote->remote_notif_get_pending_events (nc);
7912 }
7913
7914 /* Called from process_stop_reply when the stop packet we are responding
7915 to didn't include a process-id or thread-id. STATUS is the stop event
7916 we are responding to.
7917
7918 It is the task of this function to select a suitable thread (or process)
7919 and return its ptid, this is the thread (or process) we will assume the
7920 stop event came from.
7921
7922 In some cases there isn't really any choice about which thread (or
7923 process) is selected, a basic remote with a single process containing a
7924 single thread might choose not to send any process-id or thread-id in
7925 its stop packets, this function will select and return the one and only
7926 thread.
7927
7928 However, if a target supports multiple threads (or processes) and still
7929 doesn't include a thread-id (or process-id) in its stop packet then
7930 first, this is a badly behaving target, and second, we're going to have
7931 to select a thread (or process) at random and use that. This function
7932 will print a warning to the user if it detects that there is the
7933 possibility that GDB is guessing which thread (or process) to
7934 report.
7935
7936 Note that this is called before GDB fetches the updated thread list from the
7937 target. So it's possible for the stop reply to be ambiguous and for GDB to
7938 not realize it. For example, if there's initially one thread, the target
7939 spawns a second thread, and then sends a stop reply without an id that
7940 concerns the first thread. GDB will assume the stop reply is about the
7941 first thread - the only thread it knows about - without printing a warning.
7942 Anyway, if the remote meant for the stop reply to be about the second thread,
7943 then it would be really broken, because GDB doesn't know about that thread
7944 yet. */
7945
7946 ptid_t
7947 remote_target::select_thread_for_ambiguous_stop_reply
7948 (const struct target_waitstatus *status)
7949 {
7950 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7951
7952 /* Some stop events apply to all threads in an inferior, while others
7953 only apply to a single thread. */
7954 bool process_wide_stop
7955 = (status->kind () == TARGET_WAITKIND_EXITED
7956 || status->kind () == TARGET_WAITKIND_SIGNALLED);
7957
7958 remote_debug_printf ("process_wide_stop = %d", process_wide_stop);
7959
7960 thread_info *first_resumed_thread = nullptr;
7961 bool ambiguous = false;
7962
7963 /* Consider all non-exited threads of the target, find the first resumed
7964 one. */
7965 for (thread_info *thr : all_non_exited_threads (this))
7966 {
7967 remote_thread_info *remote_thr = get_remote_thread_info (thr);
7968
7969 if (remote_thr->get_resume_state () != resume_state::RESUMED)
7970 continue;
7971
7972 if (first_resumed_thread == nullptr)
7973 first_resumed_thread = thr;
7974 else if (!process_wide_stop
7975 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7976 ambiguous = true;
7977 }
7978
7979 remote_debug_printf ("first resumed thread is %s",
7980 pid_to_str (first_resumed_thread->ptid).c_str ());
7981 remote_debug_printf ("is this guess ambiguous? = %d", ambiguous);
7982
7983 gdb_assert (first_resumed_thread != nullptr);
7984
7985 /* Warn if the remote target is sending ambiguous stop replies. */
7986 if (ambiguous)
7987 {
7988 static bool warned = false;
7989
7990 if (!warned)
7991 {
7992 /* If you are seeing this warning then the remote target has
7993 stopped without specifying a thread-id, but the target
7994 does have multiple threads (or inferiors), and so GDB is
7995 having to guess which thread stopped.
7996
7997 Examples of what might cause this are the target sending
7998 and 'S' stop packet, or a 'T' stop packet and not
7999 including a thread-id.
8000
8001 Additionally, the target might send a 'W' or 'X packet
8002 without including a process-id, when the target has
8003 multiple running inferiors. */
8004 if (process_wide_stop)
8005 warning (_("multi-inferior target stopped without "
8006 "sending a process-id, using first "
8007 "non-exited inferior"));
8008 else
8009 warning (_("multi-threaded target stopped without "
8010 "sending a thread-id, using first "
8011 "non-exited thread"));
8012 warned = true;
8013 }
8014 }
8015
8016 /* If this is a stop for all threads then don't use a particular threads
8017 ptid, instead create a new ptid where only the pid field is set. */
8018 if (process_wide_stop)
8019 return ptid_t (first_resumed_thread->ptid.pid ());
8020 else
8021 return first_resumed_thread->ptid;
8022 }
8023
8024 /* Called when it is decided that STOP_REPLY holds the info of the
8025 event that is to be returned to the core. This function always
8026 destroys STOP_REPLY. */
8027
8028 ptid_t
8029 remote_target::process_stop_reply (struct stop_reply *stop_reply,
8030 struct target_waitstatus *status)
8031 {
8032 *status = stop_reply->ws;
8033 ptid_t ptid = stop_reply->ptid;
8034
8035 /* If no thread/process was reported by the stub then select a suitable
8036 thread/process. */
8037 if (ptid == null_ptid)
8038 ptid = select_thread_for_ambiguous_stop_reply (status);
8039 gdb_assert (ptid != null_ptid);
8040
8041 if (status->kind () != TARGET_WAITKIND_EXITED
8042 && status->kind () != TARGET_WAITKIND_SIGNALLED
8043 && status->kind () != TARGET_WAITKIND_NO_RESUMED)
8044 {
8045 /* Expedited registers. */
8046 if (!stop_reply->regcache.empty ())
8047 {
8048 struct regcache *regcache
8049 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
8050
8051 for (cached_reg_t &reg : stop_reply->regcache)
8052 {
8053 regcache->raw_supply (reg.num, reg.data);
8054 xfree (reg.data);
8055 }
8056
8057 stop_reply->regcache.clear ();
8058 }
8059
8060 remote_notice_new_inferior (ptid, false);
8061 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
8062 remote_thr->core = stop_reply->core;
8063 remote_thr->stop_reason = stop_reply->stop_reason;
8064 remote_thr->watch_data_address = stop_reply->watch_data_address;
8065
8066 if (target_is_non_stop_p ())
8067 {
8068 /* If the target works in non-stop mode, a stop-reply indicates that
8069 only this thread stopped. */
8070 remote_thr->set_not_resumed ();
8071 }
8072 else
8073 {
8074 /* If the target works in all-stop mode, a stop-reply indicates that
8075 all the target's threads stopped. */
8076 for (thread_info *tp : all_non_exited_threads (this))
8077 get_remote_thread_info (tp)->set_not_resumed ();
8078 }
8079 }
8080
8081 delete stop_reply;
8082 return ptid;
8083 }
8084
8085 /* The non-stop mode version of target_wait. */
8086
8087 ptid_t
8088 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
8089 target_wait_flags options)
8090 {
8091 struct remote_state *rs = get_remote_state ();
8092 struct stop_reply *stop_reply;
8093 int ret;
8094 int is_notif = 0;
8095
8096 /* If in non-stop mode, get out of getpkt even if a
8097 notification is received. */
8098
8099 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
8100 while (1)
8101 {
8102 if (ret != -1 && !is_notif)
8103 switch (rs->buf[0])
8104 {
8105 case 'E': /* Error of some sort. */
8106 /* We're out of sync with the target now. Did it continue
8107 or not? We can't tell which thread it was in non-stop,
8108 so just ignore this. */
8109 warning (_("Remote failure reply: %s"), rs->buf.data ());
8110 break;
8111 case 'O': /* Console output. */
8112 remote_console_output (&rs->buf[1]);
8113 break;
8114 default:
8115 warning (_("Invalid remote reply: %s"), rs->buf.data ());
8116 break;
8117 }
8118
8119 /* Acknowledge a pending stop reply that may have arrived in the
8120 mean time. */
8121 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
8122 remote_notif_get_pending_events (&notif_client_stop);
8123
8124 /* If indeed we noticed a stop reply, we're done. */
8125 stop_reply = queued_stop_reply (ptid);
8126 if (stop_reply != NULL)
8127 return process_stop_reply (stop_reply, status);
8128
8129 /* Still no event. If we're just polling for an event, then
8130 return to the event loop. */
8131 if (options & TARGET_WNOHANG)
8132 {
8133 status->set_ignore ();
8134 return minus_one_ptid;
8135 }
8136
8137 /* Otherwise do a blocking wait. */
8138 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
8139 }
8140 }
8141
8142 /* Return the first resumed thread. */
8143
8144 static ptid_t
8145 first_remote_resumed_thread (remote_target *target)
8146 {
8147 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
8148 if (tp->resumed ())
8149 return tp->ptid;
8150 return null_ptid;
8151 }
8152
8153 /* Wait until the remote machine stops, then return, storing status in
8154 STATUS just as `wait' would. */
8155
8156 ptid_t
8157 remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
8158 target_wait_flags options)
8159 {
8160 struct remote_state *rs = get_remote_state ();
8161 ptid_t event_ptid = null_ptid;
8162 char *buf;
8163 struct stop_reply *stop_reply;
8164
8165 again:
8166
8167 status->set_ignore ();
8168
8169 stop_reply = queued_stop_reply (ptid);
8170 if (stop_reply != NULL)
8171 return process_stop_reply (stop_reply, status);
8172
8173 if (rs->cached_wait_status)
8174 /* Use the cached wait status, but only once. */
8175 rs->cached_wait_status = 0;
8176 else
8177 {
8178 int ret;
8179 int is_notif;
8180 int forever = ((options & TARGET_WNOHANG) == 0
8181 && rs->wait_forever_enabled_p);
8182
8183 if (!rs->waiting_for_stop_reply)
8184 {
8185 status->set_no_resumed ();
8186 return minus_one_ptid;
8187 }
8188
8189 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8190 _never_ wait for ever -> test on target_is_async_p().
8191 However, before we do that we need to ensure that the caller
8192 knows how to take the target into/out of async mode. */
8193 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
8194
8195 /* GDB gets a notification. Return to core as this event is
8196 not interesting. */
8197 if (ret != -1 && is_notif)
8198 return minus_one_ptid;
8199
8200 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8201 return minus_one_ptid;
8202 }
8203
8204 buf = rs->buf.data ();
8205
8206 /* Assume that the target has acknowledged Ctrl-C unless we receive
8207 an 'F' or 'O' packet. */
8208 if (buf[0] != 'F' && buf[0] != 'O')
8209 rs->ctrlc_pending_p = 0;
8210
8211 switch (buf[0])
8212 {
8213 case 'E': /* Error of some sort. */
8214 /* We're out of sync with the target now. Did it continue or
8215 not? Not is more likely, so report a stop. */
8216 rs->waiting_for_stop_reply = 0;
8217
8218 warning (_("Remote failure reply: %s"), buf);
8219 status->set_stopped (GDB_SIGNAL_0);
8220 break;
8221 case 'F': /* File-I/O request. */
8222 /* GDB may access the inferior memory while handling the File-I/O
8223 request, but we don't want GDB accessing memory while waiting
8224 for a stop reply. See the comments in putpkt_binary. Set
8225 waiting_for_stop_reply to 0 temporarily. */
8226 rs->waiting_for_stop_reply = 0;
8227 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
8228 rs->ctrlc_pending_p = 0;
8229 /* GDB handled the File-I/O request, and the target is running
8230 again. Keep waiting for events. */
8231 rs->waiting_for_stop_reply = 1;
8232 break;
8233 case 'N': case 'T': case 'S': case 'X': case 'W':
8234 {
8235 /* There is a stop reply to handle. */
8236 rs->waiting_for_stop_reply = 0;
8237
8238 stop_reply
8239 = (struct stop_reply *) remote_notif_parse (this,
8240 &notif_client_stop,
8241 rs->buf.data ());
8242
8243 event_ptid = process_stop_reply (stop_reply, status);
8244 break;
8245 }
8246 case 'O': /* Console output. */
8247 remote_console_output (buf + 1);
8248 break;
8249 case '\0':
8250 if (rs->last_sent_signal != GDB_SIGNAL_0)
8251 {
8252 /* Zero length reply means that we tried 'S' or 'C' and the
8253 remote system doesn't support it. */
8254 target_terminal::ours_for_output ();
8255 printf_filtered
8256 ("Can't send signals to this remote system. %s not sent.\n",
8257 gdb_signal_to_name (rs->last_sent_signal));
8258 rs->last_sent_signal = GDB_SIGNAL_0;
8259 target_terminal::inferior ();
8260
8261 strcpy (buf, rs->last_sent_step ? "s" : "c");
8262 putpkt (buf);
8263 break;
8264 }
8265 /* fallthrough */
8266 default:
8267 warning (_("Invalid remote reply: %s"), buf);
8268 break;
8269 }
8270
8271 if (status->kind () == TARGET_WAITKIND_NO_RESUMED)
8272 return minus_one_ptid;
8273 else if (status->kind () == TARGET_WAITKIND_IGNORE)
8274 {
8275 /* Nothing interesting happened. If we're doing a non-blocking
8276 poll, we're done. Otherwise, go back to waiting. */
8277 if (options & TARGET_WNOHANG)
8278 return minus_one_ptid;
8279 else
8280 goto again;
8281 }
8282 else if (status->kind () != TARGET_WAITKIND_EXITED
8283 && status->kind () != TARGET_WAITKIND_SIGNALLED)
8284 {
8285 if (event_ptid != null_ptid)
8286 record_currthread (rs, event_ptid);
8287 else
8288 event_ptid = first_remote_resumed_thread (this);
8289 }
8290 else
8291 {
8292 /* A process exit. Invalidate our notion of current thread. */
8293 record_currthread (rs, minus_one_ptid);
8294 /* It's possible that the packet did not include a pid. */
8295 if (event_ptid == null_ptid)
8296 event_ptid = first_remote_resumed_thread (this);
8297 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8298 if (event_ptid == null_ptid)
8299 event_ptid = magic_null_ptid;
8300 }
8301
8302 return event_ptid;
8303 }
8304
8305 /* Wait until the remote machine stops, then return, storing status in
8306 STATUS just as `wait' would. */
8307
8308 ptid_t
8309 remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8310 target_wait_flags options)
8311 {
8312 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
8313
8314 remote_state *rs = get_remote_state ();
8315
8316 /* Start by clearing the flag that asks for our wait method to be called,
8317 we'll mark it again at the end if needed. */
8318 if (target_is_async_p ())
8319 clear_async_event_handler (rs->remote_async_inferior_event_token);
8320
8321 ptid_t event_ptid;
8322
8323 if (target_is_non_stop_p ())
8324 event_ptid = wait_ns (ptid, status, options);
8325 else
8326 event_ptid = wait_as (ptid, status, options);
8327
8328 if (target_is_async_p ())
8329 {
8330 /* If there are events left in the queue, or unacknowledged
8331 notifications, then tell the event loop to call us again. */
8332 if (!rs->stop_reply_queue.empty ()
8333 || rs->notif_state->pending_event[notif_client_stop.id] != nullptr)
8334 mark_async_event_handler (rs->remote_async_inferior_event_token);
8335 }
8336
8337 return event_ptid;
8338 }
8339
8340 /* Fetch a single register using a 'p' packet. */
8341
8342 int
8343 remote_target::fetch_register_using_p (struct regcache *regcache,
8344 packet_reg *reg)
8345 {
8346 struct gdbarch *gdbarch = regcache->arch ();
8347 struct remote_state *rs = get_remote_state ();
8348 char *buf, *p;
8349 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8350 int i;
8351
8352 if (packet_support (PACKET_p) == PACKET_DISABLE)
8353 return 0;
8354
8355 if (reg->pnum == -1)
8356 return 0;
8357
8358 p = rs->buf.data ();
8359 *p++ = 'p';
8360 p += hexnumstr (p, reg->pnum);
8361 *p++ = '\0';
8362 putpkt (rs->buf);
8363 getpkt (&rs->buf, 0);
8364
8365 buf = rs->buf.data ();
8366
8367 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
8368 {
8369 case PACKET_OK:
8370 break;
8371 case PACKET_UNKNOWN:
8372 return 0;
8373 case PACKET_ERROR:
8374 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
8375 gdbarch_register_name (regcache->arch (),
8376 reg->regnum),
8377 buf);
8378 }
8379
8380 /* If this register is unfetchable, tell the regcache. */
8381 if (buf[0] == 'x')
8382 {
8383 regcache->raw_supply (reg->regnum, NULL);
8384 return 1;
8385 }
8386
8387 /* Otherwise, parse and supply the value. */
8388 p = buf;
8389 i = 0;
8390 while (p[0] != 0)
8391 {
8392 if (p[1] == 0)
8393 error (_("fetch_register_using_p: early buf termination"));
8394
8395 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8396 p += 2;
8397 }
8398 regcache->raw_supply (reg->regnum, regp);
8399 return 1;
8400 }
8401
8402 /* Fetch the registers included in the target's 'g' packet. */
8403
8404 int
8405 remote_target::send_g_packet ()
8406 {
8407 struct remote_state *rs = get_remote_state ();
8408 int buf_len;
8409
8410 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
8411 putpkt (rs->buf);
8412 getpkt (&rs->buf, 0);
8413 if (packet_check_result (rs->buf) == PACKET_ERROR)
8414 error (_("Could not read registers; remote failure reply '%s'"),
8415 rs->buf.data ());
8416
8417 /* We can get out of synch in various cases. If the first character
8418 in the buffer is not a hex character, assume that has happened
8419 and try to fetch another packet to read. */
8420 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8421 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8422 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8423 && rs->buf[0] != 'x') /* New: unavailable register value. */
8424 {
8425 remote_debug_printf ("Bad register packet; fetching a new packet");
8426 getpkt (&rs->buf, 0);
8427 }
8428
8429 buf_len = strlen (rs->buf.data ());
8430
8431 /* Sanity check the received packet. */
8432 if (buf_len % 2 != 0)
8433 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
8434
8435 return buf_len / 2;
8436 }
8437
8438 void
8439 remote_target::process_g_packet (struct regcache *regcache)
8440 {
8441 struct gdbarch *gdbarch = regcache->arch ();
8442 struct remote_state *rs = get_remote_state ();
8443 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8444 int i, buf_len;
8445 char *p;
8446 char *regs;
8447
8448 buf_len = strlen (rs->buf.data ());
8449
8450 /* Further sanity checks, with knowledge of the architecture. */
8451 if (buf_len > 2 * rsa->sizeof_g_packet)
8452 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8453 "bytes): %s"),
8454 rsa->sizeof_g_packet, buf_len / 2,
8455 rs->buf.data ());
8456
8457 /* Save the size of the packet sent to us by the target. It is used
8458 as a heuristic when determining the max size of packets that the
8459 target can safely receive. */
8460 if (rsa->actual_register_packet_size == 0)
8461 rsa->actual_register_packet_size = buf_len;
8462
8463 /* If this is smaller than we guessed the 'g' packet would be,
8464 update our records. A 'g' reply that doesn't include a register's
8465 value implies either that the register is not available, or that
8466 the 'p' packet must be used. */
8467 if (buf_len < 2 * rsa->sizeof_g_packet)
8468 {
8469 long sizeof_g_packet = buf_len / 2;
8470
8471 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8472 {
8473 long offset = rsa->regs[i].offset;
8474 long reg_size = register_size (gdbarch, i);
8475
8476 if (rsa->regs[i].pnum == -1)
8477 continue;
8478
8479 if (offset >= sizeof_g_packet)
8480 rsa->regs[i].in_g_packet = 0;
8481 else if (offset + reg_size > sizeof_g_packet)
8482 error (_("Truncated register %d in remote 'g' packet"), i);
8483 else
8484 rsa->regs[i].in_g_packet = 1;
8485 }
8486
8487 /* Looks valid enough, we can assume this is the correct length
8488 for a 'g' packet. It's important not to adjust
8489 rsa->sizeof_g_packet if we have truncated registers otherwise
8490 this "if" won't be run the next time the method is called
8491 with a packet of the same size and one of the internal errors
8492 below will trigger instead. */
8493 rsa->sizeof_g_packet = sizeof_g_packet;
8494 }
8495
8496 regs = (char *) alloca (rsa->sizeof_g_packet);
8497
8498 /* Unimplemented registers read as all bits zero. */
8499 memset (regs, 0, rsa->sizeof_g_packet);
8500
8501 /* Reply describes registers byte by byte, each byte encoded as two
8502 hex characters. Suck them all up, then supply them to the
8503 register cacheing/storage mechanism. */
8504
8505 p = rs->buf.data ();
8506 for (i = 0; i < rsa->sizeof_g_packet; i++)
8507 {
8508 if (p[0] == 0 || p[1] == 0)
8509 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8510 internal_error (__FILE__, __LINE__,
8511 _("unexpected end of 'g' packet reply"));
8512
8513 if (p[0] == 'x' && p[1] == 'x')
8514 regs[i] = 0; /* 'x' */
8515 else
8516 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8517 p += 2;
8518 }
8519
8520 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8521 {
8522 struct packet_reg *r = &rsa->regs[i];
8523 long reg_size = register_size (gdbarch, i);
8524
8525 if (r->in_g_packet)
8526 {
8527 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
8528 /* This shouldn't happen - we adjusted in_g_packet above. */
8529 internal_error (__FILE__, __LINE__,
8530 _("unexpected end of 'g' packet reply"));
8531 else if (rs->buf[r->offset * 2] == 'x')
8532 {
8533 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
8534 /* The register isn't available, mark it as such (at
8535 the same time setting the value to zero). */
8536 regcache->raw_supply (r->regnum, NULL);
8537 }
8538 else
8539 regcache->raw_supply (r->regnum, regs + r->offset);
8540 }
8541 }
8542 }
8543
8544 void
8545 remote_target::fetch_registers_using_g (struct regcache *regcache)
8546 {
8547 send_g_packet ();
8548 process_g_packet (regcache);
8549 }
8550
8551 /* Make the remote selected traceframe match GDB's selected
8552 traceframe. */
8553
8554 void
8555 remote_target::set_remote_traceframe ()
8556 {
8557 int newnum;
8558 struct remote_state *rs = get_remote_state ();
8559
8560 if (rs->remote_traceframe_number == get_traceframe_number ())
8561 return;
8562
8563 /* Avoid recursion, remote_trace_find calls us again. */
8564 rs->remote_traceframe_number = get_traceframe_number ();
8565
8566 newnum = target_trace_find (tfind_number,
8567 get_traceframe_number (), 0, 0, NULL);
8568
8569 /* Should not happen. If it does, all bets are off. */
8570 if (newnum != get_traceframe_number ())
8571 warning (_("could not set remote traceframe"));
8572 }
8573
8574 void
8575 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8576 {
8577 struct gdbarch *gdbarch = regcache->arch ();
8578 struct remote_state *rs = get_remote_state ();
8579 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8580 int i;
8581
8582 set_remote_traceframe ();
8583 set_general_thread (regcache->ptid ());
8584
8585 if (regnum >= 0)
8586 {
8587 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8588
8589 gdb_assert (reg != NULL);
8590
8591 /* If this register might be in the 'g' packet, try that first -
8592 we are likely to read more than one register. If this is the
8593 first 'g' packet, we might be overly optimistic about its
8594 contents, so fall back to 'p'. */
8595 if (reg->in_g_packet)
8596 {
8597 fetch_registers_using_g (regcache);
8598 if (reg->in_g_packet)
8599 return;
8600 }
8601
8602 if (fetch_register_using_p (regcache, reg))
8603 return;
8604
8605 /* This register is not available. */
8606 regcache->raw_supply (reg->regnum, NULL);
8607
8608 return;
8609 }
8610
8611 fetch_registers_using_g (regcache);
8612
8613 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8614 if (!rsa->regs[i].in_g_packet)
8615 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8616 {
8617 /* This register is not available. */
8618 regcache->raw_supply (i, NULL);
8619 }
8620 }
8621
8622 /* Prepare to store registers. Since we may send them all (using a
8623 'G' request), we have to read out the ones we don't want to change
8624 first. */
8625
8626 void
8627 remote_target::prepare_to_store (struct regcache *regcache)
8628 {
8629 struct remote_state *rs = get_remote_state ();
8630 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8631 int i;
8632
8633 /* Make sure the entire registers array is valid. */
8634 switch (packet_support (PACKET_P))
8635 {
8636 case PACKET_DISABLE:
8637 case PACKET_SUPPORT_UNKNOWN:
8638 /* Make sure all the necessary registers are cached. */
8639 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8640 if (rsa->regs[i].in_g_packet)
8641 regcache->raw_update (rsa->regs[i].regnum);
8642 break;
8643 case PACKET_ENABLE:
8644 break;
8645 }
8646 }
8647
8648 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8649 packet was not recognized. */
8650
8651 int
8652 remote_target::store_register_using_P (const struct regcache *regcache,
8653 packet_reg *reg)
8654 {
8655 struct gdbarch *gdbarch = regcache->arch ();
8656 struct remote_state *rs = get_remote_state ();
8657 /* Try storing a single register. */
8658 char *buf = rs->buf.data ();
8659 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8660 char *p;
8661
8662 if (packet_support (PACKET_P) == PACKET_DISABLE)
8663 return 0;
8664
8665 if (reg->pnum == -1)
8666 return 0;
8667
8668 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8669 p = buf + strlen (buf);
8670 regcache->raw_collect (reg->regnum, regp);
8671 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8672 putpkt (rs->buf);
8673 getpkt (&rs->buf, 0);
8674
8675 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8676 {
8677 case PACKET_OK:
8678 return 1;
8679 case PACKET_ERROR:
8680 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8681 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
8682 case PACKET_UNKNOWN:
8683 return 0;
8684 default:
8685 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8686 }
8687 }
8688
8689 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8690 contents of the register cache buffer. FIXME: ignores errors. */
8691
8692 void
8693 remote_target::store_registers_using_G (const struct regcache *regcache)
8694 {
8695 struct remote_state *rs = get_remote_state ();
8696 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8697 gdb_byte *regs;
8698 char *p;
8699
8700 /* Extract all the registers in the regcache copying them into a
8701 local buffer. */
8702 {
8703 int i;
8704
8705 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8706 memset (regs, 0, rsa->sizeof_g_packet);
8707 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8708 {
8709 struct packet_reg *r = &rsa->regs[i];
8710
8711 if (r->in_g_packet)
8712 regcache->raw_collect (r->regnum, regs + r->offset);
8713 }
8714 }
8715
8716 /* Command describes registers byte by byte,
8717 each byte encoded as two hex characters. */
8718 p = rs->buf.data ();
8719 *p++ = 'G';
8720 bin2hex (regs, p, rsa->sizeof_g_packet);
8721 putpkt (rs->buf);
8722 getpkt (&rs->buf, 0);
8723 if (packet_check_result (rs->buf) == PACKET_ERROR)
8724 error (_("Could not write registers; remote failure reply '%s'"),
8725 rs->buf.data ());
8726 }
8727
8728 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8729 of the register cache buffer. FIXME: ignores errors. */
8730
8731 void
8732 remote_target::store_registers (struct regcache *regcache, int regnum)
8733 {
8734 struct gdbarch *gdbarch = regcache->arch ();
8735 struct remote_state *rs = get_remote_state ();
8736 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8737 int i;
8738
8739 set_remote_traceframe ();
8740 set_general_thread (regcache->ptid ());
8741
8742 if (regnum >= 0)
8743 {
8744 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8745
8746 gdb_assert (reg != NULL);
8747
8748 /* Always prefer to store registers using the 'P' packet if
8749 possible; we often change only a small number of registers.
8750 Sometimes we change a larger number; we'd need help from a
8751 higher layer to know to use 'G'. */
8752 if (store_register_using_P (regcache, reg))
8753 return;
8754
8755 /* For now, don't complain if we have no way to write the
8756 register. GDB loses track of unavailable registers too
8757 easily. Some day, this may be an error. We don't have
8758 any way to read the register, either... */
8759 if (!reg->in_g_packet)
8760 return;
8761
8762 store_registers_using_G (regcache);
8763 return;
8764 }
8765
8766 store_registers_using_G (regcache);
8767
8768 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8769 if (!rsa->regs[i].in_g_packet)
8770 if (!store_register_using_P (regcache, &rsa->regs[i]))
8771 /* See above for why we do not issue an error here. */
8772 continue;
8773 }
8774 \f
8775
8776 /* Return the number of hex digits in num. */
8777
8778 static int
8779 hexnumlen (ULONGEST num)
8780 {
8781 int i;
8782
8783 for (i = 0; num != 0; i++)
8784 num >>= 4;
8785
8786 return std::max (i, 1);
8787 }
8788
8789 /* Set BUF to the minimum number of hex digits representing NUM. */
8790
8791 static int
8792 hexnumstr (char *buf, ULONGEST num)
8793 {
8794 int len = hexnumlen (num);
8795
8796 return hexnumnstr (buf, num, len);
8797 }
8798
8799
8800 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8801
8802 static int
8803 hexnumnstr (char *buf, ULONGEST num, int width)
8804 {
8805 int i;
8806
8807 buf[width] = '\0';
8808
8809 for (i = width - 1; i >= 0; i--)
8810 {
8811 buf[i] = "0123456789abcdef"[(num & 0xf)];
8812 num >>= 4;
8813 }
8814
8815 return width;
8816 }
8817
8818 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8819
8820 static CORE_ADDR
8821 remote_address_masked (CORE_ADDR addr)
8822 {
8823 unsigned int address_size = remote_address_size;
8824
8825 /* If "remoteaddresssize" was not set, default to target address size. */
8826 if (!address_size)
8827 address_size = gdbarch_addr_bit (target_gdbarch ());
8828
8829 if (address_size > 0
8830 && address_size < (sizeof (ULONGEST) * 8))
8831 {
8832 /* Only create a mask when that mask can safely be constructed
8833 in a ULONGEST variable. */
8834 ULONGEST mask = 1;
8835
8836 mask = (mask << address_size) - 1;
8837 addr &= mask;
8838 }
8839 return addr;
8840 }
8841
8842 /* Determine whether the remote target supports binary downloading.
8843 This is accomplished by sending a no-op memory write of zero length
8844 to the target at the specified address. It does not suffice to send
8845 the whole packet, since many stubs strip the eighth bit and
8846 subsequently compute a wrong checksum, which causes real havoc with
8847 remote_write_bytes.
8848
8849 NOTE: This can still lose if the serial line is not eight-bit
8850 clean. In cases like this, the user should clear "remote
8851 X-packet". */
8852
8853 void
8854 remote_target::check_binary_download (CORE_ADDR addr)
8855 {
8856 struct remote_state *rs = get_remote_state ();
8857
8858 switch (packet_support (PACKET_X))
8859 {
8860 case PACKET_DISABLE:
8861 break;
8862 case PACKET_ENABLE:
8863 break;
8864 case PACKET_SUPPORT_UNKNOWN:
8865 {
8866 char *p;
8867
8868 p = rs->buf.data ();
8869 *p++ = 'X';
8870 p += hexnumstr (p, (ULONGEST) addr);
8871 *p++ = ',';
8872 p += hexnumstr (p, (ULONGEST) 0);
8873 *p++ = ':';
8874 *p = '\0';
8875
8876 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8877 getpkt (&rs->buf, 0);
8878
8879 if (rs->buf[0] == '\0')
8880 {
8881 remote_debug_printf ("binary downloading NOT supported by target");
8882 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8883 }
8884 else
8885 {
8886 remote_debug_printf ("binary downloading supported by target");
8887 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8888 }
8889 break;
8890 }
8891 }
8892 }
8893
8894 /* Helper function to resize the payload in order to try to get a good
8895 alignment. We try to write an amount of data such that the next write will
8896 start on an address aligned on REMOTE_ALIGN_WRITES. */
8897
8898 static int
8899 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8900 {
8901 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8902 }
8903
8904 /* Write memory data directly to the remote machine.
8905 This does not inform the data cache; the data cache uses this.
8906 HEADER is the starting part of the packet.
8907 MEMADDR is the address in the remote memory space.
8908 MYADDR is the address of the buffer in our space.
8909 LEN_UNITS is the number of addressable units to write.
8910 UNIT_SIZE is the length in bytes of an addressable unit.
8911 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8912 should send data as binary ('X'), or hex-encoded ('M').
8913
8914 The function creates packet of the form
8915 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8916
8917 where encoding of <DATA> is terminated by PACKET_FORMAT.
8918
8919 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8920 are omitted.
8921
8922 Return the transferred status, error or OK (an
8923 'enum target_xfer_status' value). Save the number of addressable units
8924 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8925
8926 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8927 exchange between gdb and the stub could look like (?? in place of the
8928 checksum):
8929
8930 -> $m1000,4#??
8931 <- aaaabbbbccccdddd
8932
8933 -> $M1000,3:eeeeffffeeee#??
8934 <- OK
8935
8936 -> $m1000,4#??
8937 <- eeeeffffeeeedddd */
8938
8939 target_xfer_status
8940 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8941 const gdb_byte *myaddr,
8942 ULONGEST len_units,
8943 int unit_size,
8944 ULONGEST *xfered_len_units,
8945 char packet_format, int use_length)
8946 {
8947 struct remote_state *rs = get_remote_state ();
8948 char *p;
8949 char *plen = NULL;
8950 int plenlen = 0;
8951 int todo_units;
8952 int units_written;
8953 int payload_capacity_bytes;
8954 int payload_length_bytes;
8955
8956 if (packet_format != 'X' && packet_format != 'M')
8957 internal_error (__FILE__, __LINE__,
8958 _("remote_write_bytes_aux: bad packet format"));
8959
8960 if (len_units == 0)
8961 return TARGET_XFER_EOF;
8962
8963 payload_capacity_bytes = get_memory_write_packet_size ();
8964
8965 /* The packet buffer will be large enough for the payload;
8966 get_memory_packet_size ensures this. */
8967 rs->buf[0] = '\0';
8968
8969 /* Compute the size of the actual payload by subtracting out the
8970 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8971
8972 payload_capacity_bytes -= strlen ("$,:#NN");
8973 if (!use_length)
8974 /* The comma won't be used. */
8975 payload_capacity_bytes += 1;
8976 payload_capacity_bytes -= strlen (header);
8977 payload_capacity_bytes -= hexnumlen (memaddr);
8978
8979 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8980
8981 strcat (rs->buf.data (), header);
8982 p = rs->buf.data () + strlen (header);
8983
8984 /* Compute a best guess of the number of bytes actually transfered. */
8985 if (packet_format == 'X')
8986 {
8987 /* Best guess at number of bytes that will fit. */
8988 todo_units = std::min (len_units,
8989 (ULONGEST) payload_capacity_bytes / unit_size);
8990 if (use_length)
8991 payload_capacity_bytes -= hexnumlen (todo_units);
8992 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8993 }
8994 else
8995 {
8996 /* Number of bytes that will fit. */
8997 todo_units
8998 = std::min (len_units,
8999 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
9000 if (use_length)
9001 payload_capacity_bytes -= hexnumlen (todo_units);
9002 todo_units = std::min (todo_units,
9003 (payload_capacity_bytes / unit_size) / 2);
9004 }
9005
9006 if (todo_units <= 0)
9007 internal_error (__FILE__, __LINE__,
9008 _("minimum packet size too small to write data"));
9009
9010 /* If we already need another packet, then try to align the end
9011 of this packet to a useful boundary. */
9012 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
9013 todo_units = align_for_efficient_write (todo_units, memaddr);
9014
9015 /* Append "<memaddr>". */
9016 memaddr = remote_address_masked (memaddr);
9017 p += hexnumstr (p, (ULONGEST) memaddr);
9018
9019 if (use_length)
9020 {
9021 /* Append ",". */
9022 *p++ = ',';
9023
9024 /* Append the length and retain its location and size. It may need to be
9025 adjusted once the packet body has been created. */
9026 plen = p;
9027 plenlen = hexnumstr (p, (ULONGEST) todo_units);
9028 p += plenlen;
9029 }
9030
9031 /* Append ":". */
9032 *p++ = ':';
9033 *p = '\0';
9034
9035 /* Append the packet body. */
9036 if (packet_format == 'X')
9037 {
9038 /* Binary mode. Send target system values byte by byte, in
9039 increasing byte addresses. Only escape certain critical
9040 characters. */
9041 payload_length_bytes =
9042 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
9043 &units_written, payload_capacity_bytes);
9044
9045 /* If not all TODO units fit, then we'll need another packet. Make
9046 a second try to keep the end of the packet aligned. Don't do
9047 this if the packet is tiny. */
9048 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
9049 {
9050 int new_todo_units;
9051
9052 new_todo_units = align_for_efficient_write (units_written, memaddr);
9053
9054 if (new_todo_units != units_written)
9055 payload_length_bytes =
9056 remote_escape_output (myaddr, new_todo_units, unit_size,
9057 (gdb_byte *) p, &units_written,
9058 payload_capacity_bytes);
9059 }
9060
9061 p += payload_length_bytes;
9062 if (use_length && units_written < todo_units)
9063 {
9064 /* Escape chars have filled up the buffer prematurely,
9065 and we have actually sent fewer units than planned.
9066 Fix-up the length field of the packet. Use the same
9067 number of characters as before. */
9068 plen += hexnumnstr (plen, (ULONGEST) units_written,
9069 plenlen);
9070 *plen = ':'; /* overwrite \0 from hexnumnstr() */
9071 }
9072 }
9073 else
9074 {
9075 /* Normal mode: Send target system values byte by byte, in
9076 increasing byte addresses. Each byte is encoded as a two hex
9077 value. */
9078 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
9079 units_written = todo_units;
9080 }
9081
9082 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
9083 getpkt (&rs->buf, 0);
9084
9085 if (rs->buf[0] == 'E')
9086 return TARGET_XFER_E_IO;
9087
9088 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
9089 send fewer units than we'd planned. */
9090 *xfered_len_units = (ULONGEST) units_written;
9091 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9092 }
9093
9094 /* Write memory data directly to the remote machine.
9095 This does not inform the data cache; the data cache uses this.
9096 MEMADDR is the address in the remote memory space.
9097 MYADDR is the address of the buffer in our space.
9098 LEN is the number of bytes.
9099
9100 Return the transferred status, error or OK (an
9101 'enum target_xfer_status' value). Save the number of bytes
9102 transferred in *XFERED_LEN. Only transfer a single packet. */
9103
9104 target_xfer_status
9105 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
9106 ULONGEST len, int unit_size,
9107 ULONGEST *xfered_len)
9108 {
9109 const char *packet_format = NULL;
9110
9111 /* Check whether the target supports binary download. */
9112 check_binary_download (memaddr);
9113
9114 switch (packet_support (PACKET_X))
9115 {
9116 case PACKET_ENABLE:
9117 packet_format = "X";
9118 break;
9119 case PACKET_DISABLE:
9120 packet_format = "M";
9121 break;
9122 case PACKET_SUPPORT_UNKNOWN:
9123 internal_error (__FILE__, __LINE__,
9124 _("remote_write_bytes: bad internal state"));
9125 default:
9126 internal_error (__FILE__, __LINE__, _("bad switch"));
9127 }
9128
9129 return remote_write_bytes_aux (packet_format,
9130 memaddr, myaddr, len, unit_size, xfered_len,
9131 packet_format[0], 1);
9132 }
9133
9134 /* Read memory data directly from the remote machine.
9135 This does not use the data cache; the data cache uses this.
9136 MEMADDR is the address in the remote memory space.
9137 MYADDR is the address of the buffer in our space.
9138 LEN_UNITS is the number of addressable memory units to read..
9139 UNIT_SIZE is the length in bytes of an addressable unit.
9140
9141 Return the transferred status, error or OK (an
9142 'enum target_xfer_status' value). Save the number of bytes
9143 transferred in *XFERED_LEN_UNITS.
9144
9145 See the comment of remote_write_bytes_aux for an example of
9146 memory read/write exchange between gdb and the stub. */
9147
9148 target_xfer_status
9149 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
9150 ULONGEST len_units,
9151 int unit_size, ULONGEST *xfered_len_units)
9152 {
9153 struct remote_state *rs = get_remote_state ();
9154 int buf_size_bytes; /* Max size of packet output buffer. */
9155 char *p;
9156 int todo_units;
9157 int decoded_bytes;
9158
9159 buf_size_bytes = get_memory_read_packet_size ();
9160 /* The packet buffer will be large enough for the payload;
9161 get_memory_packet_size ensures this. */
9162
9163 /* Number of units that will fit. */
9164 todo_units = std::min (len_units,
9165 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9166
9167 /* Construct "m"<memaddr>","<len>". */
9168 memaddr = remote_address_masked (memaddr);
9169 p = rs->buf.data ();
9170 *p++ = 'm';
9171 p += hexnumstr (p, (ULONGEST) memaddr);
9172 *p++ = ',';
9173 p += hexnumstr (p, (ULONGEST) todo_units);
9174 *p = '\0';
9175 putpkt (rs->buf);
9176 getpkt (&rs->buf, 0);
9177 if (rs->buf[0] == 'E'
9178 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9179 && rs->buf[3] == '\0')
9180 return TARGET_XFER_E_IO;
9181 /* Reply describes memory byte by byte, each byte encoded as two hex
9182 characters. */
9183 p = rs->buf.data ();
9184 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9185 /* Return what we have. Let higher layers handle partial reads. */
9186 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9187 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9188 }
9189
9190 /* Using the set of read-only target sections of remote, read live
9191 read-only memory.
9192
9193 For interface/parameters/return description see target.h,
9194 to_xfer_partial. */
9195
9196 target_xfer_status
9197 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9198 ULONGEST memaddr,
9199 ULONGEST len,
9200 int unit_size,
9201 ULONGEST *xfered_len)
9202 {
9203 const struct target_section *secp;
9204
9205 secp = target_section_by_addr (this, memaddr);
9206 if (secp != NULL
9207 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
9208 {
9209 ULONGEST memend = memaddr + len;
9210
9211 const target_section_table *table = target_get_section_table (this);
9212 for (const target_section &p : *table)
9213 {
9214 if (memaddr >= p.addr)
9215 {
9216 if (memend <= p.endaddr)
9217 {
9218 /* Entire transfer is within this section. */
9219 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9220 xfered_len);
9221 }
9222 else if (memaddr >= p.endaddr)
9223 {
9224 /* This section ends before the transfer starts. */
9225 continue;
9226 }
9227 else
9228 {
9229 /* This section overlaps the transfer. Just do half. */
9230 len = p.endaddr - memaddr;
9231 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9232 xfered_len);
9233 }
9234 }
9235 }
9236 }
9237
9238 return TARGET_XFER_EOF;
9239 }
9240
9241 /* Similar to remote_read_bytes_1, but it reads from the remote stub
9242 first if the requested memory is unavailable in traceframe.
9243 Otherwise, fall back to remote_read_bytes_1. */
9244
9245 target_xfer_status
9246 remote_target::remote_read_bytes (CORE_ADDR memaddr,
9247 gdb_byte *myaddr, ULONGEST len, int unit_size,
9248 ULONGEST *xfered_len)
9249 {
9250 if (len == 0)
9251 return TARGET_XFER_EOF;
9252
9253 if (get_traceframe_number () != -1)
9254 {
9255 std::vector<mem_range> available;
9256
9257 /* If we fail to get the set of available memory, then the
9258 target does not support querying traceframe info, and so we
9259 attempt reading from the traceframe anyway (assuming the
9260 target implements the old QTro packet then). */
9261 if (traceframe_available_memory (&available, memaddr, len))
9262 {
9263 if (available.empty () || available[0].start != memaddr)
9264 {
9265 enum target_xfer_status res;
9266
9267 /* Don't read into the traceframe's available
9268 memory. */
9269 if (!available.empty ())
9270 {
9271 LONGEST oldlen = len;
9272
9273 len = available[0].start - memaddr;
9274 gdb_assert (len <= oldlen);
9275 }
9276
9277 /* This goes through the topmost target again. */
9278 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
9279 len, unit_size, xfered_len);
9280 if (res == TARGET_XFER_OK)
9281 return TARGET_XFER_OK;
9282 else
9283 {
9284 /* No use trying further, we know some memory starting
9285 at MEMADDR isn't available. */
9286 *xfered_len = len;
9287 return (*xfered_len != 0) ?
9288 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
9289 }
9290 }
9291
9292 /* Don't try to read more than how much is available, in
9293 case the target implements the deprecated QTro packet to
9294 cater for older GDBs (the target's knowledge of read-only
9295 sections may be outdated by now). */
9296 len = available[0].length;
9297 }
9298 }
9299
9300 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
9301 }
9302
9303 \f
9304
9305 /* Sends a packet with content determined by the printf format string
9306 FORMAT and the remaining arguments, then gets the reply. Returns
9307 whether the packet was a success, a failure, or unknown. */
9308
9309 packet_result
9310 remote_target::remote_send_printf (const char *format, ...)
9311 {
9312 struct remote_state *rs = get_remote_state ();
9313 int max_size = get_remote_packet_size ();
9314 va_list ap;
9315
9316 va_start (ap, format);
9317
9318 rs->buf[0] = '\0';
9319 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
9320
9321 va_end (ap);
9322
9323 if (size >= max_size)
9324 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
9325
9326 if (putpkt (rs->buf) < 0)
9327 error (_("Communication problem with target."));
9328
9329 rs->buf[0] = '\0';
9330 getpkt (&rs->buf, 0);
9331
9332 return packet_check_result (rs->buf);
9333 }
9334
9335 /* Flash writing can take quite some time. We'll set
9336 effectively infinite timeout for flash operations.
9337 In future, we'll need to decide on a better approach. */
9338 static const int remote_flash_timeout = 1000;
9339
9340 void
9341 remote_target::flash_erase (ULONGEST address, LONGEST length)
9342 {
9343 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
9344 enum packet_result ret;
9345 scoped_restore restore_timeout
9346 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9347
9348 ret = remote_send_printf ("vFlashErase:%s,%s",
9349 phex (address, addr_size),
9350 phex (length, 4));
9351 switch (ret)
9352 {
9353 case PACKET_UNKNOWN:
9354 error (_("Remote target does not support flash erase"));
9355 case PACKET_ERROR:
9356 error (_("Error erasing flash with vFlashErase packet"));
9357 default:
9358 break;
9359 }
9360 }
9361
9362 target_xfer_status
9363 remote_target::remote_flash_write (ULONGEST address,
9364 ULONGEST length, ULONGEST *xfered_len,
9365 const gdb_byte *data)
9366 {
9367 scoped_restore restore_timeout
9368 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9369 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9370 xfered_len,'X', 0);
9371 }
9372
9373 void
9374 remote_target::flash_done ()
9375 {
9376 int ret;
9377
9378 scoped_restore restore_timeout
9379 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9380
9381 ret = remote_send_printf ("vFlashDone");
9382
9383 switch (ret)
9384 {
9385 case PACKET_UNKNOWN:
9386 error (_("Remote target does not support vFlashDone"));
9387 case PACKET_ERROR:
9388 error (_("Error finishing flash operation"));
9389 default:
9390 break;
9391 }
9392 }
9393
9394 void
9395 remote_target::files_info ()
9396 {
9397 puts_filtered ("Debugging a target over a serial line.\n");
9398 }
9399 \f
9400 /* Stuff for dealing with the packets which are part of this protocol.
9401 See comment at top of file for details. */
9402
9403 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9404 error to higher layers. Called when a serial error is detected.
9405 The exception message is STRING, followed by a colon and a blank,
9406 the system error message for errno at function entry and final dot
9407 for output compatibility with throw_perror_with_name. */
9408
9409 static void
9410 unpush_and_perror (remote_target *target, const char *string)
9411 {
9412 int saved_errno = errno;
9413
9414 remote_unpush_target (target);
9415 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9416 safe_strerror (saved_errno));
9417 }
9418
9419 /* Read a single character from the remote end. The current quit
9420 handler is overridden to avoid quitting in the middle of packet
9421 sequence, as that would break communication with the remote server.
9422 See remote_serial_quit_handler for more detail. */
9423
9424 int
9425 remote_target::readchar (int timeout)
9426 {
9427 int ch;
9428 struct remote_state *rs = get_remote_state ();
9429
9430 {
9431 scoped_restore restore_quit_target
9432 = make_scoped_restore (&curr_quit_handler_target, this);
9433 scoped_restore restore_quit
9434 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9435
9436 rs->got_ctrlc_during_io = 0;
9437
9438 ch = serial_readchar (rs->remote_desc, timeout);
9439
9440 if (rs->got_ctrlc_during_io)
9441 set_quit_flag ();
9442 }
9443
9444 if (ch >= 0)
9445 return ch;
9446
9447 switch ((enum serial_rc) ch)
9448 {
9449 case SERIAL_EOF:
9450 remote_unpush_target (this);
9451 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
9452 /* no return */
9453 case SERIAL_ERROR:
9454 unpush_and_perror (this, _("Remote communication error. "
9455 "Target disconnected."));
9456 /* no return */
9457 case SERIAL_TIMEOUT:
9458 break;
9459 }
9460 return ch;
9461 }
9462
9463 /* Wrapper for serial_write that closes the target and throws if
9464 writing fails. The current quit handler is overridden to avoid
9465 quitting in the middle of packet sequence, as that would break
9466 communication with the remote server. See
9467 remote_serial_quit_handler for more detail. */
9468
9469 void
9470 remote_target::remote_serial_write (const char *str, int len)
9471 {
9472 struct remote_state *rs = get_remote_state ();
9473
9474 scoped_restore restore_quit_target
9475 = make_scoped_restore (&curr_quit_handler_target, this);
9476 scoped_restore restore_quit
9477 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9478
9479 rs->got_ctrlc_during_io = 0;
9480
9481 if (serial_write (rs->remote_desc, str, len))
9482 {
9483 unpush_and_perror (this, _("Remote communication error. "
9484 "Target disconnected."));
9485 }
9486
9487 if (rs->got_ctrlc_during_io)
9488 set_quit_flag ();
9489 }
9490
9491 /* Return a string representing an escaped version of BUF, of len N.
9492 E.g. \n is converted to \\n, \t to \\t, etc. */
9493
9494 static std::string
9495 escape_buffer (const char *buf, int n)
9496 {
9497 string_file stb;
9498
9499 stb.putstrn (buf, n, '\\');
9500 return std::move (stb.string ());
9501 }
9502
9503 /* Display a null-terminated packet on stdout, for debugging, using C
9504 string notation. */
9505
9506 static void
9507 print_packet (const char *buf)
9508 {
9509 puts_filtered ("\"");
9510 fputstr_filtered (buf, '"', gdb_stdout);
9511 puts_filtered ("\"");
9512 }
9513
9514 int
9515 remote_target::putpkt (const char *buf)
9516 {
9517 return putpkt_binary (buf, strlen (buf));
9518 }
9519
9520 /* Wrapper around remote_target::putpkt to avoid exporting
9521 remote_target. */
9522
9523 int
9524 putpkt (remote_target *remote, const char *buf)
9525 {
9526 return remote->putpkt (buf);
9527 }
9528
9529 /* Send a packet to the remote machine, with error checking. The data
9530 of the packet is in BUF. The string in BUF can be at most
9531 get_remote_packet_size () - 5 to account for the $, # and checksum,
9532 and for a possible /0 if we are debugging (remote_debug) and want
9533 to print the sent packet as a string. */
9534
9535 int
9536 remote_target::putpkt_binary (const char *buf, int cnt)
9537 {
9538 struct remote_state *rs = get_remote_state ();
9539 int i;
9540 unsigned char csum = 0;
9541 gdb::def_vector<char> data (cnt + 6);
9542 char *buf2 = data.data ();
9543
9544 int ch;
9545 int tcount = 0;
9546 char *p;
9547
9548 /* Catch cases like trying to read memory or listing threads while
9549 we're waiting for a stop reply. The remote server wouldn't be
9550 ready to handle this request, so we'd hang and timeout. We don't
9551 have to worry about this in synchronous mode, because in that
9552 case it's not possible to issue a command while the target is
9553 running. This is not a problem in non-stop mode, because in that
9554 case, the stub is always ready to process serial input. */
9555 if (!target_is_non_stop_p ()
9556 && target_is_async_p ()
9557 && rs->waiting_for_stop_reply)
9558 {
9559 error (_("Cannot execute this command while the target is running.\n"
9560 "Use the \"interrupt\" command to stop the target\n"
9561 "and then try again."));
9562 }
9563
9564 /* We're sending out a new packet. Make sure we don't look at a
9565 stale cached response. */
9566 rs->cached_wait_status = 0;
9567
9568 /* Copy the packet into buffer BUF2, encapsulating it
9569 and giving it a checksum. */
9570
9571 p = buf2;
9572 *p++ = '$';
9573
9574 for (i = 0; i < cnt; i++)
9575 {
9576 csum += buf[i];
9577 *p++ = buf[i];
9578 }
9579 *p++ = '#';
9580 *p++ = tohex ((csum >> 4) & 0xf);
9581 *p++ = tohex (csum & 0xf);
9582
9583 /* Send it over and over until we get a positive ack. */
9584
9585 while (1)
9586 {
9587 if (remote_debug)
9588 {
9589 *p = '\0';
9590
9591 int len = (int) (p - buf2);
9592 int max_chars;
9593
9594 if (remote_packet_max_chars < 0)
9595 max_chars = len;
9596 else
9597 max_chars = remote_packet_max_chars;
9598
9599 std::string str
9600 = escape_buffer (buf2, std::min (len, max_chars));
9601
9602 if (len > max_chars)
9603 remote_debug_printf_nofunc
9604 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9605 len - max_chars);
9606 else
9607 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
9608 }
9609 remote_serial_write (buf2, p - buf2);
9610
9611 /* If this is a no acks version of the remote protocol, send the
9612 packet and move on. */
9613 if (rs->noack_mode)
9614 break;
9615
9616 /* Read until either a timeout occurs (-2) or '+' is read.
9617 Handle any notification that arrives in the mean time. */
9618 while (1)
9619 {
9620 ch = readchar (remote_timeout);
9621
9622 switch (ch)
9623 {
9624 case '+':
9625 remote_debug_printf_nofunc ("Received Ack");
9626 return 1;
9627 case '-':
9628 remote_debug_printf_nofunc ("Received Nak");
9629 /* FALLTHROUGH */
9630 case SERIAL_TIMEOUT:
9631 tcount++;
9632 if (tcount > 3)
9633 return 0;
9634 break; /* Retransmit buffer. */
9635 case '$':
9636 {
9637 remote_debug_printf ("Packet instead of Ack, ignoring it");
9638 /* It's probably an old response sent because an ACK
9639 was lost. Gobble up the packet and ack it so it
9640 doesn't get retransmitted when we resend this
9641 packet. */
9642 skip_frame ();
9643 remote_serial_write ("+", 1);
9644 continue; /* Now, go look for +. */
9645 }
9646
9647 case '%':
9648 {
9649 int val;
9650
9651 /* If we got a notification, handle it, and go back to looking
9652 for an ack. */
9653 /* We've found the start of a notification. Now
9654 collect the data. */
9655 val = read_frame (&rs->buf);
9656 if (val >= 0)
9657 {
9658 remote_debug_printf_nofunc
9659 (" Notification received: %s",
9660 escape_buffer (rs->buf.data (), val).c_str ());
9661
9662 handle_notification (rs->notif_state, rs->buf.data ());
9663 /* We're in sync now, rewait for the ack. */
9664 tcount = 0;
9665 }
9666 else
9667 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9668 rs->buf.data ());
9669 continue;
9670 }
9671 /* fall-through */
9672 default:
9673 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9674 rs->buf.data ());
9675 continue;
9676 }
9677 break; /* Here to retransmit. */
9678 }
9679
9680 #if 0
9681 /* This is wrong. If doing a long backtrace, the user should be
9682 able to get out next time we call QUIT, without anything as
9683 violent as interrupt_query. If we want to provide a way out of
9684 here without getting to the next QUIT, it should be based on
9685 hitting ^C twice as in remote_wait. */
9686 if (quit_flag)
9687 {
9688 quit_flag = 0;
9689 interrupt_query ();
9690 }
9691 #endif
9692 }
9693
9694 return 0;
9695 }
9696
9697 /* Come here after finding the start of a frame when we expected an
9698 ack. Do our best to discard the rest of this packet. */
9699
9700 void
9701 remote_target::skip_frame ()
9702 {
9703 int c;
9704
9705 while (1)
9706 {
9707 c = readchar (remote_timeout);
9708 switch (c)
9709 {
9710 case SERIAL_TIMEOUT:
9711 /* Nothing we can do. */
9712 return;
9713 case '#':
9714 /* Discard the two bytes of checksum and stop. */
9715 c = readchar (remote_timeout);
9716 if (c >= 0)
9717 c = readchar (remote_timeout);
9718
9719 return;
9720 case '*': /* Run length encoding. */
9721 /* Discard the repeat count. */
9722 c = readchar (remote_timeout);
9723 if (c < 0)
9724 return;
9725 break;
9726 default:
9727 /* A regular character. */
9728 break;
9729 }
9730 }
9731 }
9732
9733 /* Come here after finding the start of the frame. Collect the rest
9734 into *BUF, verifying the checksum, length, and handling run-length
9735 compression. NUL terminate the buffer. If there is not enough room,
9736 expand *BUF.
9737
9738 Returns -1 on error, number of characters in buffer (ignoring the
9739 trailing NULL) on success. (could be extended to return one of the
9740 SERIAL status indications). */
9741
9742 long
9743 remote_target::read_frame (gdb::char_vector *buf_p)
9744 {
9745 unsigned char csum;
9746 long bc;
9747 int c;
9748 char *buf = buf_p->data ();
9749 struct remote_state *rs = get_remote_state ();
9750
9751 csum = 0;
9752 bc = 0;
9753
9754 while (1)
9755 {
9756 c = readchar (remote_timeout);
9757 switch (c)
9758 {
9759 case SERIAL_TIMEOUT:
9760 remote_debug_printf ("Timeout in mid-packet, retrying");
9761 return -1;
9762
9763 case '$':
9764 remote_debug_printf ("Saw new packet start in middle of old one");
9765 return -1; /* Start a new packet, count retries. */
9766
9767 case '#':
9768 {
9769 unsigned char pktcsum;
9770 int check_0 = 0;
9771 int check_1 = 0;
9772
9773 buf[bc] = '\0';
9774
9775 check_0 = readchar (remote_timeout);
9776 if (check_0 >= 0)
9777 check_1 = readchar (remote_timeout);
9778
9779 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9780 {
9781 remote_debug_printf ("Timeout in checksum, retrying");
9782 return -1;
9783 }
9784 else if (check_0 < 0 || check_1 < 0)
9785 {
9786 remote_debug_printf ("Communication error in checksum");
9787 return -1;
9788 }
9789
9790 /* Don't recompute the checksum; with no ack packets we
9791 don't have any way to indicate a packet retransmission
9792 is necessary. */
9793 if (rs->noack_mode)
9794 return bc;
9795
9796 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9797 if (csum == pktcsum)
9798 return bc;
9799
9800 remote_debug_printf
9801 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9802 pktcsum, csum, escape_buffer (buf, bc).c_str ());
9803
9804 /* Number of characters in buffer ignoring trailing
9805 NULL. */
9806 return -1;
9807 }
9808 case '*': /* Run length encoding. */
9809 {
9810 int repeat;
9811
9812 csum += c;
9813 c = readchar (remote_timeout);
9814 csum += c;
9815 repeat = c - ' ' + 3; /* Compute repeat count. */
9816
9817 /* The character before ``*'' is repeated. */
9818
9819 if (repeat > 0 && repeat <= 255 && bc > 0)
9820 {
9821 if (bc + repeat - 1 >= buf_p->size () - 1)
9822 {
9823 /* Make some more room in the buffer. */
9824 buf_p->resize (buf_p->size () + repeat);
9825 buf = buf_p->data ();
9826 }
9827
9828 memset (&buf[bc], buf[bc - 1], repeat);
9829 bc += repeat;
9830 continue;
9831 }
9832
9833 buf[bc] = '\0';
9834 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9835 return -1;
9836 }
9837 default:
9838 if (bc >= buf_p->size () - 1)
9839 {
9840 /* Make some more room in the buffer. */
9841 buf_p->resize (buf_p->size () * 2);
9842 buf = buf_p->data ();
9843 }
9844
9845 buf[bc++] = c;
9846 csum += c;
9847 continue;
9848 }
9849 }
9850 }
9851
9852 /* Set this to the maximum number of seconds to wait instead of waiting forever
9853 in target_wait(). If this timer times out, then it generates an error and
9854 the command is aborted. This replaces most of the need for timeouts in the
9855 GDB test suite, and makes it possible to distinguish between a hung target
9856 and one with slow communications. */
9857
9858 static int watchdog = 0;
9859 static void
9860 show_watchdog (struct ui_file *file, int from_tty,
9861 struct cmd_list_element *c, const char *value)
9862 {
9863 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9864 }
9865
9866 /* Read a packet from the remote machine, with error checking, and
9867 store it in *BUF. Resize *BUF if necessary to hold the result. If
9868 FOREVER, wait forever rather than timing out; this is used (in
9869 synchronous mode) to wait for a target that is is executing user
9870 code to stop. */
9871 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9872 don't have to change all the calls to getpkt to deal with the
9873 return value, because at the moment I don't know what the right
9874 thing to do it for those. */
9875
9876 void
9877 remote_target::getpkt (gdb::char_vector *buf, int forever)
9878 {
9879 getpkt_sane (buf, forever);
9880 }
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. If FOREVER == 0, this function is allowed to time
9888 out gracefully and return an indication of this to the caller.
9889 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9890 consider receiving a notification enough reason to return to the
9891 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9892 holds a notification or not (a regular packet). */
9893
9894 int
9895 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9896 int forever, int expecting_notif,
9897 int *is_notif)
9898 {
9899 struct remote_state *rs = get_remote_state ();
9900 int c;
9901 int tries;
9902 int timeout;
9903 int val = -1;
9904
9905 /* We're reading a new response. Make sure we don't look at a
9906 previously cached response. */
9907 rs->cached_wait_status = 0;
9908
9909 strcpy (buf->data (), "timeout");
9910
9911 if (forever)
9912 timeout = watchdog > 0 ? watchdog : -1;
9913 else if (expecting_notif)
9914 timeout = 0; /* There should already be a char in the buffer. If
9915 not, bail out. */
9916 else
9917 timeout = remote_timeout;
9918
9919 #define MAX_TRIES 3
9920
9921 /* Process any number of notifications, and then return when
9922 we get a packet. */
9923 for (;;)
9924 {
9925 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9926 times. */
9927 for (tries = 1; tries <= MAX_TRIES; tries++)
9928 {
9929 /* This can loop forever if the remote side sends us
9930 characters continuously, but if it pauses, we'll get
9931 SERIAL_TIMEOUT from readchar because of timeout. Then
9932 we'll count that as a retry.
9933
9934 Note that even when forever is set, we will only wait
9935 forever prior to the start of a packet. After that, we
9936 expect characters to arrive at a brisk pace. They should
9937 show up within remote_timeout intervals. */
9938 do
9939 c = readchar (timeout);
9940 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9941
9942 if (c == SERIAL_TIMEOUT)
9943 {
9944 if (expecting_notif)
9945 return -1; /* Don't complain, it's normal to not get
9946 anything in this case. */
9947
9948 if (forever) /* Watchdog went off? Kill the target. */
9949 {
9950 remote_unpush_target (this);
9951 throw_error (TARGET_CLOSE_ERROR,
9952 _("Watchdog timeout has expired. "
9953 "Target detached."));
9954 }
9955
9956 remote_debug_printf ("Timed out.");
9957 }
9958 else
9959 {
9960 /* We've found the start of a packet or notification.
9961 Now collect the data. */
9962 val = read_frame (buf);
9963 if (val >= 0)
9964 break;
9965 }
9966
9967 remote_serial_write ("-", 1);
9968 }
9969
9970 if (tries > MAX_TRIES)
9971 {
9972 /* We have tried hard enough, and just can't receive the
9973 packet/notification. Give up. */
9974 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9975
9976 /* Skip the ack char if we're in no-ack mode. */
9977 if (!rs->noack_mode)
9978 remote_serial_write ("+", 1);
9979 return -1;
9980 }
9981
9982 /* If we got an ordinary packet, return that to our caller. */
9983 if (c == '$')
9984 {
9985 if (remote_debug)
9986 {
9987 int max_chars;
9988
9989 if (remote_packet_max_chars < 0)
9990 max_chars = val;
9991 else
9992 max_chars = remote_packet_max_chars;
9993
9994 std::string str
9995 = escape_buffer (buf->data (),
9996 std::min (val, max_chars));
9997
9998 if (val > max_chars)
9999 remote_debug_printf_nofunc
10000 ("Packet received: %s [%d bytes omitted]", str.c_str (),
10001 val - max_chars);
10002 else
10003 remote_debug_printf_nofunc ("Packet received: %s",
10004 str.c_str ());
10005 }
10006
10007 /* Skip the ack char if we're in no-ack mode. */
10008 if (!rs->noack_mode)
10009 remote_serial_write ("+", 1);
10010 if (is_notif != NULL)
10011 *is_notif = 0;
10012 return val;
10013 }
10014
10015 /* If we got a notification, handle it, and go back to looking
10016 for a packet. */
10017 else
10018 {
10019 gdb_assert (c == '%');
10020
10021 remote_debug_printf_nofunc
10022 (" Notification received: %s",
10023 escape_buffer (buf->data (), val).c_str ());
10024
10025 if (is_notif != NULL)
10026 *is_notif = 1;
10027
10028 handle_notification (rs->notif_state, buf->data ());
10029
10030 /* Notifications require no acknowledgement. */
10031
10032 if (expecting_notif)
10033 return val;
10034 }
10035 }
10036 }
10037
10038 int
10039 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
10040 {
10041 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
10042 }
10043
10044 int
10045 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
10046 int *is_notif)
10047 {
10048 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
10049 }
10050
10051 /* Kill any new fork children of process PID that haven't been
10052 processed by follow_fork. */
10053
10054 void
10055 remote_target::kill_new_fork_children (int pid)
10056 {
10057 remote_state *rs = get_remote_state ();
10058 struct notif_client *notif = &notif_client_stop;
10059
10060 /* Kill the fork child threads of any threads in process PID
10061 that are stopped at a fork event. */
10062 for (thread_info *thread : all_non_exited_threads (this))
10063 {
10064 struct target_waitstatus *ws = &thread->pending_follow;
10065
10066 if (is_pending_fork_parent (ws, pid, thread->ptid))
10067 {
10068 int child_pid = ws->child_ptid ().pid ();
10069 int res;
10070
10071 res = remote_vkill (child_pid);
10072 if (res != 0)
10073 error (_("Can't kill fork child process %d"), child_pid);
10074 }
10075 }
10076
10077 /* Check for any pending fork events (not reported or processed yet)
10078 in process PID and kill those fork child threads as well. */
10079 remote_notif_get_pending_events (notif);
10080 for (auto &event : rs->stop_reply_queue)
10081 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
10082 {
10083 int child_pid = event->ws.child_ptid ().pid ();
10084 int res;
10085
10086 res = remote_vkill (child_pid);
10087 if (res != 0)
10088 error (_("Can't kill fork child process %d"), child_pid);
10089 }
10090 }
10091
10092 \f
10093 /* Target hook to kill the current inferior. */
10094
10095 void
10096 remote_target::kill ()
10097 {
10098 int res = -1;
10099 int pid = inferior_ptid.pid ();
10100 struct remote_state *rs = get_remote_state ();
10101
10102 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
10103 {
10104 /* If we're stopped while forking and we haven't followed yet,
10105 kill the child task. We need to do this before killing the
10106 parent task because if this is a vfork then the parent will
10107 be sleeping. */
10108 kill_new_fork_children (pid);
10109
10110 res = remote_vkill (pid);
10111 if (res == 0)
10112 {
10113 target_mourn_inferior (inferior_ptid);
10114 return;
10115 }
10116 }
10117
10118 /* If we are in 'target remote' mode and we are killing the only
10119 inferior, then we will tell gdbserver to exit and unpush the
10120 target. */
10121 if (res == -1 && !remote_multi_process_p (rs)
10122 && number_of_live_inferiors (this) == 1)
10123 {
10124 remote_kill_k ();
10125
10126 /* We've killed the remote end, we get to mourn it. If we are
10127 not in extended mode, mourning the inferior also unpushes
10128 remote_ops from the target stack, which closes the remote
10129 connection. */
10130 target_mourn_inferior (inferior_ptid);
10131
10132 return;
10133 }
10134
10135 error (_("Can't kill process"));
10136 }
10137
10138 /* Send a kill request to the target using the 'vKill' packet. */
10139
10140 int
10141 remote_target::remote_vkill (int pid)
10142 {
10143 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
10144 return -1;
10145
10146 remote_state *rs = get_remote_state ();
10147
10148 /* Tell the remote target to detach. */
10149 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
10150 putpkt (rs->buf);
10151 getpkt (&rs->buf, 0);
10152
10153 switch (packet_ok (rs->buf,
10154 &remote_protocol_packets[PACKET_vKill]))
10155 {
10156 case PACKET_OK:
10157 return 0;
10158 case PACKET_ERROR:
10159 return 1;
10160 case PACKET_UNKNOWN:
10161 return -1;
10162 default:
10163 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10164 }
10165 }
10166
10167 /* Send a kill request to the target using the 'k' packet. */
10168
10169 void
10170 remote_target::remote_kill_k ()
10171 {
10172 /* Catch errors so the user can quit from gdb even when we
10173 aren't on speaking terms with the remote system. */
10174 try
10175 {
10176 putpkt ("k");
10177 }
10178 catch (const gdb_exception_error &ex)
10179 {
10180 if (ex.error == TARGET_CLOSE_ERROR)
10181 {
10182 /* If we got an (EOF) error that caused the target
10183 to go away, then we're done, that's what we wanted.
10184 "k" is susceptible to cause a premature EOF, given
10185 that the remote server isn't actually required to
10186 reply to "k", and it can happen that it doesn't
10187 even get to reply ACK to the "k". */
10188 return;
10189 }
10190
10191 /* Otherwise, something went wrong. We didn't actually kill
10192 the target. Just propagate the exception, and let the
10193 user or higher layers decide what to do. */
10194 throw;
10195 }
10196 }
10197
10198 void
10199 remote_target::mourn_inferior ()
10200 {
10201 struct remote_state *rs = get_remote_state ();
10202
10203 /* We're no longer interested in notification events of an inferior
10204 that exited or was killed/detached. */
10205 discard_pending_stop_replies (current_inferior ());
10206
10207 /* In 'target remote' mode with one inferior, we close the connection. */
10208 if (!rs->extended && number_of_live_inferiors (this) <= 1)
10209 {
10210 remote_unpush_target (this);
10211 return;
10212 }
10213
10214 /* In case we got here due to an error, but we're going to stay
10215 connected. */
10216 rs->waiting_for_stop_reply = 0;
10217
10218 /* If the current general thread belonged to the process we just
10219 detached from or has exited, the remote side current general
10220 thread becomes undefined. Considering a case like this:
10221
10222 - We just got here due to a detach.
10223 - The process that we're detaching from happens to immediately
10224 report a global breakpoint being hit in non-stop mode, in the
10225 same thread we had selected before.
10226 - GDB attaches to this process again.
10227 - This event happens to be the next event we handle.
10228
10229 GDB would consider that the current general thread didn't need to
10230 be set on the stub side (with Hg), since for all it knew,
10231 GENERAL_THREAD hadn't changed.
10232
10233 Notice that although in all-stop mode, the remote server always
10234 sets the current thread to the thread reporting the stop event,
10235 that doesn't happen in non-stop mode; in non-stop, the stub *must
10236 not* change the current thread when reporting a breakpoint hit,
10237 due to the decoupling of event reporting and event handling.
10238
10239 To keep things simple, we always invalidate our notion of the
10240 current thread. */
10241 record_currthread (rs, minus_one_ptid);
10242
10243 /* Call common code to mark the inferior as not running. */
10244 generic_mourn_inferior ();
10245 }
10246
10247 bool
10248 extended_remote_target::supports_disable_randomization ()
10249 {
10250 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
10251 }
10252
10253 void
10254 remote_target::extended_remote_disable_randomization (int val)
10255 {
10256 struct remote_state *rs = get_remote_state ();
10257 char *reply;
10258
10259 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10260 "QDisableRandomization:%x", val);
10261 putpkt (rs->buf);
10262 reply = remote_get_noisy_reply ();
10263 if (*reply == '\0')
10264 error (_("Target does not support QDisableRandomization."));
10265 if (strcmp (reply, "OK") != 0)
10266 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10267 }
10268
10269 int
10270 remote_target::extended_remote_run (const std::string &args)
10271 {
10272 struct remote_state *rs = get_remote_state ();
10273 int len;
10274 const char *remote_exec_file = get_remote_exec_file ();
10275
10276 /* If the user has disabled vRun support, or we have detected that
10277 support is not available, do not try it. */
10278 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
10279 return -1;
10280
10281 strcpy (rs->buf.data (), "vRun;");
10282 len = strlen (rs->buf.data ());
10283
10284 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10285 error (_("Remote file name too long for run packet"));
10286 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
10287 strlen (remote_exec_file));
10288
10289 if (!args.empty ())
10290 {
10291 int i;
10292
10293 gdb_argv argv (args.c_str ());
10294 for (i = 0; argv[i] != NULL; i++)
10295 {
10296 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10297 error (_("Argument list too long for run packet"));
10298 rs->buf[len++] = ';';
10299 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
10300 strlen (argv[i]));
10301 }
10302 }
10303
10304 rs->buf[len++] = '\0';
10305
10306 putpkt (rs->buf);
10307 getpkt (&rs->buf, 0);
10308
10309 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
10310 {
10311 case PACKET_OK:
10312 /* We have a wait response. All is well. */
10313 return 0;
10314 case PACKET_UNKNOWN:
10315 return -1;
10316 case PACKET_ERROR:
10317 if (remote_exec_file[0] == '\0')
10318 error (_("Running the default executable on the remote target failed; "
10319 "try \"set remote exec-file\"?"));
10320 else
10321 error (_("Running \"%s\" on the remote target failed"),
10322 remote_exec_file);
10323 default:
10324 gdb_assert_not_reached (_("bad switch"));
10325 }
10326 }
10327
10328 /* Helper function to send set/unset environment packets. ACTION is
10329 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10330 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10331 sent. */
10332
10333 void
10334 remote_target::send_environment_packet (const char *action,
10335 const char *packet,
10336 const char *value)
10337 {
10338 remote_state *rs = get_remote_state ();
10339
10340 /* Convert the environment variable to an hex string, which
10341 is the best format to be transmitted over the wire. */
10342 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10343 strlen (value));
10344
10345 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10346 "%s:%s", packet, encoded_value.c_str ());
10347
10348 putpkt (rs->buf);
10349 getpkt (&rs->buf, 0);
10350 if (strcmp (rs->buf.data (), "OK") != 0)
10351 warning (_("Unable to %s environment variable '%s' on remote."),
10352 action, value);
10353 }
10354
10355 /* Helper function to handle the QEnvironment* packets. */
10356
10357 void
10358 remote_target::extended_remote_environment_support ()
10359 {
10360 remote_state *rs = get_remote_state ();
10361
10362 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10363 {
10364 putpkt ("QEnvironmentReset");
10365 getpkt (&rs->buf, 0);
10366 if (strcmp (rs->buf.data (), "OK") != 0)
10367 warning (_("Unable to reset environment on remote."));
10368 }
10369
10370 gdb_environ *e = &current_inferior ()->environment;
10371
10372 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10373 for (const std::string &el : e->user_set_env ())
10374 send_environment_packet ("set", "QEnvironmentHexEncoded",
10375 el.c_str ());
10376
10377 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10378 for (const std::string &el : e->user_unset_env ())
10379 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10380 }
10381
10382 /* Helper function to set the current working directory for the
10383 inferior in the remote target. */
10384
10385 void
10386 remote_target::extended_remote_set_inferior_cwd ()
10387 {
10388 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10389 {
10390 const std::string &inferior_cwd = current_inferior ()->cwd ();
10391 remote_state *rs = get_remote_state ();
10392
10393 if (!inferior_cwd.empty ())
10394 {
10395 std::string hexpath
10396 = bin2hex ((const gdb_byte *) inferior_cwd.data (),
10397 inferior_cwd.size ());
10398
10399 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10400 "QSetWorkingDir:%s", hexpath.c_str ());
10401 }
10402 else
10403 {
10404 /* An empty inferior_cwd means that the user wants us to
10405 reset the remote server's inferior's cwd. */
10406 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10407 "QSetWorkingDir:");
10408 }
10409
10410 putpkt (rs->buf);
10411 getpkt (&rs->buf, 0);
10412 if (packet_ok (rs->buf,
10413 &remote_protocol_packets[PACKET_QSetWorkingDir])
10414 != PACKET_OK)
10415 error (_("\
10416 Remote replied unexpectedly while setting the inferior's working\n\
10417 directory: %s"),
10418 rs->buf.data ());
10419
10420 }
10421 }
10422
10423 /* In the extended protocol we want to be able to do things like
10424 "run" and have them basically work as expected. So we need
10425 a special create_inferior function. We support changing the
10426 executable file and the command line arguments, but not the
10427 environment. */
10428
10429 void
10430 extended_remote_target::create_inferior (const char *exec_file,
10431 const std::string &args,
10432 char **env, int from_tty)
10433 {
10434 int run_worked;
10435 char *stop_reply;
10436 struct remote_state *rs = get_remote_state ();
10437 const char *remote_exec_file = get_remote_exec_file ();
10438
10439 /* If running asynchronously, register the target file descriptor
10440 with the event loop. */
10441 if (target_can_async_p ())
10442 target_async (1);
10443
10444 /* Disable address space randomization if requested (and supported). */
10445 if (supports_disable_randomization ())
10446 extended_remote_disable_randomization (disable_randomization);
10447
10448 /* If startup-with-shell is on, we inform gdbserver to start the
10449 remote inferior using a shell. */
10450 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10451 {
10452 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10453 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10454 putpkt (rs->buf);
10455 getpkt (&rs->buf, 0);
10456 if (strcmp (rs->buf.data (), "OK") != 0)
10457 error (_("\
10458 Remote replied unexpectedly while setting startup-with-shell: %s"),
10459 rs->buf.data ());
10460 }
10461
10462 extended_remote_environment_support ();
10463
10464 extended_remote_set_inferior_cwd ();
10465
10466 /* Now restart the remote server. */
10467 run_worked = extended_remote_run (args) != -1;
10468 if (!run_worked)
10469 {
10470 /* vRun was not supported. Fail if we need it to do what the
10471 user requested. */
10472 if (remote_exec_file[0])
10473 error (_("Remote target does not support \"set remote exec-file\""));
10474 if (!args.empty ())
10475 error (_("Remote target does not support \"set args\" or run ARGS"));
10476
10477 /* Fall back to "R". */
10478 extended_remote_restart ();
10479 }
10480
10481 /* vRun's success return is a stop reply. */
10482 stop_reply = run_worked ? rs->buf.data () : NULL;
10483 add_current_inferior_and_thread (stop_reply);
10484
10485 /* Get updated offsets, if the stub uses qOffsets. */
10486 get_offsets ();
10487 }
10488 \f
10489
10490 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10491 the list of conditions (in agent expression bytecode format), if any, the
10492 target needs to evaluate. The output is placed into the packet buffer
10493 started from BUF and ended at BUF_END. */
10494
10495 static int
10496 remote_add_target_side_condition (struct gdbarch *gdbarch,
10497 struct bp_target_info *bp_tgt, char *buf,
10498 char *buf_end)
10499 {
10500 if (bp_tgt->conditions.empty ())
10501 return 0;
10502
10503 buf += strlen (buf);
10504 xsnprintf (buf, buf_end - buf, "%s", ";");
10505 buf++;
10506
10507 /* Send conditions to the target. */
10508 for (agent_expr *aexpr : bp_tgt->conditions)
10509 {
10510 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10511 buf += strlen (buf);
10512 for (int i = 0; i < aexpr->len; ++i)
10513 buf = pack_hex_byte (buf, aexpr->buf[i]);
10514 *buf = '\0';
10515 }
10516 return 0;
10517 }
10518
10519 static void
10520 remote_add_target_side_commands (struct gdbarch *gdbarch,
10521 struct bp_target_info *bp_tgt, char *buf)
10522 {
10523 if (bp_tgt->tcommands.empty ())
10524 return;
10525
10526 buf += strlen (buf);
10527
10528 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10529 buf += strlen (buf);
10530
10531 /* Concatenate all the agent expressions that are commands into the
10532 cmds parameter. */
10533 for (agent_expr *aexpr : bp_tgt->tcommands)
10534 {
10535 sprintf (buf, "X%x,", aexpr->len);
10536 buf += strlen (buf);
10537 for (int i = 0; i < aexpr->len; ++i)
10538 buf = pack_hex_byte (buf, aexpr->buf[i]);
10539 *buf = '\0';
10540 }
10541 }
10542
10543 /* Insert a breakpoint. On targets that have software breakpoint
10544 support, we ask the remote target to do the work; on targets
10545 which don't, we insert a traditional memory breakpoint. */
10546
10547 int
10548 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10549 struct bp_target_info *bp_tgt)
10550 {
10551 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10552 If it succeeds, then set the support to PACKET_ENABLE. If it
10553 fails, and the user has explicitly requested the Z support then
10554 report an error, otherwise, mark it disabled and go on. */
10555
10556 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10557 {
10558 CORE_ADDR addr = bp_tgt->reqstd_address;
10559 struct remote_state *rs;
10560 char *p, *endbuf;
10561
10562 /* Make sure the remote is pointing at the right process, if
10563 necessary. */
10564 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10565 set_general_process ();
10566
10567 rs = get_remote_state ();
10568 p = rs->buf.data ();
10569 endbuf = p + get_remote_packet_size ();
10570
10571 *(p++) = 'Z';
10572 *(p++) = '0';
10573 *(p++) = ',';
10574 addr = (ULONGEST) remote_address_masked (addr);
10575 p += hexnumstr (p, addr);
10576 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10577
10578 if (supports_evaluation_of_breakpoint_conditions ())
10579 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10580
10581 if (can_run_breakpoint_commands ())
10582 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10583
10584 putpkt (rs->buf);
10585 getpkt (&rs->buf, 0);
10586
10587 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10588 {
10589 case PACKET_ERROR:
10590 return -1;
10591 case PACKET_OK:
10592 return 0;
10593 case PACKET_UNKNOWN:
10594 break;
10595 }
10596 }
10597
10598 /* If this breakpoint has target-side commands but this stub doesn't
10599 support Z0 packets, throw error. */
10600 if (!bp_tgt->tcommands.empty ())
10601 throw_error (NOT_SUPPORTED_ERROR, _("\
10602 Target doesn't support breakpoints that have target side commands."));
10603
10604 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10605 }
10606
10607 int
10608 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10609 struct bp_target_info *bp_tgt,
10610 enum remove_bp_reason reason)
10611 {
10612 CORE_ADDR addr = bp_tgt->placed_address;
10613 struct remote_state *rs = get_remote_state ();
10614
10615 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10616 {
10617 char *p = rs->buf.data ();
10618 char *endbuf = p + get_remote_packet_size ();
10619
10620 /* Make sure the remote is pointing at the right process, if
10621 necessary. */
10622 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10623 set_general_process ();
10624
10625 *(p++) = 'z';
10626 *(p++) = '0';
10627 *(p++) = ',';
10628
10629 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10630 p += hexnumstr (p, addr);
10631 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10632
10633 putpkt (rs->buf);
10634 getpkt (&rs->buf, 0);
10635
10636 return (rs->buf[0] == 'E');
10637 }
10638
10639 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10640 }
10641
10642 static enum Z_packet_type
10643 watchpoint_to_Z_packet (int type)
10644 {
10645 switch (type)
10646 {
10647 case hw_write:
10648 return Z_PACKET_WRITE_WP;
10649 break;
10650 case hw_read:
10651 return Z_PACKET_READ_WP;
10652 break;
10653 case hw_access:
10654 return Z_PACKET_ACCESS_WP;
10655 break;
10656 default:
10657 internal_error (__FILE__, __LINE__,
10658 _("hw_bp_to_z: bad watchpoint type %d"), type);
10659 }
10660 }
10661
10662 int
10663 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10664 enum target_hw_bp_type type, struct expression *cond)
10665 {
10666 struct remote_state *rs = get_remote_state ();
10667 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10668 char *p;
10669 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10670
10671 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10672 return 1;
10673
10674 /* Make sure the remote is pointing at the right process, if
10675 necessary. */
10676 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10677 set_general_process ();
10678
10679 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10680 p = strchr (rs->buf.data (), '\0');
10681 addr = remote_address_masked (addr);
10682 p += hexnumstr (p, (ULONGEST) addr);
10683 xsnprintf (p, endbuf - p, ",%x", len);
10684
10685 putpkt (rs->buf);
10686 getpkt (&rs->buf, 0);
10687
10688 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10689 {
10690 case PACKET_ERROR:
10691 return -1;
10692 case PACKET_UNKNOWN:
10693 return 1;
10694 case PACKET_OK:
10695 return 0;
10696 }
10697 internal_error (__FILE__, __LINE__,
10698 _("remote_insert_watchpoint: reached end of function"));
10699 }
10700
10701 bool
10702 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10703 CORE_ADDR start, int length)
10704 {
10705 CORE_ADDR diff = remote_address_masked (addr - start);
10706
10707 return diff < length;
10708 }
10709
10710
10711 int
10712 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10713 enum target_hw_bp_type type, struct expression *cond)
10714 {
10715 struct remote_state *rs = get_remote_state ();
10716 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10717 char *p;
10718 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10719
10720 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10721 return -1;
10722
10723 /* Make sure the remote is pointing at the right process, if
10724 necessary. */
10725 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10726 set_general_process ();
10727
10728 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10729 p = strchr (rs->buf.data (), '\0');
10730 addr = remote_address_masked (addr);
10731 p += hexnumstr (p, (ULONGEST) addr);
10732 xsnprintf (p, endbuf - p, ",%x", len);
10733 putpkt (rs->buf);
10734 getpkt (&rs->buf, 0);
10735
10736 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10737 {
10738 case PACKET_ERROR:
10739 case PACKET_UNKNOWN:
10740 return -1;
10741 case PACKET_OK:
10742 return 0;
10743 }
10744 internal_error (__FILE__, __LINE__,
10745 _("remote_remove_watchpoint: reached end of function"));
10746 }
10747
10748
10749 static int remote_hw_watchpoint_limit = -1;
10750 static int remote_hw_watchpoint_length_limit = -1;
10751 static int remote_hw_breakpoint_limit = -1;
10752
10753 int
10754 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10755 {
10756 if (remote_hw_watchpoint_length_limit == 0)
10757 return 0;
10758 else if (remote_hw_watchpoint_length_limit < 0)
10759 return 1;
10760 else if (len <= remote_hw_watchpoint_length_limit)
10761 return 1;
10762 else
10763 return 0;
10764 }
10765
10766 int
10767 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10768 {
10769 if (type == bp_hardware_breakpoint)
10770 {
10771 if (remote_hw_breakpoint_limit == 0)
10772 return 0;
10773 else if (remote_hw_breakpoint_limit < 0)
10774 return 1;
10775 else if (cnt <= remote_hw_breakpoint_limit)
10776 return 1;
10777 }
10778 else
10779 {
10780 if (remote_hw_watchpoint_limit == 0)
10781 return 0;
10782 else if (remote_hw_watchpoint_limit < 0)
10783 return 1;
10784 else if (ot)
10785 return -1;
10786 else if (cnt <= remote_hw_watchpoint_limit)
10787 return 1;
10788 }
10789 return -1;
10790 }
10791
10792 /* The to_stopped_by_sw_breakpoint method of target remote. */
10793
10794 bool
10795 remote_target::stopped_by_sw_breakpoint ()
10796 {
10797 struct thread_info *thread = inferior_thread ();
10798
10799 return (thread->priv != NULL
10800 && (get_remote_thread_info (thread)->stop_reason
10801 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10802 }
10803
10804 /* The to_supports_stopped_by_sw_breakpoint method of target
10805 remote. */
10806
10807 bool
10808 remote_target::supports_stopped_by_sw_breakpoint ()
10809 {
10810 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10811 }
10812
10813 /* The to_stopped_by_hw_breakpoint method of target remote. */
10814
10815 bool
10816 remote_target::stopped_by_hw_breakpoint ()
10817 {
10818 struct thread_info *thread = inferior_thread ();
10819
10820 return (thread->priv != NULL
10821 && (get_remote_thread_info (thread)->stop_reason
10822 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10823 }
10824
10825 /* The to_supports_stopped_by_hw_breakpoint method of target
10826 remote. */
10827
10828 bool
10829 remote_target::supports_stopped_by_hw_breakpoint ()
10830 {
10831 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10832 }
10833
10834 bool
10835 remote_target::stopped_by_watchpoint ()
10836 {
10837 struct thread_info *thread = inferior_thread ();
10838
10839 return (thread->priv != NULL
10840 && (get_remote_thread_info (thread)->stop_reason
10841 == TARGET_STOPPED_BY_WATCHPOINT));
10842 }
10843
10844 bool
10845 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10846 {
10847 struct thread_info *thread = inferior_thread ();
10848
10849 if (thread->priv != NULL
10850 && (get_remote_thread_info (thread)->stop_reason
10851 == TARGET_STOPPED_BY_WATCHPOINT))
10852 {
10853 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10854 return true;
10855 }
10856
10857 return false;
10858 }
10859
10860
10861 int
10862 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10863 struct bp_target_info *bp_tgt)
10864 {
10865 CORE_ADDR addr = bp_tgt->reqstd_address;
10866 struct remote_state *rs;
10867 char *p, *endbuf;
10868 char *message;
10869
10870 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10871 return -1;
10872
10873 /* Make sure the remote is pointing at the right process, if
10874 necessary. */
10875 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10876 set_general_process ();
10877
10878 rs = get_remote_state ();
10879 p = rs->buf.data ();
10880 endbuf = p + get_remote_packet_size ();
10881
10882 *(p++) = 'Z';
10883 *(p++) = '1';
10884 *(p++) = ',';
10885
10886 addr = remote_address_masked (addr);
10887 p += hexnumstr (p, (ULONGEST) addr);
10888 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10889
10890 if (supports_evaluation_of_breakpoint_conditions ())
10891 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10892
10893 if (can_run_breakpoint_commands ())
10894 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10895
10896 putpkt (rs->buf);
10897 getpkt (&rs->buf, 0);
10898
10899 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10900 {
10901 case PACKET_ERROR:
10902 if (rs->buf[1] == '.')
10903 {
10904 message = strchr (&rs->buf[2], '.');
10905 if (message)
10906 error (_("Remote failure reply: %s"), message + 1);
10907 }
10908 return -1;
10909 case PACKET_UNKNOWN:
10910 return -1;
10911 case PACKET_OK:
10912 return 0;
10913 }
10914 internal_error (__FILE__, __LINE__,
10915 _("remote_insert_hw_breakpoint: reached end of function"));
10916 }
10917
10918
10919 int
10920 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10921 struct bp_target_info *bp_tgt)
10922 {
10923 CORE_ADDR addr;
10924 struct remote_state *rs = get_remote_state ();
10925 char *p = rs->buf.data ();
10926 char *endbuf = p + get_remote_packet_size ();
10927
10928 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10929 return -1;
10930
10931 /* Make sure the remote is pointing at the right process, if
10932 necessary. */
10933 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10934 set_general_process ();
10935
10936 *(p++) = 'z';
10937 *(p++) = '1';
10938 *(p++) = ',';
10939
10940 addr = remote_address_masked (bp_tgt->placed_address);
10941 p += hexnumstr (p, (ULONGEST) addr);
10942 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10943
10944 putpkt (rs->buf);
10945 getpkt (&rs->buf, 0);
10946
10947 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10948 {
10949 case PACKET_ERROR:
10950 case PACKET_UNKNOWN:
10951 return -1;
10952 case PACKET_OK:
10953 return 0;
10954 }
10955 internal_error (__FILE__, __LINE__,
10956 _("remote_remove_hw_breakpoint: reached end of function"));
10957 }
10958
10959 /* Verify memory using the "qCRC:" request. */
10960
10961 int
10962 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10963 {
10964 struct remote_state *rs = get_remote_state ();
10965 unsigned long host_crc, target_crc;
10966 char *tmp;
10967
10968 /* It doesn't make sense to use qCRC if the remote target is
10969 connected but not running. */
10970 if (target_has_execution ()
10971 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10972 {
10973 enum packet_result result;
10974
10975 /* Make sure the remote is pointing at the right process. */
10976 set_general_process ();
10977
10978 /* FIXME: assumes lma can fit into long. */
10979 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10980 (long) lma, (long) size);
10981 putpkt (rs->buf);
10982
10983 /* Be clever; compute the host_crc before waiting for target
10984 reply. */
10985 host_crc = xcrc32 (data, size, 0xffffffff);
10986
10987 getpkt (&rs->buf, 0);
10988
10989 result = packet_ok (rs->buf,
10990 &remote_protocol_packets[PACKET_qCRC]);
10991 if (result == PACKET_ERROR)
10992 return -1;
10993 else if (result == PACKET_OK)
10994 {
10995 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10996 target_crc = target_crc * 16 + fromhex (*tmp);
10997
10998 return (host_crc == target_crc);
10999 }
11000 }
11001
11002 return simple_verify_memory (this, data, lma, size);
11003 }
11004
11005 /* compare-sections command
11006
11007 With no arguments, compares each loadable section in the exec bfd
11008 with the same memory range on the target, and reports mismatches.
11009 Useful for verifying the image on the target against the exec file. */
11010
11011 static void
11012 compare_sections_command (const char *args, int from_tty)
11013 {
11014 asection *s;
11015 const char *sectname;
11016 bfd_size_type size;
11017 bfd_vma lma;
11018 int matched = 0;
11019 int mismatched = 0;
11020 int res;
11021 int read_only = 0;
11022
11023 if (!current_program_space->exec_bfd ())
11024 error (_("command cannot be used without an exec file"));
11025
11026 if (args != NULL && strcmp (args, "-r") == 0)
11027 {
11028 read_only = 1;
11029 args = NULL;
11030 }
11031
11032 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
11033 {
11034 if (!(s->flags & SEC_LOAD))
11035 continue; /* Skip non-loadable section. */
11036
11037 if (read_only && (s->flags & SEC_READONLY) == 0)
11038 continue; /* Skip writeable sections */
11039
11040 size = bfd_section_size (s);
11041 if (size == 0)
11042 continue; /* Skip zero-length section. */
11043
11044 sectname = bfd_section_name (s);
11045 if (args && strcmp (args, sectname) != 0)
11046 continue; /* Not the section selected by user. */
11047
11048 matched = 1; /* Do this section. */
11049 lma = s->lma;
11050
11051 gdb::byte_vector sectdata (size);
11052 bfd_get_section_contents (current_program_space->exec_bfd (), s,
11053 sectdata.data (), 0, size);
11054
11055 res = target_verify_memory (sectdata.data (), lma, size);
11056
11057 if (res == -1)
11058 error (_("target memory fault, section %s, range %s -- %s"), sectname,
11059 paddress (target_gdbarch (), lma),
11060 paddress (target_gdbarch (), lma + size));
11061
11062 printf_filtered ("Section %s, range %s -- %s: ", sectname,
11063 paddress (target_gdbarch (), lma),
11064 paddress (target_gdbarch (), lma + size));
11065 if (res)
11066 printf_filtered ("matched.\n");
11067 else
11068 {
11069 printf_filtered ("MIS-MATCHED!\n");
11070 mismatched++;
11071 }
11072 }
11073 if (mismatched > 0)
11074 warning (_("One or more sections of the target image does not match\n\
11075 the loaded file\n"));
11076 if (args && !matched)
11077 printf_filtered (_("No loaded section named '%s'.\n"), args);
11078 }
11079
11080 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
11081 into remote target. The number of bytes written to the remote
11082 target is returned, or -1 for error. */
11083
11084 target_xfer_status
11085 remote_target::remote_write_qxfer (const char *object_name,
11086 const char *annex, const gdb_byte *writebuf,
11087 ULONGEST offset, LONGEST len,
11088 ULONGEST *xfered_len,
11089 struct packet_config *packet)
11090 {
11091 int i, buf_len;
11092 ULONGEST n;
11093 struct remote_state *rs = get_remote_state ();
11094 int max_size = get_memory_write_packet_size ();
11095
11096 if (packet_config_support (packet) == PACKET_DISABLE)
11097 return TARGET_XFER_E_IO;
11098
11099 /* Insert header. */
11100 i = snprintf (rs->buf.data (), max_size,
11101 "qXfer:%s:write:%s:%s:",
11102 object_name, annex ? annex : "",
11103 phex_nz (offset, sizeof offset));
11104 max_size -= (i + 1);
11105
11106 /* Escape as much data as fits into rs->buf. */
11107 buf_len = remote_escape_output
11108 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
11109
11110 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11111 || getpkt_sane (&rs->buf, 0) < 0
11112 || packet_ok (rs->buf, packet) != PACKET_OK)
11113 return TARGET_XFER_E_IO;
11114
11115 unpack_varlen_hex (rs->buf.data (), &n);
11116
11117 *xfered_len = n;
11118 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11119 }
11120
11121 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11122 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11123 number of bytes read is returned, or 0 for EOF, or -1 for error.
11124 The number of bytes read may be less than LEN without indicating an
11125 EOF. PACKET is checked and updated to indicate whether the remote
11126 target supports this object. */
11127
11128 target_xfer_status
11129 remote_target::remote_read_qxfer (const char *object_name,
11130 const char *annex,
11131 gdb_byte *readbuf, ULONGEST offset,
11132 LONGEST len,
11133 ULONGEST *xfered_len,
11134 struct packet_config *packet)
11135 {
11136 struct remote_state *rs = get_remote_state ();
11137 LONGEST i, n, packet_len;
11138
11139 if (packet_config_support (packet) == PACKET_DISABLE)
11140 return TARGET_XFER_E_IO;
11141
11142 /* Check whether we've cached an end-of-object packet that matches
11143 this request. */
11144 if (rs->finished_object)
11145 {
11146 if (strcmp (object_name, rs->finished_object) == 0
11147 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11148 && offset == rs->finished_offset)
11149 return TARGET_XFER_EOF;
11150
11151
11152 /* Otherwise, we're now reading something different. Discard
11153 the cache. */
11154 xfree (rs->finished_object);
11155 xfree (rs->finished_annex);
11156 rs->finished_object = NULL;
11157 rs->finished_annex = NULL;
11158 }
11159
11160 /* Request only enough to fit in a single packet. The actual data
11161 may not, since we don't know how much of it will need to be escaped;
11162 the target is free to respond with slightly less data. We subtract
11163 five to account for the response type and the protocol frame. */
11164 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
11165 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11166 "qXfer:%s:read:%s:%s,%s",
11167 object_name, annex ? annex : "",
11168 phex_nz (offset, sizeof offset),
11169 phex_nz (n, sizeof n));
11170 i = putpkt (rs->buf);
11171 if (i < 0)
11172 return TARGET_XFER_E_IO;
11173
11174 rs->buf[0] = '\0';
11175 packet_len = getpkt_sane (&rs->buf, 0);
11176 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
11177 return TARGET_XFER_E_IO;
11178
11179 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
11180 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
11181
11182 /* 'm' means there is (or at least might be) more data after this
11183 batch. That does not make sense unless there's at least one byte
11184 of data in this reply. */
11185 if (rs->buf[0] == 'm' && packet_len == 1)
11186 error (_("Remote qXfer reply contained no data."));
11187
11188 /* Got some data. */
11189 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
11190 packet_len - 1, readbuf, n);
11191
11192 /* 'l' is an EOF marker, possibly including a final block of data,
11193 or possibly empty. If we have the final block of a non-empty
11194 object, record this fact to bypass a subsequent partial read. */
11195 if (rs->buf[0] == 'l' && offset + i > 0)
11196 {
11197 rs->finished_object = xstrdup (object_name);
11198 rs->finished_annex = xstrdup (annex ? annex : "");
11199 rs->finished_offset = offset + i;
11200 }
11201
11202 if (i == 0)
11203 return TARGET_XFER_EOF;
11204 else
11205 {
11206 *xfered_len = i;
11207 return TARGET_XFER_OK;
11208 }
11209 }
11210
11211 enum target_xfer_status
11212 remote_target::xfer_partial (enum target_object object,
11213 const char *annex, gdb_byte *readbuf,
11214 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11215 ULONGEST *xfered_len)
11216 {
11217 struct remote_state *rs;
11218 int i;
11219 char *p2;
11220 char query_type;
11221 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
11222
11223 set_remote_traceframe ();
11224 set_general_thread (inferior_ptid);
11225
11226 rs = get_remote_state ();
11227
11228 /* Handle memory using the standard memory routines. */
11229 if (object == TARGET_OBJECT_MEMORY)
11230 {
11231 /* If the remote target is connected but not running, we should
11232 pass this request down to a lower stratum (e.g. the executable
11233 file). */
11234 if (!target_has_execution ())
11235 return TARGET_XFER_EOF;
11236
11237 if (writebuf != NULL)
11238 return remote_write_bytes (offset, writebuf, len, unit_size,
11239 xfered_len);
11240 else
11241 return remote_read_bytes (offset, readbuf, len, unit_size,
11242 xfered_len);
11243 }
11244
11245 /* Handle extra signal info using qxfer packets. */
11246 if (object == TARGET_OBJECT_SIGNAL_INFO)
11247 {
11248 if (readbuf)
11249 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
11250 xfered_len, &remote_protocol_packets
11251 [PACKET_qXfer_siginfo_read]);
11252 else
11253 return remote_write_qxfer ("siginfo", annex,
11254 writebuf, offset, len, xfered_len,
11255 &remote_protocol_packets
11256 [PACKET_qXfer_siginfo_write]);
11257 }
11258
11259 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11260 {
11261 if (readbuf)
11262 return remote_read_qxfer ("statictrace", annex,
11263 readbuf, offset, len, xfered_len,
11264 &remote_protocol_packets
11265 [PACKET_qXfer_statictrace_read]);
11266 else
11267 return TARGET_XFER_E_IO;
11268 }
11269
11270 /* Only handle flash writes. */
11271 if (writebuf != NULL)
11272 {
11273 switch (object)
11274 {
11275 case TARGET_OBJECT_FLASH:
11276 return remote_flash_write (offset, len, xfered_len,
11277 writebuf);
11278
11279 default:
11280 return TARGET_XFER_E_IO;
11281 }
11282 }
11283
11284 /* Map pre-existing objects onto letters. DO NOT do this for new
11285 objects!!! Instead specify new query packets. */
11286 switch (object)
11287 {
11288 case TARGET_OBJECT_AVR:
11289 query_type = 'R';
11290 break;
11291
11292 case TARGET_OBJECT_AUXV:
11293 gdb_assert (annex == NULL);
11294 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
11295 xfered_len,
11296 &remote_protocol_packets[PACKET_qXfer_auxv]);
11297
11298 case TARGET_OBJECT_AVAILABLE_FEATURES:
11299 return remote_read_qxfer
11300 ("features", annex, readbuf, offset, len, xfered_len,
11301 &remote_protocol_packets[PACKET_qXfer_features]);
11302
11303 case TARGET_OBJECT_LIBRARIES:
11304 return remote_read_qxfer
11305 ("libraries", annex, readbuf, offset, len, xfered_len,
11306 &remote_protocol_packets[PACKET_qXfer_libraries]);
11307
11308 case TARGET_OBJECT_LIBRARIES_SVR4:
11309 return remote_read_qxfer
11310 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
11311 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11312
11313 case TARGET_OBJECT_MEMORY_MAP:
11314 gdb_assert (annex == NULL);
11315 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
11316 xfered_len,
11317 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11318
11319 case TARGET_OBJECT_OSDATA:
11320 /* Should only get here if we're connected. */
11321 gdb_assert (rs->remote_desc);
11322 return remote_read_qxfer
11323 ("osdata", annex, readbuf, offset, len, xfered_len,
11324 &remote_protocol_packets[PACKET_qXfer_osdata]);
11325
11326 case TARGET_OBJECT_THREADS:
11327 gdb_assert (annex == NULL);
11328 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
11329 xfered_len,
11330 &remote_protocol_packets[PACKET_qXfer_threads]);
11331
11332 case TARGET_OBJECT_TRACEFRAME_INFO:
11333 gdb_assert (annex == NULL);
11334 return remote_read_qxfer
11335 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11336 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11337
11338 case TARGET_OBJECT_FDPIC:
11339 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11340 xfered_len,
11341 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11342
11343 case TARGET_OBJECT_OPENVMS_UIB:
11344 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11345 xfered_len,
11346 &remote_protocol_packets[PACKET_qXfer_uib]);
11347
11348 case TARGET_OBJECT_BTRACE:
11349 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11350 xfered_len,
11351 &remote_protocol_packets[PACKET_qXfer_btrace]);
11352
11353 case TARGET_OBJECT_BTRACE_CONF:
11354 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11355 len, xfered_len,
11356 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11357
11358 case TARGET_OBJECT_EXEC_FILE:
11359 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11360 len, xfered_len,
11361 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11362
11363 default:
11364 return TARGET_XFER_E_IO;
11365 }
11366
11367 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11368 large enough let the caller deal with it. */
11369 if (len < get_remote_packet_size ())
11370 return TARGET_XFER_E_IO;
11371 len = get_remote_packet_size ();
11372
11373 /* Except for querying the minimum buffer size, target must be open. */
11374 if (!rs->remote_desc)
11375 error (_("remote query is only available after target open"));
11376
11377 gdb_assert (annex != NULL);
11378 gdb_assert (readbuf != NULL);
11379
11380 p2 = rs->buf.data ();
11381 *p2++ = 'q';
11382 *p2++ = query_type;
11383
11384 /* We used one buffer char for the remote protocol q command and
11385 another for the query type. As the remote protocol encapsulation
11386 uses 4 chars plus one extra in case we are debugging
11387 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11388 string. */
11389 i = 0;
11390 while (annex[i] && (i < (get_remote_packet_size () - 8)))
11391 {
11392 /* Bad caller may have sent forbidden characters. */
11393 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11394 *p2++ = annex[i];
11395 i++;
11396 }
11397 *p2 = '\0';
11398 gdb_assert (annex[i] == '\0');
11399
11400 i = putpkt (rs->buf);
11401 if (i < 0)
11402 return TARGET_XFER_E_IO;
11403
11404 getpkt (&rs->buf, 0);
11405 strcpy ((char *) readbuf, rs->buf.data ());
11406
11407 *xfered_len = strlen ((char *) readbuf);
11408 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11409 }
11410
11411 /* Implementation of to_get_memory_xfer_limit. */
11412
11413 ULONGEST
11414 remote_target::get_memory_xfer_limit ()
11415 {
11416 return get_memory_write_packet_size ();
11417 }
11418
11419 int
11420 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11421 const gdb_byte *pattern, ULONGEST pattern_len,
11422 CORE_ADDR *found_addrp)
11423 {
11424 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11425 struct remote_state *rs = get_remote_state ();
11426 int max_size = get_memory_write_packet_size ();
11427 struct packet_config *packet =
11428 &remote_protocol_packets[PACKET_qSearch_memory];
11429 /* Number of packet bytes used to encode the pattern;
11430 this could be more than PATTERN_LEN due to escape characters. */
11431 int escaped_pattern_len;
11432 /* Amount of pattern that was encodable in the packet. */
11433 int used_pattern_len;
11434 int i;
11435 int found;
11436 ULONGEST found_addr;
11437
11438 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11439 {
11440 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11441 == len);
11442 };
11443
11444 /* Don't go to the target if we don't have to. This is done before
11445 checking packet_config_support to avoid the possibility that a
11446 success for this edge case means the facility works in
11447 general. */
11448 if (pattern_len > search_space_len)
11449 return 0;
11450 if (pattern_len == 0)
11451 {
11452 *found_addrp = start_addr;
11453 return 1;
11454 }
11455
11456 /* If we already know the packet isn't supported, fall back to the simple
11457 way of searching memory. */
11458
11459 if (packet_config_support (packet) == PACKET_DISABLE)
11460 {
11461 /* Target doesn't provided special support, fall back and use the
11462 standard support (copy memory and do the search here). */
11463 return simple_search_memory (read_memory, start_addr, search_space_len,
11464 pattern, pattern_len, found_addrp);
11465 }
11466
11467 /* Make sure the remote is pointing at the right process. */
11468 set_general_process ();
11469
11470 /* Insert header. */
11471 i = snprintf (rs->buf.data (), max_size,
11472 "qSearch:memory:%s;%s;",
11473 phex_nz (start_addr, addr_size),
11474 phex_nz (search_space_len, sizeof (search_space_len)));
11475 max_size -= (i + 1);
11476
11477 /* Escape as much data as fits into rs->buf. */
11478 escaped_pattern_len =
11479 remote_escape_output (pattern, pattern_len, 1,
11480 (gdb_byte *) rs->buf.data () + i,
11481 &used_pattern_len, max_size);
11482
11483 /* Bail if the pattern is too large. */
11484 if (used_pattern_len != pattern_len)
11485 error (_("Pattern is too large to transmit to remote target."));
11486
11487 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11488 || getpkt_sane (&rs->buf, 0) < 0
11489 || packet_ok (rs->buf, packet) != PACKET_OK)
11490 {
11491 /* The request may not have worked because the command is not
11492 supported. If so, fall back to the simple way. */
11493 if (packet_config_support (packet) == PACKET_DISABLE)
11494 {
11495 return simple_search_memory (read_memory, start_addr, search_space_len,
11496 pattern, pattern_len, found_addrp);
11497 }
11498 return -1;
11499 }
11500
11501 if (rs->buf[0] == '0')
11502 found = 0;
11503 else if (rs->buf[0] == '1')
11504 {
11505 found = 1;
11506 if (rs->buf[1] != ',')
11507 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11508 unpack_varlen_hex (&rs->buf[2], &found_addr);
11509 *found_addrp = found_addr;
11510 }
11511 else
11512 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11513
11514 return found;
11515 }
11516
11517 void
11518 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11519 {
11520 struct remote_state *rs = get_remote_state ();
11521 char *p = rs->buf.data ();
11522
11523 if (!rs->remote_desc)
11524 error (_("remote rcmd is only available after target open"));
11525
11526 /* Send a NULL command across as an empty command. */
11527 if (command == NULL)
11528 command = "";
11529
11530 /* The query prefix. */
11531 strcpy (rs->buf.data (), "qRcmd,");
11532 p = strchr (rs->buf.data (), '\0');
11533
11534 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11535 > get_remote_packet_size ())
11536 error (_("\"monitor\" command ``%s'' is too long."), command);
11537
11538 /* Encode the actual command. */
11539 bin2hex ((const gdb_byte *) command, p, strlen (command));
11540
11541 if (putpkt (rs->buf) < 0)
11542 error (_("Communication problem with target."));
11543
11544 /* get/display the response */
11545 while (1)
11546 {
11547 char *buf;
11548
11549 /* XXX - see also remote_get_noisy_reply(). */
11550 QUIT; /* Allow user to bail out with ^C. */
11551 rs->buf[0] = '\0';
11552 if (getpkt_sane (&rs->buf, 0) == -1)
11553 {
11554 /* Timeout. Continue to (try to) read responses.
11555 This is better than stopping with an error, assuming the stub
11556 is still executing the (long) monitor command.
11557 If needed, the user can interrupt gdb using C-c, obtaining
11558 an effect similar to stop on timeout. */
11559 continue;
11560 }
11561 buf = rs->buf.data ();
11562 if (buf[0] == '\0')
11563 error (_("Target does not support this command."));
11564 if (buf[0] == 'O' && buf[1] != 'K')
11565 {
11566 remote_console_output (buf + 1); /* 'O' message from stub. */
11567 continue;
11568 }
11569 if (strcmp (buf, "OK") == 0)
11570 break;
11571 if (strlen (buf) == 3 && buf[0] == 'E'
11572 && isdigit (buf[1]) && isdigit (buf[2]))
11573 {
11574 error (_("Protocol error with Rcmd"));
11575 }
11576 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11577 {
11578 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11579
11580 fputc_unfiltered (c, outbuf);
11581 }
11582 break;
11583 }
11584 }
11585
11586 std::vector<mem_region>
11587 remote_target::memory_map ()
11588 {
11589 std::vector<mem_region> result;
11590 gdb::optional<gdb::char_vector> text
11591 = target_read_stralloc (current_inferior ()->top_target (),
11592 TARGET_OBJECT_MEMORY_MAP, NULL);
11593
11594 if (text)
11595 result = parse_memory_map (text->data ());
11596
11597 return result;
11598 }
11599
11600 static void
11601 packet_command (const char *args, int from_tty)
11602 {
11603 remote_target *remote = get_current_remote_target ();
11604
11605 if (remote == nullptr)
11606 error (_("command can only be used with remote target"));
11607
11608 remote->packet_command (args, from_tty);
11609 }
11610
11611 void
11612 remote_target::packet_command (const char *args, int from_tty)
11613 {
11614 if (!args)
11615 error (_("remote-packet command requires packet text as argument"));
11616
11617 puts_filtered ("sending: ");
11618 print_packet (args);
11619 puts_filtered ("\n");
11620 putpkt (args);
11621
11622 remote_state *rs = get_remote_state ();
11623
11624 getpkt (&rs->buf, 0);
11625 puts_filtered ("received: ");
11626 print_packet (rs->buf.data ());
11627 puts_filtered ("\n");
11628 }
11629
11630 #if 0
11631 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11632
11633 static void display_thread_info (struct gdb_ext_thread_info *info);
11634
11635 static void threadset_test_cmd (char *cmd, int tty);
11636
11637 static void threadalive_test (char *cmd, int tty);
11638
11639 static void threadlist_test_cmd (char *cmd, int tty);
11640
11641 int get_and_display_threadinfo (threadref *ref);
11642
11643 static void threadinfo_test_cmd (char *cmd, int tty);
11644
11645 static int thread_display_step (threadref *ref, void *context);
11646
11647 static void threadlist_update_test_cmd (char *cmd, int tty);
11648
11649 static void init_remote_threadtests (void);
11650
11651 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11652
11653 static void
11654 threadset_test_cmd (const char *cmd, int tty)
11655 {
11656 int sample_thread = SAMPLE_THREAD;
11657
11658 printf_filtered (_("Remote threadset test\n"));
11659 set_general_thread (sample_thread);
11660 }
11661
11662
11663 static void
11664 threadalive_test (const char *cmd, int tty)
11665 {
11666 int sample_thread = SAMPLE_THREAD;
11667 int pid = inferior_ptid.pid ();
11668 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11669
11670 if (remote_thread_alive (ptid))
11671 printf_filtered ("PASS: Thread alive test\n");
11672 else
11673 printf_filtered ("FAIL: Thread alive test\n");
11674 }
11675
11676 void output_threadid (char *title, threadref *ref);
11677
11678 void
11679 output_threadid (char *title, threadref *ref)
11680 {
11681 char hexid[20];
11682
11683 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
11684 hexid[16] = 0;
11685 printf_filtered ("%s %s\n", title, (&hexid[0]));
11686 }
11687
11688 static void
11689 threadlist_test_cmd (const char *cmd, int tty)
11690 {
11691 int startflag = 1;
11692 threadref nextthread;
11693 int done, result_count;
11694 threadref threadlist[3];
11695
11696 printf_filtered ("Remote Threadlist test\n");
11697 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11698 &result_count, &threadlist[0]))
11699 printf_filtered ("FAIL: threadlist test\n");
11700 else
11701 {
11702 threadref *scan = threadlist;
11703 threadref *limit = scan + result_count;
11704
11705 while (scan < limit)
11706 output_threadid (" thread ", scan++);
11707 }
11708 }
11709
11710 void
11711 display_thread_info (struct gdb_ext_thread_info *info)
11712 {
11713 output_threadid ("Threadid: ", &info->threadid);
11714 printf_filtered ("Name: %s\n ", info->shortname);
11715 printf_filtered ("State: %s\n", info->display);
11716 printf_filtered ("other: %s\n\n", info->more_display);
11717 }
11718
11719 int
11720 get_and_display_threadinfo (threadref *ref)
11721 {
11722 int result;
11723 int set;
11724 struct gdb_ext_thread_info threadinfo;
11725
11726 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11727 | TAG_MOREDISPLAY | TAG_DISPLAY;
11728 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11729 display_thread_info (&threadinfo);
11730 return result;
11731 }
11732
11733 static void
11734 threadinfo_test_cmd (const char *cmd, int tty)
11735 {
11736 int athread = SAMPLE_THREAD;
11737 threadref thread;
11738 int set;
11739
11740 int_to_threadref (&thread, athread);
11741 printf_filtered ("Remote Threadinfo test\n");
11742 if (!get_and_display_threadinfo (&thread))
11743 printf_filtered ("FAIL cannot get thread info\n");
11744 }
11745
11746 static int
11747 thread_display_step (threadref *ref, void *context)
11748 {
11749 /* output_threadid(" threadstep ",ref); *//* simple test */
11750 return get_and_display_threadinfo (ref);
11751 }
11752
11753 static void
11754 threadlist_update_test_cmd (const char *cmd, int tty)
11755 {
11756 printf_filtered ("Remote Threadlist update test\n");
11757 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11758 }
11759
11760 static void
11761 init_remote_threadtests (void)
11762 {
11763 add_com ("tlist", class_obscure, threadlist_test_cmd,
11764 _("Fetch and print the remote list of "
11765 "thread identifiers, one pkt only."));
11766 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11767 _("Fetch and display info about one thread."));
11768 add_com ("tset", class_obscure, threadset_test_cmd,
11769 _("Test setting to a different thread."));
11770 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11771 _("Iterate through updating all remote thread info."));
11772 add_com ("talive", class_obscure, threadalive_test,
11773 _("Remote thread alive test."));
11774 }
11775
11776 #endif /* 0 */
11777
11778 /* Convert a thread ID to a string. */
11779
11780 std::string
11781 remote_target::pid_to_str (ptid_t ptid)
11782 {
11783 struct remote_state *rs = get_remote_state ();
11784
11785 if (ptid == null_ptid)
11786 return normal_pid_to_str (ptid);
11787 else if (ptid.is_pid ())
11788 {
11789 /* Printing an inferior target id. */
11790
11791 /* When multi-process extensions are off, there's no way in the
11792 remote protocol to know the remote process id, if there's any
11793 at all. There's one exception --- when we're connected with
11794 target extended-remote, and we manually attached to a process
11795 with "attach PID". We don't record anywhere a flag that
11796 allows us to distinguish that case from the case of
11797 connecting with extended-remote and the stub already being
11798 attached to a process, and reporting yes to qAttached, hence
11799 no smart special casing here. */
11800 if (!remote_multi_process_p (rs))
11801 return "Remote target";
11802
11803 return normal_pid_to_str (ptid);
11804 }
11805 else
11806 {
11807 if (magic_null_ptid == ptid)
11808 return "Thread <main>";
11809 else if (remote_multi_process_p (rs))
11810 if (ptid.lwp () == 0)
11811 return normal_pid_to_str (ptid);
11812 else
11813 return string_printf ("Thread %d.%ld",
11814 ptid.pid (), ptid.lwp ());
11815 else
11816 return string_printf ("Thread %ld", ptid.lwp ());
11817 }
11818 }
11819
11820 /* Get the address of the thread local variable in OBJFILE which is
11821 stored at OFFSET within the thread local storage for thread PTID. */
11822
11823 CORE_ADDR
11824 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11825 CORE_ADDR offset)
11826 {
11827 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11828 {
11829 struct remote_state *rs = get_remote_state ();
11830 char *p = rs->buf.data ();
11831 char *endp = p + get_remote_packet_size ();
11832 enum packet_result result;
11833
11834 strcpy (p, "qGetTLSAddr:");
11835 p += strlen (p);
11836 p = write_ptid (p, endp, ptid);
11837 *p++ = ',';
11838 p += hexnumstr (p, offset);
11839 *p++ = ',';
11840 p += hexnumstr (p, lm);
11841 *p++ = '\0';
11842
11843 putpkt (rs->buf);
11844 getpkt (&rs->buf, 0);
11845 result = packet_ok (rs->buf,
11846 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11847 if (result == PACKET_OK)
11848 {
11849 ULONGEST addr;
11850
11851 unpack_varlen_hex (rs->buf.data (), &addr);
11852 return addr;
11853 }
11854 else if (result == PACKET_UNKNOWN)
11855 throw_error (TLS_GENERIC_ERROR,
11856 _("Remote target doesn't support qGetTLSAddr packet"));
11857 else
11858 throw_error (TLS_GENERIC_ERROR,
11859 _("Remote target failed to process qGetTLSAddr request"));
11860 }
11861 else
11862 throw_error (TLS_GENERIC_ERROR,
11863 _("TLS not supported or disabled on this target"));
11864 /* Not reached. */
11865 return 0;
11866 }
11867
11868 /* Provide thread local base, i.e. Thread Information Block address.
11869 Returns 1 if ptid is found and thread_local_base is non zero. */
11870
11871 bool
11872 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11873 {
11874 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11875 {
11876 struct remote_state *rs = get_remote_state ();
11877 char *p = rs->buf.data ();
11878 char *endp = p + get_remote_packet_size ();
11879 enum packet_result result;
11880
11881 strcpy (p, "qGetTIBAddr:");
11882 p += strlen (p);
11883 p = write_ptid (p, endp, ptid);
11884 *p++ = '\0';
11885
11886 putpkt (rs->buf);
11887 getpkt (&rs->buf, 0);
11888 result = packet_ok (rs->buf,
11889 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11890 if (result == PACKET_OK)
11891 {
11892 ULONGEST val;
11893 unpack_varlen_hex (rs->buf.data (), &val);
11894 if (addr)
11895 *addr = (CORE_ADDR) val;
11896 return true;
11897 }
11898 else if (result == PACKET_UNKNOWN)
11899 error (_("Remote target doesn't support qGetTIBAddr packet"));
11900 else
11901 error (_("Remote target failed to process qGetTIBAddr request"));
11902 }
11903 else
11904 error (_("qGetTIBAddr not supported or disabled on this target"));
11905 /* Not reached. */
11906 return false;
11907 }
11908
11909 /* Support for inferring a target description based on the current
11910 architecture and the size of a 'g' packet. While the 'g' packet
11911 can have any size (since optional registers can be left off the
11912 end), some sizes are easily recognizable given knowledge of the
11913 approximate architecture. */
11914
11915 struct remote_g_packet_guess
11916 {
11917 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11918 : bytes (bytes_),
11919 tdesc (tdesc_)
11920 {
11921 }
11922
11923 int bytes;
11924 const struct target_desc *tdesc;
11925 };
11926
11927 struct remote_g_packet_data : public allocate_on_obstack
11928 {
11929 std::vector<remote_g_packet_guess> guesses;
11930 };
11931
11932 static struct gdbarch_data *remote_g_packet_data_handle;
11933
11934 static void *
11935 remote_g_packet_data_init (struct obstack *obstack)
11936 {
11937 return new (obstack) remote_g_packet_data;
11938 }
11939
11940 void
11941 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11942 const struct target_desc *tdesc)
11943 {
11944 struct remote_g_packet_data *data
11945 = ((struct remote_g_packet_data *)
11946 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11947
11948 gdb_assert (tdesc != NULL);
11949
11950 for (const remote_g_packet_guess &guess : data->guesses)
11951 if (guess.bytes == bytes)
11952 internal_error (__FILE__, __LINE__,
11953 _("Duplicate g packet description added for size %d"),
11954 bytes);
11955
11956 data->guesses.emplace_back (bytes, tdesc);
11957 }
11958
11959 /* Return true if remote_read_description would do anything on this target
11960 and architecture, false otherwise. */
11961
11962 static bool
11963 remote_read_description_p (struct target_ops *target)
11964 {
11965 struct remote_g_packet_data *data
11966 = ((struct remote_g_packet_data *)
11967 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11968
11969 return !data->guesses.empty ();
11970 }
11971
11972 const struct target_desc *
11973 remote_target::read_description ()
11974 {
11975 struct remote_g_packet_data *data
11976 = ((struct remote_g_packet_data *)
11977 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11978
11979 /* Do not try this during initial connection, when we do not know
11980 whether there is a running but stopped thread. */
11981 if (!target_has_execution () || inferior_ptid == null_ptid)
11982 return beneath ()->read_description ();
11983
11984 if (!data->guesses.empty ())
11985 {
11986 int bytes = send_g_packet ();
11987
11988 for (const remote_g_packet_guess &guess : data->guesses)
11989 if (guess.bytes == bytes)
11990 return guess.tdesc;
11991
11992 /* We discard the g packet. A minor optimization would be to
11993 hold on to it, and fill the register cache once we have selected
11994 an architecture, but it's too tricky to do safely. */
11995 }
11996
11997 return beneath ()->read_description ();
11998 }
11999
12000 /* Remote file transfer support. This is host-initiated I/O, not
12001 target-initiated; for target-initiated, see remote-fileio.c. */
12002
12003 /* If *LEFT is at least the length of STRING, copy STRING to
12004 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12005 decrease *LEFT. Otherwise raise an error. */
12006
12007 static void
12008 remote_buffer_add_string (char **buffer, int *left, const char *string)
12009 {
12010 int len = strlen (string);
12011
12012 if (len > *left)
12013 error (_("Packet too long for target."));
12014
12015 memcpy (*buffer, string, len);
12016 *buffer += len;
12017 *left -= len;
12018
12019 /* NUL-terminate the buffer as a convenience, if there is
12020 room. */
12021 if (*left)
12022 **buffer = '\0';
12023 }
12024
12025 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
12026 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12027 decrease *LEFT. Otherwise raise an error. */
12028
12029 static void
12030 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
12031 int len)
12032 {
12033 if (2 * len > *left)
12034 error (_("Packet too long for target."));
12035
12036 bin2hex (bytes, *buffer, len);
12037 *buffer += 2 * len;
12038 *left -= 2 * len;
12039
12040 /* NUL-terminate the buffer as a convenience, if there is
12041 room. */
12042 if (*left)
12043 **buffer = '\0';
12044 }
12045
12046 /* If *LEFT is large enough, convert VALUE to hex and add it to
12047 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12048 decrease *LEFT. Otherwise raise an error. */
12049
12050 static void
12051 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
12052 {
12053 int len = hexnumlen (value);
12054
12055 if (len > *left)
12056 error (_("Packet too long for target."));
12057
12058 hexnumstr (*buffer, value);
12059 *buffer += len;
12060 *left -= len;
12061
12062 /* NUL-terminate the buffer as a convenience, if there is
12063 room. */
12064 if (*left)
12065 **buffer = '\0';
12066 }
12067
12068 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
12069 value, *REMOTE_ERRNO to the remote error number or zero if none
12070 was included, and *ATTACHMENT to point to the start of the annex
12071 if any. The length of the packet isn't needed here; there may
12072 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
12073
12074 Return 0 if the packet could be parsed, -1 if it could not. If
12075 -1 is returned, the other variables may not be initialized. */
12076
12077 static int
12078 remote_hostio_parse_result (const char *buffer, int *retcode,
12079 int *remote_errno, const char **attachment)
12080 {
12081 char *p, *p2;
12082
12083 *remote_errno = 0;
12084 *attachment = NULL;
12085
12086 if (buffer[0] != 'F')
12087 return -1;
12088
12089 errno = 0;
12090 *retcode = strtol (&buffer[1], &p, 16);
12091 if (errno != 0 || p == &buffer[1])
12092 return -1;
12093
12094 /* Check for ",errno". */
12095 if (*p == ',')
12096 {
12097 errno = 0;
12098 *remote_errno = strtol (p + 1, &p2, 16);
12099 if (errno != 0 || p + 1 == p2)
12100 return -1;
12101 p = p2;
12102 }
12103
12104 /* Check for ";attachment". If there is no attachment, the
12105 packet should end here. */
12106 if (*p == ';')
12107 {
12108 *attachment = p + 1;
12109 return 0;
12110 }
12111 else if (*p == '\0')
12112 return 0;
12113 else
12114 return -1;
12115 }
12116
12117 /* Send a prepared I/O packet to the target and read its response.
12118 The prepared packet is in the global RS->BUF before this function
12119 is called, and the answer is there when we return.
12120
12121 COMMAND_BYTES is the length of the request to send, which may include
12122 binary data. WHICH_PACKET is the packet configuration to check
12123 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12124 is set to the error number and -1 is returned. Otherwise the value
12125 returned by the function is returned.
12126
12127 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12128 attachment is expected; an error will be reported if there's a
12129 mismatch. If one is found, *ATTACHMENT will be set to point into
12130 the packet buffer and *ATTACHMENT_LEN will be set to the
12131 attachment's length. */
12132
12133 int
12134 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
12135 int *remote_errno, const char **attachment,
12136 int *attachment_len)
12137 {
12138 struct remote_state *rs = get_remote_state ();
12139 int ret, bytes_read;
12140 const char *attachment_tmp;
12141
12142 if (packet_support (which_packet) == PACKET_DISABLE)
12143 {
12144 *remote_errno = FILEIO_ENOSYS;
12145 return -1;
12146 }
12147
12148 putpkt_binary (rs->buf.data (), command_bytes);
12149 bytes_read = getpkt_sane (&rs->buf, 0);
12150
12151 /* If it timed out, something is wrong. Don't try to parse the
12152 buffer. */
12153 if (bytes_read < 0)
12154 {
12155 *remote_errno = FILEIO_EINVAL;
12156 return -1;
12157 }
12158
12159 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12160 {
12161 case PACKET_ERROR:
12162 *remote_errno = FILEIO_EINVAL;
12163 return -1;
12164 case PACKET_UNKNOWN:
12165 *remote_errno = FILEIO_ENOSYS;
12166 return -1;
12167 case PACKET_OK:
12168 break;
12169 }
12170
12171 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
12172 &attachment_tmp))
12173 {
12174 *remote_errno = FILEIO_EINVAL;
12175 return -1;
12176 }
12177
12178 /* Make sure we saw an attachment if and only if we expected one. */
12179 if ((attachment_tmp == NULL && attachment != NULL)
12180 || (attachment_tmp != NULL && attachment == NULL))
12181 {
12182 *remote_errno = FILEIO_EINVAL;
12183 return -1;
12184 }
12185
12186 /* If an attachment was found, it must point into the packet buffer;
12187 work out how many bytes there were. */
12188 if (attachment_tmp != NULL)
12189 {
12190 *attachment = attachment_tmp;
12191 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
12192 }
12193
12194 return ret;
12195 }
12196
12197 /* See declaration.h. */
12198
12199 void
12200 readahead_cache::invalidate ()
12201 {
12202 this->fd = -1;
12203 }
12204
12205 /* See declaration.h. */
12206
12207 void
12208 readahead_cache::invalidate_fd (int fd)
12209 {
12210 if (this->fd == fd)
12211 this->fd = -1;
12212 }
12213
12214 /* Set the filesystem remote_hostio functions that take FILENAME
12215 arguments will use. Return 0 on success, or -1 if an error
12216 occurs (and set *REMOTE_ERRNO). */
12217
12218 int
12219 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12220 int *remote_errno)
12221 {
12222 struct remote_state *rs = get_remote_state ();
12223 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
12224 char *p = rs->buf.data ();
12225 int left = get_remote_packet_size () - 1;
12226 char arg[9];
12227 int ret;
12228
12229 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12230 return 0;
12231
12232 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12233 return 0;
12234
12235 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12236
12237 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12238 remote_buffer_add_string (&p, &left, arg);
12239
12240 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
12241 remote_errno, NULL, NULL);
12242
12243 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12244 return 0;
12245
12246 if (ret == 0)
12247 rs->fs_pid = required_pid;
12248
12249 return ret;
12250 }
12251
12252 /* Implementation of to_fileio_open. */
12253
12254 int
12255 remote_target::remote_hostio_open (inferior *inf, const char *filename,
12256 int flags, int mode, int warn_if_slow,
12257 int *remote_errno)
12258 {
12259 struct remote_state *rs = get_remote_state ();
12260 char *p = rs->buf.data ();
12261 int left = get_remote_packet_size () - 1;
12262
12263 if (warn_if_slow)
12264 {
12265 static int warning_issued = 0;
12266
12267 printf_unfiltered (_("Reading %s from remote target...\n"),
12268 filename);
12269
12270 if (!warning_issued)
12271 {
12272 warning (_("File transfers from remote targets can be slow."
12273 " Use \"set sysroot\" to access files locally"
12274 " instead."));
12275 warning_issued = 1;
12276 }
12277 }
12278
12279 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12280 return -1;
12281
12282 remote_buffer_add_string (&p, &left, "vFile:open:");
12283
12284 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12285 strlen (filename));
12286 remote_buffer_add_string (&p, &left, ",");
12287
12288 remote_buffer_add_int (&p, &left, flags);
12289 remote_buffer_add_string (&p, &left, ",");
12290
12291 remote_buffer_add_int (&p, &left, mode);
12292
12293 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
12294 remote_errno, NULL, NULL);
12295 }
12296
12297 int
12298 remote_target::fileio_open (struct inferior *inf, const char *filename,
12299 int flags, int mode, int warn_if_slow,
12300 int *remote_errno)
12301 {
12302 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
12303 remote_errno);
12304 }
12305
12306 /* Implementation of to_fileio_pwrite. */
12307
12308 int
12309 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12310 ULONGEST offset, int *remote_errno)
12311 {
12312 struct remote_state *rs = get_remote_state ();
12313 char *p = rs->buf.data ();
12314 int left = get_remote_packet_size ();
12315 int out_len;
12316
12317 rs->readahead_cache.invalidate_fd (fd);
12318
12319 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12320
12321 remote_buffer_add_int (&p, &left, fd);
12322 remote_buffer_add_string (&p, &left, ",");
12323
12324 remote_buffer_add_int (&p, &left, offset);
12325 remote_buffer_add_string (&p, &left, ",");
12326
12327 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
12328 (get_remote_packet_size ()
12329 - (p - rs->buf.data ())));
12330
12331 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
12332 remote_errno, NULL, NULL);
12333 }
12334
12335 int
12336 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12337 ULONGEST offset, int *remote_errno)
12338 {
12339 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12340 }
12341
12342 /* Helper for the implementation of to_fileio_pread. Read the file
12343 from the remote side with vFile:pread. */
12344
12345 int
12346 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12347 ULONGEST offset, int *remote_errno)
12348 {
12349 struct remote_state *rs = get_remote_state ();
12350 char *p = rs->buf.data ();
12351 const char *attachment;
12352 int left = get_remote_packet_size ();
12353 int ret, attachment_len;
12354 int read_len;
12355
12356 remote_buffer_add_string (&p, &left, "vFile:pread:");
12357
12358 remote_buffer_add_int (&p, &left, fd);
12359 remote_buffer_add_string (&p, &left, ",");
12360
12361 remote_buffer_add_int (&p, &left, len);
12362 remote_buffer_add_string (&p, &left, ",");
12363
12364 remote_buffer_add_int (&p, &left, offset);
12365
12366 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
12367 remote_errno, &attachment,
12368 &attachment_len);
12369
12370 if (ret < 0)
12371 return ret;
12372
12373 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12374 read_buf, len);
12375 if (read_len != ret)
12376 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12377
12378 return ret;
12379 }
12380
12381 /* See declaration.h. */
12382
12383 int
12384 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12385 ULONGEST offset)
12386 {
12387 if (this->fd == fd
12388 && this->offset <= offset
12389 && offset < this->offset + this->bufsize)
12390 {
12391 ULONGEST max = this->offset + this->bufsize;
12392
12393 if (offset + len > max)
12394 len = max - offset;
12395
12396 memcpy (read_buf, this->buf + offset - this->offset, len);
12397 return len;
12398 }
12399
12400 return 0;
12401 }
12402
12403 /* Implementation of to_fileio_pread. */
12404
12405 int
12406 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12407 ULONGEST offset, int *remote_errno)
12408 {
12409 int ret;
12410 struct remote_state *rs = get_remote_state ();
12411 readahead_cache *cache = &rs->readahead_cache;
12412
12413 ret = cache->pread (fd, read_buf, len, offset);
12414 if (ret > 0)
12415 {
12416 cache->hit_count++;
12417
12418 remote_debug_printf ("readahead cache hit %s",
12419 pulongest (cache->hit_count));
12420 return ret;
12421 }
12422
12423 cache->miss_count++;
12424
12425 remote_debug_printf ("readahead cache miss %s",
12426 pulongest (cache->miss_count));
12427
12428 cache->fd = fd;
12429 cache->offset = offset;
12430 cache->bufsize = get_remote_packet_size ();
12431 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12432
12433 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12434 cache->offset, remote_errno);
12435 if (ret <= 0)
12436 {
12437 cache->invalidate_fd (fd);
12438 return ret;
12439 }
12440
12441 cache->bufsize = ret;
12442 return cache->pread (fd, read_buf, len, offset);
12443 }
12444
12445 int
12446 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12447 ULONGEST offset, int *remote_errno)
12448 {
12449 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12450 }
12451
12452 /* Implementation of to_fileio_close. */
12453
12454 int
12455 remote_target::remote_hostio_close (int fd, int *remote_errno)
12456 {
12457 struct remote_state *rs = get_remote_state ();
12458 char *p = rs->buf.data ();
12459 int left = get_remote_packet_size () - 1;
12460
12461 rs->readahead_cache.invalidate_fd (fd);
12462
12463 remote_buffer_add_string (&p, &left, "vFile:close:");
12464
12465 remote_buffer_add_int (&p, &left, fd);
12466
12467 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12468 remote_errno, NULL, NULL);
12469 }
12470
12471 int
12472 remote_target::fileio_close (int fd, int *remote_errno)
12473 {
12474 return remote_hostio_close (fd, remote_errno);
12475 }
12476
12477 /* Implementation of to_fileio_unlink. */
12478
12479 int
12480 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12481 int *remote_errno)
12482 {
12483 struct remote_state *rs = get_remote_state ();
12484 char *p = rs->buf.data ();
12485 int left = get_remote_packet_size () - 1;
12486
12487 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12488 return -1;
12489
12490 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12491
12492 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12493 strlen (filename));
12494
12495 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12496 remote_errno, NULL, NULL);
12497 }
12498
12499 int
12500 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12501 int *remote_errno)
12502 {
12503 return remote_hostio_unlink (inf, filename, remote_errno);
12504 }
12505
12506 /* Implementation of to_fileio_readlink. */
12507
12508 gdb::optional<std::string>
12509 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12510 int *remote_errno)
12511 {
12512 struct remote_state *rs = get_remote_state ();
12513 char *p = rs->buf.data ();
12514 const char *attachment;
12515 int left = get_remote_packet_size ();
12516 int len, attachment_len;
12517 int read_len;
12518
12519 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12520 return {};
12521
12522 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12523
12524 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12525 strlen (filename));
12526
12527 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12528 remote_errno, &attachment,
12529 &attachment_len);
12530
12531 if (len < 0)
12532 return {};
12533
12534 std::string ret (len, '\0');
12535
12536 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12537 (gdb_byte *) &ret[0], len);
12538 if (read_len != len)
12539 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12540
12541 return ret;
12542 }
12543
12544 /* Implementation of to_fileio_fstat. */
12545
12546 int
12547 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12548 {
12549 struct remote_state *rs = get_remote_state ();
12550 char *p = rs->buf.data ();
12551 int left = get_remote_packet_size ();
12552 int attachment_len, ret;
12553 const char *attachment;
12554 struct fio_stat fst;
12555 int read_len;
12556
12557 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12558
12559 remote_buffer_add_int (&p, &left, fd);
12560
12561 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12562 remote_errno, &attachment,
12563 &attachment_len);
12564 if (ret < 0)
12565 {
12566 if (*remote_errno != FILEIO_ENOSYS)
12567 return ret;
12568
12569 /* Strictly we should return -1, ENOSYS here, but when
12570 "set sysroot remote:" was implemented in August 2008
12571 BFD's need for a stat function was sidestepped with
12572 this hack. This was not remedied until March 2015
12573 so we retain the previous behavior to avoid breaking
12574 compatibility.
12575
12576 Note that the memset is a March 2015 addition; older
12577 GDBs set st_size *and nothing else* so the structure
12578 would have garbage in all other fields. This might
12579 break something but retaining the previous behavior
12580 here would be just too wrong. */
12581
12582 memset (st, 0, sizeof (struct stat));
12583 st->st_size = INT_MAX;
12584 return 0;
12585 }
12586
12587 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12588 (gdb_byte *) &fst, sizeof (fst));
12589
12590 if (read_len != ret)
12591 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12592
12593 if (read_len != sizeof (fst))
12594 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12595 read_len, (int) sizeof (fst));
12596
12597 remote_fileio_to_host_stat (&fst, st);
12598
12599 return 0;
12600 }
12601
12602 /* Implementation of to_filesystem_is_local. */
12603
12604 bool
12605 remote_target::filesystem_is_local ()
12606 {
12607 /* Valgrind GDB presents itself as a remote target but works
12608 on the local filesystem: it does not implement remote get
12609 and users are not expected to set a sysroot. To handle
12610 this case we treat the remote filesystem as local if the
12611 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12612 does not support vFile:open. */
12613 if (gdb_sysroot == TARGET_SYSROOT_PREFIX)
12614 {
12615 enum packet_support ps = packet_support (PACKET_vFile_open);
12616
12617 if (ps == PACKET_SUPPORT_UNKNOWN)
12618 {
12619 int fd, remote_errno;
12620
12621 /* Try opening a file to probe support. The supplied
12622 filename is irrelevant, we only care about whether
12623 the stub recognizes the packet or not. */
12624 fd = remote_hostio_open (NULL, "just probing",
12625 FILEIO_O_RDONLY, 0700, 0,
12626 &remote_errno);
12627
12628 if (fd >= 0)
12629 remote_hostio_close (fd, &remote_errno);
12630
12631 ps = packet_support (PACKET_vFile_open);
12632 }
12633
12634 if (ps == PACKET_DISABLE)
12635 {
12636 static int warning_issued = 0;
12637
12638 if (!warning_issued)
12639 {
12640 warning (_("remote target does not support file"
12641 " transfer, attempting to access files"
12642 " from local filesystem."));
12643 warning_issued = 1;
12644 }
12645
12646 return true;
12647 }
12648 }
12649
12650 return false;
12651 }
12652
12653 static int
12654 remote_fileio_errno_to_host (int errnum)
12655 {
12656 switch (errnum)
12657 {
12658 case FILEIO_EPERM:
12659 return EPERM;
12660 case FILEIO_ENOENT:
12661 return ENOENT;
12662 case FILEIO_EINTR:
12663 return EINTR;
12664 case FILEIO_EIO:
12665 return EIO;
12666 case FILEIO_EBADF:
12667 return EBADF;
12668 case FILEIO_EACCES:
12669 return EACCES;
12670 case FILEIO_EFAULT:
12671 return EFAULT;
12672 case FILEIO_EBUSY:
12673 return EBUSY;
12674 case FILEIO_EEXIST:
12675 return EEXIST;
12676 case FILEIO_ENODEV:
12677 return ENODEV;
12678 case FILEIO_ENOTDIR:
12679 return ENOTDIR;
12680 case FILEIO_EISDIR:
12681 return EISDIR;
12682 case FILEIO_EINVAL:
12683 return EINVAL;
12684 case FILEIO_ENFILE:
12685 return ENFILE;
12686 case FILEIO_EMFILE:
12687 return EMFILE;
12688 case FILEIO_EFBIG:
12689 return EFBIG;
12690 case FILEIO_ENOSPC:
12691 return ENOSPC;
12692 case FILEIO_ESPIPE:
12693 return ESPIPE;
12694 case FILEIO_EROFS:
12695 return EROFS;
12696 case FILEIO_ENOSYS:
12697 return ENOSYS;
12698 case FILEIO_ENAMETOOLONG:
12699 return ENAMETOOLONG;
12700 }
12701 return -1;
12702 }
12703
12704 static char *
12705 remote_hostio_error (int errnum)
12706 {
12707 int host_error = remote_fileio_errno_to_host (errnum);
12708
12709 if (host_error == -1)
12710 error (_("Unknown remote I/O error %d"), errnum);
12711 else
12712 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12713 }
12714
12715 /* A RAII wrapper around a remote file descriptor. */
12716
12717 class scoped_remote_fd
12718 {
12719 public:
12720 scoped_remote_fd (remote_target *remote, int fd)
12721 : m_remote (remote), m_fd (fd)
12722 {
12723 }
12724
12725 ~scoped_remote_fd ()
12726 {
12727 if (m_fd != -1)
12728 {
12729 try
12730 {
12731 int remote_errno;
12732 m_remote->remote_hostio_close (m_fd, &remote_errno);
12733 }
12734 catch (...)
12735 {
12736 /* Swallow exception before it escapes the dtor. If
12737 something goes wrong, likely the connection is gone,
12738 and there's nothing else that can be done. */
12739 }
12740 }
12741 }
12742
12743 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12744
12745 /* Release ownership of the file descriptor, and return it. */
12746 ATTRIBUTE_UNUSED_RESULT int release () noexcept
12747 {
12748 int fd = m_fd;
12749 m_fd = -1;
12750 return fd;
12751 }
12752
12753 /* Return the owned file descriptor. */
12754 int get () const noexcept
12755 {
12756 return m_fd;
12757 }
12758
12759 private:
12760 /* The remote target. */
12761 remote_target *m_remote;
12762
12763 /* The owned remote I/O file descriptor. */
12764 int m_fd;
12765 };
12766
12767 void
12768 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12769 {
12770 remote_target *remote = get_current_remote_target ();
12771
12772 if (remote == nullptr)
12773 error (_("command can only be used with remote target"));
12774
12775 remote->remote_file_put (local_file, remote_file, from_tty);
12776 }
12777
12778 void
12779 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12780 int from_tty)
12781 {
12782 int retcode, remote_errno, bytes, io_size;
12783 int bytes_in_buffer;
12784 int saw_eof;
12785 ULONGEST offset;
12786
12787 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12788 if (file == NULL)
12789 perror_with_name (local_file);
12790
12791 scoped_remote_fd fd
12792 (this, remote_hostio_open (NULL,
12793 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12794 | FILEIO_O_TRUNC),
12795 0700, 0, &remote_errno));
12796 if (fd.get () == -1)
12797 remote_hostio_error (remote_errno);
12798
12799 /* Send up to this many bytes at once. They won't all fit in the
12800 remote packet limit, so we'll transfer slightly fewer. */
12801 io_size = get_remote_packet_size ();
12802 gdb::byte_vector buffer (io_size);
12803
12804 bytes_in_buffer = 0;
12805 saw_eof = 0;
12806 offset = 0;
12807 while (bytes_in_buffer || !saw_eof)
12808 {
12809 if (!saw_eof)
12810 {
12811 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12812 io_size - bytes_in_buffer,
12813 file.get ());
12814 if (bytes == 0)
12815 {
12816 if (ferror (file.get ()))
12817 error (_("Error reading %s."), local_file);
12818 else
12819 {
12820 /* EOF. Unless there is something still in the
12821 buffer from the last iteration, we are done. */
12822 saw_eof = 1;
12823 if (bytes_in_buffer == 0)
12824 break;
12825 }
12826 }
12827 }
12828 else
12829 bytes = 0;
12830
12831 bytes += bytes_in_buffer;
12832 bytes_in_buffer = 0;
12833
12834 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12835 offset, &remote_errno);
12836
12837 if (retcode < 0)
12838 remote_hostio_error (remote_errno);
12839 else if (retcode == 0)
12840 error (_("Remote write of %d bytes returned 0!"), bytes);
12841 else if (retcode < bytes)
12842 {
12843 /* Short write. Save the rest of the read data for the next
12844 write. */
12845 bytes_in_buffer = bytes - retcode;
12846 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12847 }
12848
12849 offset += retcode;
12850 }
12851
12852 if (remote_hostio_close (fd.release (), &remote_errno))
12853 remote_hostio_error (remote_errno);
12854
12855 if (from_tty)
12856 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12857 }
12858
12859 void
12860 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12861 {
12862 remote_target *remote = get_current_remote_target ();
12863
12864 if (remote == nullptr)
12865 error (_("command can only be used with remote target"));
12866
12867 remote->remote_file_get (remote_file, local_file, from_tty);
12868 }
12869
12870 void
12871 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12872 int from_tty)
12873 {
12874 int remote_errno, bytes, io_size;
12875 ULONGEST offset;
12876
12877 scoped_remote_fd fd
12878 (this, remote_hostio_open (NULL,
12879 remote_file, FILEIO_O_RDONLY, 0, 0,
12880 &remote_errno));
12881 if (fd.get () == -1)
12882 remote_hostio_error (remote_errno);
12883
12884 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12885 if (file == NULL)
12886 perror_with_name (local_file);
12887
12888 /* Send up to this many bytes at once. They won't all fit in the
12889 remote packet limit, so we'll transfer slightly fewer. */
12890 io_size = get_remote_packet_size ();
12891 gdb::byte_vector buffer (io_size);
12892
12893 offset = 0;
12894 while (1)
12895 {
12896 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12897 &remote_errno);
12898 if (bytes == 0)
12899 /* Success, but no bytes, means end-of-file. */
12900 break;
12901 if (bytes == -1)
12902 remote_hostio_error (remote_errno);
12903
12904 offset += bytes;
12905
12906 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12907 if (bytes == 0)
12908 perror_with_name (local_file);
12909 }
12910
12911 if (remote_hostio_close (fd.release (), &remote_errno))
12912 remote_hostio_error (remote_errno);
12913
12914 if (from_tty)
12915 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12916 }
12917
12918 void
12919 remote_file_delete (const char *remote_file, int from_tty)
12920 {
12921 remote_target *remote = get_current_remote_target ();
12922
12923 if (remote == nullptr)
12924 error (_("command can only be used with remote target"));
12925
12926 remote->remote_file_delete (remote_file, from_tty);
12927 }
12928
12929 void
12930 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12931 {
12932 int retcode, remote_errno;
12933
12934 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12935 if (retcode == -1)
12936 remote_hostio_error (remote_errno);
12937
12938 if (from_tty)
12939 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12940 }
12941
12942 static void
12943 remote_put_command (const char *args, int from_tty)
12944 {
12945 if (args == NULL)
12946 error_no_arg (_("file to put"));
12947
12948 gdb_argv argv (args);
12949 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12950 error (_("Invalid parameters to remote put"));
12951
12952 remote_file_put (argv[0], argv[1], from_tty);
12953 }
12954
12955 static void
12956 remote_get_command (const char *args, int from_tty)
12957 {
12958 if (args == NULL)
12959 error_no_arg (_("file to get"));
12960
12961 gdb_argv argv (args);
12962 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12963 error (_("Invalid parameters to remote get"));
12964
12965 remote_file_get (argv[0], argv[1], from_tty);
12966 }
12967
12968 static void
12969 remote_delete_command (const char *args, int from_tty)
12970 {
12971 if (args == NULL)
12972 error_no_arg (_("file to delete"));
12973
12974 gdb_argv argv (args);
12975 if (argv[0] == NULL || argv[1] != NULL)
12976 error (_("Invalid parameters to remote delete"));
12977
12978 remote_file_delete (argv[0], from_tty);
12979 }
12980
12981 bool
12982 remote_target::can_execute_reverse ()
12983 {
12984 if (packet_support (PACKET_bs) == PACKET_ENABLE
12985 || packet_support (PACKET_bc) == PACKET_ENABLE)
12986 return true;
12987 else
12988 return false;
12989 }
12990
12991 bool
12992 remote_target::supports_non_stop ()
12993 {
12994 return true;
12995 }
12996
12997 bool
12998 remote_target::supports_disable_randomization ()
12999 {
13000 /* Only supported in extended mode. */
13001 return false;
13002 }
13003
13004 bool
13005 remote_target::supports_multi_process ()
13006 {
13007 struct remote_state *rs = get_remote_state ();
13008
13009 return remote_multi_process_p (rs);
13010 }
13011
13012 static int
13013 remote_supports_cond_tracepoints ()
13014 {
13015 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
13016 }
13017
13018 bool
13019 remote_target::supports_evaluation_of_breakpoint_conditions ()
13020 {
13021 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
13022 }
13023
13024 static int
13025 remote_supports_fast_tracepoints ()
13026 {
13027 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
13028 }
13029
13030 static int
13031 remote_supports_static_tracepoints ()
13032 {
13033 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
13034 }
13035
13036 static int
13037 remote_supports_install_in_trace ()
13038 {
13039 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
13040 }
13041
13042 bool
13043 remote_target::supports_enable_disable_tracepoint ()
13044 {
13045 return (packet_support (PACKET_EnableDisableTracepoints_feature)
13046 == PACKET_ENABLE);
13047 }
13048
13049 bool
13050 remote_target::supports_string_tracing ()
13051 {
13052 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
13053 }
13054
13055 bool
13056 remote_target::can_run_breakpoint_commands ()
13057 {
13058 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
13059 }
13060
13061 void
13062 remote_target::trace_init ()
13063 {
13064 struct remote_state *rs = get_remote_state ();
13065
13066 putpkt ("QTinit");
13067 remote_get_noisy_reply ();
13068 if (strcmp (rs->buf.data (), "OK") != 0)
13069 error (_("Target does not support this command."));
13070 }
13071
13072 /* Recursive routine to walk through command list including loops, and
13073 download packets for each command. */
13074
13075 void
13076 remote_target::remote_download_command_source (int num, ULONGEST addr,
13077 struct command_line *cmds)
13078 {
13079 struct remote_state *rs = get_remote_state ();
13080 struct command_line *cmd;
13081
13082 for (cmd = cmds; cmd; cmd = cmd->next)
13083 {
13084 QUIT; /* Allow user to bail out with ^C. */
13085 strcpy (rs->buf.data (), "QTDPsrc:");
13086 encode_source_string (num, addr, "cmd", cmd->line,
13087 rs->buf.data () + strlen (rs->buf.data ()),
13088 rs->buf.size () - strlen (rs->buf.data ()));
13089 putpkt (rs->buf);
13090 remote_get_noisy_reply ();
13091 if (strcmp (rs->buf.data (), "OK"))
13092 warning (_("Target does not support source download."));
13093
13094 if (cmd->control_type == while_control
13095 || cmd->control_type == while_stepping_control)
13096 {
13097 remote_download_command_source (num, addr, cmd->body_list_0.get ());
13098
13099 QUIT; /* Allow user to bail out with ^C. */
13100 strcpy (rs->buf.data (), "QTDPsrc:");
13101 encode_source_string (num, addr, "cmd", "end",
13102 rs->buf.data () + strlen (rs->buf.data ()),
13103 rs->buf.size () - strlen (rs->buf.data ()));
13104 putpkt (rs->buf);
13105 remote_get_noisy_reply ();
13106 if (strcmp (rs->buf.data (), "OK"))
13107 warning (_("Target does not support source download."));
13108 }
13109 }
13110 }
13111
13112 void
13113 remote_target::download_tracepoint (struct bp_location *loc)
13114 {
13115 CORE_ADDR tpaddr;
13116 char addrbuf[40];
13117 std::vector<std::string> tdp_actions;
13118 std::vector<std::string> stepping_actions;
13119 char *pkt;
13120 struct breakpoint *b = loc->owner;
13121 struct tracepoint *t = (struct tracepoint *) b;
13122 struct remote_state *rs = get_remote_state ();
13123 int ret;
13124 const char *err_msg = _("Tracepoint packet too large for target.");
13125 size_t size_left;
13126
13127 /* We use a buffer other than rs->buf because we'll build strings
13128 across multiple statements, and other statements in between could
13129 modify rs->buf. */
13130 gdb::char_vector buf (get_remote_packet_size ());
13131
13132 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
13133
13134 tpaddr = loc->address;
13135 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
13136 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13137 b->number, addrbuf, /* address */
13138 (b->enable_state == bp_enabled ? 'E' : 'D'),
13139 t->step_count, t->pass_count);
13140
13141 if (ret < 0 || ret >= buf.size ())
13142 error ("%s", err_msg);
13143
13144 /* Fast tracepoints are mostly handled by the target, but we can
13145 tell the target how big of an instruction block should be moved
13146 around. */
13147 if (b->type == bp_fast_tracepoint)
13148 {
13149 /* Only test for support at download time; we may not know
13150 target capabilities at definition time. */
13151 if (remote_supports_fast_tracepoints ())
13152 {
13153 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13154 NULL))
13155 {
13156 size_left = buf.size () - strlen (buf.data ());
13157 ret = snprintf (buf.data () + strlen (buf.data ()),
13158 size_left, ":F%x",
13159 gdb_insn_length (loc->gdbarch, tpaddr));
13160
13161 if (ret < 0 || ret >= size_left)
13162 error ("%s", err_msg);
13163 }
13164 else
13165 /* If it passed validation at definition but fails now,
13166 something is very wrong. */
13167 internal_error (__FILE__, __LINE__,
13168 _("Fast tracepoint not "
13169 "valid during download"));
13170 }
13171 else
13172 /* Fast tracepoints are functionally identical to regular
13173 tracepoints, so don't take lack of support as a reason to
13174 give up on the trace run. */
13175 warning (_("Target does not support fast tracepoints, "
13176 "downloading %d as regular tracepoint"), b->number);
13177 }
13178 else if (b->type == bp_static_tracepoint)
13179 {
13180 /* Only test for support at download time; we may not know
13181 target capabilities at definition time. */
13182 if (remote_supports_static_tracepoints ())
13183 {
13184 struct static_tracepoint_marker marker;
13185
13186 if (target_static_tracepoint_marker_at (tpaddr, &marker))
13187 {
13188 size_left = buf.size () - strlen (buf.data ());
13189 ret = snprintf (buf.data () + strlen (buf.data ()),
13190 size_left, ":S");
13191
13192 if (ret < 0 || ret >= size_left)
13193 error ("%s", err_msg);
13194 }
13195 else
13196 error (_("Static tracepoint not valid during download"));
13197 }
13198 else
13199 /* Fast tracepoints are functionally identical to regular
13200 tracepoints, so don't take lack of support as a reason
13201 to give up on the trace run. */
13202 error (_("Target does not support static tracepoints"));
13203 }
13204 /* If the tracepoint has a conditional, make it into an agent
13205 expression and append to the definition. */
13206 if (loc->cond)
13207 {
13208 /* Only test support at download time, we may not know target
13209 capabilities at definition time. */
13210 if (remote_supports_cond_tracepoints ())
13211 {
13212 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13213 loc->cond.get ());
13214
13215 size_left = buf.size () - strlen (buf.data ());
13216
13217 ret = snprintf (buf.data () + strlen (buf.data ()),
13218 size_left, ":X%x,", aexpr->len);
13219
13220 if (ret < 0 || ret >= size_left)
13221 error ("%s", err_msg);
13222
13223 size_left = buf.size () - strlen (buf.data ());
13224
13225 /* Two bytes to encode each aexpr byte, plus the terminating
13226 null byte. */
13227 if (aexpr->len * 2 + 1 > size_left)
13228 error ("%s", err_msg);
13229
13230 pkt = buf.data () + strlen (buf.data ());
13231
13232 for (int ndx = 0; ndx < aexpr->len; ++ndx)
13233 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13234 *pkt = '\0';
13235 }
13236 else
13237 warning (_("Target does not support conditional tracepoints, "
13238 "ignoring tp %d cond"), b->number);
13239 }
13240
13241 if (b->commands || !default_collect.empty ())
13242 {
13243 size_left = buf.size () - strlen (buf.data ());
13244
13245 ret = snprintf (buf.data () + strlen (buf.data ()),
13246 size_left, "-");
13247
13248 if (ret < 0 || ret >= size_left)
13249 error ("%s", err_msg);
13250 }
13251
13252 putpkt (buf.data ());
13253 remote_get_noisy_reply ();
13254 if (strcmp (rs->buf.data (), "OK"))
13255 error (_("Target does not support tracepoints."));
13256
13257 /* do_single_steps (t); */
13258 for (auto action_it = tdp_actions.begin ();
13259 action_it != tdp_actions.end (); action_it++)
13260 {
13261 QUIT; /* Allow user to bail out with ^C. */
13262
13263 bool has_more = ((action_it + 1) != tdp_actions.end ()
13264 || !stepping_actions.empty ());
13265
13266 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13267 b->number, addrbuf, /* address */
13268 action_it->c_str (),
13269 has_more ? '-' : 0);
13270
13271 if (ret < 0 || ret >= buf.size ())
13272 error ("%s", err_msg);
13273
13274 putpkt (buf.data ());
13275 remote_get_noisy_reply ();
13276 if (strcmp (rs->buf.data (), "OK"))
13277 error (_("Error on target while setting tracepoints."));
13278 }
13279
13280 for (auto action_it = stepping_actions.begin ();
13281 action_it != stepping_actions.end (); action_it++)
13282 {
13283 QUIT; /* Allow user to bail out with ^C. */
13284
13285 bool is_first = action_it == stepping_actions.begin ();
13286 bool has_more = (action_it + 1) != stepping_actions.end ();
13287
13288 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13289 b->number, addrbuf, /* address */
13290 is_first ? "S" : "",
13291 action_it->c_str (),
13292 has_more ? "-" : "");
13293
13294 if (ret < 0 || ret >= buf.size ())
13295 error ("%s", err_msg);
13296
13297 putpkt (buf.data ());
13298 remote_get_noisy_reply ();
13299 if (strcmp (rs->buf.data (), "OK"))
13300 error (_("Error on target while setting tracepoints."));
13301 }
13302
13303 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
13304 {
13305 if (b->location != NULL)
13306 {
13307 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13308
13309 if (ret < 0 || ret >= buf.size ())
13310 error ("%s", err_msg);
13311
13312 encode_source_string (b->number, loc->address, "at",
13313 event_location_to_string (b->location.get ()),
13314 buf.data () + strlen (buf.data ()),
13315 buf.size () - strlen (buf.data ()));
13316 putpkt (buf.data ());
13317 remote_get_noisy_reply ();
13318 if (strcmp (rs->buf.data (), "OK"))
13319 warning (_("Target does not support source download."));
13320 }
13321 if (b->cond_string)
13322 {
13323 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13324
13325 if (ret < 0 || ret >= buf.size ())
13326 error ("%s", err_msg);
13327
13328 encode_source_string (b->number, loc->address,
13329 "cond", b->cond_string.get (),
13330 buf.data () + strlen (buf.data ()),
13331 buf.size () - strlen (buf.data ()));
13332 putpkt (buf.data ());
13333 remote_get_noisy_reply ();
13334 if (strcmp (rs->buf.data (), "OK"))
13335 warning (_("Target does not support source download."));
13336 }
13337 remote_download_command_source (b->number, loc->address,
13338 breakpoint_commands (b));
13339 }
13340 }
13341
13342 bool
13343 remote_target::can_download_tracepoint ()
13344 {
13345 struct remote_state *rs = get_remote_state ();
13346 struct trace_status *ts;
13347 int status;
13348
13349 /* Don't try to install tracepoints until we've relocated our
13350 symbols, and fetched and merged the target's tracepoint list with
13351 ours. */
13352 if (rs->starting_up)
13353 return false;
13354
13355 ts = current_trace_status ();
13356 status = get_trace_status (ts);
13357
13358 if (status == -1 || !ts->running_known || !ts->running)
13359 return false;
13360
13361 /* If we are in a tracing experiment, but remote stub doesn't support
13362 installing tracepoint in trace, we have to return. */
13363 if (!remote_supports_install_in_trace ())
13364 return false;
13365
13366 return true;
13367 }
13368
13369
13370 void
13371 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13372 {
13373 struct remote_state *rs = get_remote_state ();
13374 char *p;
13375
13376 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
13377 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13378 tsv.builtin);
13379 p = rs->buf.data () + strlen (rs->buf.data ());
13380 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13381 >= get_remote_packet_size ())
13382 error (_("Trace state variable name too long for tsv definition packet"));
13383 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13384 *p++ = '\0';
13385 putpkt (rs->buf);
13386 remote_get_noisy_reply ();
13387 if (rs->buf[0] == '\0')
13388 error (_("Target does not support this command."));
13389 if (strcmp (rs->buf.data (), "OK") != 0)
13390 error (_("Error on target while downloading trace state variable."));
13391 }
13392
13393 void
13394 remote_target::enable_tracepoint (struct bp_location *location)
13395 {
13396 struct remote_state *rs = get_remote_state ();
13397
13398 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13399 location->owner->number,
13400 phex (location->address, sizeof (CORE_ADDR)));
13401 putpkt (rs->buf);
13402 remote_get_noisy_reply ();
13403 if (rs->buf[0] == '\0')
13404 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13405 if (strcmp (rs->buf.data (), "OK") != 0)
13406 error (_("Error on target while enabling tracepoint."));
13407 }
13408
13409 void
13410 remote_target::disable_tracepoint (struct bp_location *location)
13411 {
13412 struct remote_state *rs = get_remote_state ();
13413
13414 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13415 location->owner->number,
13416 phex (location->address, sizeof (CORE_ADDR)));
13417 putpkt (rs->buf);
13418 remote_get_noisy_reply ();
13419 if (rs->buf[0] == '\0')
13420 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13421 if (strcmp (rs->buf.data (), "OK") != 0)
13422 error (_("Error on target while disabling tracepoint."));
13423 }
13424
13425 void
13426 remote_target::trace_set_readonly_regions ()
13427 {
13428 asection *s;
13429 bfd_size_type size;
13430 bfd_vma vma;
13431 int anysecs = 0;
13432 int offset = 0;
13433
13434 if (!current_program_space->exec_bfd ())
13435 return; /* No information to give. */
13436
13437 struct remote_state *rs = get_remote_state ();
13438
13439 strcpy (rs->buf.data (), "QTro");
13440 offset = strlen (rs->buf.data ());
13441 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
13442 {
13443 char tmp1[40], tmp2[40];
13444 int sec_length;
13445
13446 if ((s->flags & SEC_LOAD) == 0 ||
13447 /* (s->flags & SEC_CODE) == 0 || */
13448 (s->flags & SEC_READONLY) == 0)
13449 continue;
13450
13451 anysecs = 1;
13452 vma = bfd_section_vma (s);
13453 size = bfd_section_size (s);
13454 sprintf_vma (tmp1, vma);
13455 sprintf_vma (tmp2, vma + size);
13456 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13457 if (offset + sec_length + 1 > rs->buf.size ())
13458 {
13459 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13460 warning (_("\
13461 Too many sections for read-only sections definition packet."));
13462 break;
13463 }
13464 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13465 tmp1, tmp2);
13466 offset += sec_length;
13467 }
13468 if (anysecs)
13469 {
13470 putpkt (rs->buf);
13471 getpkt (&rs->buf, 0);
13472 }
13473 }
13474
13475 void
13476 remote_target::trace_start ()
13477 {
13478 struct remote_state *rs = get_remote_state ();
13479
13480 putpkt ("QTStart");
13481 remote_get_noisy_reply ();
13482 if (rs->buf[0] == '\0')
13483 error (_("Target does not support this command."));
13484 if (strcmp (rs->buf.data (), "OK") != 0)
13485 error (_("Bogus reply from target: %s"), rs->buf.data ());
13486 }
13487
13488 int
13489 remote_target::get_trace_status (struct trace_status *ts)
13490 {
13491 /* Initialize it just to avoid a GCC false warning. */
13492 char *p = NULL;
13493 enum packet_result result;
13494 struct remote_state *rs = get_remote_state ();
13495
13496 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13497 return -1;
13498
13499 /* FIXME we need to get register block size some other way. */
13500 trace_regblock_size
13501 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13502
13503 putpkt ("qTStatus");
13504
13505 try
13506 {
13507 p = remote_get_noisy_reply ();
13508 }
13509 catch (const gdb_exception_error &ex)
13510 {
13511 if (ex.error != TARGET_CLOSE_ERROR)
13512 {
13513 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13514 return -1;
13515 }
13516 throw;
13517 }
13518
13519 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13520
13521 /* If the remote target doesn't do tracing, flag it. */
13522 if (result == PACKET_UNKNOWN)
13523 return -1;
13524
13525 /* We're working with a live target. */
13526 ts->filename = NULL;
13527
13528 if (*p++ != 'T')
13529 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13530
13531 /* Function 'parse_trace_status' sets default value of each field of
13532 'ts' at first, so we don't have to do it here. */
13533 parse_trace_status (p, ts);
13534
13535 return ts->running;
13536 }
13537
13538 void
13539 remote_target::get_tracepoint_status (struct breakpoint *bp,
13540 struct uploaded_tp *utp)
13541 {
13542 struct remote_state *rs = get_remote_state ();
13543 char *reply;
13544 struct tracepoint *tp = (struct tracepoint *) bp;
13545 size_t size = get_remote_packet_size ();
13546
13547 if (tp)
13548 {
13549 tp->hit_count = 0;
13550 tp->traceframe_usage = 0;
13551 for (bp_location *loc : tp->locations ())
13552 {
13553 /* If the tracepoint was never downloaded, don't go asking for
13554 any status. */
13555 if (tp->number_on_target == 0)
13556 continue;
13557 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13558 phex_nz (loc->address, 0));
13559 putpkt (rs->buf);
13560 reply = remote_get_noisy_reply ();
13561 if (reply && *reply)
13562 {
13563 if (*reply == 'V')
13564 parse_tracepoint_status (reply + 1, bp, utp);
13565 }
13566 }
13567 }
13568 else if (utp)
13569 {
13570 utp->hit_count = 0;
13571 utp->traceframe_usage = 0;
13572 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13573 phex_nz (utp->addr, 0));
13574 putpkt (rs->buf);
13575 reply = remote_get_noisy_reply ();
13576 if (reply && *reply)
13577 {
13578 if (*reply == 'V')
13579 parse_tracepoint_status (reply + 1, bp, utp);
13580 }
13581 }
13582 }
13583
13584 void
13585 remote_target::trace_stop ()
13586 {
13587 struct remote_state *rs = get_remote_state ();
13588
13589 putpkt ("QTStop");
13590 remote_get_noisy_reply ();
13591 if (rs->buf[0] == '\0')
13592 error (_("Target does not support this command."));
13593 if (strcmp (rs->buf.data (), "OK") != 0)
13594 error (_("Bogus reply from target: %s"), rs->buf.data ());
13595 }
13596
13597 int
13598 remote_target::trace_find (enum trace_find_type type, int num,
13599 CORE_ADDR addr1, CORE_ADDR addr2,
13600 int *tpp)
13601 {
13602 struct remote_state *rs = get_remote_state ();
13603 char *endbuf = rs->buf.data () + get_remote_packet_size ();
13604 char *p, *reply;
13605 int target_frameno = -1, target_tracept = -1;
13606
13607 /* Lookups other than by absolute frame number depend on the current
13608 trace selected, so make sure it is correct on the remote end
13609 first. */
13610 if (type != tfind_number)
13611 set_remote_traceframe ();
13612
13613 p = rs->buf.data ();
13614 strcpy (p, "QTFrame:");
13615 p = strchr (p, '\0');
13616 switch (type)
13617 {
13618 case tfind_number:
13619 xsnprintf (p, endbuf - p, "%x", num);
13620 break;
13621 case tfind_pc:
13622 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13623 break;
13624 case tfind_tp:
13625 xsnprintf (p, endbuf - p, "tdp:%x", num);
13626 break;
13627 case tfind_range:
13628 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13629 phex_nz (addr2, 0));
13630 break;
13631 case tfind_outside:
13632 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13633 phex_nz (addr2, 0));
13634 break;
13635 default:
13636 error (_("Unknown trace find type %d"), type);
13637 }
13638
13639 putpkt (rs->buf);
13640 reply = remote_get_noisy_reply ();
13641 if (*reply == '\0')
13642 error (_("Target does not support this command."));
13643
13644 while (reply && *reply)
13645 switch (*reply)
13646 {
13647 case 'F':
13648 p = ++reply;
13649 target_frameno = (int) strtol (p, &reply, 16);
13650 if (reply == p)
13651 error (_("Unable to parse trace frame number"));
13652 /* Don't update our remote traceframe number cache on failure
13653 to select a remote traceframe. */
13654 if (target_frameno == -1)
13655 return -1;
13656 break;
13657 case 'T':
13658 p = ++reply;
13659 target_tracept = (int) strtol (p, &reply, 16);
13660 if (reply == p)
13661 error (_("Unable to parse tracepoint number"));
13662 break;
13663 case 'O': /* "OK"? */
13664 if (reply[1] == 'K' && reply[2] == '\0')
13665 reply += 2;
13666 else
13667 error (_("Bogus reply from target: %s"), reply);
13668 break;
13669 default:
13670 error (_("Bogus reply from target: %s"), reply);
13671 }
13672 if (tpp)
13673 *tpp = target_tracept;
13674
13675 rs->remote_traceframe_number = target_frameno;
13676 return target_frameno;
13677 }
13678
13679 bool
13680 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13681 {
13682 struct remote_state *rs = get_remote_state ();
13683 char *reply;
13684 ULONGEST uval;
13685
13686 set_remote_traceframe ();
13687
13688 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13689 putpkt (rs->buf);
13690 reply = remote_get_noisy_reply ();
13691 if (reply && *reply)
13692 {
13693 if (*reply == 'V')
13694 {
13695 unpack_varlen_hex (reply + 1, &uval);
13696 *val = (LONGEST) uval;
13697 return true;
13698 }
13699 }
13700 return false;
13701 }
13702
13703 int
13704 remote_target::save_trace_data (const char *filename)
13705 {
13706 struct remote_state *rs = get_remote_state ();
13707 char *p, *reply;
13708
13709 p = rs->buf.data ();
13710 strcpy (p, "QTSave:");
13711 p += strlen (p);
13712 if ((p - rs->buf.data ()) + strlen (filename) * 2
13713 >= get_remote_packet_size ())
13714 error (_("Remote file name too long for trace save packet"));
13715 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13716 *p++ = '\0';
13717 putpkt (rs->buf);
13718 reply = remote_get_noisy_reply ();
13719 if (*reply == '\0')
13720 error (_("Target does not support this command."));
13721 if (strcmp (reply, "OK") != 0)
13722 error (_("Bogus reply from target: %s"), reply);
13723 return 0;
13724 }
13725
13726 /* This is basically a memory transfer, but needs to be its own packet
13727 because we don't know how the target actually organizes its trace
13728 memory, plus we want to be able to ask for as much as possible, but
13729 not be unhappy if we don't get as much as we ask for. */
13730
13731 LONGEST
13732 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13733 {
13734 struct remote_state *rs = get_remote_state ();
13735 char *reply;
13736 char *p;
13737 int rslt;
13738
13739 p = rs->buf.data ();
13740 strcpy (p, "qTBuffer:");
13741 p += strlen (p);
13742 p += hexnumstr (p, offset);
13743 *p++ = ',';
13744 p += hexnumstr (p, len);
13745 *p++ = '\0';
13746
13747 putpkt (rs->buf);
13748 reply = remote_get_noisy_reply ();
13749 if (reply && *reply)
13750 {
13751 /* 'l' by itself means we're at the end of the buffer and
13752 there is nothing more to get. */
13753 if (*reply == 'l')
13754 return 0;
13755
13756 /* Convert the reply into binary. Limit the number of bytes to
13757 convert according to our passed-in buffer size, rather than
13758 what was returned in the packet; if the target is
13759 unexpectedly generous and gives us a bigger reply than we
13760 asked for, we don't want to crash. */
13761 rslt = hex2bin (reply, buf, len);
13762 return rslt;
13763 }
13764
13765 /* Something went wrong, flag as an error. */
13766 return -1;
13767 }
13768
13769 void
13770 remote_target::set_disconnected_tracing (int val)
13771 {
13772 struct remote_state *rs = get_remote_state ();
13773
13774 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13775 {
13776 char *reply;
13777
13778 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13779 "QTDisconnected:%x", val);
13780 putpkt (rs->buf);
13781 reply = remote_get_noisy_reply ();
13782 if (*reply == '\0')
13783 error (_("Target does not support this command."));
13784 if (strcmp (reply, "OK") != 0)
13785 error (_("Bogus reply from target: %s"), reply);
13786 }
13787 else if (val)
13788 warning (_("Target does not support disconnected tracing."));
13789 }
13790
13791 int
13792 remote_target::core_of_thread (ptid_t ptid)
13793 {
13794 thread_info *info = find_thread_ptid (this, ptid);
13795
13796 if (info != NULL && info->priv != NULL)
13797 return get_remote_thread_info (info)->core;
13798
13799 return -1;
13800 }
13801
13802 void
13803 remote_target::set_circular_trace_buffer (int val)
13804 {
13805 struct remote_state *rs = get_remote_state ();
13806 char *reply;
13807
13808 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13809 "QTBuffer:circular:%x", val);
13810 putpkt (rs->buf);
13811 reply = remote_get_noisy_reply ();
13812 if (*reply == '\0')
13813 error (_("Target does not support this command."));
13814 if (strcmp (reply, "OK") != 0)
13815 error (_("Bogus reply from target: %s"), reply);
13816 }
13817
13818 traceframe_info_up
13819 remote_target::traceframe_info ()
13820 {
13821 gdb::optional<gdb::char_vector> text
13822 = target_read_stralloc (current_inferior ()->top_target (),
13823 TARGET_OBJECT_TRACEFRAME_INFO,
13824 NULL);
13825 if (text)
13826 return parse_traceframe_info (text->data ());
13827
13828 return NULL;
13829 }
13830
13831 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13832 instruction on which a fast tracepoint may be placed. Returns -1
13833 if the packet is not supported, and 0 if the minimum instruction
13834 length is unknown. */
13835
13836 int
13837 remote_target::get_min_fast_tracepoint_insn_len ()
13838 {
13839 struct remote_state *rs = get_remote_state ();
13840 char *reply;
13841
13842 /* If we're not debugging a process yet, the IPA can't be
13843 loaded. */
13844 if (!target_has_execution ())
13845 return 0;
13846
13847 /* Make sure the remote is pointing at the right process. */
13848 set_general_process ();
13849
13850 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13851 putpkt (rs->buf);
13852 reply = remote_get_noisy_reply ();
13853 if (*reply == '\0')
13854 return -1;
13855 else
13856 {
13857 ULONGEST min_insn_len;
13858
13859 unpack_varlen_hex (reply, &min_insn_len);
13860
13861 return (int) min_insn_len;
13862 }
13863 }
13864
13865 void
13866 remote_target::set_trace_buffer_size (LONGEST val)
13867 {
13868 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13869 {
13870 struct remote_state *rs = get_remote_state ();
13871 char *buf = rs->buf.data ();
13872 char *endbuf = buf + get_remote_packet_size ();
13873 enum packet_result result;
13874
13875 gdb_assert (val >= 0 || val == -1);
13876 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13877 /* Send -1 as literal "-1" to avoid host size dependency. */
13878 if (val < 0)
13879 {
13880 *buf++ = '-';
13881 buf += hexnumstr (buf, (ULONGEST) -val);
13882 }
13883 else
13884 buf += hexnumstr (buf, (ULONGEST) val);
13885
13886 putpkt (rs->buf);
13887 remote_get_noisy_reply ();
13888 result = packet_ok (rs->buf,
13889 &remote_protocol_packets[PACKET_QTBuffer_size]);
13890
13891 if (result != PACKET_OK)
13892 warning (_("Bogus reply from target: %s"), rs->buf.data ());
13893 }
13894 }
13895
13896 bool
13897 remote_target::set_trace_notes (const char *user, const char *notes,
13898 const char *stop_notes)
13899 {
13900 struct remote_state *rs = get_remote_state ();
13901 char *reply;
13902 char *buf = rs->buf.data ();
13903 char *endbuf = buf + get_remote_packet_size ();
13904 int nbytes;
13905
13906 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13907 if (user)
13908 {
13909 buf += xsnprintf (buf, endbuf - buf, "user:");
13910 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13911 buf += 2 * nbytes;
13912 *buf++ = ';';
13913 }
13914 if (notes)
13915 {
13916 buf += xsnprintf (buf, endbuf - buf, "notes:");
13917 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13918 buf += 2 * nbytes;
13919 *buf++ = ';';
13920 }
13921 if (stop_notes)
13922 {
13923 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13924 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13925 buf += 2 * nbytes;
13926 *buf++ = ';';
13927 }
13928 /* Ensure the buffer is terminated. */
13929 *buf = '\0';
13930
13931 putpkt (rs->buf);
13932 reply = remote_get_noisy_reply ();
13933 if (*reply == '\0')
13934 return false;
13935
13936 if (strcmp (reply, "OK") != 0)
13937 error (_("Bogus reply from target: %s"), reply);
13938
13939 return true;
13940 }
13941
13942 bool
13943 remote_target::use_agent (bool use)
13944 {
13945 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13946 {
13947 struct remote_state *rs = get_remote_state ();
13948
13949 /* If the stub supports QAgent. */
13950 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13951 putpkt (rs->buf);
13952 getpkt (&rs->buf, 0);
13953
13954 if (strcmp (rs->buf.data (), "OK") == 0)
13955 {
13956 ::use_agent = use;
13957 return true;
13958 }
13959 }
13960
13961 return false;
13962 }
13963
13964 bool
13965 remote_target::can_use_agent ()
13966 {
13967 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13968 }
13969
13970 struct btrace_target_info
13971 {
13972 /* The ptid of the traced thread. */
13973 ptid_t ptid;
13974
13975 /* The obtained branch trace configuration. */
13976 struct btrace_config conf;
13977 };
13978
13979 /* Reset our idea of our target's btrace configuration. */
13980
13981 static void
13982 remote_btrace_reset (remote_state *rs)
13983 {
13984 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13985 }
13986
13987 /* Synchronize the configuration with the target. */
13988
13989 void
13990 remote_target::btrace_sync_conf (const btrace_config *conf)
13991 {
13992 struct packet_config *packet;
13993 struct remote_state *rs;
13994 char *buf, *pos, *endbuf;
13995
13996 rs = get_remote_state ();
13997 buf = rs->buf.data ();
13998 endbuf = buf + get_remote_packet_size ();
13999
14000 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
14001 if (packet_config_support (packet) == PACKET_ENABLE
14002 && conf->bts.size != rs->btrace_config.bts.size)
14003 {
14004 pos = buf;
14005 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14006 conf->bts.size);
14007
14008 putpkt (buf);
14009 getpkt (&rs->buf, 0);
14010
14011 if (packet_ok (buf, packet) == PACKET_ERROR)
14012 {
14013 if (buf[0] == 'E' && buf[1] == '.')
14014 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
14015 else
14016 error (_("Failed to configure the BTS buffer size."));
14017 }
14018
14019 rs->btrace_config.bts.size = conf->bts.size;
14020 }
14021
14022 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
14023 if (packet_config_support (packet) == PACKET_ENABLE
14024 && conf->pt.size != rs->btrace_config.pt.size)
14025 {
14026 pos = buf;
14027 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14028 conf->pt.size);
14029
14030 putpkt (buf);
14031 getpkt (&rs->buf, 0);
14032
14033 if (packet_ok (buf, packet) == PACKET_ERROR)
14034 {
14035 if (buf[0] == 'E' && buf[1] == '.')
14036 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
14037 else
14038 error (_("Failed to configure the trace buffer size."));
14039 }
14040
14041 rs->btrace_config.pt.size = conf->pt.size;
14042 }
14043 }
14044
14045 /* Read the current thread's btrace configuration from the target and
14046 store it into CONF. */
14047
14048 static void
14049 btrace_read_config (struct btrace_config *conf)
14050 {
14051 gdb::optional<gdb::char_vector> xml
14052 = target_read_stralloc (current_inferior ()->top_target (),
14053 TARGET_OBJECT_BTRACE_CONF, "");
14054 if (xml)
14055 parse_xml_btrace_conf (conf, xml->data ());
14056 }
14057
14058 /* Maybe reopen target btrace. */
14059
14060 void
14061 remote_target::remote_btrace_maybe_reopen ()
14062 {
14063 struct remote_state *rs = get_remote_state ();
14064 int btrace_target_pushed = 0;
14065 #if !defined (HAVE_LIBIPT)
14066 int warned = 0;
14067 #endif
14068
14069 /* Don't bother walking the entirety of the remote thread list when
14070 we know the feature isn't supported by the remote. */
14071 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
14072 return;
14073
14074 scoped_restore_current_thread restore_thread;
14075
14076 for (thread_info *tp : all_non_exited_threads (this))
14077 {
14078 set_general_thread (tp->ptid);
14079
14080 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
14081 btrace_read_config (&rs->btrace_config);
14082
14083 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
14084 continue;
14085
14086 #if !defined (HAVE_LIBIPT)
14087 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
14088 {
14089 if (!warned)
14090 {
14091 warned = 1;
14092 warning (_("Target is recording using Intel Processor Trace "
14093 "but support was disabled at compile time."));
14094 }
14095
14096 continue;
14097 }
14098 #endif /* !defined (HAVE_LIBIPT) */
14099
14100 /* Push target, once, but before anything else happens. This way our
14101 changes to the threads will be cleaned up by unpushing the target
14102 in case btrace_read_config () throws. */
14103 if (!btrace_target_pushed)
14104 {
14105 btrace_target_pushed = 1;
14106 record_btrace_push_target ();
14107 printf_filtered (_("Target is recording using %s.\n"),
14108 btrace_format_string (rs->btrace_config.format));
14109 }
14110
14111 tp->btrace.target = XCNEW (struct btrace_target_info);
14112 tp->btrace.target->ptid = tp->ptid;
14113 tp->btrace.target->conf = rs->btrace_config;
14114 }
14115 }
14116
14117 /* Enable branch tracing. */
14118
14119 struct btrace_target_info *
14120 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
14121 {
14122 struct btrace_target_info *tinfo = NULL;
14123 struct packet_config *packet = NULL;
14124 struct remote_state *rs = get_remote_state ();
14125 char *buf = rs->buf.data ();
14126 char *endbuf = buf + get_remote_packet_size ();
14127
14128 switch (conf->format)
14129 {
14130 case BTRACE_FORMAT_BTS:
14131 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14132 break;
14133
14134 case BTRACE_FORMAT_PT:
14135 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14136 break;
14137 }
14138
14139 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
14140 error (_("Target does not support branch tracing."));
14141
14142 btrace_sync_conf (conf);
14143
14144 set_general_thread (ptid);
14145
14146 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14147 putpkt (rs->buf);
14148 getpkt (&rs->buf, 0);
14149
14150 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14151 {
14152 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14153 error (_("Could not enable branch tracing for %s: %s"),
14154 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
14155 else
14156 error (_("Could not enable branch tracing for %s."),
14157 target_pid_to_str (ptid).c_str ());
14158 }
14159
14160 tinfo = XCNEW (struct btrace_target_info);
14161 tinfo->ptid = ptid;
14162
14163 /* If we fail to read the configuration, we lose some information, but the
14164 tracing itself is not impacted. */
14165 try
14166 {
14167 btrace_read_config (&tinfo->conf);
14168 }
14169 catch (const gdb_exception_error &err)
14170 {
14171 if (err.message != NULL)
14172 warning ("%s", err.what ());
14173 }
14174
14175 return tinfo;
14176 }
14177
14178 /* Disable branch tracing. */
14179
14180 void
14181 remote_target::disable_btrace (struct btrace_target_info *tinfo)
14182 {
14183 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14184 struct remote_state *rs = get_remote_state ();
14185 char *buf = rs->buf.data ();
14186 char *endbuf = buf + get_remote_packet_size ();
14187
14188 if (packet_config_support (packet) != PACKET_ENABLE)
14189 error (_("Target does not support branch tracing."));
14190
14191 set_general_thread (tinfo->ptid);
14192
14193 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14194 putpkt (rs->buf);
14195 getpkt (&rs->buf, 0);
14196
14197 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14198 {
14199 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14200 error (_("Could not disable branch tracing for %s: %s"),
14201 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
14202 else
14203 error (_("Could not disable branch tracing for %s."),
14204 target_pid_to_str (tinfo->ptid).c_str ());
14205 }
14206
14207 xfree (tinfo);
14208 }
14209
14210 /* Teardown branch tracing. */
14211
14212 void
14213 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
14214 {
14215 /* We must not talk to the target during teardown. */
14216 xfree (tinfo);
14217 }
14218
14219 /* Read the branch trace. */
14220
14221 enum btrace_error
14222 remote_target::read_btrace (struct btrace_data *btrace,
14223 struct btrace_target_info *tinfo,
14224 enum btrace_read_type type)
14225 {
14226 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
14227 const char *annex;
14228
14229 if (packet_config_support (packet) != PACKET_ENABLE)
14230 error (_("Target does not support branch tracing."));
14231
14232 #if !defined(HAVE_LIBEXPAT)
14233 error (_("Cannot process branch tracing result. XML parsing not supported."));
14234 #endif
14235
14236 switch (type)
14237 {
14238 case BTRACE_READ_ALL:
14239 annex = "all";
14240 break;
14241 case BTRACE_READ_NEW:
14242 annex = "new";
14243 break;
14244 case BTRACE_READ_DELTA:
14245 annex = "delta";
14246 break;
14247 default:
14248 internal_error (__FILE__, __LINE__,
14249 _("Bad branch tracing read type: %u."),
14250 (unsigned int) type);
14251 }
14252
14253 gdb::optional<gdb::char_vector> xml
14254 = target_read_stralloc (current_inferior ()->top_target (),
14255 TARGET_OBJECT_BTRACE, annex);
14256 if (!xml)
14257 return BTRACE_ERR_UNKNOWN;
14258
14259 parse_xml_btrace (btrace, xml->data ());
14260
14261 return BTRACE_ERR_NONE;
14262 }
14263
14264 const struct btrace_config *
14265 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
14266 {
14267 return &tinfo->conf;
14268 }
14269
14270 bool
14271 remote_target::augmented_libraries_svr4_read ()
14272 {
14273 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14274 == PACKET_ENABLE);
14275 }
14276
14277 /* Implementation of to_load. */
14278
14279 void
14280 remote_target::load (const char *name, int from_tty)
14281 {
14282 generic_load (name, from_tty);
14283 }
14284
14285 /* Accepts an integer PID; returns a string representing a file that
14286 can be opened on the remote side to get the symbols for the child
14287 process. Returns NULL if the operation is not supported. */
14288
14289 char *
14290 remote_target::pid_to_exec_file (int pid)
14291 {
14292 static gdb::optional<gdb::char_vector> filename;
14293 char *annex = NULL;
14294
14295 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14296 return NULL;
14297
14298 inferior *inf = find_inferior_pid (this, pid);
14299 if (inf == NULL)
14300 internal_error (__FILE__, __LINE__,
14301 _("not currently attached to process %d"), pid);
14302
14303 if (!inf->fake_pid_p)
14304 {
14305 const int annex_size = 9;
14306
14307 annex = (char *) alloca (annex_size);
14308 xsnprintf (annex, annex_size, "%x", pid);
14309 }
14310
14311 filename = target_read_stralloc (current_inferior ()->top_target (),
14312 TARGET_OBJECT_EXEC_FILE, annex);
14313
14314 return filename ? filename->data () : nullptr;
14315 }
14316
14317 /* Implement the to_can_do_single_step target_ops method. */
14318
14319 int
14320 remote_target::can_do_single_step ()
14321 {
14322 /* We can only tell whether target supports single step or not by
14323 supported s and S vCont actions if the stub supports vContSupported
14324 feature. If the stub doesn't support vContSupported feature,
14325 we have conservatively to think target doesn't supports single
14326 step. */
14327 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14328 {
14329 struct remote_state *rs = get_remote_state ();
14330
14331 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14332 remote_vcont_probe ();
14333
14334 return rs->supports_vCont.s && rs->supports_vCont.S;
14335 }
14336 else
14337 return 0;
14338 }
14339
14340 /* Implementation of the to_execution_direction method for the remote
14341 target. */
14342
14343 enum exec_direction_kind
14344 remote_target::execution_direction ()
14345 {
14346 struct remote_state *rs = get_remote_state ();
14347
14348 return rs->last_resume_exec_dir;
14349 }
14350
14351 /* Return pointer to the thread_info struct which corresponds to
14352 THREAD_HANDLE (having length HANDLE_LEN). */
14353
14354 thread_info *
14355 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14356 int handle_len,
14357 inferior *inf)
14358 {
14359 for (thread_info *tp : all_non_exited_threads (this))
14360 {
14361 remote_thread_info *priv = get_remote_thread_info (tp);
14362
14363 if (tp->inf == inf && priv != NULL)
14364 {
14365 if (handle_len != priv->thread_handle.size ())
14366 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14367 handle_len, priv->thread_handle.size ());
14368 if (memcmp (thread_handle, priv->thread_handle.data (),
14369 handle_len) == 0)
14370 return tp;
14371 }
14372 }
14373
14374 return NULL;
14375 }
14376
14377 gdb::byte_vector
14378 remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14379 {
14380 remote_thread_info *priv = get_remote_thread_info (tp);
14381 return priv->thread_handle;
14382 }
14383
14384 bool
14385 remote_target::can_async_p ()
14386 {
14387 struct remote_state *rs = get_remote_state ();
14388
14389 /* We don't go async if the user has explicitly prevented it with the
14390 "maint set target-async" command. */
14391 if (!target_async_permitted)
14392 return false;
14393
14394 /* We're async whenever the serial device is. */
14395 return serial_can_async_p (rs->remote_desc);
14396 }
14397
14398 bool
14399 remote_target::is_async_p ()
14400 {
14401 struct remote_state *rs = get_remote_state ();
14402
14403 if (!target_async_permitted)
14404 /* We only enable async when the user specifically asks for it. */
14405 return false;
14406
14407 /* We're async whenever the serial device is. */
14408 return serial_is_async_p (rs->remote_desc);
14409 }
14410
14411 /* Pass the SERIAL event on and up to the client. One day this code
14412 will be able to delay notifying the client of an event until the
14413 point where an entire packet has been received. */
14414
14415 static serial_event_ftype remote_async_serial_handler;
14416
14417 static void
14418 remote_async_serial_handler (struct serial *scb, void *context)
14419 {
14420 /* Don't propogate error information up to the client. Instead let
14421 the client find out about the error by querying the target. */
14422 inferior_event_handler (INF_REG_EVENT);
14423 }
14424
14425 static void
14426 remote_async_inferior_event_handler (gdb_client_data data)
14427 {
14428 inferior_event_handler (INF_REG_EVENT);
14429 }
14430
14431 int
14432 remote_target::async_wait_fd ()
14433 {
14434 struct remote_state *rs = get_remote_state ();
14435 return rs->remote_desc->fd;
14436 }
14437
14438 void
14439 remote_target::async (int enable)
14440 {
14441 struct remote_state *rs = get_remote_state ();
14442
14443 if (enable)
14444 {
14445 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14446
14447 /* If there are pending events in the stop reply queue tell the
14448 event loop to process them. */
14449 if (!rs->stop_reply_queue.empty ())
14450 mark_async_event_handler (rs->remote_async_inferior_event_token);
14451 /* For simplicity, below we clear the pending events token
14452 without remembering whether it is marked, so here we always
14453 mark it. If there's actually no pending notification to
14454 process, this ends up being a no-op (other than a spurious
14455 event-loop wakeup). */
14456 if (target_is_non_stop_p ())
14457 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14458 }
14459 else
14460 {
14461 serial_async (rs->remote_desc, NULL, NULL);
14462 /* If the core is disabling async, it doesn't want to be
14463 disturbed with target events. Clear all async event sources
14464 too. */
14465 clear_async_event_handler (rs->remote_async_inferior_event_token);
14466 if (target_is_non_stop_p ())
14467 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14468 }
14469 }
14470
14471 /* Implementation of the to_thread_events method. */
14472
14473 void
14474 remote_target::thread_events (int enable)
14475 {
14476 struct remote_state *rs = get_remote_state ();
14477 size_t size = get_remote_packet_size ();
14478
14479 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14480 return;
14481
14482 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14483 putpkt (rs->buf);
14484 getpkt (&rs->buf, 0);
14485
14486 switch (packet_ok (rs->buf,
14487 &remote_protocol_packets[PACKET_QThreadEvents]))
14488 {
14489 case PACKET_OK:
14490 if (strcmp (rs->buf.data (), "OK") != 0)
14491 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14492 break;
14493 case PACKET_ERROR:
14494 warning (_("Remote failure reply: %s"), rs->buf.data ());
14495 break;
14496 case PACKET_UNKNOWN:
14497 break;
14498 }
14499 }
14500
14501 static void
14502 show_remote_cmd (const char *args, int from_tty)
14503 {
14504 /* We can't just use cmd_show_list here, because we want to skip
14505 the redundant "show remote Z-packet" and the legacy aliases. */
14506 struct cmd_list_element *list = remote_show_cmdlist;
14507 struct ui_out *uiout = current_uiout;
14508
14509 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14510 for (; list != NULL; list = list->next)
14511 if (strcmp (list->name, "Z-packet") == 0)
14512 continue;
14513 else if (list->type == not_set_cmd)
14514 /* Alias commands are exactly like the original, except they
14515 don't have the normal type. */
14516 continue;
14517 else
14518 {
14519 ui_out_emit_tuple option_emitter (uiout, "option");
14520
14521 uiout->field_string ("name", list->name);
14522 uiout->text (": ");
14523 if (list->type == show_cmd)
14524 do_show_command (NULL, from_tty, list);
14525 else
14526 cmd_func (list, NULL, from_tty);
14527 }
14528 }
14529
14530
14531 /* Function to be called whenever a new objfile (shlib) is detected. */
14532 static void
14533 remote_new_objfile (struct objfile *objfile)
14534 {
14535 remote_target *remote = get_current_remote_target ();
14536
14537 /* First, check whether the current inferior's process target is a remote
14538 target. */
14539 if (remote == nullptr)
14540 return;
14541
14542 /* When we are attaching or handling a fork child and the shared library
14543 subsystem reads the list of loaded libraries, we receive new objfile
14544 events in between each found library. The libraries are read in an
14545 undefined order, so if we gave the remote side a chance to look up
14546 symbols between each objfile, we might give it an inconsistent picture
14547 of the inferior. It could appear that a library A appears loaded but
14548 a library B does not, even though library A requires library B. That
14549 would present a state that couldn't normally exist in the inferior.
14550
14551 So, skip these events, we'll give the remote a chance to look up symbols
14552 once all the loaded libraries and their symbols are known to GDB. */
14553 if (current_inferior ()->in_initial_library_scan)
14554 return;
14555
14556 remote->remote_check_symbols ();
14557 }
14558
14559 /* Pull all the tracepoints defined on the target and create local
14560 data structures representing them. We don't want to create real
14561 tracepoints yet, we don't want to mess up the user's existing
14562 collection. */
14563
14564 int
14565 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14566 {
14567 struct remote_state *rs = get_remote_state ();
14568 char *p;
14569
14570 /* Ask for a first packet of tracepoint definition. */
14571 putpkt ("qTfP");
14572 getpkt (&rs->buf, 0);
14573 p = rs->buf.data ();
14574 while (*p && *p != 'l')
14575 {
14576 parse_tracepoint_definition (p, utpp);
14577 /* Ask for another packet of tracepoint definition. */
14578 putpkt ("qTsP");
14579 getpkt (&rs->buf, 0);
14580 p = rs->buf.data ();
14581 }
14582 return 0;
14583 }
14584
14585 int
14586 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14587 {
14588 struct remote_state *rs = get_remote_state ();
14589 char *p;
14590
14591 /* Ask for a first packet of variable definition. */
14592 putpkt ("qTfV");
14593 getpkt (&rs->buf, 0);
14594 p = rs->buf.data ();
14595 while (*p && *p != 'l')
14596 {
14597 parse_tsv_definition (p, utsvp);
14598 /* Ask for another packet of variable definition. */
14599 putpkt ("qTsV");
14600 getpkt (&rs->buf, 0);
14601 p = rs->buf.data ();
14602 }
14603 return 0;
14604 }
14605
14606 /* The "set/show range-stepping" show hook. */
14607
14608 static void
14609 show_range_stepping (struct ui_file *file, int from_tty,
14610 struct cmd_list_element *c,
14611 const char *value)
14612 {
14613 fprintf_filtered (file,
14614 _("Debugger's willingness to use range stepping "
14615 "is %s.\n"), value);
14616 }
14617
14618 /* Return true if the vCont;r action is supported by the remote
14619 stub. */
14620
14621 bool
14622 remote_target::vcont_r_supported ()
14623 {
14624 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14625 remote_vcont_probe ();
14626
14627 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14628 && get_remote_state ()->supports_vCont.r);
14629 }
14630
14631 /* The "set/show range-stepping" set hook. */
14632
14633 static void
14634 set_range_stepping (const char *ignore_args, int from_tty,
14635 struct cmd_list_element *c)
14636 {
14637 /* When enabling, check whether range stepping is actually supported
14638 by the target, and warn if not. */
14639 if (use_range_stepping)
14640 {
14641 remote_target *remote = get_current_remote_target ();
14642 if (remote == NULL
14643 || !remote->vcont_r_supported ())
14644 warning (_("Range stepping is not supported by the current target"));
14645 }
14646 }
14647
14648 static void
14649 show_remote_debug (struct ui_file *file, int from_tty,
14650 struct cmd_list_element *c, const char *value)
14651 {
14652 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14653 value);
14654 }
14655
14656 static void
14657 show_remote_timeout (struct ui_file *file, int from_tty,
14658 struct cmd_list_element *c, const char *value)
14659 {
14660 fprintf_filtered (file,
14661 _("Timeout limit to wait for target to respond is %s.\n"),
14662 value);
14663 }
14664
14665 /* Implement the "supports_memory_tagging" target_ops method. */
14666
14667 bool
14668 remote_target::supports_memory_tagging ()
14669 {
14670 return remote_memory_tagging_p ();
14671 }
14672
14673 /* Create the qMemTags packet given ADDRESS, LEN and TYPE. */
14674
14675 static void
14676 create_fetch_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14677 size_t len, int type)
14678 {
14679 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14680
14681 std::string request = string_printf ("qMemTags:%s,%s:%s",
14682 phex_nz (address, addr_size),
14683 phex_nz (len, sizeof (len)),
14684 phex_nz (type, sizeof (type)));
14685
14686 strcpy (packet.data (), request.c_str ());
14687 }
14688
14689 /* Parse the qMemTags packet reply into TAGS.
14690
14691 Return true if successful, false otherwise. */
14692
14693 static bool
14694 parse_fetch_memtags_reply (const gdb::char_vector &reply,
14695 gdb::byte_vector &tags)
14696 {
14697 if (reply.empty () || reply[0] == 'E' || reply[0] != 'm')
14698 return false;
14699
14700 /* Copy the tag data. */
14701 tags = hex2bin (reply.data () + 1);
14702
14703 return true;
14704 }
14705
14706 /* Create the QMemTags packet given ADDRESS, LEN, TYPE and TAGS. */
14707
14708 static void
14709 create_store_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14710 size_t len, int type,
14711 const gdb::byte_vector &tags)
14712 {
14713 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14714
14715 /* Put together the main packet, address and length. */
14716 std::string request = string_printf ("QMemTags:%s,%s:%s:",
14717 phex_nz (address, addr_size),
14718 phex_nz (len, sizeof (len)),
14719 phex_nz (type, sizeof (type)));
14720 request += bin2hex (tags.data (), tags.size ());
14721
14722 /* Check if we have exceeded the maximum packet size. */
14723 if (packet.size () < request.length ())
14724 error (_("Contents too big for packet QMemTags."));
14725
14726 strcpy (packet.data (), request.c_str ());
14727 }
14728
14729 /* Implement the "fetch_memtags" target_ops method. */
14730
14731 bool
14732 remote_target::fetch_memtags (CORE_ADDR address, size_t len,
14733 gdb::byte_vector &tags, int type)
14734 {
14735 /* Make sure the qMemTags packet is supported. */
14736 if (!remote_memory_tagging_p ())
14737 gdb_assert_not_reached ("remote fetch_memtags called with packet disabled");
14738
14739 struct remote_state *rs = get_remote_state ();
14740
14741 create_fetch_memtags_request (rs->buf, address, len, type);
14742
14743 putpkt (rs->buf);
14744 getpkt (&rs->buf, 0);
14745
14746 return parse_fetch_memtags_reply (rs->buf, tags);
14747 }
14748
14749 /* Implement the "store_memtags" target_ops method. */
14750
14751 bool
14752 remote_target::store_memtags (CORE_ADDR address, size_t len,
14753 const gdb::byte_vector &tags, int type)
14754 {
14755 /* Make sure the QMemTags packet is supported. */
14756 if (!remote_memory_tagging_p ())
14757 gdb_assert_not_reached ("remote store_memtags called with packet disabled");
14758
14759 struct remote_state *rs = get_remote_state ();
14760
14761 create_store_memtags_request (rs->buf, address, len, type, tags);
14762
14763 putpkt (rs->buf);
14764 getpkt (&rs->buf, 0);
14765
14766 /* Verify if the request was successful. */
14767 return packet_check_result (rs->buf.data ()) == PACKET_OK;
14768 }
14769
14770 /* Return true if remote target T is non-stop. */
14771
14772 bool
14773 remote_target_is_non_stop_p (remote_target *t)
14774 {
14775 scoped_restore_current_thread restore_thread;
14776 switch_to_target_no_thread (t);
14777
14778 return target_is_non_stop_p ();
14779 }
14780
14781 #if GDB_SELF_TEST
14782
14783 namespace selftests {
14784
14785 static void
14786 test_memory_tagging_functions ()
14787 {
14788 remote_target remote;
14789
14790 struct packet_config *config
14791 = &remote_protocol_packets[PACKET_memory_tagging_feature];
14792
14793 scoped_restore restore_memtag_support_
14794 = make_scoped_restore (&config->support);
14795
14796 /* Test memory tagging packet support. */
14797 config->support = PACKET_SUPPORT_UNKNOWN;
14798 SELF_CHECK (remote.supports_memory_tagging () == false);
14799 config->support = PACKET_DISABLE;
14800 SELF_CHECK (remote.supports_memory_tagging () == false);
14801 config->support = PACKET_ENABLE;
14802 SELF_CHECK (remote.supports_memory_tagging () == true);
14803
14804 /* Setup testing. */
14805 gdb::char_vector packet;
14806 gdb::byte_vector tags, bv;
14807 std::string expected, reply;
14808 packet.resize (32000);
14809
14810 /* Test creating a qMemTags request. */
14811
14812 expected = "qMemTags:0,0:0";
14813 create_fetch_memtags_request (packet, 0x0, 0x0, 0);
14814 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14815
14816 expected = "qMemTags:deadbeef,10:1";
14817 create_fetch_memtags_request (packet, 0xdeadbeef, 16, 1);
14818 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14819
14820 /* Test parsing a qMemTags reply. */
14821
14822 /* Error reply, tags vector unmodified. */
14823 reply = "E00";
14824 strcpy (packet.data (), reply.c_str ());
14825 tags.resize (0);
14826 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == false);
14827 SELF_CHECK (tags.size () == 0);
14828
14829 /* Valid reply, tags vector updated. */
14830 tags.resize (0);
14831 bv.resize (0);
14832
14833 for (int i = 0; i < 5; i++)
14834 bv.push_back (i);
14835
14836 reply = "m" + bin2hex (bv.data (), bv.size ());
14837 strcpy (packet.data (), reply.c_str ());
14838
14839 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == true);
14840 SELF_CHECK (tags.size () == 5);
14841
14842 for (int i = 0; i < 5; i++)
14843 SELF_CHECK (tags[i] == i);
14844
14845 /* Test creating a QMemTags request. */
14846
14847 /* Empty tag data. */
14848 tags.resize (0);
14849 expected = "QMemTags:0,0:0:";
14850 create_store_memtags_request (packet, 0x0, 0x0, 0, tags);
14851 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14852 expected.length ()) == 0);
14853
14854 /* Non-empty tag data. */
14855 tags.resize (0);
14856 for (int i = 0; i < 5; i++)
14857 tags.push_back (i);
14858 expected = "QMemTags:deadbeef,ff:1:0001020304";
14859 create_store_memtags_request (packet, 0xdeadbeef, 255, 1, tags);
14860 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14861 expected.length ()) == 0);
14862 }
14863
14864 } // namespace selftests
14865 #endif /* GDB_SELF_TEST */
14866
14867 void _initialize_remote ();
14868 void
14869 _initialize_remote ()
14870 {
14871 /* architecture specific data */
14872 remote_g_packet_data_handle =
14873 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14874
14875 add_target (remote_target_info, remote_target::open);
14876 add_target (extended_remote_target_info, extended_remote_target::open);
14877
14878 /* Hook into new objfile notification. */
14879 gdb::observers::new_objfile.attach (remote_new_objfile, "remote");
14880
14881 #if 0
14882 init_remote_threadtests ();
14883 #endif
14884
14885 /* set/show remote ... */
14886
14887 add_basic_prefix_cmd ("remote", class_maintenance, _("\
14888 Remote protocol specific variables.\n\
14889 Configure various remote-protocol specific variables such as\n\
14890 the packets being used."),
14891 &remote_set_cmdlist,
14892 0 /* allow-unknown */, &setlist);
14893 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14894 Remote protocol specific variables.\n\
14895 Configure various remote-protocol specific variables such as\n\
14896 the packets being used."),
14897 &remote_show_cmdlist,
14898 0 /* allow-unknown */, &showlist);
14899
14900 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14901 Compare section data on target to the exec file.\n\
14902 Argument is a single section name (default: all loaded sections).\n\
14903 To compare only read-only loaded sections, specify the -r option."),
14904 &cmdlist);
14905
14906 add_cmd ("packet", class_maintenance, packet_command, _("\
14907 Send an arbitrary packet to a remote target.\n\
14908 maintenance packet TEXT\n\
14909 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14910 this command sends the string TEXT to the inferior, and displays the\n\
14911 response packet. GDB supplies the initial `$' character, and the\n\
14912 terminating `#' character and checksum."),
14913 &maintenancelist);
14914
14915 set_show_commands remotebreak_cmds
14916 = add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14917 Set whether to send break if interrupted."), _("\
14918 Show whether to send break if interrupted."), _("\
14919 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14920 set_remotebreak, show_remotebreak,
14921 &setlist, &showlist);
14922 deprecate_cmd (remotebreak_cmds.set, "set remote interrupt-sequence");
14923 deprecate_cmd (remotebreak_cmds.show, "show remote interrupt-sequence");
14924
14925 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14926 interrupt_sequence_modes, &interrupt_sequence_mode,
14927 _("\
14928 Set interrupt sequence to remote target."), _("\
14929 Show interrupt sequence to remote target."), _("\
14930 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14931 NULL, show_interrupt_sequence,
14932 &remote_set_cmdlist,
14933 &remote_show_cmdlist);
14934
14935 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14936 &interrupt_on_connect, _("\
14937 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14938 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14939 If set, interrupt sequence is sent to remote target."),
14940 NULL, NULL,
14941 &remote_set_cmdlist, &remote_show_cmdlist);
14942
14943 /* Install commands for configuring memory read/write packets. */
14944
14945 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14946 Set the maximum number of bytes per memory write packet (deprecated)."),
14947 &setlist);
14948 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14949 Show the maximum number of bytes per memory write packet (deprecated)."),
14950 &showlist);
14951 add_cmd ("memory-write-packet-size", no_class,
14952 set_memory_write_packet_size, _("\
14953 Set the maximum number of bytes per memory-write packet.\n\
14954 Specify the number of bytes in a packet or 0 (zero) for the\n\
14955 default packet size. The actual limit is further reduced\n\
14956 dependent on the target. Specify ``fixed'' to disable the\n\
14957 further restriction and ``limit'' to enable that restriction."),
14958 &remote_set_cmdlist);
14959 add_cmd ("memory-read-packet-size", no_class,
14960 set_memory_read_packet_size, _("\
14961 Set the maximum number of bytes per memory-read packet.\n\
14962 Specify the number of bytes in a packet or 0 (zero) for the\n\
14963 default packet size. The actual limit is further reduced\n\
14964 dependent on the target. Specify ``fixed'' to disable the\n\
14965 further restriction and ``limit'' to enable that restriction."),
14966 &remote_set_cmdlist);
14967 add_cmd ("memory-write-packet-size", no_class,
14968 show_memory_write_packet_size,
14969 _("Show the maximum number of bytes per memory-write packet."),
14970 &remote_show_cmdlist);
14971 add_cmd ("memory-read-packet-size", no_class,
14972 show_memory_read_packet_size,
14973 _("Show the maximum number of bytes per memory-read packet."),
14974 &remote_show_cmdlist);
14975
14976 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14977 &remote_hw_watchpoint_limit, _("\
14978 Set the maximum number of target hardware watchpoints."), _("\
14979 Show the maximum number of target hardware watchpoints."), _("\
14980 Specify \"unlimited\" for unlimited hardware watchpoints."),
14981 NULL, show_hardware_watchpoint_limit,
14982 &remote_set_cmdlist,
14983 &remote_show_cmdlist);
14984 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14985 no_class,
14986 &remote_hw_watchpoint_length_limit, _("\
14987 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14988 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14989 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14990 NULL, show_hardware_watchpoint_length_limit,
14991 &remote_set_cmdlist, &remote_show_cmdlist);
14992 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
14993 &remote_hw_breakpoint_limit, _("\
14994 Set the maximum number of target hardware breakpoints."), _("\
14995 Show the maximum number of target hardware breakpoints."), _("\
14996 Specify \"unlimited\" for unlimited hardware breakpoints."),
14997 NULL, show_hardware_breakpoint_limit,
14998 &remote_set_cmdlist, &remote_show_cmdlist);
14999
15000 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
15001 &remote_address_size, _("\
15002 Set the maximum size of the address (in bits) in a memory packet."), _("\
15003 Show the maximum size of the address (in bits) in a memory packet."), NULL,
15004 NULL,
15005 NULL, /* FIXME: i18n: */
15006 &setlist, &showlist);
15007
15008 init_all_packet_configs ();
15009
15010 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
15011 "X", "binary-download", 1);
15012
15013 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
15014 "vCont", "verbose-resume", 0);
15015
15016 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
15017 "QPassSignals", "pass-signals", 0);
15018
15019 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
15020 "QCatchSyscalls", "catch-syscalls", 0);
15021
15022 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
15023 "QProgramSignals", "program-signals", 0);
15024
15025 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
15026 "QSetWorkingDir", "set-working-dir", 0);
15027
15028 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
15029 "QStartupWithShell", "startup-with-shell", 0);
15030
15031 add_packet_config_cmd (&remote_protocol_packets
15032 [PACKET_QEnvironmentHexEncoded],
15033 "QEnvironmentHexEncoded", "environment-hex-encoded",
15034 0);
15035
15036 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
15037 "QEnvironmentReset", "environment-reset",
15038 0);
15039
15040 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
15041 "QEnvironmentUnset", "environment-unset",
15042 0);
15043
15044 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
15045 "qSymbol", "symbol-lookup", 0);
15046
15047 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
15048 "P", "set-register", 1);
15049
15050 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
15051 "p", "fetch-register", 1);
15052
15053 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
15054 "Z0", "software-breakpoint", 0);
15055
15056 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
15057 "Z1", "hardware-breakpoint", 0);
15058
15059 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
15060 "Z2", "write-watchpoint", 0);
15061
15062 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
15063 "Z3", "read-watchpoint", 0);
15064
15065 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
15066 "Z4", "access-watchpoint", 0);
15067
15068 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
15069 "qXfer:auxv:read", "read-aux-vector", 0);
15070
15071 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
15072 "qXfer:exec-file:read", "pid-to-exec-file", 0);
15073
15074 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
15075 "qXfer:features:read", "target-features", 0);
15076
15077 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
15078 "qXfer:libraries:read", "library-info", 0);
15079
15080 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
15081 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
15082
15083 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
15084 "qXfer:memory-map:read", "memory-map", 0);
15085
15086 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
15087 "qXfer:osdata:read", "osdata", 0);
15088
15089 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
15090 "qXfer:threads:read", "threads", 0);
15091
15092 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
15093 "qXfer:siginfo:read", "read-siginfo-object", 0);
15094
15095 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
15096 "qXfer:siginfo:write", "write-siginfo-object", 0);
15097
15098 add_packet_config_cmd
15099 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
15100 "qXfer:traceframe-info:read", "traceframe-info", 0);
15101
15102 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
15103 "qXfer:uib:read", "unwind-info-block", 0);
15104
15105 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
15106 "qGetTLSAddr", "get-thread-local-storage-address",
15107 0);
15108
15109 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
15110 "qGetTIBAddr", "get-thread-information-block-address",
15111 0);
15112
15113 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
15114 "bc", "reverse-continue", 0);
15115
15116 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
15117 "bs", "reverse-step", 0);
15118
15119 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
15120 "qSupported", "supported-packets", 0);
15121
15122 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
15123 "qSearch:memory", "search-memory", 0);
15124
15125 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
15126 "qTStatus", "trace-status", 0);
15127
15128 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
15129 "vFile:setfs", "hostio-setfs", 0);
15130
15131 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
15132 "vFile:open", "hostio-open", 0);
15133
15134 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
15135 "vFile:pread", "hostio-pread", 0);
15136
15137 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
15138 "vFile:pwrite", "hostio-pwrite", 0);
15139
15140 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
15141 "vFile:close", "hostio-close", 0);
15142
15143 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
15144 "vFile:unlink", "hostio-unlink", 0);
15145
15146 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
15147 "vFile:readlink", "hostio-readlink", 0);
15148
15149 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
15150 "vFile:fstat", "hostio-fstat", 0);
15151
15152 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
15153 "vAttach", "attach", 0);
15154
15155 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
15156 "vRun", "run", 0);
15157
15158 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
15159 "QStartNoAckMode", "noack", 0);
15160
15161 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
15162 "vKill", "kill", 0);
15163
15164 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
15165 "qAttached", "query-attached", 0);
15166
15167 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
15168 "ConditionalTracepoints",
15169 "conditional-tracepoints", 0);
15170
15171 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
15172 "ConditionalBreakpoints",
15173 "conditional-breakpoints", 0);
15174
15175 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
15176 "BreakpointCommands",
15177 "breakpoint-commands", 0);
15178
15179 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
15180 "FastTracepoints", "fast-tracepoints", 0);
15181
15182 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
15183 "TracepointSource", "TracepointSource", 0);
15184
15185 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
15186 "QAllow", "allow", 0);
15187
15188 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
15189 "StaticTracepoints", "static-tracepoints", 0);
15190
15191 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
15192 "InstallInTrace", "install-in-trace", 0);
15193
15194 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
15195 "qXfer:statictrace:read", "read-sdata-object", 0);
15196
15197 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
15198 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
15199
15200 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
15201 "QDisableRandomization", "disable-randomization", 0);
15202
15203 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
15204 "QAgent", "agent", 0);
15205
15206 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
15207 "QTBuffer:size", "trace-buffer-size", 0);
15208
15209 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
15210 "Qbtrace:off", "disable-btrace", 0);
15211
15212 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
15213 "Qbtrace:bts", "enable-btrace-bts", 0);
15214
15215 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
15216 "Qbtrace:pt", "enable-btrace-pt", 0);
15217
15218 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
15219 "qXfer:btrace", "read-btrace", 0);
15220
15221 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
15222 "qXfer:btrace-conf", "read-btrace-conf", 0);
15223
15224 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
15225 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
15226
15227 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
15228 "multiprocess-feature", "multiprocess-feature", 0);
15229
15230 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
15231 "swbreak-feature", "swbreak-feature", 0);
15232
15233 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
15234 "hwbreak-feature", "hwbreak-feature", 0);
15235
15236 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
15237 "fork-event-feature", "fork-event-feature", 0);
15238
15239 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
15240 "vfork-event-feature", "vfork-event-feature", 0);
15241
15242 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
15243 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
15244
15245 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
15246 "vContSupported", "verbose-resume-supported", 0);
15247
15248 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
15249 "exec-event-feature", "exec-event-feature", 0);
15250
15251 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
15252 "vCtrlC", "ctrl-c", 0);
15253
15254 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
15255 "QThreadEvents", "thread-events", 0);
15256
15257 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
15258 "N stop reply", "no-resumed-stop-reply", 0);
15259
15260 add_packet_config_cmd (&remote_protocol_packets[PACKET_memory_tagging_feature],
15261 "memory-tagging-feature", "memory-tagging-feature", 0);
15262
15263 /* Assert that we've registered "set remote foo-packet" commands
15264 for all packet configs. */
15265 {
15266 int i;
15267
15268 for (i = 0; i < PACKET_MAX; i++)
15269 {
15270 /* Ideally all configs would have a command associated. Some
15271 still don't though. */
15272 int excepted;
15273
15274 switch (i)
15275 {
15276 case PACKET_QNonStop:
15277 case PACKET_EnableDisableTracepoints_feature:
15278 case PACKET_tracenz_feature:
15279 case PACKET_DisconnectedTracing_feature:
15280 case PACKET_augmented_libraries_svr4_read_feature:
15281 case PACKET_qCRC:
15282 /* Additions to this list need to be well justified:
15283 pre-existing packets are OK; new packets are not. */
15284 excepted = 1;
15285 break;
15286 default:
15287 excepted = 0;
15288 break;
15289 }
15290
15291 /* This catches both forgetting to add a config command, and
15292 forgetting to remove a packet from the exception list. */
15293 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
15294 }
15295 }
15296
15297 /* Keep the old ``set remote Z-packet ...'' working. Each individual
15298 Z sub-packet has its own set and show commands, but users may
15299 have sets to this variable in their .gdbinit files (or in their
15300 documentation). */
15301 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
15302 &remote_Z_packet_detect, _("\
15303 Set use of remote protocol `Z' packets."), _("\
15304 Show use of remote protocol `Z' packets."), _("\
15305 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
15306 packets."),
15307 set_remote_protocol_Z_packet_cmd,
15308 show_remote_protocol_Z_packet_cmd,
15309 /* FIXME: i18n: Use of remote protocol
15310 `Z' packets is %s. */
15311 &remote_set_cmdlist, &remote_show_cmdlist);
15312
15313 add_basic_prefix_cmd ("remote", class_files, _("\
15314 Manipulate files on the remote system.\n\
15315 Transfer files to and from the remote target system."),
15316 &remote_cmdlist,
15317 0 /* allow-unknown */, &cmdlist);
15318
15319 add_cmd ("put", class_files, remote_put_command,
15320 _("Copy a local file to the remote system."),
15321 &remote_cmdlist);
15322
15323 add_cmd ("get", class_files, remote_get_command,
15324 _("Copy a remote file to the local system."),
15325 &remote_cmdlist);
15326
15327 add_cmd ("delete", class_files, remote_delete_command,
15328 _("Delete a remote file."),
15329 &remote_cmdlist);
15330
15331 add_setshow_string_noescape_cmd ("exec-file", class_files,
15332 &remote_exec_file_var, _("\
15333 Set the remote pathname for \"run\"."), _("\
15334 Show the remote pathname for \"run\"."), NULL,
15335 set_remote_exec_file,
15336 show_remote_exec_file,
15337 &remote_set_cmdlist,
15338 &remote_show_cmdlist);
15339
15340 add_setshow_boolean_cmd ("range-stepping", class_run,
15341 &use_range_stepping, _("\
15342 Enable or disable range stepping."), _("\
15343 Show whether target-assisted range stepping is enabled."), _("\
15344 If on, and the target supports it, when stepping a source line, GDB\n\
15345 tells the target to step the corresponding range of addresses itself instead\n\
15346 of issuing multiple single-steps. This speeds up source level\n\
15347 stepping. If off, GDB always issues single-steps, even if range\n\
15348 stepping is supported by the target. The default is on."),
15349 set_range_stepping,
15350 show_range_stepping,
15351 &setlist,
15352 &showlist);
15353
15354 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15355 Set watchdog timer."), _("\
15356 Show watchdog timer."), _("\
15357 When non-zero, this timeout is used instead of waiting forever for a target\n\
15358 to finish a low-level step or continue operation. If the specified amount\n\
15359 of time passes without a response from the target, an error occurs."),
15360 NULL,
15361 show_watchdog,
15362 &setlist, &showlist);
15363
15364 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15365 &remote_packet_max_chars, _("\
15366 Set the maximum number of characters to display for each remote packet."), _("\
15367 Show the maximum number of characters to display for each remote packet."), _("\
15368 Specify \"unlimited\" to display all the characters."),
15369 NULL, show_remote_packet_max_chars,
15370 &setdebuglist, &showdebuglist);
15371
15372 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15373 _("Set debugging of remote protocol."),
15374 _("Show debugging of remote protocol."),
15375 _("\
15376 When enabled, each packet sent or received with the remote target\n\
15377 is displayed."),
15378 NULL,
15379 show_remote_debug,
15380 &setdebuglist, &showdebuglist);
15381
15382 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15383 &remote_timeout, _("\
15384 Set timeout limit to wait for target to respond."), _("\
15385 Show timeout limit to wait for target to respond."), _("\
15386 This value is used to set the time limit for gdb to wait for a response\n\
15387 from the target."),
15388 NULL,
15389 show_remote_timeout,
15390 &setlist, &showlist);
15391
15392 /* Eventually initialize fileio. See fileio.c */
15393 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
15394
15395 #if GDB_SELF_TEST
15396 selftests::register_test ("remote_memory_tagging",
15397 selftests::test_memory_tagging_functions);
15398 #endif
15399 }