]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/remote.c
gdb/python: add gdb.RemoteTargetConnection.send_packet
[thirdparty/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 private: /* data fields */
960
961 /* The remote state. Don't reference this directly. Use the
962 get_remote_state method instead. */
963 remote_state m_remote_state;
964 };
965
966 static const target_info extended_remote_target_info = {
967 "extended-remote",
968 N_("Extended remote serial target in gdb-specific protocol"),
969 remote_doc
970 };
971
972 /* Set up the extended remote target by extending the standard remote
973 target and adding to it. */
974
975 class extended_remote_target final : public remote_target
976 {
977 public:
978 const target_info &info () const override
979 { return extended_remote_target_info; }
980
981 /* Open an extended-remote connection. */
982 static void open (const char *, int);
983
984 bool can_create_inferior () override { return true; }
985 void create_inferior (const char *, const std::string &,
986 char **, int) override;
987
988 void detach (inferior *, int) override;
989
990 bool can_attach () override { return true; }
991 void attach (const char *, int) override;
992
993 void post_attach (int) override;
994 bool supports_disable_randomization () override;
995 };
996
997 /* See remote.h. */
998
999 bool
1000 is_remote_target (process_stratum_target *target)
1001 {
1002 remote_target *rt = dynamic_cast<remote_target *> (target);
1003 return rt != nullptr;
1004 }
1005
1006 /* Per-program-space data key. */
1007 static const struct program_space_key<char, gdb::xfree_deleter<char>>
1008 remote_pspace_data;
1009
1010 /* The variable registered as the control variable used by the
1011 remote exec-file commands. While the remote exec-file setting is
1012 per-program-space, the set/show machinery uses this as the
1013 location of the remote exec-file value. */
1014 static std::string remote_exec_file_var;
1015
1016 /* The size to align memory write packets, when practical. The protocol
1017 does not guarantee any alignment, and gdb will generate short
1018 writes and unaligned writes, but even as a best-effort attempt this
1019 can improve bulk transfers. For instance, if a write is misaligned
1020 relative to the target's data bus, the stub may need to make an extra
1021 round trip fetching data from the target. This doesn't make a
1022 huge difference, but it's easy to do, so we try to be helpful.
1023
1024 The alignment chosen is arbitrary; usually data bus width is
1025 important here, not the possibly larger cache line size. */
1026 enum { REMOTE_ALIGN_WRITES = 16 };
1027
1028 /* Prototypes for local functions. */
1029
1030 static int hexnumlen (ULONGEST num);
1031
1032 static int stubhex (int ch);
1033
1034 static int hexnumstr (char *, ULONGEST);
1035
1036 static int hexnumnstr (char *, ULONGEST, int);
1037
1038 static CORE_ADDR remote_address_masked (CORE_ADDR);
1039
1040 static int stub_unpack_int (const char *buff, int fieldlength);
1041
1042 struct packet_config;
1043
1044 static void show_packet_config_cmd (struct packet_config *config);
1045
1046 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1047 int from_tty,
1048 struct cmd_list_element *c,
1049 const char *value);
1050
1051 static ptid_t read_ptid (const char *buf, const char **obuf);
1052
1053 static void remote_async_inferior_event_handler (gdb_client_data);
1054
1055 static bool remote_read_description_p (struct target_ops *target);
1056
1057 static void remote_console_output (const char *msg);
1058
1059 static void remote_btrace_reset (remote_state *rs);
1060
1061 static void remote_unpush_and_throw (remote_target *target);
1062
1063 /* For "remote". */
1064
1065 static struct cmd_list_element *remote_cmdlist;
1066
1067 /* For "set remote" and "show remote". */
1068
1069 static struct cmd_list_element *remote_set_cmdlist;
1070 static struct cmd_list_element *remote_show_cmdlist;
1071
1072 /* Controls whether GDB is willing to use range stepping. */
1073
1074 static bool use_range_stepping = true;
1075
1076 /* From the remote target's point of view, each thread is in one of these three
1077 states. */
1078 enum class resume_state
1079 {
1080 /* Not resumed - we haven't been asked to resume this thread. */
1081 NOT_RESUMED,
1082
1083 /* We have been asked to resume this thread, but haven't sent a vCont action
1084 for it yet. We'll need to consider it next time commit_resume is
1085 called. */
1086 RESUMED_PENDING_VCONT,
1087
1088 /* We have been asked to resume this thread, and we have sent a vCont action
1089 for it. */
1090 RESUMED,
1091 };
1092
1093 /* Information about a thread's pending vCont-resume. Used when a thread is in
1094 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1095 stores this information which is then picked up by
1096 remote_target::commit_resume to know which is the proper action for this
1097 thread to include in the vCont packet. */
1098 struct resumed_pending_vcont_info
1099 {
1100 /* True if the last resume call for this thread was a step request, false
1101 if a continue request. */
1102 bool step;
1103
1104 /* The signal specified in the last resume call for this thread. */
1105 gdb_signal sig;
1106 };
1107
1108 /* Private data that we'll store in (struct thread_info)->priv. */
1109 struct remote_thread_info : public private_thread_info
1110 {
1111 std::string extra;
1112 std::string name;
1113 int core = -1;
1114
1115 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1116 sequence of bytes. */
1117 gdb::byte_vector thread_handle;
1118
1119 /* Whether the target stopped for a breakpoint/watchpoint. */
1120 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1121
1122 /* This is set to the data address of the access causing the target
1123 to stop for a watchpoint. */
1124 CORE_ADDR watch_data_address = 0;
1125
1126 /* Get the thread's resume state. */
1127 enum resume_state get_resume_state () const
1128 {
1129 return m_resume_state;
1130 }
1131
1132 /* Put the thread in the NOT_RESUMED state. */
1133 void set_not_resumed ()
1134 {
1135 m_resume_state = resume_state::NOT_RESUMED;
1136 }
1137
1138 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1139 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1140 {
1141 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1142 m_resumed_pending_vcont_info.step = step;
1143 m_resumed_pending_vcont_info.sig = sig;
1144 }
1145
1146 /* Get the information this thread's pending vCont-resumption.
1147
1148 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1149 state. */
1150 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1151 {
1152 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1153
1154 return m_resumed_pending_vcont_info;
1155 }
1156
1157 /* Put the thread in the VCONT_RESUMED state. */
1158 void set_resumed ()
1159 {
1160 m_resume_state = resume_state::RESUMED;
1161 }
1162
1163 private:
1164 /* Resume state for this thread. This is used to implement vCont action
1165 coalescing (only when the target operates in non-stop mode).
1166
1167 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1168 which notes that this thread must be considered in the next commit_resume
1169 call.
1170
1171 remote_target::commit_resume sends a vCont packet with actions for the
1172 threads in the RESUMED_PENDING_VCONT state and moves them to the
1173 VCONT_RESUMED state.
1174
1175 When reporting a stop to the core for a thread, that thread is moved back
1176 to the NOT_RESUMED state. */
1177 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1178
1179 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1180 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
1181 };
1182
1183 remote_state::remote_state ()
1184 : buf (400)
1185 {
1186 }
1187
1188 remote_state::~remote_state ()
1189 {
1190 xfree (this->last_pass_packet);
1191 xfree (this->last_program_signals_packet);
1192 xfree (this->finished_object);
1193 xfree (this->finished_annex);
1194 }
1195
1196 /* Utility: generate error from an incoming stub packet. */
1197 static void
1198 trace_error (char *buf)
1199 {
1200 if (*buf++ != 'E')
1201 return; /* not an error msg */
1202 switch (*buf)
1203 {
1204 case '1': /* malformed packet error */
1205 if (*++buf == '0') /* general case: */
1206 error (_("remote.c: error in outgoing packet."));
1207 else
1208 error (_("remote.c: error in outgoing packet at field #%ld."),
1209 strtol (buf, NULL, 16));
1210 default:
1211 error (_("Target returns error code '%s'."), buf);
1212 }
1213 }
1214
1215 /* Utility: wait for reply from stub, while accepting "O" packets. */
1216
1217 char *
1218 remote_target::remote_get_noisy_reply ()
1219 {
1220 struct remote_state *rs = get_remote_state ();
1221
1222 do /* Loop on reply from remote stub. */
1223 {
1224 char *buf;
1225
1226 QUIT; /* Allow user to bail out with ^C. */
1227 getpkt (&rs->buf, 0);
1228 buf = rs->buf.data ();
1229 if (buf[0] == 'E')
1230 trace_error (buf);
1231 else if (startswith (buf, "qRelocInsn:"))
1232 {
1233 ULONGEST ul;
1234 CORE_ADDR from, to, org_to;
1235 const char *p, *pp;
1236 int adjusted_size = 0;
1237 int relocated = 0;
1238
1239 p = buf + strlen ("qRelocInsn:");
1240 pp = unpack_varlen_hex (p, &ul);
1241 if (*pp != ';')
1242 error (_("invalid qRelocInsn packet: %s"), buf);
1243 from = ul;
1244
1245 p = pp + 1;
1246 unpack_varlen_hex (p, &ul);
1247 to = ul;
1248
1249 org_to = to;
1250
1251 try
1252 {
1253 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1254 relocated = 1;
1255 }
1256 catch (const gdb_exception &ex)
1257 {
1258 if (ex.error == MEMORY_ERROR)
1259 {
1260 /* Propagate memory errors silently back to the
1261 target. The stub may have limited the range of
1262 addresses we can write to, for example. */
1263 }
1264 else
1265 {
1266 /* Something unexpectedly bad happened. Be verbose
1267 so we can tell what, and propagate the error back
1268 to the stub, so it doesn't get stuck waiting for
1269 a response. */
1270 exception_fprintf (gdb_stderr, ex,
1271 _("warning: relocating instruction: "));
1272 }
1273 putpkt ("E01");
1274 }
1275
1276 if (relocated)
1277 {
1278 adjusted_size = to - org_to;
1279
1280 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
1281 putpkt (buf);
1282 }
1283 }
1284 else if (buf[0] == 'O' && buf[1] != 'K')
1285 remote_console_output (buf + 1); /* 'O' message from stub */
1286 else
1287 return buf; /* Here's the actual reply. */
1288 }
1289 while (1);
1290 }
1291
1292 struct remote_arch_state *
1293 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1294 {
1295 remote_arch_state *rsa;
1296
1297 auto it = this->m_arch_states.find (gdbarch);
1298 if (it == this->m_arch_states.end ())
1299 {
1300 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1301 std::forward_as_tuple (gdbarch),
1302 std::forward_as_tuple (gdbarch));
1303 rsa = &p.first->second;
1304
1305 /* Make sure that the packet buffer is plenty big enough for
1306 this architecture. */
1307 if (this->buf.size () < rsa->remote_packet_size)
1308 this->buf.resize (2 * rsa->remote_packet_size);
1309 }
1310 else
1311 rsa = &it->second;
1312
1313 return rsa;
1314 }
1315
1316 /* Fetch the global remote target state. */
1317
1318 remote_state *
1319 remote_target::get_remote_state ()
1320 {
1321 /* Make sure that the remote architecture state has been
1322 initialized, because doing so might reallocate rs->buf. Any
1323 function which calls getpkt also needs to be mindful of changes
1324 to rs->buf, but this call limits the number of places which run
1325 into trouble. */
1326 m_remote_state.get_remote_arch_state (target_gdbarch ());
1327
1328 return &m_remote_state;
1329 }
1330
1331 /* Fetch the remote exec-file from the current program space. */
1332
1333 static const char *
1334 get_remote_exec_file (void)
1335 {
1336 char *remote_exec_file;
1337
1338 remote_exec_file = remote_pspace_data.get (current_program_space);
1339 if (remote_exec_file == NULL)
1340 return "";
1341
1342 return remote_exec_file;
1343 }
1344
1345 /* Set the remote exec file for PSPACE. */
1346
1347 static void
1348 set_pspace_remote_exec_file (struct program_space *pspace,
1349 const char *remote_exec_file)
1350 {
1351 char *old_file = remote_pspace_data.get (pspace);
1352
1353 xfree (old_file);
1354 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
1355 }
1356
1357 /* The "set/show remote exec-file" set command hook. */
1358
1359 static void
1360 set_remote_exec_file (const char *ignored, int from_tty,
1361 struct cmd_list_element *c)
1362 {
1363 set_pspace_remote_exec_file (current_program_space,
1364 remote_exec_file_var.c_str ());
1365 }
1366
1367 /* The "set/show remote exec-file" show command hook. */
1368
1369 static void
1370 show_remote_exec_file (struct ui_file *file, int from_tty,
1371 struct cmd_list_element *cmd, const char *value)
1372 {
1373 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
1374 }
1375
1376 static int
1377 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1378 {
1379 int regnum, num_remote_regs, offset;
1380 struct packet_reg **remote_regs;
1381
1382 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1383 {
1384 struct packet_reg *r = &regs[regnum];
1385
1386 if (register_size (gdbarch, regnum) == 0)
1387 /* Do not try to fetch zero-sized (placeholder) registers. */
1388 r->pnum = -1;
1389 else
1390 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1391
1392 r->regnum = regnum;
1393 }
1394
1395 /* Define the g/G packet format as the contents of each register
1396 with a remote protocol number, in order of ascending protocol
1397 number. */
1398
1399 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1400 for (num_remote_regs = 0, regnum = 0;
1401 regnum < gdbarch_num_regs (gdbarch);
1402 regnum++)
1403 if (regs[regnum].pnum != -1)
1404 remote_regs[num_remote_regs++] = &regs[regnum];
1405
1406 std::sort (remote_regs, remote_regs + num_remote_regs,
1407 [] (const packet_reg *a, const packet_reg *b)
1408 { return a->pnum < b->pnum; });
1409
1410 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1411 {
1412 remote_regs[regnum]->in_g_packet = 1;
1413 remote_regs[regnum]->offset = offset;
1414 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1415 }
1416
1417 return offset;
1418 }
1419
1420 /* Given the architecture described by GDBARCH, return the remote
1421 protocol register's number and the register's offset in the g/G
1422 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1423 If the target does not have a mapping for REGNUM, return false,
1424 otherwise, return true. */
1425
1426 int
1427 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1428 int *pnum, int *poffset)
1429 {
1430 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1431
1432 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1433
1434 map_regcache_remote_table (gdbarch, regs.data ());
1435
1436 *pnum = regs[regnum].pnum;
1437 *poffset = regs[regnum].offset;
1438
1439 return *pnum != -1;
1440 }
1441
1442 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1443 {
1444 /* Use the architecture to build a regnum<->pnum table, which will be
1445 1:1 unless a feature set specifies otherwise. */
1446 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1447
1448 /* Record the maximum possible size of the g packet - it may turn out
1449 to be smaller. */
1450 this->sizeof_g_packet
1451 = map_regcache_remote_table (gdbarch, this->regs.get ());
1452
1453 /* Default maximum number of characters in a packet body. Many
1454 remote stubs have a hardwired buffer size of 400 bytes
1455 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1456 as the maximum packet-size to ensure that the packet and an extra
1457 NUL character can always fit in the buffer. This stops GDB
1458 trashing stubs that try to squeeze an extra NUL into what is
1459 already a full buffer (As of 1999-12-04 that was most stubs). */
1460 this->remote_packet_size = 400 - 1;
1461
1462 /* This one is filled in when a ``g'' packet is received. */
1463 this->actual_register_packet_size = 0;
1464
1465 /* Should rsa->sizeof_g_packet needs more space than the
1466 default, adjust the size accordingly. Remember that each byte is
1467 encoded as two characters. 32 is the overhead for the packet
1468 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1469 (``$NN:G...#NN'') is a better guess, the below has been padded a
1470 little. */
1471 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1472 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1473 }
1474
1475 /* Get a pointer to the current remote target. If not connected to a
1476 remote target, return NULL. */
1477
1478 static remote_target *
1479 get_current_remote_target ()
1480 {
1481 target_ops *proc_target = current_inferior ()->process_target ();
1482 return dynamic_cast<remote_target *> (proc_target);
1483 }
1484
1485 /* Return the current allowed size of a remote packet. This is
1486 inferred from the current architecture, and should be used to
1487 limit the length of outgoing packets. */
1488 long
1489 remote_target::get_remote_packet_size ()
1490 {
1491 struct remote_state *rs = get_remote_state ();
1492 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1493
1494 if (rs->explicit_packet_size)
1495 return rs->explicit_packet_size;
1496
1497 return rsa->remote_packet_size;
1498 }
1499
1500 static struct packet_reg *
1501 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1502 long regnum)
1503 {
1504 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1505 return NULL;
1506 else
1507 {
1508 struct packet_reg *r = &rsa->regs[regnum];
1509
1510 gdb_assert (r->regnum == regnum);
1511 return r;
1512 }
1513 }
1514
1515 static struct packet_reg *
1516 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1517 LONGEST pnum)
1518 {
1519 int i;
1520
1521 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1522 {
1523 struct packet_reg *r = &rsa->regs[i];
1524
1525 if (r->pnum == pnum)
1526 return r;
1527 }
1528 return NULL;
1529 }
1530
1531 /* Allow the user to specify what sequence to send to the remote
1532 when he requests a program interruption: Although ^C is usually
1533 what remote systems expect (this is the default, here), it is
1534 sometimes preferable to send a break. On other systems such
1535 as the Linux kernel, a break followed by g, which is Magic SysRq g
1536 is required in order to interrupt the execution. */
1537 const char interrupt_sequence_control_c[] = "Ctrl-C";
1538 const char interrupt_sequence_break[] = "BREAK";
1539 const char interrupt_sequence_break_g[] = "BREAK-g";
1540 static const char *const interrupt_sequence_modes[] =
1541 {
1542 interrupt_sequence_control_c,
1543 interrupt_sequence_break,
1544 interrupt_sequence_break_g,
1545 NULL
1546 };
1547 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1548
1549 static void
1550 show_interrupt_sequence (struct ui_file *file, int from_tty,
1551 struct cmd_list_element *c,
1552 const char *value)
1553 {
1554 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1555 fprintf_filtered (file,
1556 _("Send the ASCII ETX character (Ctrl-c) "
1557 "to the remote target to interrupt the "
1558 "execution of the program.\n"));
1559 else if (interrupt_sequence_mode == interrupt_sequence_break)
1560 fprintf_filtered (file,
1561 _("send a break signal to the remote target "
1562 "to interrupt the execution of the program.\n"));
1563 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1564 fprintf_filtered (file,
1565 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1566 "the remote target to interrupt the execution "
1567 "of Linux kernel.\n"));
1568 else
1569 internal_error (__FILE__, __LINE__,
1570 _("Invalid value for interrupt_sequence_mode: %s."),
1571 interrupt_sequence_mode);
1572 }
1573
1574 /* This boolean variable specifies whether interrupt_sequence is sent
1575 to the remote target when gdb connects to it.
1576 This is mostly needed when you debug the Linux kernel: The Linux kernel
1577 expects BREAK g which is Magic SysRq g for connecting gdb. */
1578 static bool interrupt_on_connect = false;
1579
1580 /* This variable is used to implement the "set/show remotebreak" commands.
1581 Since these commands are now deprecated in favor of "set/show remote
1582 interrupt-sequence", it no longer has any effect on the code. */
1583 static bool remote_break;
1584
1585 static void
1586 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1587 {
1588 if (remote_break)
1589 interrupt_sequence_mode = interrupt_sequence_break;
1590 else
1591 interrupt_sequence_mode = interrupt_sequence_control_c;
1592 }
1593
1594 static void
1595 show_remotebreak (struct ui_file *file, int from_tty,
1596 struct cmd_list_element *c,
1597 const char *value)
1598 {
1599 }
1600
1601 /* This variable sets the number of bits in an address that are to be
1602 sent in a memory ("M" or "m") packet. Normally, after stripping
1603 leading zeros, the entire address would be sent. This variable
1604 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1605 initial implementation of remote.c restricted the address sent in
1606 memory packets to ``host::sizeof long'' bytes - (typically 32
1607 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1608 address was never sent. Since fixing this bug may cause a break in
1609 some remote targets this variable is principally provided to
1610 facilitate backward compatibility. */
1611
1612 static unsigned int remote_address_size;
1613
1614 \f
1615 /* User configurable variables for the number of characters in a
1616 memory read/write packet. MIN (rsa->remote_packet_size,
1617 rsa->sizeof_g_packet) is the default. Some targets need smaller
1618 values (fifo overruns, et.al.) and some users need larger values
1619 (speed up transfers). The variables ``preferred_*'' (the user
1620 request), ``current_*'' (what was actually set) and ``forced_*''
1621 (Positive - a soft limit, negative - a hard limit). */
1622
1623 struct memory_packet_config
1624 {
1625 const char *name;
1626 long size;
1627 int fixed_p;
1628 };
1629
1630 /* The default max memory-write-packet-size, when the setting is
1631 "fixed". The 16k is historical. (It came from older GDB's using
1632 alloca for buffers and the knowledge (folklore?) that some hosts
1633 don't cope very well with large alloca calls.) */
1634 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1635
1636 /* The minimum remote packet size for memory transfers. Ensures we
1637 can write at least one byte. */
1638 #define MIN_MEMORY_PACKET_SIZE 20
1639
1640 /* Get the memory packet size, assuming it is fixed. */
1641
1642 static long
1643 get_fixed_memory_packet_size (struct memory_packet_config *config)
1644 {
1645 gdb_assert (config->fixed_p);
1646
1647 if (config->size <= 0)
1648 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1649 else
1650 return config->size;
1651 }
1652
1653 /* Compute the current size of a read/write packet. Since this makes
1654 use of ``actual_register_packet_size'' the computation is dynamic. */
1655
1656 long
1657 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1658 {
1659 struct remote_state *rs = get_remote_state ();
1660 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1661
1662 long what_they_get;
1663 if (config->fixed_p)
1664 what_they_get = get_fixed_memory_packet_size (config);
1665 else
1666 {
1667 what_they_get = get_remote_packet_size ();
1668 /* Limit the packet to the size specified by the user. */
1669 if (config->size > 0
1670 && what_they_get > config->size)
1671 what_they_get = config->size;
1672
1673 /* Limit it to the size of the targets ``g'' response unless we have
1674 permission from the stub to use a larger packet size. */
1675 if (rs->explicit_packet_size == 0
1676 && rsa->actual_register_packet_size > 0
1677 && what_they_get > rsa->actual_register_packet_size)
1678 what_they_get = rsa->actual_register_packet_size;
1679 }
1680 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1681 what_they_get = MIN_MEMORY_PACKET_SIZE;
1682
1683 /* Make sure there is room in the global buffer for this packet
1684 (including its trailing NUL byte). */
1685 if (rs->buf.size () < what_they_get + 1)
1686 rs->buf.resize (2 * what_they_get);
1687
1688 return what_they_get;
1689 }
1690
1691 /* Update the size of a read/write packet. If they user wants
1692 something really big then do a sanity check. */
1693
1694 static void
1695 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1696 {
1697 int fixed_p = config->fixed_p;
1698 long size = config->size;
1699
1700 if (args == NULL)
1701 error (_("Argument required (integer, `fixed' or `limited')."));
1702 else if (strcmp (args, "hard") == 0
1703 || strcmp (args, "fixed") == 0)
1704 fixed_p = 1;
1705 else if (strcmp (args, "soft") == 0
1706 || strcmp (args, "limit") == 0)
1707 fixed_p = 0;
1708 else
1709 {
1710 char *end;
1711
1712 size = strtoul (args, &end, 0);
1713 if (args == end)
1714 error (_("Invalid %s (bad syntax)."), config->name);
1715
1716 /* Instead of explicitly capping the size of a packet to or
1717 disallowing it, the user is allowed to set the size to
1718 something arbitrarily large. */
1719 }
1720
1721 /* Extra checks? */
1722 if (fixed_p && !config->fixed_p)
1723 {
1724 /* So that the query shows the correct value. */
1725 long query_size = (size <= 0
1726 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1727 : size);
1728
1729 if (! query (_("The target may not be able to correctly handle a %s\n"
1730 "of %ld bytes. Change the packet size? "),
1731 config->name, query_size))
1732 error (_("Packet size not changed."));
1733 }
1734 /* Update the config. */
1735 config->fixed_p = fixed_p;
1736 config->size = size;
1737 }
1738
1739 static void
1740 show_memory_packet_size (struct memory_packet_config *config)
1741 {
1742 if (config->size == 0)
1743 printf_filtered (_("The %s is 0 (default). "), config->name);
1744 else
1745 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1746 if (config->fixed_p)
1747 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1748 get_fixed_memory_packet_size (config));
1749 else
1750 {
1751 remote_target *remote = get_current_remote_target ();
1752
1753 if (remote != NULL)
1754 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1755 remote->get_memory_packet_size (config));
1756 else
1757 puts_filtered ("The actual limit will be further reduced "
1758 "dependent on the target.\n");
1759 }
1760 }
1761
1762 /* FIXME: needs to be per-remote-target. */
1763 static struct memory_packet_config memory_write_packet_config =
1764 {
1765 "memory-write-packet-size",
1766 };
1767
1768 static void
1769 set_memory_write_packet_size (const char *args, int from_tty)
1770 {
1771 set_memory_packet_size (args, &memory_write_packet_config);
1772 }
1773
1774 static void
1775 show_memory_write_packet_size (const char *args, int from_tty)
1776 {
1777 show_memory_packet_size (&memory_write_packet_config);
1778 }
1779
1780 /* Show the number of hardware watchpoints that can be used. */
1781
1782 static void
1783 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1784 struct cmd_list_element *c,
1785 const char *value)
1786 {
1787 fprintf_filtered (file, _("The maximum number of target hardware "
1788 "watchpoints is %s.\n"), value);
1789 }
1790
1791 /* Show the length limit (in bytes) for hardware watchpoints. */
1792
1793 static void
1794 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1795 struct cmd_list_element *c,
1796 const char *value)
1797 {
1798 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1799 "hardware watchpoint is %s.\n"), value);
1800 }
1801
1802 /* Show the number of hardware breakpoints that can be used. */
1803
1804 static void
1805 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1806 struct cmd_list_element *c,
1807 const char *value)
1808 {
1809 fprintf_filtered (file, _("The maximum number of target hardware "
1810 "breakpoints is %s.\n"), value);
1811 }
1812
1813 /* Controls the maximum number of characters to display in the debug output
1814 for each remote packet. The remaining characters are omitted. */
1815
1816 static int remote_packet_max_chars = 512;
1817
1818 /* Show the maximum number of characters to display for each remote packet
1819 when remote debugging is enabled. */
1820
1821 static void
1822 show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1823 struct cmd_list_element *c,
1824 const char *value)
1825 {
1826 fprintf_filtered (file, _("Number of remote packet characters to "
1827 "display is %s.\n"), value);
1828 }
1829
1830 long
1831 remote_target::get_memory_write_packet_size ()
1832 {
1833 return get_memory_packet_size (&memory_write_packet_config);
1834 }
1835
1836 /* FIXME: needs to be per-remote-target. */
1837 static struct memory_packet_config memory_read_packet_config =
1838 {
1839 "memory-read-packet-size",
1840 };
1841
1842 static void
1843 set_memory_read_packet_size (const char *args, int from_tty)
1844 {
1845 set_memory_packet_size (args, &memory_read_packet_config);
1846 }
1847
1848 static void
1849 show_memory_read_packet_size (const char *args, int from_tty)
1850 {
1851 show_memory_packet_size (&memory_read_packet_config);
1852 }
1853
1854 long
1855 remote_target::get_memory_read_packet_size ()
1856 {
1857 long size = get_memory_packet_size (&memory_read_packet_config);
1858
1859 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1860 extra buffer size argument before the memory read size can be
1861 increased beyond this. */
1862 if (size > get_remote_packet_size ())
1863 size = get_remote_packet_size ();
1864 return size;
1865 }
1866
1867 \f
1868
1869 struct packet_config
1870 {
1871 const char *name;
1872 const char *title;
1873
1874 /* If auto, GDB auto-detects support for this packet or feature,
1875 either through qSupported, or by trying the packet and looking
1876 at the response. If true, GDB assumes the target supports this
1877 packet. If false, the packet is disabled. Configs that don't
1878 have an associated command always have this set to auto. */
1879 enum auto_boolean detect;
1880
1881 /* The "show remote foo-packet" command created for this packet. */
1882 cmd_list_element *show_cmd;
1883
1884 /* Does the target support this packet? */
1885 enum packet_support support;
1886 };
1887
1888 static enum packet_support packet_config_support (struct packet_config *config);
1889 static enum packet_support packet_support (int packet);
1890
1891 static void
1892 show_packet_config_cmd (struct packet_config *config)
1893 {
1894 const char *support = "internal-error";
1895
1896 switch (packet_config_support (config))
1897 {
1898 case PACKET_ENABLE:
1899 support = "enabled";
1900 break;
1901 case PACKET_DISABLE:
1902 support = "disabled";
1903 break;
1904 case PACKET_SUPPORT_UNKNOWN:
1905 support = "unknown";
1906 break;
1907 }
1908 switch (config->detect)
1909 {
1910 case AUTO_BOOLEAN_AUTO:
1911 printf_filtered (_("Support for the `%s' packet "
1912 "is auto-detected, currently %s.\n"),
1913 config->name, support);
1914 break;
1915 case AUTO_BOOLEAN_TRUE:
1916 case AUTO_BOOLEAN_FALSE:
1917 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1918 config->name, support);
1919 break;
1920 }
1921 }
1922
1923 static void
1924 add_packet_config_cmd (struct packet_config *config, const char *name,
1925 const char *title, int legacy)
1926 {
1927 config->name = name;
1928 config->title = title;
1929 gdb::unique_xmalloc_ptr<char> set_doc
1930 = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1931 name, title);
1932 gdb::unique_xmalloc_ptr<char> show_doc
1933 = xstrprintf ("Show current use of remote protocol `%s' (%s) packet.",
1934 name, title);
1935 /* set/show TITLE-packet {auto,on,off} */
1936 gdb::unique_xmalloc_ptr<char> cmd_name = xstrprintf ("%s-packet", title);
1937 set_show_commands cmds
1938 = add_setshow_auto_boolean_cmd (cmd_name.release (), class_obscure,
1939 &config->detect, set_doc.get (),
1940 show_doc.get (), NULL, /* help_doc */
1941 NULL,
1942 show_remote_protocol_packet_cmd,
1943 &remote_set_cmdlist, &remote_show_cmdlist);
1944 config->show_cmd = cmds.show;
1945
1946 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1947 if (legacy)
1948 {
1949 /* It's not clear who should take ownership of this string, so, for
1950 now, make it static, and give copies to each of the add_alias_cmd
1951 calls below. */
1952 static gdb::unique_xmalloc_ptr<char> legacy_name
1953 = xstrprintf ("%s-packet", name);
1954 add_alias_cmd (legacy_name.get (), cmds.set, class_obscure, 0,
1955 &remote_set_cmdlist);
1956 add_alias_cmd (legacy_name.get (), 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 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 int
9504 remote_target::putpkt (const char *buf)
9505 {
9506 return putpkt_binary (buf, strlen (buf));
9507 }
9508
9509 /* Wrapper around remote_target::putpkt to avoid exporting
9510 remote_target. */
9511
9512 int
9513 putpkt (remote_target *remote, const char *buf)
9514 {
9515 return remote->putpkt (buf);
9516 }
9517
9518 /* Send a packet to the remote machine, with error checking. The data
9519 of the packet is in BUF. The string in BUF can be at most
9520 get_remote_packet_size () - 5 to account for the $, # and checksum,
9521 and for a possible /0 if we are debugging (remote_debug) and want
9522 to print the sent packet as a string. */
9523
9524 int
9525 remote_target::putpkt_binary (const char *buf, int cnt)
9526 {
9527 struct remote_state *rs = get_remote_state ();
9528 int i;
9529 unsigned char csum = 0;
9530 gdb::def_vector<char> data (cnt + 6);
9531 char *buf2 = data.data ();
9532
9533 int ch;
9534 int tcount = 0;
9535 char *p;
9536
9537 /* Catch cases like trying to read memory or listing threads while
9538 we're waiting for a stop reply. The remote server wouldn't be
9539 ready to handle this request, so we'd hang and timeout. We don't
9540 have to worry about this in synchronous mode, because in that
9541 case it's not possible to issue a command while the target is
9542 running. This is not a problem in non-stop mode, because in that
9543 case, the stub is always ready to process serial input. */
9544 if (!target_is_non_stop_p ()
9545 && target_is_async_p ()
9546 && rs->waiting_for_stop_reply)
9547 {
9548 error (_("Cannot execute this command while the target is running.\n"
9549 "Use the \"interrupt\" command to stop the target\n"
9550 "and then try again."));
9551 }
9552
9553 /* We're sending out a new packet. Make sure we don't look at a
9554 stale cached response. */
9555 rs->cached_wait_status = 0;
9556
9557 /* Copy the packet into buffer BUF2, encapsulating it
9558 and giving it a checksum. */
9559
9560 p = buf2;
9561 *p++ = '$';
9562
9563 for (i = 0; i < cnt; i++)
9564 {
9565 csum += buf[i];
9566 *p++ = buf[i];
9567 }
9568 *p++ = '#';
9569 *p++ = tohex ((csum >> 4) & 0xf);
9570 *p++ = tohex (csum & 0xf);
9571
9572 /* Send it over and over until we get a positive ack. */
9573
9574 while (1)
9575 {
9576 if (remote_debug)
9577 {
9578 *p = '\0';
9579
9580 int len = (int) (p - buf2);
9581 int max_chars;
9582
9583 if (remote_packet_max_chars < 0)
9584 max_chars = len;
9585 else
9586 max_chars = remote_packet_max_chars;
9587
9588 std::string str
9589 = escape_buffer (buf2, std::min (len, max_chars));
9590
9591 if (len > max_chars)
9592 remote_debug_printf_nofunc
9593 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9594 len - max_chars);
9595 else
9596 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
9597 }
9598 remote_serial_write (buf2, p - buf2);
9599
9600 /* If this is a no acks version of the remote protocol, send the
9601 packet and move on. */
9602 if (rs->noack_mode)
9603 break;
9604
9605 /* Read until either a timeout occurs (-2) or '+' is read.
9606 Handle any notification that arrives in the mean time. */
9607 while (1)
9608 {
9609 ch = readchar (remote_timeout);
9610
9611 switch (ch)
9612 {
9613 case '+':
9614 remote_debug_printf_nofunc ("Received Ack");
9615 return 1;
9616 case '-':
9617 remote_debug_printf_nofunc ("Received Nak");
9618 /* FALLTHROUGH */
9619 case SERIAL_TIMEOUT:
9620 tcount++;
9621 if (tcount > 3)
9622 return 0;
9623 break; /* Retransmit buffer. */
9624 case '$':
9625 {
9626 remote_debug_printf ("Packet instead of Ack, ignoring it");
9627 /* It's probably an old response sent because an ACK
9628 was lost. Gobble up the packet and ack it so it
9629 doesn't get retransmitted when we resend this
9630 packet. */
9631 skip_frame ();
9632 remote_serial_write ("+", 1);
9633 continue; /* Now, go look for +. */
9634 }
9635
9636 case '%':
9637 {
9638 int val;
9639
9640 /* If we got a notification, handle it, and go back to looking
9641 for an ack. */
9642 /* We've found the start of a notification. Now
9643 collect the data. */
9644 val = read_frame (&rs->buf);
9645 if (val >= 0)
9646 {
9647 remote_debug_printf_nofunc
9648 (" Notification received: %s",
9649 escape_buffer (rs->buf.data (), val).c_str ());
9650
9651 handle_notification (rs->notif_state, rs->buf.data ());
9652 /* We're in sync now, rewait for the ack. */
9653 tcount = 0;
9654 }
9655 else
9656 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9657 rs->buf.data ());
9658 continue;
9659 }
9660 /* fall-through */
9661 default:
9662 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9663 rs->buf.data ());
9664 continue;
9665 }
9666 break; /* Here to retransmit. */
9667 }
9668
9669 #if 0
9670 /* This is wrong. If doing a long backtrace, the user should be
9671 able to get out next time we call QUIT, without anything as
9672 violent as interrupt_query. If we want to provide a way out of
9673 here without getting to the next QUIT, it should be based on
9674 hitting ^C twice as in remote_wait. */
9675 if (quit_flag)
9676 {
9677 quit_flag = 0;
9678 interrupt_query ();
9679 }
9680 #endif
9681 }
9682
9683 return 0;
9684 }
9685
9686 /* Come here after finding the start of a frame when we expected an
9687 ack. Do our best to discard the rest of this packet. */
9688
9689 void
9690 remote_target::skip_frame ()
9691 {
9692 int c;
9693
9694 while (1)
9695 {
9696 c = readchar (remote_timeout);
9697 switch (c)
9698 {
9699 case SERIAL_TIMEOUT:
9700 /* Nothing we can do. */
9701 return;
9702 case '#':
9703 /* Discard the two bytes of checksum and stop. */
9704 c = readchar (remote_timeout);
9705 if (c >= 0)
9706 c = readchar (remote_timeout);
9707
9708 return;
9709 case '*': /* Run length encoding. */
9710 /* Discard the repeat count. */
9711 c = readchar (remote_timeout);
9712 if (c < 0)
9713 return;
9714 break;
9715 default:
9716 /* A regular character. */
9717 break;
9718 }
9719 }
9720 }
9721
9722 /* Come here after finding the start of the frame. Collect the rest
9723 into *BUF, verifying the checksum, length, and handling run-length
9724 compression. NUL terminate the buffer. If there is not enough room,
9725 expand *BUF.
9726
9727 Returns -1 on error, number of characters in buffer (ignoring the
9728 trailing NULL) on success. (could be extended to return one of the
9729 SERIAL status indications). */
9730
9731 long
9732 remote_target::read_frame (gdb::char_vector *buf_p)
9733 {
9734 unsigned char csum;
9735 long bc;
9736 int c;
9737 char *buf = buf_p->data ();
9738 struct remote_state *rs = get_remote_state ();
9739
9740 csum = 0;
9741 bc = 0;
9742
9743 while (1)
9744 {
9745 c = readchar (remote_timeout);
9746 switch (c)
9747 {
9748 case SERIAL_TIMEOUT:
9749 remote_debug_printf ("Timeout in mid-packet, retrying");
9750 return -1;
9751
9752 case '$':
9753 remote_debug_printf ("Saw new packet start in middle of old one");
9754 return -1; /* Start a new packet, count retries. */
9755
9756 case '#':
9757 {
9758 unsigned char pktcsum;
9759 int check_0 = 0;
9760 int check_1 = 0;
9761
9762 buf[bc] = '\0';
9763
9764 check_0 = readchar (remote_timeout);
9765 if (check_0 >= 0)
9766 check_1 = readchar (remote_timeout);
9767
9768 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9769 {
9770 remote_debug_printf ("Timeout in checksum, retrying");
9771 return -1;
9772 }
9773 else if (check_0 < 0 || check_1 < 0)
9774 {
9775 remote_debug_printf ("Communication error in checksum");
9776 return -1;
9777 }
9778
9779 /* Don't recompute the checksum; with no ack packets we
9780 don't have any way to indicate a packet retransmission
9781 is necessary. */
9782 if (rs->noack_mode)
9783 return bc;
9784
9785 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9786 if (csum == pktcsum)
9787 return bc;
9788
9789 remote_debug_printf
9790 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9791 pktcsum, csum, escape_buffer (buf, bc).c_str ());
9792
9793 /* Number of characters in buffer ignoring trailing
9794 NULL. */
9795 return -1;
9796 }
9797 case '*': /* Run length encoding. */
9798 {
9799 int repeat;
9800
9801 csum += c;
9802 c = readchar (remote_timeout);
9803 csum += c;
9804 repeat = c - ' ' + 3; /* Compute repeat count. */
9805
9806 /* The character before ``*'' is repeated. */
9807
9808 if (repeat > 0 && repeat <= 255 && bc > 0)
9809 {
9810 if (bc + repeat - 1 >= buf_p->size () - 1)
9811 {
9812 /* Make some more room in the buffer. */
9813 buf_p->resize (buf_p->size () + repeat);
9814 buf = buf_p->data ();
9815 }
9816
9817 memset (&buf[bc], buf[bc - 1], repeat);
9818 bc += repeat;
9819 continue;
9820 }
9821
9822 buf[bc] = '\0';
9823 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9824 return -1;
9825 }
9826 default:
9827 if (bc >= buf_p->size () - 1)
9828 {
9829 /* Make some more room in the buffer. */
9830 buf_p->resize (buf_p->size () * 2);
9831 buf = buf_p->data ();
9832 }
9833
9834 buf[bc++] = c;
9835 csum += c;
9836 continue;
9837 }
9838 }
9839 }
9840
9841 /* Set this to the maximum number of seconds to wait instead of waiting forever
9842 in target_wait(). If this timer times out, then it generates an error and
9843 the command is aborted. This replaces most of the need for timeouts in the
9844 GDB test suite, and makes it possible to distinguish between a hung target
9845 and one with slow communications. */
9846
9847 static int watchdog = 0;
9848 static void
9849 show_watchdog (struct ui_file *file, int from_tty,
9850 struct cmd_list_element *c, const char *value)
9851 {
9852 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9853 }
9854
9855 /* Read a packet from the remote machine, with error checking, and
9856 store it in *BUF. Resize *BUF if necessary to hold the result. If
9857 FOREVER, wait forever rather than timing out; this is used (in
9858 synchronous mode) to wait for a target that is is executing user
9859 code to stop. */
9860 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9861 don't have to change all the calls to getpkt to deal with the
9862 return value, because at the moment I don't know what the right
9863 thing to do it for those. */
9864
9865 void
9866 remote_target::getpkt (gdb::char_vector *buf, int forever)
9867 {
9868 getpkt_sane (buf, forever);
9869 }
9870
9871
9872 /* Read a packet from the remote machine, with error checking, and
9873 store it in *BUF. Resize *BUF if necessary to hold the result. If
9874 FOREVER, wait forever rather than timing out; this is used (in
9875 synchronous mode) to wait for a target that is is executing user
9876 code to stop. If FOREVER == 0, this function is allowed to time
9877 out gracefully and return an indication of this to the caller.
9878 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9879 consider receiving a notification enough reason to return to the
9880 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9881 holds a notification or not (a regular packet). */
9882
9883 int
9884 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9885 int forever, int expecting_notif,
9886 int *is_notif)
9887 {
9888 struct remote_state *rs = get_remote_state ();
9889 int c;
9890 int tries;
9891 int timeout;
9892 int val = -1;
9893
9894 /* We're reading a new response. Make sure we don't look at a
9895 previously cached response. */
9896 rs->cached_wait_status = 0;
9897
9898 strcpy (buf->data (), "timeout");
9899
9900 if (forever)
9901 timeout = watchdog > 0 ? watchdog : -1;
9902 else if (expecting_notif)
9903 timeout = 0; /* There should already be a char in the buffer. If
9904 not, bail out. */
9905 else
9906 timeout = remote_timeout;
9907
9908 #define MAX_TRIES 3
9909
9910 /* Process any number of notifications, and then return when
9911 we get a packet. */
9912 for (;;)
9913 {
9914 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9915 times. */
9916 for (tries = 1; tries <= MAX_TRIES; tries++)
9917 {
9918 /* This can loop forever if the remote side sends us
9919 characters continuously, but if it pauses, we'll get
9920 SERIAL_TIMEOUT from readchar because of timeout. Then
9921 we'll count that as a retry.
9922
9923 Note that even when forever is set, we will only wait
9924 forever prior to the start of a packet. After that, we
9925 expect characters to arrive at a brisk pace. They should
9926 show up within remote_timeout intervals. */
9927 do
9928 c = readchar (timeout);
9929 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9930
9931 if (c == SERIAL_TIMEOUT)
9932 {
9933 if (expecting_notif)
9934 return -1; /* Don't complain, it's normal to not get
9935 anything in this case. */
9936
9937 if (forever) /* Watchdog went off? Kill the target. */
9938 {
9939 remote_unpush_target (this);
9940 throw_error (TARGET_CLOSE_ERROR,
9941 _("Watchdog timeout has expired. "
9942 "Target detached."));
9943 }
9944
9945 remote_debug_printf ("Timed out.");
9946 }
9947 else
9948 {
9949 /* We've found the start of a packet or notification.
9950 Now collect the data. */
9951 val = read_frame (buf);
9952 if (val >= 0)
9953 break;
9954 }
9955
9956 remote_serial_write ("-", 1);
9957 }
9958
9959 if (tries > MAX_TRIES)
9960 {
9961 /* We have tried hard enough, and just can't receive the
9962 packet/notification. Give up. */
9963 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9964
9965 /* Skip the ack char if we're in no-ack mode. */
9966 if (!rs->noack_mode)
9967 remote_serial_write ("+", 1);
9968 return -1;
9969 }
9970
9971 /* If we got an ordinary packet, return that to our caller. */
9972 if (c == '$')
9973 {
9974 if (remote_debug)
9975 {
9976 int max_chars;
9977
9978 if (remote_packet_max_chars < 0)
9979 max_chars = val;
9980 else
9981 max_chars = remote_packet_max_chars;
9982
9983 std::string str
9984 = escape_buffer (buf->data (),
9985 std::min (val, max_chars));
9986
9987 if (val > max_chars)
9988 remote_debug_printf_nofunc
9989 ("Packet received: %s [%d bytes omitted]", str.c_str (),
9990 val - max_chars);
9991 else
9992 remote_debug_printf_nofunc ("Packet received: %s",
9993 str.c_str ());
9994 }
9995
9996 /* Skip the ack char if we're in no-ack mode. */
9997 if (!rs->noack_mode)
9998 remote_serial_write ("+", 1);
9999 if (is_notif != NULL)
10000 *is_notif = 0;
10001 return val;
10002 }
10003
10004 /* If we got a notification, handle it, and go back to looking
10005 for a packet. */
10006 else
10007 {
10008 gdb_assert (c == '%');
10009
10010 remote_debug_printf_nofunc
10011 (" Notification received: %s",
10012 escape_buffer (buf->data (), val).c_str ());
10013
10014 if (is_notif != NULL)
10015 *is_notif = 1;
10016
10017 handle_notification (rs->notif_state, buf->data ());
10018
10019 /* Notifications require no acknowledgement. */
10020
10021 if (expecting_notif)
10022 return val;
10023 }
10024 }
10025 }
10026
10027 int
10028 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
10029 {
10030 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
10031 }
10032
10033 int
10034 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
10035 int *is_notif)
10036 {
10037 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
10038 }
10039
10040 /* Kill any new fork children of process PID that haven't been
10041 processed by follow_fork. */
10042
10043 void
10044 remote_target::kill_new_fork_children (int pid)
10045 {
10046 remote_state *rs = get_remote_state ();
10047 struct notif_client *notif = &notif_client_stop;
10048
10049 /* Kill the fork child threads of any threads in process PID
10050 that are stopped at a fork event. */
10051 for (thread_info *thread : all_non_exited_threads (this))
10052 {
10053 const target_waitstatus &ws = thread->pending_follow;
10054
10055 if (is_pending_fork_parent (ws, pid, thread->ptid))
10056 {
10057 int child_pid = ws.child_ptid ().pid ();
10058 int res;
10059
10060 res = remote_vkill (child_pid);
10061 if (res != 0)
10062 error (_("Can't kill fork child process %d"), child_pid);
10063 }
10064 }
10065
10066 /* Check for any pending fork events (not reported or processed yet)
10067 in process PID and kill those fork child threads as well. */
10068 remote_notif_get_pending_events (notif);
10069 for (auto &event : rs->stop_reply_queue)
10070 if (is_pending_fork_parent (event->ws, pid, event->ptid))
10071 {
10072 int child_pid = event->ws.child_ptid ().pid ();
10073 int res;
10074
10075 res = remote_vkill (child_pid);
10076 if (res != 0)
10077 error (_("Can't kill fork child process %d"), child_pid);
10078 }
10079 }
10080
10081 \f
10082 /* Target hook to kill the current inferior. */
10083
10084 void
10085 remote_target::kill ()
10086 {
10087 int res = -1;
10088 int pid = inferior_ptid.pid ();
10089 struct remote_state *rs = get_remote_state ();
10090
10091 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
10092 {
10093 /* If we're stopped while forking and we haven't followed yet,
10094 kill the child task. We need to do this before killing the
10095 parent task because if this is a vfork then the parent will
10096 be sleeping. */
10097 kill_new_fork_children (pid);
10098
10099 res = remote_vkill (pid);
10100 if (res == 0)
10101 {
10102 target_mourn_inferior (inferior_ptid);
10103 return;
10104 }
10105 }
10106
10107 /* If we are in 'target remote' mode and we are killing the only
10108 inferior, then we will tell gdbserver to exit and unpush the
10109 target. */
10110 if (res == -1 && !remote_multi_process_p (rs)
10111 && number_of_live_inferiors (this) == 1)
10112 {
10113 remote_kill_k ();
10114
10115 /* We've killed the remote end, we get to mourn it. If we are
10116 not in extended mode, mourning the inferior also unpushes
10117 remote_ops from the target stack, which closes the remote
10118 connection. */
10119 target_mourn_inferior (inferior_ptid);
10120
10121 return;
10122 }
10123
10124 error (_("Can't kill process"));
10125 }
10126
10127 /* Send a kill request to the target using the 'vKill' packet. */
10128
10129 int
10130 remote_target::remote_vkill (int pid)
10131 {
10132 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
10133 return -1;
10134
10135 remote_state *rs = get_remote_state ();
10136
10137 /* Tell the remote target to detach. */
10138 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
10139 putpkt (rs->buf);
10140 getpkt (&rs->buf, 0);
10141
10142 switch (packet_ok (rs->buf,
10143 &remote_protocol_packets[PACKET_vKill]))
10144 {
10145 case PACKET_OK:
10146 return 0;
10147 case PACKET_ERROR:
10148 return 1;
10149 case PACKET_UNKNOWN:
10150 return -1;
10151 default:
10152 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10153 }
10154 }
10155
10156 /* Send a kill request to the target using the 'k' packet. */
10157
10158 void
10159 remote_target::remote_kill_k ()
10160 {
10161 /* Catch errors so the user can quit from gdb even when we
10162 aren't on speaking terms with the remote system. */
10163 try
10164 {
10165 putpkt ("k");
10166 }
10167 catch (const gdb_exception_error &ex)
10168 {
10169 if (ex.error == TARGET_CLOSE_ERROR)
10170 {
10171 /* If we got an (EOF) error that caused the target
10172 to go away, then we're done, that's what we wanted.
10173 "k" is susceptible to cause a premature EOF, given
10174 that the remote server isn't actually required to
10175 reply to "k", and it can happen that it doesn't
10176 even get to reply ACK to the "k". */
10177 return;
10178 }
10179
10180 /* Otherwise, something went wrong. We didn't actually kill
10181 the target. Just propagate the exception, and let the
10182 user or higher layers decide what to do. */
10183 throw;
10184 }
10185 }
10186
10187 void
10188 remote_target::mourn_inferior ()
10189 {
10190 struct remote_state *rs = get_remote_state ();
10191
10192 /* We're no longer interested in notification events of an inferior
10193 that exited or was killed/detached. */
10194 discard_pending_stop_replies (current_inferior ());
10195
10196 /* In 'target remote' mode with one inferior, we close the connection. */
10197 if (!rs->extended && number_of_live_inferiors (this) <= 1)
10198 {
10199 remote_unpush_target (this);
10200 return;
10201 }
10202
10203 /* In case we got here due to an error, but we're going to stay
10204 connected. */
10205 rs->waiting_for_stop_reply = 0;
10206
10207 /* If the current general thread belonged to the process we just
10208 detached from or has exited, the remote side current general
10209 thread becomes undefined. Considering a case like this:
10210
10211 - We just got here due to a detach.
10212 - The process that we're detaching from happens to immediately
10213 report a global breakpoint being hit in non-stop mode, in the
10214 same thread we had selected before.
10215 - GDB attaches to this process again.
10216 - This event happens to be the next event we handle.
10217
10218 GDB would consider that the current general thread didn't need to
10219 be set on the stub side (with Hg), since for all it knew,
10220 GENERAL_THREAD hadn't changed.
10221
10222 Notice that although in all-stop mode, the remote server always
10223 sets the current thread to the thread reporting the stop event,
10224 that doesn't happen in non-stop mode; in non-stop, the stub *must
10225 not* change the current thread when reporting a breakpoint hit,
10226 due to the decoupling of event reporting and event handling.
10227
10228 To keep things simple, we always invalidate our notion of the
10229 current thread. */
10230 record_currthread (rs, minus_one_ptid);
10231
10232 /* Call common code to mark the inferior as not running. */
10233 generic_mourn_inferior ();
10234 }
10235
10236 bool
10237 extended_remote_target::supports_disable_randomization ()
10238 {
10239 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
10240 }
10241
10242 void
10243 remote_target::extended_remote_disable_randomization (int val)
10244 {
10245 struct remote_state *rs = get_remote_state ();
10246 char *reply;
10247
10248 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10249 "QDisableRandomization:%x", val);
10250 putpkt (rs->buf);
10251 reply = remote_get_noisy_reply ();
10252 if (*reply == '\0')
10253 error (_("Target does not support QDisableRandomization."));
10254 if (strcmp (reply, "OK") != 0)
10255 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10256 }
10257
10258 int
10259 remote_target::extended_remote_run (const std::string &args)
10260 {
10261 struct remote_state *rs = get_remote_state ();
10262 int len;
10263 const char *remote_exec_file = get_remote_exec_file ();
10264
10265 /* If the user has disabled vRun support, or we have detected that
10266 support is not available, do not try it. */
10267 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
10268 return -1;
10269
10270 strcpy (rs->buf.data (), "vRun;");
10271 len = strlen (rs->buf.data ());
10272
10273 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10274 error (_("Remote file name too long for run packet"));
10275 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
10276 strlen (remote_exec_file));
10277
10278 if (!args.empty ())
10279 {
10280 int i;
10281
10282 gdb_argv argv (args.c_str ());
10283 for (i = 0; argv[i] != NULL; i++)
10284 {
10285 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10286 error (_("Argument list too long for run packet"));
10287 rs->buf[len++] = ';';
10288 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
10289 strlen (argv[i]));
10290 }
10291 }
10292
10293 rs->buf[len++] = '\0';
10294
10295 putpkt (rs->buf);
10296 getpkt (&rs->buf, 0);
10297
10298 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
10299 {
10300 case PACKET_OK:
10301 /* We have a wait response. All is well. */
10302 return 0;
10303 case PACKET_UNKNOWN:
10304 return -1;
10305 case PACKET_ERROR:
10306 if (remote_exec_file[0] == '\0')
10307 error (_("Running the default executable on the remote target failed; "
10308 "try \"set remote exec-file\"?"));
10309 else
10310 error (_("Running \"%s\" on the remote target failed"),
10311 remote_exec_file);
10312 default:
10313 gdb_assert_not_reached ("bad switch");
10314 }
10315 }
10316
10317 /* Helper function to send set/unset environment packets. ACTION is
10318 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10319 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10320 sent. */
10321
10322 void
10323 remote_target::send_environment_packet (const char *action,
10324 const char *packet,
10325 const char *value)
10326 {
10327 remote_state *rs = get_remote_state ();
10328
10329 /* Convert the environment variable to an hex string, which
10330 is the best format to be transmitted over the wire. */
10331 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10332 strlen (value));
10333
10334 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10335 "%s:%s", packet, encoded_value.c_str ());
10336
10337 putpkt (rs->buf);
10338 getpkt (&rs->buf, 0);
10339 if (strcmp (rs->buf.data (), "OK") != 0)
10340 warning (_("Unable to %s environment variable '%s' on remote."),
10341 action, value);
10342 }
10343
10344 /* Helper function to handle the QEnvironment* packets. */
10345
10346 void
10347 remote_target::extended_remote_environment_support ()
10348 {
10349 remote_state *rs = get_remote_state ();
10350
10351 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10352 {
10353 putpkt ("QEnvironmentReset");
10354 getpkt (&rs->buf, 0);
10355 if (strcmp (rs->buf.data (), "OK") != 0)
10356 warning (_("Unable to reset environment on remote."));
10357 }
10358
10359 gdb_environ *e = &current_inferior ()->environment;
10360
10361 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10362 for (const std::string &el : e->user_set_env ())
10363 send_environment_packet ("set", "QEnvironmentHexEncoded",
10364 el.c_str ());
10365
10366 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10367 for (const std::string &el : e->user_unset_env ())
10368 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10369 }
10370
10371 /* Helper function to set the current working directory for the
10372 inferior in the remote target. */
10373
10374 void
10375 remote_target::extended_remote_set_inferior_cwd ()
10376 {
10377 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10378 {
10379 const std::string &inferior_cwd = current_inferior ()->cwd ();
10380 remote_state *rs = get_remote_state ();
10381
10382 if (!inferior_cwd.empty ())
10383 {
10384 std::string hexpath
10385 = bin2hex ((const gdb_byte *) inferior_cwd.data (),
10386 inferior_cwd.size ());
10387
10388 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10389 "QSetWorkingDir:%s", hexpath.c_str ());
10390 }
10391 else
10392 {
10393 /* An empty inferior_cwd means that the user wants us to
10394 reset the remote server's inferior's cwd. */
10395 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10396 "QSetWorkingDir:");
10397 }
10398
10399 putpkt (rs->buf);
10400 getpkt (&rs->buf, 0);
10401 if (packet_ok (rs->buf,
10402 &remote_protocol_packets[PACKET_QSetWorkingDir])
10403 != PACKET_OK)
10404 error (_("\
10405 Remote replied unexpectedly while setting the inferior's working\n\
10406 directory: %s"),
10407 rs->buf.data ());
10408
10409 }
10410 }
10411
10412 /* In the extended protocol we want to be able to do things like
10413 "run" and have them basically work as expected. So we need
10414 a special create_inferior function. We support changing the
10415 executable file and the command line arguments, but not the
10416 environment. */
10417
10418 void
10419 extended_remote_target::create_inferior (const char *exec_file,
10420 const std::string &args,
10421 char **env, int from_tty)
10422 {
10423 int run_worked;
10424 char *stop_reply;
10425 struct remote_state *rs = get_remote_state ();
10426 const char *remote_exec_file = get_remote_exec_file ();
10427
10428 /* If running asynchronously, register the target file descriptor
10429 with the event loop. */
10430 if (target_can_async_p ())
10431 target_async (1);
10432
10433 /* Disable address space randomization if requested (and supported). */
10434 if (supports_disable_randomization ())
10435 extended_remote_disable_randomization (disable_randomization);
10436
10437 /* If startup-with-shell is on, we inform gdbserver to start the
10438 remote inferior using a shell. */
10439 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10440 {
10441 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10442 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10443 putpkt (rs->buf);
10444 getpkt (&rs->buf, 0);
10445 if (strcmp (rs->buf.data (), "OK") != 0)
10446 error (_("\
10447 Remote replied unexpectedly while setting startup-with-shell: %s"),
10448 rs->buf.data ());
10449 }
10450
10451 extended_remote_environment_support ();
10452
10453 extended_remote_set_inferior_cwd ();
10454
10455 /* Now restart the remote server. */
10456 run_worked = extended_remote_run (args) != -1;
10457 if (!run_worked)
10458 {
10459 /* vRun was not supported. Fail if we need it to do what the
10460 user requested. */
10461 if (remote_exec_file[0])
10462 error (_("Remote target does not support \"set remote exec-file\""));
10463 if (!args.empty ())
10464 error (_("Remote target does not support \"set args\" or run ARGS"));
10465
10466 /* Fall back to "R". */
10467 extended_remote_restart ();
10468 }
10469
10470 /* vRun's success return is a stop reply. */
10471 stop_reply = run_worked ? rs->buf.data () : NULL;
10472 add_current_inferior_and_thread (stop_reply);
10473
10474 /* Get updated offsets, if the stub uses qOffsets. */
10475 get_offsets ();
10476 }
10477 \f
10478
10479 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10480 the list of conditions (in agent expression bytecode format), if any, the
10481 target needs to evaluate. The output is placed into the packet buffer
10482 started from BUF and ended at BUF_END. */
10483
10484 static int
10485 remote_add_target_side_condition (struct gdbarch *gdbarch,
10486 struct bp_target_info *bp_tgt, char *buf,
10487 char *buf_end)
10488 {
10489 if (bp_tgt->conditions.empty ())
10490 return 0;
10491
10492 buf += strlen (buf);
10493 xsnprintf (buf, buf_end - buf, "%s", ";");
10494 buf++;
10495
10496 /* Send conditions to the target. */
10497 for (agent_expr *aexpr : bp_tgt->conditions)
10498 {
10499 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10500 buf += strlen (buf);
10501 for (int i = 0; i < aexpr->len; ++i)
10502 buf = pack_hex_byte (buf, aexpr->buf[i]);
10503 *buf = '\0';
10504 }
10505 return 0;
10506 }
10507
10508 static void
10509 remote_add_target_side_commands (struct gdbarch *gdbarch,
10510 struct bp_target_info *bp_tgt, char *buf)
10511 {
10512 if (bp_tgt->tcommands.empty ())
10513 return;
10514
10515 buf += strlen (buf);
10516
10517 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10518 buf += strlen (buf);
10519
10520 /* Concatenate all the agent expressions that are commands into the
10521 cmds parameter. */
10522 for (agent_expr *aexpr : bp_tgt->tcommands)
10523 {
10524 sprintf (buf, "X%x,", aexpr->len);
10525 buf += strlen (buf);
10526 for (int i = 0; i < aexpr->len; ++i)
10527 buf = pack_hex_byte (buf, aexpr->buf[i]);
10528 *buf = '\0';
10529 }
10530 }
10531
10532 /* Insert a breakpoint. On targets that have software breakpoint
10533 support, we ask the remote target to do the work; on targets
10534 which don't, we insert a traditional memory breakpoint. */
10535
10536 int
10537 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10538 struct bp_target_info *bp_tgt)
10539 {
10540 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10541 If it succeeds, then set the support to PACKET_ENABLE. If it
10542 fails, and the user has explicitly requested the Z support then
10543 report an error, otherwise, mark it disabled and go on. */
10544
10545 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10546 {
10547 CORE_ADDR addr = bp_tgt->reqstd_address;
10548 struct remote_state *rs;
10549 char *p, *endbuf;
10550
10551 /* Make sure the remote is pointing at the right process, if
10552 necessary. */
10553 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10554 set_general_process ();
10555
10556 rs = get_remote_state ();
10557 p = rs->buf.data ();
10558 endbuf = p + get_remote_packet_size ();
10559
10560 *(p++) = 'Z';
10561 *(p++) = '0';
10562 *(p++) = ',';
10563 addr = (ULONGEST) remote_address_masked (addr);
10564 p += hexnumstr (p, addr);
10565 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10566
10567 if (supports_evaluation_of_breakpoint_conditions ())
10568 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10569
10570 if (can_run_breakpoint_commands ())
10571 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10572
10573 putpkt (rs->buf);
10574 getpkt (&rs->buf, 0);
10575
10576 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10577 {
10578 case PACKET_ERROR:
10579 return -1;
10580 case PACKET_OK:
10581 return 0;
10582 case PACKET_UNKNOWN:
10583 break;
10584 }
10585 }
10586
10587 /* If this breakpoint has target-side commands but this stub doesn't
10588 support Z0 packets, throw error. */
10589 if (!bp_tgt->tcommands.empty ())
10590 throw_error (NOT_SUPPORTED_ERROR, _("\
10591 Target doesn't support breakpoints that have target side commands."));
10592
10593 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10594 }
10595
10596 int
10597 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10598 struct bp_target_info *bp_tgt,
10599 enum remove_bp_reason reason)
10600 {
10601 CORE_ADDR addr = bp_tgt->placed_address;
10602 struct remote_state *rs = get_remote_state ();
10603
10604 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10605 {
10606 char *p = rs->buf.data ();
10607 char *endbuf = p + get_remote_packet_size ();
10608
10609 /* Make sure the remote is pointing at the right process, if
10610 necessary. */
10611 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10612 set_general_process ();
10613
10614 *(p++) = 'z';
10615 *(p++) = '0';
10616 *(p++) = ',';
10617
10618 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10619 p += hexnumstr (p, addr);
10620 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10621
10622 putpkt (rs->buf);
10623 getpkt (&rs->buf, 0);
10624
10625 return (rs->buf[0] == 'E');
10626 }
10627
10628 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10629 }
10630
10631 static enum Z_packet_type
10632 watchpoint_to_Z_packet (int type)
10633 {
10634 switch (type)
10635 {
10636 case hw_write:
10637 return Z_PACKET_WRITE_WP;
10638 break;
10639 case hw_read:
10640 return Z_PACKET_READ_WP;
10641 break;
10642 case hw_access:
10643 return Z_PACKET_ACCESS_WP;
10644 break;
10645 default:
10646 internal_error (__FILE__, __LINE__,
10647 _("hw_bp_to_z: bad watchpoint type %d"), type);
10648 }
10649 }
10650
10651 int
10652 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10653 enum target_hw_bp_type type, struct expression *cond)
10654 {
10655 struct remote_state *rs = get_remote_state ();
10656 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10657 char *p;
10658 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10659
10660 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10661 return 1;
10662
10663 /* Make sure the remote is pointing at the right process, if
10664 necessary. */
10665 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10666 set_general_process ();
10667
10668 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10669 p = strchr (rs->buf.data (), '\0');
10670 addr = remote_address_masked (addr);
10671 p += hexnumstr (p, (ULONGEST) addr);
10672 xsnprintf (p, endbuf - p, ",%x", len);
10673
10674 putpkt (rs->buf);
10675 getpkt (&rs->buf, 0);
10676
10677 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10678 {
10679 case PACKET_ERROR:
10680 return -1;
10681 case PACKET_UNKNOWN:
10682 return 1;
10683 case PACKET_OK:
10684 return 0;
10685 }
10686 internal_error (__FILE__, __LINE__,
10687 _("remote_insert_watchpoint: reached end of function"));
10688 }
10689
10690 bool
10691 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10692 CORE_ADDR start, int length)
10693 {
10694 CORE_ADDR diff = remote_address_masked (addr - start);
10695
10696 return diff < length;
10697 }
10698
10699
10700 int
10701 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10702 enum target_hw_bp_type type, struct expression *cond)
10703 {
10704 struct remote_state *rs = get_remote_state ();
10705 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10706 char *p;
10707 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10708
10709 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10710 return -1;
10711
10712 /* Make sure the remote is pointing at the right process, if
10713 necessary. */
10714 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10715 set_general_process ();
10716
10717 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10718 p = strchr (rs->buf.data (), '\0');
10719 addr = remote_address_masked (addr);
10720 p += hexnumstr (p, (ULONGEST) addr);
10721 xsnprintf (p, endbuf - p, ",%x", len);
10722 putpkt (rs->buf);
10723 getpkt (&rs->buf, 0);
10724
10725 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10726 {
10727 case PACKET_ERROR:
10728 case PACKET_UNKNOWN:
10729 return -1;
10730 case PACKET_OK:
10731 return 0;
10732 }
10733 internal_error (__FILE__, __LINE__,
10734 _("remote_remove_watchpoint: reached end of function"));
10735 }
10736
10737
10738 static int remote_hw_watchpoint_limit = -1;
10739 static int remote_hw_watchpoint_length_limit = -1;
10740 static int remote_hw_breakpoint_limit = -1;
10741
10742 int
10743 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10744 {
10745 if (remote_hw_watchpoint_length_limit == 0)
10746 return 0;
10747 else if (remote_hw_watchpoint_length_limit < 0)
10748 return 1;
10749 else if (len <= remote_hw_watchpoint_length_limit)
10750 return 1;
10751 else
10752 return 0;
10753 }
10754
10755 int
10756 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10757 {
10758 if (type == bp_hardware_breakpoint)
10759 {
10760 if (remote_hw_breakpoint_limit == 0)
10761 return 0;
10762 else if (remote_hw_breakpoint_limit < 0)
10763 return 1;
10764 else if (cnt <= remote_hw_breakpoint_limit)
10765 return 1;
10766 }
10767 else
10768 {
10769 if (remote_hw_watchpoint_limit == 0)
10770 return 0;
10771 else if (remote_hw_watchpoint_limit < 0)
10772 return 1;
10773 else if (ot)
10774 return -1;
10775 else if (cnt <= remote_hw_watchpoint_limit)
10776 return 1;
10777 }
10778 return -1;
10779 }
10780
10781 /* The to_stopped_by_sw_breakpoint method of target remote. */
10782
10783 bool
10784 remote_target::stopped_by_sw_breakpoint ()
10785 {
10786 struct thread_info *thread = inferior_thread ();
10787
10788 return (thread->priv != NULL
10789 && (get_remote_thread_info (thread)->stop_reason
10790 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10791 }
10792
10793 /* The to_supports_stopped_by_sw_breakpoint method of target
10794 remote. */
10795
10796 bool
10797 remote_target::supports_stopped_by_sw_breakpoint ()
10798 {
10799 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10800 }
10801
10802 /* The to_stopped_by_hw_breakpoint method of target remote. */
10803
10804 bool
10805 remote_target::stopped_by_hw_breakpoint ()
10806 {
10807 struct thread_info *thread = inferior_thread ();
10808
10809 return (thread->priv != NULL
10810 && (get_remote_thread_info (thread)->stop_reason
10811 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10812 }
10813
10814 /* The to_supports_stopped_by_hw_breakpoint method of target
10815 remote. */
10816
10817 bool
10818 remote_target::supports_stopped_by_hw_breakpoint ()
10819 {
10820 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10821 }
10822
10823 bool
10824 remote_target::stopped_by_watchpoint ()
10825 {
10826 struct thread_info *thread = inferior_thread ();
10827
10828 return (thread->priv != NULL
10829 && (get_remote_thread_info (thread)->stop_reason
10830 == TARGET_STOPPED_BY_WATCHPOINT));
10831 }
10832
10833 bool
10834 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10835 {
10836 struct thread_info *thread = inferior_thread ();
10837
10838 if (thread->priv != NULL
10839 && (get_remote_thread_info (thread)->stop_reason
10840 == TARGET_STOPPED_BY_WATCHPOINT))
10841 {
10842 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10843 return true;
10844 }
10845
10846 return false;
10847 }
10848
10849
10850 int
10851 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10852 struct bp_target_info *bp_tgt)
10853 {
10854 CORE_ADDR addr = bp_tgt->reqstd_address;
10855 struct remote_state *rs;
10856 char *p, *endbuf;
10857 char *message;
10858
10859 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10860 return -1;
10861
10862 /* Make sure the remote is pointing at the right process, if
10863 necessary. */
10864 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10865 set_general_process ();
10866
10867 rs = get_remote_state ();
10868 p = rs->buf.data ();
10869 endbuf = p + get_remote_packet_size ();
10870
10871 *(p++) = 'Z';
10872 *(p++) = '1';
10873 *(p++) = ',';
10874
10875 addr = remote_address_masked (addr);
10876 p += hexnumstr (p, (ULONGEST) addr);
10877 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10878
10879 if (supports_evaluation_of_breakpoint_conditions ())
10880 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10881
10882 if (can_run_breakpoint_commands ())
10883 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10884
10885 putpkt (rs->buf);
10886 getpkt (&rs->buf, 0);
10887
10888 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10889 {
10890 case PACKET_ERROR:
10891 if (rs->buf[1] == '.')
10892 {
10893 message = strchr (&rs->buf[2], '.');
10894 if (message)
10895 error (_("Remote failure reply: %s"), message + 1);
10896 }
10897 return -1;
10898 case PACKET_UNKNOWN:
10899 return -1;
10900 case PACKET_OK:
10901 return 0;
10902 }
10903 internal_error (__FILE__, __LINE__,
10904 _("remote_insert_hw_breakpoint: reached end of function"));
10905 }
10906
10907
10908 int
10909 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10910 struct bp_target_info *bp_tgt)
10911 {
10912 CORE_ADDR addr;
10913 struct remote_state *rs = get_remote_state ();
10914 char *p = rs->buf.data ();
10915 char *endbuf = p + get_remote_packet_size ();
10916
10917 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10918 return -1;
10919
10920 /* Make sure the remote is pointing at the right process, if
10921 necessary. */
10922 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10923 set_general_process ();
10924
10925 *(p++) = 'z';
10926 *(p++) = '1';
10927 *(p++) = ',';
10928
10929 addr = remote_address_masked (bp_tgt->placed_address);
10930 p += hexnumstr (p, (ULONGEST) addr);
10931 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10932
10933 putpkt (rs->buf);
10934 getpkt (&rs->buf, 0);
10935
10936 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10937 {
10938 case PACKET_ERROR:
10939 case PACKET_UNKNOWN:
10940 return -1;
10941 case PACKET_OK:
10942 return 0;
10943 }
10944 internal_error (__FILE__, __LINE__,
10945 _("remote_remove_hw_breakpoint: reached end of function"));
10946 }
10947
10948 /* Verify memory using the "qCRC:" request. */
10949
10950 int
10951 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10952 {
10953 struct remote_state *rs = get_remote_state ();
10954 unsigned long host_crc, target_crc;
10955 char *tmp;
10956
10957 /* It doesn't make sense to use qCRC if the remote target is
10958 connected but not running. */
10959 if (target_has_execution ()
10960 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10961 {
10962 enum packet_result result;
10963
10964 /* Make sure the remote is pointing at the right process. */
10965 set_general_process ();
10966
10967 /* FIXME: assumes lma can fit into long. */
10968 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10969 (long) lma, (long) size);
10970 putpkt (rs->buf);
10971
10972 /* Be clever; compute the host_crc before waiting for target
10973 reply. */
10974 host_crc = xcrc32 (data, size, 0xffffffff);
10975
10976 getpkt (&rs->buf, 0);
10977
10978 result = packet_ok (rs->buf,
10979 &remote_protocol_packets[PACKET_qCRC]);
10980 if (result == PACKET_ERROR)
10981 return -1;
10982 else if (result == PACKET_OK)
10983 {
10984 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10985 target_crc = target_crc * 16 + fromhex (*tmp);
10986
10987 return (host_crc == target_crc);
10988 }
10989 }
10990
10991 return simple_verify_memory (this, data, lma, size);
10992 }
10993
10994 /* compare-sections command
10995
10996 With no arguments, compares each loadable section in the exec bfd
10997 with the same memory range on the target, and reports mismatches.
10998 Useful for verifying the image on the target against the exec file. */
10999
11000 static void
11001 compare_sections_command (const char *args, int from_tty)
11002 {
11003 asection *s;
11004 const char *sectname;
11005 bfd_size_type size;
11006 bfd_vma lma;
11007 int matched = 0;
11008 int mismatched = 0;
11009 int res;
11010 int read_only = 0;
11011
11012 if (!current_program_space->exec_bfd ())
11013 error (_("command cannot be used without an exec file"));
11014
11015 if (args != NULL && strcmp (args, "-r") == 0)
11016 {
11017 read_only = 1;
11018 args = NULL;
11019 }
11020
11021 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
11022 {
11023 if (!(s->flags & SEC_LOAD))
11024 continue; /* Skip non-loadable section. */
11025
11026 if (read_only && (s->flags & SEC_READONLY) == 0)
11027 continue; /* Skip writeable sections */
11028
11029 size = bfd_section_size (s);
11030 if (size == 0)
11031 continue; /* Skip zero-length section. */
11032
11033 sectname = bfd_section_name (s);
11034 if (args && strcmp (args, sectname) != 0)
11035 continue; /* Not the section selected by user. */
11036
11037 matched = 1; /* Do this section. */
11038 lma = s->lma;
11039
11040 gdb::byte_vector sectdata (size);
11041 bfd_get_section_contents (current_program_space->exec_bfd (), s,
11042 sectdata.data (), 0, size);
11043
11044 res = target_verify_memory (sectdata.data (), lma, size);
11045
11046 if (res == -1)
11047 error (_("target memory fault, section %s, range %s -- %s"), sectname,
11048 paddress (target_gdbarch (), lma),
11049 paddress (target_gdbarch (), lma + size));
11050
11051 printf_filtered ("Section %s, range %s -- %s: ", sectname,
11052 paddress (target_gdbarch (), lma),
11053 paddress (target_gdbarch (), lma + size));
11054 if (res)
11055 printf_filtered ("matched.\n");
11056 else
11057 {
11058 printf_filtered ("MIS-MATCHED!\n");
11059 mismatched++;
11060 }
11061 }
11062 if (mismatched > 0)
11063 warning (_("One or more sections of the target image does not match\n\
11064 the loaded file\n"));
11065 if (args && !matched)
11066 printf_filtered (_("No loaded section named '%s'.\n"), args);
11067 }
11068
11069 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
11070 into remote target. The number of bytes written to the remote
11071 target is returned, or -1 for error. */
11072
11073 target_xfer_status
11074 remote_target::remote_write_qxfer (const char *object_name,
11075 const char *annex, const gdb_byte *writebuf,
11076 ULONGEST offset, LONGEST len,
11077 ULONGEST *xfered_len,
11078 struct packet_config *packet)
11079 {
11080 int i, buf_len;
11081 ULONGEST n;
11082 struct remote_state *rs = get_remote_state ();
11083 int max_size = get_memory_write_packet_size ();
11084
11085 if (packet_config_support (packet) == PACKET_DISABLE)
11086 return TARGET_XFER_E_IO;
11087
11088 /* Insert header. */
11089 i = snprintf (rs->buf.data (), max_size,
11090 "qXfer:%s:write:%s:%s:",
11091 object_name, annex ? annex : "",
11092 phex_nz (offset, sizeof offset));
11093 max_size -= (i + 1);
11094
11095 /* Escape as much data as fits into rs->buf. */
11096 buf_len = remote_escape_output
11097 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
11098
11099 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11100 || getpkt_sane (&rs->buf, 0) < 0
11101 || packet_ok (rs->buf, packet) != PACKET_OK)
11102 return TARGET_XFER_E_IO;
11103
11104 unpack_varlen_hex (rs->buf.data (), &n);
11105
11106 *xfered_len = n;
11107 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11108 }
11109
11110 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11111 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11112 number of bytes read is returned, or 0 for EOF, or -1 for error.
11113 The number of bytes read may be less than LEN without indicating an
11114 EOF. PACKET is checked and updated to indicate whether the remote
11115 target supports this object. */
11116
11117 target_xfer_status
11118 remote_target::remote_read_qxfer (const char *object_name,
11119 const char *annex,
11120 gdb_byte *readbuf, ULONGEST offset,
11121 LONGEST len,
11122 ULONGEST *xfered_len,
11123 struct packet_config *packet)
11124 {
11125 struct remote_state *rs = get_remote_state ();
11126 LONGEST i, n, packet_len;
11127
11128 if (packet_config_support (packet) == PACKET_DISABLE)
11129 return TARGET_XFER_E_IO;
11130
11131 /* Check whether we've cached an end-of-object packet that matches
11132 this request. */
11133 if (rs->finished_object)
11134 {
11135 if (strcmp (object_name, rs->finished_object) == 0
11136 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11137 && offset == rs->finished_offset)
11138 return TARGET_XFER_EOF;
11139
11140
11141 /* Otherwise, we're now reading something different. Discard
11142 the cache. */
11143 xfree (rs->finished_object);
11144 xfree (rs->finished_annex);
11145 rs->finished_object = NULL;
11146 rs->finished_annex = NULL;
11147 }
11148
11149 /* Request only enough to fit in a single packet. The actual data
11150 may not, since we don't know how much of it will need to be escaped;
11151 the target is free to respond with slightly less data. We subtract
11152 five to account for the response type and the protocol frame. */
11153 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
11154 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11155 "qXfer:%s:read:%s:%s,%s",
11156 object_name, annex ? annex : "",
11157 phex_nz (offset, sizeof offset),
11158 phex_nz (n, sizeof n));
11159 i = putpkt (rs->buf);
11160 if (i < 0)
11161 return TARGET_XFER_E_IO;
11162
11163 rs->buf[0] = '\0';
11164 packet_len = getpkt_sane (&rs->buf, 0);
11165 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
11166 return TARGET_XFER_E_IO;
11167
11168 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
11169 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
11170
11171 /* 'm' means there is (or at least might be) more data after this
11172 batch. That does not make sense unless there's at least one byte
11173 of data in this reply. */
11174 if (rs->buf[0] == 'm' && packet_len == 1)
11175 error (_("Remote qXfer reply contained no data."));
11176
11177 /* Got some data. */
11178 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
11179 packet_len - 1, readbuf, n);
11180
11181 /* 'l' is an EOF marker, possibly including a final block of data,
11182 or possibly empty. If we have the final block of a non-empty
11183 object, record this fact to bypass a subsequent partial read. */
11184 if (rs->buf[0] == 'l' && offset + i > 0)
11185 {
11186 rs->finished_object = xstrdup (object_name);
11187 rs->finished_annex = xstrdup (annex ? annex : "");
11188 rs->finished_offset = offset + i;
11189 }
11190
11191 if (i == 0)
11192 return TARGET_XFER_EOF;
11193 else
11194 {
11195 *xfered_len = i;
11196 return TARGET_XFER_OK;
11197 }
11198 }
11199
11200 enum target_xfer_status
11201 remote_target::xfer_partial (enum target_object object,
11202 const char *annex, gdb_byte *readbuf,
11203 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11204 ULONGEST *xfered_len)
11205 {
11206 struct remote_state *rs;
11207 int i;
11208 char *p2;
11209 char query_type;
11210 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
11211
11212 set_remote_traceframe ();
11213 set_general_thread (inferior_ptid);
11214
11215 rs = get_remote_state ();
11216
11217 /* Handle memory using the standard memory routines. */
11218 if (object == TARGET_OBJECT_MEMORY)
11219 {
11220 /* If the remote target is connected but not running, we should
11221 pass this request down to a lower stratum (e.g. the executable
11222 file). */
11223 if (!target_has_execution ())
11224 return TARGET_XFER_EOF;
11225
11226 if (writebuf != NULL)
11227 return remote_write_bytes (offset, writebuf, len, unit_size,
11228 xfered_len);
11229 else
11230 return remote_read_bytes (offset, readbuf, len, unit_size,
11231 xfered_len);
11232 }
11233
11234 /* Handle extra signal info using qxfer packets. */
11235 if (object == TARGET_OBJECT_SIGNAL_INFO)
11236 {
11237 if (readbuf)
11238 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
11239 xfered_len, &remote_protocol_packets
11240 [PACKET_qXfer_siginfo_read]);
11241 else
11242 return remote_write_qxfer ("siginfo", annex,
11243 writebuf, offset, len, xfered_len,
11244 &remote_protocol_packets
11245 [PACKET_qXfer_siginfo_write]);
11246 }
11247
11248 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11249 {
11250 if (readbuf)
11251 return remote_read_qxfer ("statictrace", annex,
11252 readbuf, offset, len, xfered_len,
11253 &remote_protocol_packets
11254 [PACKET_qXfer_statictrace_read]);
11255 else
11256 return TARGET_XFER_E_IO;
11257 }
11258
11259 /* Only handle flash writes. */
11260 if (writebuf != NULL)
11261 {
11262 switch (object)
11263 {
11264 case TARGET_OBJECT_FLASH:
11265 return remote_flash_write (offset, len, xfered_len,
11266 writebuf);
11267
11268 default:
11269 return TARGET_XFER_E_IO;
11270 }
11271 }
11272
11273 /* Map pre-existing objects onto letters. DO NOT do this for new
11274 objects!!! Instead specify new query packets. */
11275 switch (object)
11276 {
11277 case TARGET_OBJECT_AVR:
11278 query_type = 'R';
11279 break;
11280
11281 case TARGET_OBJECT_AUXV:
11282 gdb_assert (annex == NULL);
11283 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
11284 xfered_len,
11285 &remote_protocol_packets[PACKET_qXfer_auxv]);
11286
11287 case TARGET_OBJECT_AVAILABLE_FEATURES:
11288 return remote_read_qxfer
11289 ("features", annex, readbuf, offset, len, xfered_len,
11290 &remote_protocol_packets[PACKET_qXfer_features]);
11291
11292 case TARGET_OBJECT_LIBRARIES:
11293 return remote_read_qxfer
11294 ("libraries", annex, readbuf, offset, len, xfered_len,
11295 &remote_protocol_packets[PACKET_qXfer_libraries]);
11296
11297 case TARGET_OBJECT_LIBRARIES_SVR4:
11298 return remote_read_qxfer
11299 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
11300 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11301
11302 case TARGET_OBJECT_MEMORY_MAP:
11303 gdb_assert (annex == NULL);
11304 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
11305 xfered_len,
11306 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11307
11308 case TARGET_OBJECT_OSDATA:
11309 /* Should only get here if we're connected. */
11310 gdb_assert (rs->remote_desc);
11311 return remote_read_qxfer
11312 ("osdata", annex, readbuf, offset, len, xfered_len,
11313 &remote_protocol_packets[PACKET_qXfer_osdata]);
11314
11315 case TARGET_OBJECT_THREADS:
11316 gdb_assert (annex == NULL);
11317 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
11318 xfered_len,
11319 &remote_protocol_packets[PACKET_qXfer_threads]);
11320
11321 case TARGET_OBJECT_TRACEFRAME_INFO:
11322 gdb_assert (annex == NULL);
11323 return remote_read_qxfer
11324 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11325 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11326
11327 case TARGET_OBJECT_FDPIC:
11328 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11329 xfered_len,
11330 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11331
11332 case TARGET_OBJECT_OPENVMS_UIB:
11333 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11334 xfered_len,
11335 &remote_protocol_packets[PACKET_qXfer_uib]);
11336
11337 case TARGET_OBJECT_BTRACE:
11338 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11339 xfered_len,
11340 &remote_protocol_packets[PACKET_qXfer_btrace]);
11341
11342 case TARGET_OBJECT_BTRACE_CONF:
11343 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11344 len, xfered_len,
11345 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11346
11347 case TARGET_OBJECT_EXEC_FILE:
11348 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11349 len, xfered_len,
11350 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11351
11352 default:
11353 return TARGET_XFER_E_IO;
11354 }
11355
11356 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11357 large enough let the caller deal with it. */
11358 if (len < get_remote_packet_size ())
11359 return TARGET_XFER_E_IO;
11360 len = get_remote_packet_size ();
11361
11362 /* Except for querying the minimum buffer size, target must be open. */
11363 if (!rs->remote_desc)
11364 error (_("remote query is only available after target open"));
11365
11366 gdb_assert (annex != NULL);
11367 gdb_assert (readbuf != NULL);
11368
11369 p2 = rs->buf.data ();
11370 *p2++ = 'q';
11371 *p2++ = query_type;
11372
11373 /* We used one buffer char for the remote protocol q command and
11374 another for the query type. As the remote protocol encapsulation
11375 uses 4 chars plus one extra in case we are debugging
11376 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11377 string. */
11378 i = 0;
11379 while (annex[i] && (i < (get_remote_packet_size () - 8)))
11380 {
11381 /* Bad caller may have sent forbidden characters. */
11382 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11383 *p2++ = annex[i];
11384 i++;
11385 }
11386 *p2 = '\0';
11387 gdb_assert (annex[i] == '\0');
11388
11389 i = putpkt (rs->buf);
11390 if (i < 0)
11391 return TARGET_XFER_E_IO;
11392
11393 getpkt (&rs->buf, 0);
11394 strcpy ((char *) readbuf, rs->buf.data ());
11395
11396 *xfered_len = strlen ((char *) readbuf);
11397 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11398 }
11399
11400 /* Implementation of to_get_memory_xfer_limit. */
11401
11402 ULONGEST
11403 remote_target::get_memory_xfer_limit ()
11404 {
11405 return get_memory_write_packet_size ();
11406 }
11407
11408 int
11409 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11410 const gdb_byte *pattern, ULONGEST pattern_len,
11411 CORE_ADDR *found_addrp)
11412 {
11413 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11414 struct remote_state *rs = get_remote_state ();
11415 int max_size = get_memory_write_packet_size ();
11416 struct packet_config *packet =
11417 &remote_protocol_packets[PACKET_qSearch_memory];
11418 /* Number of packet bytes used to encode the pattern;
11419 this could be more than PATTERN_LEN due to escape characters. */
11420 int escaped_pattern_len;
11421 /* Amount of pattern that was encodable in the packet. */
11422 int used_pattern_len;
11423 int i;
11424 int found;
11425 ULONGEST found_addr;
11426
11427 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11428 {
11429 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11430 == len);
11431 };
11432
11433 /* Don't go to the target if we don't have to. This is done before
11434 checking packet_config_support to avoid the possibility that a
11435 success for this edge case means the facility works in
11436 general. */
11437 if (pattern_len > search_space_len)
11438 return 0;
11439 if (pattern_len == 0)
11440 {
11441 *found_addrp = start_addr;
11442 return 1;
11443 }
11444
11445 /* If we already know the packet isn't supported, fall back to the simple
11446 way of searching memory. */
11447
11448 if (packet_config_support (packet) == PACKET_DISABLE)
11449 {
11450 /* Target doesn't provided special support, fall back and use the
11451 standard support (copy memory and do the search here). */
11452 return simple_search_memory (read_memory, start_addr, search_space_len,
11453 pattern, pattern_len, found_addrp);
11454 }
11455
11456 /* Make sure the remote is pointing at the right process. */
11457 set_general_process ();
11458
11459 /* Insert header. */
11460 i = snprintf (rs->buf.data (), max_size,
11461 "qSearch:memory:%s;%s;",
11462 phex_nz (start_addr, addr_size),
11463 phex_nz (search_space_len, sizeof (search_space_len)));
11464 max_size -= (i + 1);
11465
11466 /* Escape as much data as fits into rs->buf. */
11467 escaped_pattern_len =
11468 remote_escape_output (pattern, pattern_len, 1,
11469 (gdb_byte *) rs->buf.data () + i,
11470 &used_pattern_len, max_size);
11471
11472 /* Bail if the pattern is too large. */
11473 if (used_pattern_len != pattern_len)
11474 error (_("Pattern is too large to transmit to remote target."));
11475
11476 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11477 || getpkt_sane (&rs->buf, 0) < 0
11478 || packet_ok (rs->buf, packet) != PACKET_OK)
11479 {
11480 /* The request may not have worked because the command is not
11481 supported. If so, fall back to the simple way. */
11482 if (packet_config_support (packet) == PACKET_DISABLE)
11483 {
11484 return simple_search_memory (read_memory, start_addr, search_space_len,
11485 pattern, pattern_len, found_addrp);
11486 }
11487 return -1;
11488 }
11489
11490 if (rs->buf[0] == '0')
11491 found = 0;
11492 else if (rs->buf[0] == '1')
11493 {
11494 found = 1;
11495 if (rs->buf[1] != ',')
11496 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11497 unpack_varlen_hex (&rs->buf[2], &found_addr);
11498 *found_addrp = found_addr;
11499 }
11500 else
11501 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11502
11503 return found;
11504 }
11505
11506 void
11507 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11508 {
11509 struct remote_state *rs = get_remote_state ();
11510 char *p = rs->buf.data ();
11511
11512 if (!rs->remote_desc)
11513 error (_("remote rcmd is only available after target open"));
11514
11515 /* Send a NULL command across as an empty command. */
11516 if (command == NULL)
11517 command = "";
11518
11519 /* The query prefix. */
11520 strcpy (rs->buf.data (), "qRcmd,");
11521 p = strchr (rs->buf.data (), '\0');
11522
11523 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11524 > get_remote_packet_size ())
11525 error (_("\"monitor\" command ``%s'' is too long."), command);
11526
11527 /* Encode the actual command. */
11528 bin2hex ((const gdb_byte *) command, p, strlen (command));
11529
11530 if (putpkt (rs->buf) < 0)
11531 error (_("Communication problem with target."));
11532
11533 /* get/display the response */
11534 while (1)
11535 {
11536 char *buf;
11537
11538 /* XXX - see also remote_get_noisy_reply(). */
11539 QUIT; /* Allow user to bail out with ^C. */
11540 rs->buf[0] = '\0';
11541 if (getpkt_sane (&rs->buf, 0) == -1)
11542 {
11543 /* Timeout. Continue to (try to) read responses.
11544 This is better than stopping with an error, assuming the stub
11545 is still executing the (long) monitor command.
11546 If needed, the user can interrupt gdb using C-c, obtaining
11547 an effect similar to stop on timeout. */
11548 continue;
11549 }
11550 buf = rs->buf.data ();
11551 if (buf[0] == '\0')
11552 error (_("Target does not support this command."));
11553 if (buf[0] == 'O' && buf[1] != 'K')
11554 {
11555 remote_console_output (buf + 1); /* 'O' message from stub. */
11556 continue;
11557 }
11558 if (strcmp (buf, "OK") == 0)
11559 break;
11560 if (strlen (buf) == 3 && buf[0] == 'E'
11561 && isdigit (buf[1]) && isdigit (buf[2]))
11562 {
11563 error (_("Protocol error with Rcmd"));
11564 }
11565 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11566 {
11567 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11568
11569 fputc_unfiltered (c, outbuf);
11570 }
11571 break;
11572 }
11573 }
11574
11575 std::vector<mem_region>
11576 remote_target::memory_map ()
11577 {
11578 std::vector<mem_region> result;
11579 gdb::optional<gdb::char_vector> text
11580 = target_read_stralloc (current_inferior ()->top_target (),
11581 TARGET_OBJECT_MEMORY_MAP, NULL);
11582
11583 if (text)
11584 result = parse_memory_map (text->data ());
11585
11586 return result;
11587 }
11588
11589 /* Set of callbacks used to implement the 'maint packet' command. */
11590
11591 struct cli_packet_command_callbacks : public send_remote_packet_callbacks
11592 {
11593 /* Called before the packet is sent. BUF is the packet content before
11594 the protocol specific prefix, suffix, and escaping is added. */
11595
11596 void sending (gdb::array_view<const char> &buf) override
11597 {
11598 puts_filtered ("sending: ");
11599 print_packet (buf);
11600 puts_filtered ("\n");
11601 }
11602
11603 /* Called with BUF, the reply from the remote target. */
11604
11605 void received (gdb::array_view<const char> &buf) override
11606 {
11607 puts_filtered ("received: \"");
11608 print_packet (buf);
11609 puts_filtered ("\"\n");
11610 }
11611
11612 private:
11613
11614 /* Print BUF o gdb_stdout. Any non-printable bytes in BUF are printed as
11615 '\x??' with '??' replaced by the hexadecimal value of the byte. */
11616
11617 static void
11618 print_packet (gdb::array_view<const char> &buf)
11619 {
11620 string_file stb;
11621
11622 for (int i = 0; i < buf.size (); ++i)
11623 {
11624 gdb_byte c = buf[i];
11625 if (isprint (c))
11626 fputc_unfiltered (c, &stb);
11627 else
11628 fprintf_unfiltered (&stb, "\\x%02x", (unsigned char) c);
11629 }
11630
11631 puts_filtered (stb.string ().c_str ());
11632 }
11633 };
11634
11635 /* See remote.h. */
11636
11637 void
11638 send_remote_packet (gdb::array_view<const char> &buf,
11639 send_remote_packet_callbacks *callbacks)
11640 {
11641 if (buf.size () == 0 || buf.data ()[0] == '\0')
11642 error (_("a remote packet must not be empty"));
11643
11644 remote_target *remote = get_current_remote_target ();
11645 if (remote == nullptr)
11646 error (_("packets can only be sent to a remote target"));
11647
11648 callbacks->sending (buf);
11649
11650 remote->putpkt_binary (buf.data (), buf.size ());
11651 remote_state *rs = remote->get_remote_state ();
11652 int bytes = remote->getpkt_sane (&rs->buf, 0);
11653
11654 if (bytes < 0)
11655 error (_("error while fetching packet from remote target"));
11656
11657 gdb::array_view<const char> view (&rs->buf[0], bytes);
11658 callbacks->received (view);
11659 }
11660
11661 /* Entry point for the 'maint packet' command. */
11662
11663 static void
11664 cli_packet_command (const char *args, int from_tty)
11665 {
11666 cli_packet_command_callbacks cb;
11667 gdb::array_view<const char> view
11668 = gdb::make_array_view (args, args == nullptr ? 0 : strlen (args));
11669 send_remote_packet (view, &cb);
11670 }
11671
11672 #if 0
11673 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11674
11675 static void display_thread_info (struct gdb_ext_thread_info *info);
11676
11677 static void threadset_test_cmd (char *cmd, int tty);
11678
11679 static void threadalive_test (char *cmd, int tty);
11680
11681 static void threadlist_test_cmd (char *cmd, int tty);
11682
11683 int get_and_display_threadinfo (threadref *ref);
11684
11685 static void threadinfo_test_cmd (char *cmd, int tty);
11686
11687 static int thread_display_step (threadref *ref, void *context);
11688
11689 static void threadlist_update_test_cmd (char *cmd, int tty);
11690
11691 static void init_remote_threadtests (void);
11692
11693 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11694
11695 static void
11696 threadset_test_cmd (const char *cmd, int tty)
11697 {
11698 int sample_thread = SAMPLE_THREAD;
11699
11700 printf_filtered (_("Remote threadset test\n"));
11701 set_general_thread (sample_thread);
11702 }
11703
11704
11705 static void
11706 threadalive_test (const char *cmd, int tty)
11707 {
11708 int sample_thread = SAMPLE_THREAD;
11709 int pid = inferior_ptid.pid ();
11710 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11711
11712 if (remote_thread_alive (ptid))
11713 printf_filtered ("PASS: Thread alive test\n");
11714 else
11715 printf_filtered ("FAIL: Thread alive test\n");
11716 }
11717
11718 void output_threadid (char *title, threadref *ref);
11719
11720 void
11721 output_threadid (char *title, threadref *ref)
11722 {
11723 char hexid[20];
11724
11725 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
11726 hexid[16] = 0;
11727 printf_filtered ("%s %s\n", title, (&hexid[0]));
11728 }
11729
11730 static void
11731 threadlist_test_cmd (const char *cmd, int tty)
11732 {
11733 int startflag = 1;
11734 threadref nextthread;
11735 int done, result_count;
11736 threadref threadlist[3];
11737
11738 printf_filtered ("Remote Threadlist test\n");
11739 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11740 &result_count, &threadlist[0]))
11741 printf_filtered ("FAIL: threadlist test\n");
11742 else
11743 {
11744 threadref *scan = threadlist;
11745 threadref *limit = scan + result_count;
11746
11747 while (scan < limit)
11748 output_threadid (" thread ", scan++);
11749 }
11750 }
11751
11752 void
11753 display_thread_info (struct gdb_ext_thread_info *info)
11754 {
11755 output_threadid ("Threadid: ", &info->threadid);
11756 printf_filtered ("Name: %s\n ", info->shortname);
11757 printf_filtered ("State: %s\n", info->display);
11758 printf_filtered ("other: %s\n\n", info->more_display);
11759 }
11760
11761 int
11762 get_and_display_threadinfo (threadref *ref)
11763 {
11764 int result;
11765 int set;
11766 struct gdb_ext_thread_info threadinfo;
11767
11768 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11769 | TAG_MOREDISPLAY | TAG_DISPLAY;
11770 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11771 display_thread_info (&threadinfo);
11772 return result;
11773 }
11774
11775 static void
11776 threadinfo_test_cmd (const char *cmd, int tty)
11777 {
11778 int athread = SAMPLE_THREAD;
11779 threadref thread;
11780 int set;
11781
11782 int_to_threadref (&thread, athread);
11783 printf_filtered ("Remote Threadinfo test\n");
11784 if (!get_and_display_threadinfo (&thread))
11785 printf_filtered ("FAIL cannot get thread info\n");
11786 }
11787
11788 static int
11789 thread_display_step (threadref *ref, void *context)
11790 {
11791 /* output_threadid(" threadstep ",ref); *//* simple test */
11792 return get_and_display_threadinfo (ref);
11793 }
11794
11795 static void
11796 threadlist_update_test_cmd (const char *cmd, int tty)
11797 {
11798 printf_filtered ("Remote Threadlist update test\n");
11799 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11800 }
11801
11802 static void
11803 init_remote_threadtests (void)
11804 {
11805 add_com ("tlist", class_obscure, threadlist_test_cmd,
11806 _("Fetch and print the remote list of "
11807 "thread identifiers, one pkt only."));
11808 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11809 _("Fetch and display info about one thread."));
11810 add_com ("tset", class_obscure, threadset_test_cmd,
11811 _("Test setting to a different thread."));
11812 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11813 _("Iterate through updating all remote thread info."));
11814 add_com ("talive", class_obscure, threadalive_test,
11815 _("Remote thread alive test."));
11816 }
11817
11818 #endif /* 0 */
11819
11820 /* Convert a thread ID to a string. */
11821
11822 std::string
11823 remote_target::pid_to_str (ptid_t ptid)
11824 {
11825 struct remote_state *rs = get_remote_state ();
11826
11827 if (ptid == null_ptid)
11828 return normal_pid_to_str (ptid);
11829 else if (ptid.is_pid ())
11830 {
11831 /* Printing an inferior target id. */
11832
11833 /* When multi-process extensions are off, there's no way in the
11834 remote protocol to know the remote process id, if there's any
11835 at all. There's one exception --- when we're connected with
11836 target extended-remote, and we manually attached to a process
11837 with "attach PID". We don't record anywhere a flag that
11838 allows us to distinguish that case from the case of
11839 connecting with extended-remote and the stub already being
11840 attached to a process, and reporting yes to qAttached, hence
11841 no smart special casing here. */
11842 if (!remote_multi_process_p (rs))
11843 return "Remote target";
11844
11845 return normal_pid_to_str (ptid);
11846 }
11847 else
11848 {
11849 if (magic_null_ptid == ptid)
11850 return "Thread <main>";
11851 else if (remote_multi_process_p (rs))
11852 if (ptid.lwp () == 0)
11853 return normal_pid_to_str (ptid);
11854 else
11855 return string_printf ("Thread %d.%ld",
11856 ptid.pid (), ptid.lwp ());
11857 else
11858 return string_printf ("Thread %ld", ptid.lwp ());
11859 }
11860 }
11861
11862 /* Get the address of the thread local variable in OBJFILE which is
11863 stored at OFFSET within the thread local storage for thread PTID. */
11864
11865 CORE_ADDR
11866 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11867 CORE_ADDR offset)
11868 {
11869 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11870 {
11871 struct remote_state *rs = get_remote_state ();
11872 char *p = rs->buf.data ();
11873 char *endp = p + get_remote_packet_size ();
11874 enum packet_result result;
11875
11876 strcpy (p, "qGetTLSAddr:");
11877 p += strlen (p);
11878 p = write_ptid (p, endp, ptid);
11879 *p++ = ',';
11880 p += hexnumstr (p, offset);
11881 *p++ = ',';
11882 p += hexnumstr (p, lm);
11883 *p++ = '\0';
11884
11885 putpkt (rs->buf);
11886 getpkt (&rs->buf, 0);
11887 result = packet_ok (rs->buf,
11888 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11889 if (result == PACKET_OK)
11890 {
11891 ULONGEST addr;
11892
11893 unpack_varlen_hex (rs->buf.data (), &addr);
11894 return addr;
11895 }
11896 else if (result == PACKET_UNKNOWN)
11897 throw_error (TLS_GENERIC_ERROR,
11898 _("Remote target doesn't support qGetTLSAddr packet"));
11899 else
11900 throw_error (TLS_GENERIC_ERROR,
11901 _("Remote target failed to process qGetTLSAddr request"));
11902 }
11903 else
11904 throw_error (TLS_GENERIC_ERROR,
11905 _("TLS not supported or disabled on this target"));
11906 /* Not reached. */
11907 return 0;
11908 }
11909
11910 /* Provide thread local base, i.e. Thread Information Block address.
11911 Returns 1 if ptid is found and thread_local_base is non zero. */
11912
11913 bool
11914 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11915 {
11916 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11917 {
11918 struct remote_state *rs = get_remote_state ();
11919 char *p = rs->buf.data ();
11920 char *endp = p + get_remote_packet_size ();
11921 enum packet_result result;
11922
11923 strcpy (p, "qGetTIBAddr:");
11924 p += strlen (p);
11925 p = write_ptid (p, endp, ptid);
11926 *p++ = '\0';
11927
11928 putpkt (rs->buf);
11929 getpkt (&rs->buf, 0);
11930 result = packet_ok (rs->buf,
11931 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11932 if (result == PACKET_OK)
11933 {
11934 ULONGEST val;
11935 unpack_varlen_hex (rs->buf.data (), &val);
11936 if (addr)
11937 *addr = (CORE_ADDR) val;
11938 return true;
11939 }
11940 else if (result == PACKET_UNKNOWN)
11941 error (_("Remote target doesn't support qGetTIBAddr packet"));
11942 else
11943 error (_("Remote target failed to process qGetTIBAddr request"));
11944 }
11945 else
11946 error (_("qGetTIBAddr not supported or disabled on this target"));
11947 /* Not reached. */
11948 return false;
11949 }
11950
11951 /* Support for inferring a target description based on the current
11952 architecture and the size of a 'g' packet. While the 'g' packet
11953 can have any size (since optional registers can be left off the
11954 end), some sizes are easily recognizable given knowledge of the
11955 approximate architecture. */
11956
11957 struct remote_g_packet_guess
11958 {
11959 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11960 : bytes (bytes_),
11961 tdesc (tdesc_)
11962 {
11963 }
11964
11965 int bytes;
11966 const struct target_desc *tdesc;
11967 };
11968
11969 struct remote_g_packet_data : public allocate_on_obstack
11970 {
11971 std::vector<remote_g_packet_guess> guesses;
11972 };
11973
11974 static struct gdbarch_data *remote_g_packet_data_handle;
11975
11976 static void *
11977 remote_g_packet_data_init (struct obstack *obstack)
11978 {
11979 return new (obstack) remote_g_packet_data;
11980 }
11981
11982 void
11983 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11984 const struct target_desc *tdesc)
11985 {
11986 struct remote_g_packet_data *data
11987 = ((struct remote_g_packet_data *)
11988 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11989
11990 gdb_assert (tdesc != NULL);
11991
11992 for (const remote_g_packet_guess &guess : data->guesses)
11993 if (guess.bytes == bytes)
11994 internal_error (__FILE__, __LINE__,
11995 _("Duplicate g packet description added for size %d"),
11996 bytes);
11997
11998 data->guesses.emplace_back (bytes, tdesc);
11999 }
12000
12001 /* Return true if remote_read_description would do anything on this target
12002 and architecture, false otherwise. */
12003
12004 static bool
12005 remote_read_description_p (struct target_ops *target)
12006 {
12007 struct remote_g_packet_data *data
12008 = ((struct remote_g_packet_data *)
12009 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
12010
12011 return !data->guesses.empty ();
12012 }
12013
12014 const struct target_desc *
12015 remote_target::read_description ()
12016 {
12017 struct remote_g_packet_data *data
12018 = ((struct remote_g_packet_data *)
12019 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
12020
12021 /* Do not try this during initial connection, when we do not know
12022 whether there is a running but stopped thread. */
12023 if (!target_has_execution () || inferior_ptid == null_ptid)
12024 return beneath ()->read_description ();
12025
12026 if (!data->guesses.empty ())
12027 {
12028 int bytes = send_g_packet ();
12029
12030 for (const remote_g_packet_guess &guess : data->guesses)
12031 if (guess.bytes == bytes)
12032 return guess.tdesc;
12033
12034 /* We discard the g packet. A minor optimization would be to
12035 hold on to it, and fill the register cache once we have selected
12036 an architecture, but it's too tricky to do safely. */
12037 }
12038
12039 return beneath ()->read_description ();
12040 }
12041
12042 /* Remote file transfer support. This is host-initiated I/O, not
12043 target-initiated; for target-initiated, see remote-fileio.c. */
12044
12045 /* If *LEFT is at least the length of STRING, copy STRING to
12046 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12047 decrease *LEFT. Otherwise raise an error. */
12048
12049 static void
12050 remote_buffer_add_string (char **buffer, int *left, const char *string)
12051 {
12052 int len = strlen (string);
12053
12054 if (len > *left)
12055 error (_("Packet too long for target."));
12056
12057 memcpy (*buffer, string, len);
12058 *buffer += len;
12059 *left -= len;
12060
12061 /* NUL-terminate the buffer as a convenience, if there is
12062 room. */
12063 if (*left)
12064 **buffer = '\0';
12065 }
12066
12067 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
12068 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12069 decrease *LEFT. Otherwise raise an error. */
12070
12071 static void
12072 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
12073 int len)
12074 {
12075 if (2 * len > *left)
12076 error (_("Packet too long for target."));
12077
12078 bin2hex (bytes, *buffer, len);
12079 *buffer += 2 * len;
12080 *left -= 2 * len;
12081
12082 /* NUL-terminate the buffer as a convenience, if there is
12083 room. */
12084 if (*left)
12085 **buffer = '\0';
12086 }
12087
12088 /* If *LEFT is large enough, convert VALUE to hex and add it to
12089 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12090 decrease *LEFT. Otherwise raise an error. */
12091
12092 static void
12093 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
12094 {
12095 int len = hexnumlen (value);
12096
12097 if (len > *left)
12098 error (_("Packet too long for target."));
12099
12100 hexnumstr (*buffer, value);
12101 *buffer += len;
12102 *left -= len;
12103
12104 /* NUL-terminate the buffer as a convenience, if there is
12105 room. */
12106 if (*left)
12107 **buffer = '\0';
12108 }
12109
12110 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
12111 value, *REMOTE_ERRNO to the remote error number or zero if none
12112 was included, and *ATTACHMENT to point to the start of the annex
12113 if any. The length of the packet isn't needed here; there may
12114 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
12115
12116 Return 0 if the packet could be parsed, -1 if it could not. If
12117 -1 is returned, the other variables may not be initialized. */
12118
12119 static int
12120 remote_hostio_parse_result (const char *buffer, int *retcode,
12121 int *remote_errno, const char **attachment)
12122 {
12123 char *p, *p2;
12124
12125 *remote_errno = 0;
12126 *attachment = NULL;
12127
12128 if (buffer[0] != 'F')
12129 return -1;
12130
12131 errno = 0;
12132 *retcode = strtol (&buffer[1], &p, 16);
12133 if (errno != 0 || p == &buffer[1])
12134 return -1;
12135
12136 /* Check for ",errno". */
12137 if (*p == ',')
12138 {
12139 errno = 0;
12140 *remote_errno = strtol (p + 1, &p2, 16);
12141 if (errno != 0 || p + 1 == p2)
12142 return -1;
12143 p = p2;
12144 }
12145
12146 /* Check for ";attachment". If there is no attachment, the
12147 packet should end here. */
12148 if (*p == ';')
12149 {
12150 *attachment = p + 1;
12151 return 0;
12152 }
12153 else if (*p == '\0')
12154 return 0;
12155 else
12156 return -1;
12157 }
12158
12159 /* Send a prepared I/O packet to the target and read its response.
12160 The prepared packet is in the global RS->BUF before this function
12161 is called, and the answer is there when we return.
12162
12163 COMMAND_BYTES is the length of the request to send, which may include
12164 binary data. WHICH_PACKET is the packet configuration to check
12165 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12166 is set to the error number and -1 is returned. Otherwise the value
12167 returned by the function is returned.
12168
12169 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12170 attachment is expected; an error will be reported if there's a
12171 mismatch. If one is found, *ATTACHMENT will be set to point into
12172 the packet buffer and *ATTACHMENT_LEN will be set to the
12173 attachment's length. */
12174
12175 int
12176 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
12177 int *remote_errno, const char **attachment,
12178 int *attachment_len)
12179 {
12180 struct remote_state *rs = get_remote_state ();
12181 int ret, bytes_read;
12182 const char *attachment_tmp;
12183
12184 if (packet_support (which_packet) == PACKET_DISABLE)
12185 {
12186 *remote_errno = FILEIO_ENOSYS;
12187 return -1;
12188 }
12189
12190 putpkt_binary (rs->buf.data (), command_bytes);
12191 bytes_read = getpkt_sane (&rs->buf, 0);
12192
12193 /* If it timed out, something is wrong. Don't try to parse the
12194 buffer. */
12195 if (bytes_read < 0)
12196 {
12197 *remote_errno = FILEIO_EINVAL;
12198 return -1;
12199 }
12200
12201 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12202 {
12203 case PACKET_ERROR:
12204 *remote_errno = FILEIO_EINVAL;
12205 return -1;
12206 case PACKET_UNKNOWN:
12207 *remote_errno = FILEIO_ENOSYS;
12208 return -1;
12209 case PACKET_OK:
12210 break;
12211 }
12212
12213 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
12214 &attachment_tmp))
12215 {
12216 *remote_errno = FILEIO_EINVAL;
12217 return -1;
12218 }
12219
12220 /* Make sure we saw an attachment if and only if we expected one. */
12221 if ((attachment_tmp == NULL && attachment != NULL)
12222 || (attachment_tmp != NULL && attachment == NULL))
12223 {
12224 *remote_errno = FILEIO_EINVAL;
12225 return -1;
12226 }
12227
12228 /* If an attachment was found, it must point into the packet buffer;
12229 work out how many bytes there were. */
12230 if (attachment_tmp != NULL)
12231 {
12232 *attachment = attachment_tmp;
12233 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
12234 }
12235
12236 return ret;
12237 }
12238
12239 /* See declaration.h. */
12240
12241 void
12242 readahead_cache::invalidate ()
12243 {
12244 this->fd = -1;
12245 }
12246
12247 /* See declaration.h. */
12248
12249 void
12250 readahead_cache::invalidate_fd (int fd)
12251 {
12252 if (this->fd == fd)
12253 this->fd = -1;
12254 }
12255
12256 /* Set the filesystem remote_hostio functions that take FILENAME
12257 arguments will use. Return 0 on success, or -1 if an error
12258 occurs (and set *REMOTE_ERRNO). */
12259
12260 int
12261 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12262 int *remote_errno)
12263 {
12264 struct remote_state *rs = get_remote_state ();
12265 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
12266 char *p = rs->buf.data ();
12267 int left = get_remote_packet_size () - 1;
12268 char arg[9];
12269 int ret;
12270
12271 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12272 return 0;
12273
12274 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12275 return 0;
12276
12277 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12278
12279 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12280 remote_buffer_add_string (&p, &left, arg);
12281
12282 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
12283 remote_errno, NULL, NULL);
12284
12285 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12286 return 0;
12287
12288 if (ret == 0)
12289 rs->fs_pid = required_pid;
12290
12291 return ret;
12292 }
12293
12294 /* Implementation of to_fileio_open. */
12295
12296 int
12297 remote_target::remote_hostio_open (inferior *inf, const char *filename,
12298 int flags, int mode, int warn_if_slow,
12299 int *remote_errno)
12300 {
12301 struct remote_state *rs = get_remote_state ();
12302 char *p = rs->buf.data ();
12303 int left = get_remote_packet_size () - 1;
12304
12305 if (warn_if_slow)
12306 {
12307 static int warning_issued = 0;
12308
12309 printf_unfiltered (_("Reading %s from remote target...\n"),
12310 filename);
12311
12312 if (!warning_issued)
12313 {
12314 warning (_("File transfers from remote targets can be slow."
12315 " Use \"set sysroot\" to access files locally"
12316 " instead."));
12317 warning_issued = 1;
12318 }
12319 }
12320
12321 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12322 return -1;
12323
12324 remote_buffer_add_string (&p, &left, "vFile:open:");
12325
12326 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12327 strlen (filename));
12328 remote_buffer_add_string (&p, &left, ",");
12329
12330 remote_buffer_add_int (&p, &left, flags);
12331 remote_buffer_add_string (&p, &left, ",");
12332
12333 remote_buffer_add_int (&p, &left, mode);
12334
12335 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
12336 remote_errno, NULL, NULL);
12337 }
12338
12339 int
12340 remote_target::fileio_open (struct inferior *inf, const char *filename,
12341 int flags, int mode, int warn_if_slow,
12342 int *remote_errno)
12343 {
12344 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
12345 remote_errno);
12346 }
12347
12348 /* Implementation of to_fileio_pwrite. */
12349
12350 int
12351 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12352 ULONGEST offset, int *remote_errno)
12353 {
12354 struct remote_state *rs = get_remote_state ();
12355 char *p = rs->buf.data ();
12356 int left = get_remote_packet_size ();
12357 int out_len;
12358
12359 rs->readahead_cache.invalidate_fd (fd);
12360
12361 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12362
12363 remote_buffer_add_int (&p, &left, fd);
12364 remote_buffer_add_string (&p, &left, ",");
12365
12366 remote_buffer_add_int (&p, &left, offset);
12367 remote_buffer_add_string (&p, &left, ",");
12368
12369 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
12370 (get_remote_packet_size ()
12371 - (p - rs->buf.data ())));
12372
12373 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
12374 remote_errno, NULL, NULL);
12375 }
12376
12377 int
12378 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12379 ULONGEST offset, int *remote_errno)
12380 {
12381 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12382 }
12383
12384 /* Helper for the implementation of to_fileio_pread. Read the file
12385 from the remote side with vFile:pread. */
12386
12387 int
12388 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12389 ULONGEST offset, int *remote_errno)
12390 {
12391 struct remote_state *rs = get_remote_state ();
12392 char *p = rs->buf.data ();
12393 const char *attachment;
12394 int left = get_remote_packet_size ();
12395 int ret, attachment_len;
12396 int read_len;
12397
12398 remote_buffer_add_string (&p, &left, "vFile:pread:");
12399
12400 remote_buffer_add_int (&p, &left, fd);
12401 remote_buffer_add_string (&p, &left, ",");
12402
12403 remote_buffer_add_int (&p, &left, len);
12404 remote_buffer_add_string (&p, &left, ",");
12405
12406 remote_buffer_add_int (&p, &left, offset);
12407
12408 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
12409 remote_errno, &attachment,
12410 &attachment_len);
12411
12412 if (ret < 0)
12413 return ret;
12414
12415 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12416 read_buf, len);
12417 if (read_len != ret)
12418 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12419
12420 return ret;
12421 }
12422
12423 /* See declaration.h. */
12424
12425 int
12426 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12427 ULONGEST offset)
12428 {
12429 if (this->fd == fd
12430 && this->offset <= offset
12431 && offset < this->offset + this->bufsize)
12432 {
12433 ULONGEST max = this->offset + this->bufsize;
12434
12435 if (offset + len > max)
12436 len = max - offset;
12437
12438 memcpy (read_buf, this->buf + offset - this->offset, len);
12439 return len;
12440 }
12441
12442 return 0;
12443 }
12444
12445 /* Implementation of to_fileio_pread. */
12446
12447 int
12448 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12449 ULONGEST offset, int *remote_errno)
12450 {
12451 int ret;
12452 struct remote_state *rs = get_remote_state ();
12453 readahead_cache *cache = &rs->readahead_cache;
12454
12455 ret = cache->pread (fd, read_buf, len, offset);
12456 if (ret > 0)
12457 {
12458 cache->hit_count++;
12459
12460 remote_debug_printf ("readahead cache hit %s",
12461 pulongest (cache->hit_count));
12462 return ret;
12463 }
12464
12465 cache->miss_count++;
12466
12467 remote_debug_printf ("readahead cache miss %s",
12468 pulongest (cache->miss_count));
12469
12470 cache->fd = fd;
12471 cache->offset = offset;
12472 cache->bufsize = get_remote_packet_size ();
12473 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12474
12475 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12476 cache->offset, remote_errno);
12477 if (ret <= 0)
12478 {
12479 cache->invalidate_fd (fd);
12480 return ret;
12481 }
12482
12483 cache->bufsize = ret;
12484 return cache->pread (fd, read_buf, len, offset);
12485 }
12486
12487 int
12488 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12489 ULONGEST offset, int *remote_errno)
12490 {
12491 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12492 }
12493
12494 /* Implementation of to_fileio_close. */
12495
12496 int
12497 remote_target::remote_hostio_close (int fd, int *remote_errno)
12498 {
12499 struct remote_state *rs = get_remote_state ();
12500 char *p = rs->buf.data ();
12501 int left = get_remote_packet_size () - 1;
12502
12503 rs->readahead_cache.invalidate_fd (fd);
12504
12505 remote_buffer_add_string (&p, &left, "vFile:close:");
12506
12507 remote_buffer_add_int (&p, &left, fd);
12508
12509 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12510 remote_errno, NULL, NULL);
12511 }
12512
12513 int
12514 remote_target::fileio_close (int fd, int *remote_errno)
12515 {
12516 return remote_hostio_close (fd, remote_errno);
12517 }
12518
12519 /* Implementation of to_fileio_unlink. */
12520
12521 int
12522 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12523 int *remote_errno)
12524 {
12525 struct remote_state *rs = get_remote_state ();
12526 char *p = rs->buf.data ();
12527 int left = get_remote_packet_size () - 1;
12528
12529 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12530 return -1;
12531
12532 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12533
12534 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12535 strlen (filename));
12536
12537 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12538 remote_errno, NULL, NULL);
12539 }
12540
12541 int
12542 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12543 int *remote_errno)
12544 {
12545 return remote_hostio_unlink (inf, filename, remote_errno);
12546 }
12547
12548 /* Implementation of to_fileio_readlink. */
12549
12550 gdb::optional<std::string>
12551 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12552 int *remote_errno)
12553 {
12554 struct remote_state *rs = get_remote_state ();
12555 char *p = rs->buf.data ();
12556 const char *attachment;
12557 int left = get_remote_packet_size ();
12558 int len, attachment_len;
12559 int read_len;
12560
12561 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12562 return {};
12563
12564 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12565
12566 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12567 strlen (filename));
12568
12569 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12570 remote_errno, &attachment,
12571 &attachment_len);
12572
12573 if (len < 0)
12574 return {};
12575
12576 std::string ret (len, '\0');
12577
12578 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12579 (gdb_byte *) &ret[0], len);
12580 if (read_len != len)
12581 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12582
12583 return ret;
12584 }
12585
12586 /* Implementation of to_fileio_fstat. */
12587
12588 int
12589 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12590 {
12591 struct remote_state *rs = get_remote_state ();
12592 char *p = rs->buf.data ();
12593 int left = get_remote_packet_size ();
12594 int attachment_len, ret;
12595 const char *attachment;
12596 struct fio_stat fst;
12597 int read_len;
12598
12599 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12600
12601 remote_buffer_add_int (&p, &left, fd);
12602
12603 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12604 remote_errno, &attachment,
12605 &attachment_len);
12606 if (ret < 0)
12607 {
12608 if (*remote_errno != FILEIO_ENOSYS)
12609 return ret;
12610
12611 /* Strictly we should return -1, ENOSYS here, but when
12612 "set sysroot remote:" was implemented in August 2008
12613 BFD's need for a stat function was sidestepped with
12614 this hack. This was not remedied until March 2015
12615 so we retain the previous behavior to avoid breaking
12616 compatibility.
12617
12618 Note that the memset is a March 2015 addition; older
12619 GDBs set st_size *and nothing else* so the structure
12620 would have garbage in all other fields. This might
12621 break something but retaining the previous behavior
12622 here would be just too wrong. */
12623
12624 memset (st, 0, sizeof (struct stat));
12625 st->st_size = INT_MAX;
12626 return 0;
12627 }
12628
12629 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12630 (gdb_byte *) &fst, sizeof (fst));
12631
12632 if (read_len != ret)
12633 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12634
12635 if (read_len != sizeof (fst))
12636 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12637 read_len, (int) sizeof (fst));
12638
12639 remote_fileio_to_host_stat (&fst, st);
12640
12641 return 0;
12642 }
12643
12644 /* Implementation of to_filesystem_is_local. */
12645
12646 bool
12647 remote_target::filesystem_is_local ()
12648 {
12649 /* Valgrind GDB presents itself as a remote target but works
12650 on the local filesystem: it does not implement remote get
12651 and users are not expected to set a sysroot. To handle
12652 this case we treat the remote filesystem as local if the
12653 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12654 does not support vFile:open. */
12655 if (gdb_sysroot == TARGET_SYSROOT_PREFIX)
12656 {
12657 enum packet_support ps = packet_support (PACKET_vFile_open);
12658
12659 if (ps == PACKET_SUPPORT_UNKNOWN)
12660 {
12661 int fd, remote_errno;
12662
12663 /* Try opening a file to probe support. The supplied
12664 filename is irrelevant, we only care about whether
12665 the stub recognizes the packet or not. */
12666 fd = remote_hostio_open (NULL, "just probing",
12667 FILEIO_O_RDONLY, 0700, 0,
12668 &remote_errno);
12669
12670 if (fd >= 0)
12671 remote_hostio_close (fd, &remote_errno);
12672
12673 ps = packet_support (PACKET_vFile_open);
12674 }
12675
12676 if (ps == PACKET_DISABLE)
12677 {
12678 static int warning_issued = 0;
12679
12680 if (!warning_issued)
12681 {
12682 warning (_("remote target does not support file"
12683 " transfer, attempting to access files"
12684 " from local filesystem."));
12685 warning_issued = 1;
12686 }
12687
12688 return true;
12689 }
12690 }
12691
12692 return false;
12693 }
12694
12695 static int
12696 remote_fileio_errno_to_host (int errnum)
12697 {
12698 switch (errnum)
12699 {
12700 case FILEIO_EPERM:
12701 return EPERM;
12702 case FILEIO_ENOENT:
12703 return ENOENT;
12704 case FILEIO_EINTR:
12705 return EINTR;
12706 case FILEIO_EIO:
12707 return EIO;
12708 case FILEIO_EBADF:
12709 return EBADF;
12710 case FILEIO_EACCES:
12711 return EACCES;
12712 case FILEIO_EFAULT:
12713 return EFAULT;
12714 case FILEIO_EBUSY:
12715 return EBUSY;
12716 case FILEIO_EEXIST:
12717 return EEXIST;
12718 case FILEIO_ENODEV:
12719 return ENODEV;
12720 case FILEIO_ENOTDIR:
12721 return ENOTDIR;
12722 case FILEIO_EISDIR:
12723 return EISDIR;
12724 case FILEIO_EINVAL:
12725 return EINVAL;
12726 case FILEIO_ENFILE:
12727 return ENFILE;
12728 case FILEIO_EMFILE:
12729 return EMFILE;
12730 case FILEIO_EFBIG:
12731 return EFBIG;
12732 case FILEIO_ENOSPC:
12733 return ENOSPC;
12734 case FILEIO_ESPIPE:
12735 return ESPIPE;
12736 case FILEIO_EROFS:
12737 return EROFS;
12738 case FILEIO_ENOSYS:
12739 return ENOSYS;
12740 case FILEIO_ENAMETOOLONG:
12741 return ENAMETOOLONG;
12742 }
12743 return -1;
12744 }
12745
12746 static char *
12747 remote_hostio_error (int errnum)
12748 {
12749 int host_error = remote_fileio_errno_to_host (errnum);
12750
12751 if (host_error == -1)
12752 error (_("Unknown remote I/O error %d"), errnum);
12753 else
12754 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12755 }
12756
12757 /* A RAII wrapper around a remote file descriptor. */
12758
12759 class scoped_remote_fd
12760 {
12761 public:
12762 scoped_remote_fd (remote_target *remote, int fd)
12763 : m_remote (remote), m_fd (fd)
12764 {
12765 }
12766
12767 ~scoped_remote_fd ()
12768 {
12769 if (m_fd != -1)
12770 {
12771 try
12772 {
12773 int remote_errno;
12774 m_remote->remote_hostio_close (m_fd, &remote_errno);
12775 }
12776 catch (...)
12777 {
12778 /* Swallow exception before it escapes the dtor. If
12779 something goes wrong, likely the connection is gone,
12780 and there's nothing else that can be done. */
12781 }
12782 }
12783 }
12784
12785 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12786
12787 /* Release ownership of the file descriptor, and return it. */
12788 ATTRIBUTE_UNUSED_RESULT int release () noexcept
12789 {
12790 int fd = m_fd;
12791 m_fd = -1;
12792 return fd;
12793 }
12794
12795 /* Return the owned file descriptor. */
12796 int get () const noexcept
12797 {
12798 return m_fd;
12799 }
12800
12801 private:
12802 /* The remote target. */
12803 remote_target *m_remote;
12804
12805 /* The owned remote I/O file descriptor. */
12806 int m_fd;
12807 };
12808
12809 void
12810 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12811 {
12812 remote_target *remote = get_current_remote_target ();
12813
12814 if (remote == nullptr)
12815 error (_("command can only be used with remote target"));
12816
12817 remote->remote_file_put (local_file, remote_file, from_tty);
12818 }
12819
12820 void
12821 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12822 int from_tty)
12823 {
12824 int retcode, remote_errno, bytes, io_size;
12825 int bytes_in_buffer;
12826 int saw_eof;
12827 ULONGEST offset;
12828
12829 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12830 if (file == NULL)
12831 perror_with_name (local_file);
12832
12833 scoped_remote_fd fd
12834 (this, remote_hostio_open (NULL,
12835 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12836 | FILEIO_O_TRUNC),
12837 0700, 0, &remote_errno));
12838 if (fd.get () == -1)
12839 remote_hostio_error (remote_errno);
12840
12841 /* Send up to this many bytes at once. They won't all fit in the
12842 remote packet limit, so we'll transfer slightly fewer. */
12843 io_size = get_remote_packet_size ();
12844 gdb::byte_vector buffer (io_size);
12845
12846 bytes_in_buffer = 0;
12847 saw_eof = 0;
12848 offset = 0;
12849 while (bytes_in_buffer || !saw_eof)
12850 {
12851 if (!saw_eof)
12852 {
12853 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12854 io_size - bytes_in_buffer,
12855 file.get ());
12856 if (bytes == 0)
12857 {
12858 if (ferror (file.get ()))
12859 error (_("Error reading %s."), local_file);
12860 else
12861 {
12862 /* EOF. Unless there is something still in the
12863 buffer from the last iteration, we are done. */
12864 saw_eof = 1;
12865 if (bytes_in_buffer == 0)
12866 break;
12867 }
12868 }
12869 }
12870 else
12871 bytes = 0;
12872
12873 bytes += bytes_in_buffer;
12874 bytes_in_buffer = 0;
12875
12876 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12877 offset, &remote_errno);
12878
12879 if (retcode < 0)
12880 remote_hostio_error (remote_errno);
12881 else if (retcode == 0)
12882 error (_("Remote write of %d bytes returned 0!"), bytes);
12883 else if (retcode < bytes)
12884 {
12885 /* Short write. Save the rest of the read data for the next
12886 write. */
12887 bytes_in_buffer = bytes - retcode;
12888 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12889 }
12890
12891 offset += retcode;
12892 }
12893
12894 if (remote_hostio_close (fd.release (), &remote_errno))
12895 remote_hostio_error (remote_errno);
12896
12897 if (from_tty)
12898 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12899 }
12900
12901 void
12902 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12903 {
12904 remote_target *remote = get_current_remote_target ();
12905
12906 if (remote == nullptr)
12907 error (_("command can only be used with remote target"));
12908
12909 remote->remote_file_get (remote_file, local_file, from_tty);
12910 }
12911
12912 void
12913 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12914 int from_tty)
12915 {
12916 int remote_errno, bytes, io_size;
12917 ULONGEST offset;
12918
12919 scoped_remote_fd fd
12920 (this, remote_hostio_open (NULL,
12921 remote_file, FILEIO_O_RDONLY, 0, 0,
12922 &remote_errno));
12923 if (fd.get () == -1)
12924 remote_hostio_error (remote_errno);
12925
12926 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12927 if (file == NULL)
12928 perror_with_name (local_file);
12929
12930 /* Send up to this many bytes at once. They won't all fit in the
12931 remote packet limit, so we'll transfer slightly fewer. */
12932 io_size = get_remote_packet_size ();
12933 gdb::byte_vector buffer (io_size);
12934
12935 offset = 0;
12936 while (1)
12937 {
12938 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12939 &remote_errno);
12940 if (bytes == 0)
12941 /* Success, but no bytes, means end-of-file. */
12942 break;
12943 if (bytes == -1)
12944 remote_hostio_error (remote_errno);
12945
12946 offset += bytes;
12947
12948 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12949 if (bytes == 0)
12950 perror_with_name (local_file);
12951 }
12952
12953 if (remote_hostio_close (fd.release (), &remote_errno))
12954 remote_hostio_error (remote_errno);
12955
12956 if (from_tty)
12957 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12958 }
12959
12960 void
12961 remote_file_delete (const char *remote_file, int from_tty)
12962 {
12963 remote_target *remote = get_current_remote_target ();
12964
12965 if (remote == nullptr)
12966 error (_("command can only be used with remote target"));
12967
12968 remote->remote_file_delete (remote_file, from_tty);
12969 }
12970
12971 void
12972 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12973 {
12974 int retcode, remote_errno;
12975
12976 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12977 if (retcode == -1)
12978 remote_hostio_error (remote_errno);
12979
12980 if (from_tty)
12981 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12982 }
12983
12984 static void
12985 remote_put_command (const char *args, int from_tty)
12986 {
12987 if (args == NULL)
12988 error_no_arg (_("file to put"));
12989
12990 gdb_argv argv (args);
12991 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12992 error (_("Invalid parameters to remote put"));
12993
12994 remote_file_put (argv[0], argv[1], from_tty);
12995 }
12996
12997 static void
12998 remote_get_command (const char *args, int from_tty)
12999 {
13000 if (args == NULL)
13001 error_no_arg (_("file to get"));
13002
13003 gdb_argv argv (args);
13004 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
13005 error (_("Invalid parameters to remote get"));
13006
13007 remote_file_get (argv[0], argv[1], from_tty);
13008 }
13009
13010 static void
13011 remote_delete_command (const char *args, int from_tty)
13012 {
13013 if (args == NULL)
13014 error_no_arg (_("file to delete"));
13015
13016 gdb_argv argv (args);
13017 if (argv[0] == NULL || argv[1] != NULL)
13018 error (_("Invalid parameters to remote delete"));
13019
13020 remote_file_delete (argv[0], from_tty);
13021 }
13022
13023 bool
13024 remote_target::can_execute_reverse ()
13025 {
13026 if (packet_support (PACKET_bs) == PACKET_ENABLE
13027 || packet_support (PACKET_bc) == PACKET_ENABLE)
13028 return true;
13029 else
13030 return false;
13031 }
13032
13033 bool
13034 remote_target::supports_non_stop ()
13035 {
13036 return true;
13037 }
13038
13039 bool
13040 remote_target::supports_disable_randomization ()
13041 {
13042 /* Only supported in extended mode. */
13043 return false;
13044 }
13045
13046 bool
13047 remote_target::supports_multi_process ()
13048 {
13049 struct remote_state *rs = get_remote_state ();
13050
13051 return remote_multi_process_p (rs);
13052 }
13053
13054 static int
13055 remote_supports_cond_tracepoints ()
13056 {
13057 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
13058 }
13059
13060 bool
13061 remote_target::supports_evaluation_of_breakpoint_conditions ()
13062 {
13063 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
13064 }
13065
13066 static int
13067 remote_supports_fast_tracepoints ()
13068 {
13069 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
13070 }
13071
13072 static int
13073 remote_supports_static_tracepoints ()
13074 {
13075 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
13076 }
13077
13078 static int
13079 remote_supports_install_in_trace ()
13080 {
13081 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
13082 }
13083
13084 bool
13085 remote_target::supports_enable_disable_tracepoint ()
13086 {
13087 return (packet_support (PACKET_EnableDisableTracepoints_feature)
13088 == PACKET_ENABLE);
13089 }
13090
13091 bool
13092 remote_target::supports_string_tracing ()
13093 {
13094 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
13095 }
13096
13097 bool
13098 remote_target::can_run_breakpoint_commands ()
13099 {
13100 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
13101 }
13102
13103 void
13104 remote_target::trace_init ()
13105 {
13106 struct remote_state *rs = get_remote_state ();
13107
13108 putpkt ("QTinit");
13109 remote_get_noisy_reply ();
13110 if (strcmp (rs->buf.data (), "OK") != 0)
13111 error (_("Target does not support this command."));
13112 }
13113
13114 /* Recursive routine to walk through command list including loops, and
13115 download packets for each command. */
13116
13117 void
13118 remote_target::remote_download_command_source (int num, ULONGEST addr,
13119 struct command_line *cmds)
13120 {
13121 struct remote_state *rs = get_remote_state ();
13122 struct command_line *cmd;
13123
13124 for (cmd = cmds; cmd; cmd = cmd->next)
13125 {
13126 QUIT; /* Allow user to bail out with ^C. */
13127 strcpy (rs->buf.data (), "QTDPsrc:");
13128 encode_source_string (num, addr, "cmd", cmd->line,
13129 rs->buf.data () + strlen (rs->buf.data ()),
13130 rs->buf.size () - strlen (rs->buf.data ()));
13131 putpkt (rs->buf);
13132 remote_get_noisy_reply ();
13133 if (strcmp (rs->buf.data (), "OK"))
13134 warning (_("Target does not support source download."));
13135
13136 if (cmd->control_type == while_control
13137 || cmd->control_type == while_stepping_control)
13138 {
13139 remote_download_command_source (num, addr, cmd->body_list_0.get ());
13140
13141 QUIT; /* Allow user to bail out with ^C. */
13142 strcpy (rs->buf.data (), "QTDPsrc:");
13143 encode_source_string (num, addr, "cmd", "end",
13144 rs->buf.data () + strlen (rs->buf.data ()),
13145 rs->buf.size () - strlen (rs->buf.data ()));
13146 putpkt (rs->buf);
13147 remote_get_noisy_reply ();
13148 if (strcmp (rs->buf.data (), "OK"))
13149 warning (_("Target does not support source download."));
13150 }
13151 }
13152 }
13153
13154 void
13155 remote_target::download_tracepoint (struct bp_location *loc)
13156 {
13157 CORE_ADDR tpaddr;
13158 char addrbuf[40];
13159 std::vector<std::string> tdp_actions;
13160 std::vector<std::string> stepping_actions;
13161 char *pkt;
13162 struct breakpoint *b = loc->owner;
13163 struct tracepoint *t = (struct tracepoint *) b;
13164 struct remote_state *rs = get_remote_state ();
13165 int ret;
13166 const char *err_msg = _("Tracepoint packet too large for target.");
13167 size_t size_left;
13168
13169 /* We use a buffer other than rs->buf because we'll build strings
13170 across multiple statements, and other statements in between could
13171 modify rs->buf. */
13172 gdb::char_vector buf (get_remote_packet_size ());
13173
13174 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
13175
13176 tpaddr = loc->address;
13177 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
13178 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13179 b->number, addrbuf, /* address */
13180 (b->enable_state == bp_enabled ? 'E' : 'D'),
13181 t->step_count, t->pass_count);
13182
13183 if (ret < 0 || ret >= buf.size ())
13184 error ("%s", err_msg);
13185
13186 /* Fast tracepoints are mostly handled by the target, but we can
13187 tell the target how big of an instruction block should be moved
13188 around. */
13189 if (b->type == bp_fast_tracepoint)
13190 {
13191 /* Only test for support at download time; we may not know
13192 target capabilities at definition time. */
13193 if (remote_supports_fast_tracepoints ())
13194 {
13195 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13196 NULL))
13197 {
13198 size_left = buf.size () - strlen (buf.data ());
13199 ret = snprintf (buf.data () + strlen (buf.data ()),
13200 size_left, ":F%x",
13201 gdb_insn_length (loc->gdbarch, tpaddr));
13202
13203 if (ret < 0 || ret >= size_left)
13204 error ("%s", err_msg);
13205 }
13206 else
13207 /* If it passed validation at definition but fails now,
13208 something is very wrong. */
13209 internal_error (__FILE__, __LINE__,
13210 _("Fast tracepoint not "
13211 "valid during download"));
13212 }
13213 else
13214 /* Fast tracepoints are functionally identical to regular
13215 tracepoints, so don't take lack of support as a reason to
13216 give up on the trace run. */
13217 warning (_("Target does not support fast tracepoints, "
13218 "downloading %d as regular tracepoint"), b->number);
13219 }
13220 else if (b->type == bp_static_tracepoint)
13221 {
13222 /* Only test for support at download time; we may not know
13223 target capabilities at definition time. */
13224 if (remote_supports_static_tracepoints ())
13225 {
13226 struct static_tracepoint_marker marker;
13227
13228 if (target_static_tracepoint_marker_at (tpaddr, &marker))
13229 {
13230 size_left = buf.size () - strlen (buf.data ());
13231 ret = snprintf (buf.data () + strlen (buf.data ()),
13232 size_left, ":S");
13233
13234 if (ret < 0 || ret >= size_left)
13235 error ("%s", err_msg);
13236 }
13237 else
13238 error (_("Static tracepoint not valid during download"));
13239 }
13240 else
13241 /* Fast tracepoints are functionally identical to regular
13242 tracepoints, so don't take lack of support as a reason
13243 to give up on the trace run. */
13244 error (_("Target does not support static tracepoints"));
13245 }
13246 /* If the tracepoint has a conditional, make it into an agent
13247 expression and append to the definition. */
13248 if (loc->cond)
13249 {
13250 /* Only test support at download time, we may not know target
13251 capabilities at definition time. */
13252 if (remote_supports_cond_tracepoints ())
13253 {
13254 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13255 loc->cond.get ());
13256
13257 size_left = buf.size () - strlen (buf.data ());
13258
13259 ret = snprintf (buf.data () + strlen (buf.data ()),
13260 size_left, ":X%x,", aexpr->len);
13261
13262 if (ret < 0 || ret >= size_left)
13263 error ("%s", err_msg);
13264
13265 size_left = buf.size () - strlen (buf.data ());
13266
13267 /* Two bytes to encode each aexpr byte, plus the terminating
13268 null byte. */
13269 if (aexpr->len * 2 + 1 > size_left)
13270 error ("%s", err_msg);
13271
13272 pkt = buf.data () + strlen (buf.data ());
13273
13274 for (int ndx = 0; ndx < aexpr->len; ++ndx)
13275 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13276 *pkt = '\0';
13277 }
13278 else
13279 warning (_("Target does not support conditional tracepoints, "
13280 "ignoring tp %d cond"), b->number);
13281 }
13282
13283 if (b->commands || !default_collect.empty ())
13284 {
13285 size_left = buf.size () - strlen (buf.data ());
13286
13287 ret = snprintf (buf.data () + strlen (buf.data ()),
13288 size_left, "-");
13289
13290 if (ret < 0 || ret >= size_left)
13291 error ("%s", err_msg);
13292 }
13293
13294 putpkt (buf.data ());
13295 remote_get_noisy_reply ();
13296 if (strcmp (rs->buf.data (), "OK"))
13297 error (_("Target does not support tracepoints."));
13298
13299 /* do_single_steps (t); */
13300 for (auto action_it = tdp_actions.begin ();
13301 action_it != tdp_actions.end (); action_it++)
13302 {
13303 QUIT; /* Allow user to bail out with ^C. */
13304
13305 bool has_more = ((action_it + 1) != tdp_actions.end ()
13306 || !stepping_actions.empty ());
13307
13308 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13309 b->number, addrbuf, /* address */
13310 action_it->c_str (),
13311 has_more ? '-' : 0);
13312
13313 if (ret < 0 || ret >= buf.size ())
13314 error ("%s", err_msg);
13315
13316 putpkt (buf.data ());
13317 remote_get_noisy_reply ();
13318 if (strcmp (rs->buf.data (), "OK"))
13319 error (_("Error on target while setting tracepoints."));
13320 }
13321
13322 for (auto action_it = stepping_actions.begin ();
13323 action_it != stepping_actions.end (); action_it++)
13324 {
13325 QUIT; /* Allow user to bail out with ^C. */
13326
13327 bool is_first = action_it == stepping_actions.begin ();
13328 bool has_more = (action_it + 1) != stepping_actions.end ();
13329
13330 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13331 b->number, addrbuf, /* address */
13332 is_first ? "S" : "",
13333 action_it->c_str (),
13334 has_more ? "-" : "");
13335
13336 if (ret < 0 || ret >= buf.size ())
13337 error ("%s", err_msg);
13338
13339 putpkt (buf.data ());
13340 remote_get_noisy_reply ();
13341 if (strcmp (rs->buf.data (), "OK"))
13342 error (_("Error on target while setting tracepoints."));
13343 }
13344
13345 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
13346 {
13347 if (b->location != NULL)
13348 {
13349 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13350
13351 if (ret < 0 || ret >= buf.size ())
13352 error ("%s", err_msg);
13353
13354 encode_source_string (b->number, loc->address, "at",
13355 event_location_to_string (b->location.get ()),
13356 buf.data () + strlen (buf.data ()),
13357 buf.size () - strlen (buf.data ()));
13358 putpkt (buf.data ());
13359 remote_get_noisy_reply ();
13360 if (strcmp (rs->buf.data (), "OK"))
13361 warning (_("Target does not support source download."));
13362 }
13363 if (b->cond_string)
13364 {
13365 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13366
13367 if (ret < 0 || ret >= buf.size ())
13368 error ("%s", err_msg);
13369
13370 encode_source_string (b->number, loc->address,
13371 "cond", b->cond_string.get (),
13372 buf.data () + strlen (buf.data ()),
13373 buf.size () - strlen (buf.data ()));
13374 putpkt (buf.data ());
13375 remote_get_noisy_reply ();
13376 if (strcmp (rs->buf.data (), "OK"))
13377 warning (_("Target does not support source download."));
13378 }
13379 remote_download_command_source (b->number, loc->address,
13380 breakpoint_commands (b));
13381 }
13382 }
13383
13384 bool
13385 remote_target::can_download_tracepoint ()
13386 {
13387 struct remote_state *rs = get_remote_state ();
13388 struct trace_status *ts;
13389 int status;
13390
13391 /* Don't try to install tracepoints until we've relocated our
13392 symbols, and fetched and merged the target's tracepoint list with
13393 ours. */
13394 if (rs->starting_up)
13395 return false;
13396
13397 ts = current_trace_status ();
13398 status = get_trace_status (ts);
13399
13400 if (status == -1 || !ts->running_known || !ts->running)
13401 return false;
13402
13403 /* If we are in a tracing experiment, but remote stub doesn't support
13404 installing tracepoint in trace, we have to return. */
13405 if (!remote_supports_install_in_trace ())
13406 return false;
13407
13408 return true;
13409 }
13410
13411
13412 void
13413 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13414 {
13415 struct remote_state *rs = get_remote_state ();
13416 char *p;
13417
13418 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
13419 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13420 tsv.builtin);
13421 p = rs->buf.data () + strlen (rs->buf.data ());
13422 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13423 >= get_remote_packet_size ())
13424 error (_("Trace state variable name too long for tsv definition packet"));
13425 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13426 *p++ = '\0';
13427 putpkt (rs->buf);
13428 remote_get_noisy_reply ();
13429 if (rs->buf[0] == '\0')
13430 error (_("Target does not support this command."));
13431 if (strcmp (rs->buf.data (), "OK") != 0)
13432 error (_("Error on target while downloading trace state variable."));
13433 }
13434
13435 void
13436 remote_target::enable_tracepoint (struct bp_location *location)
13437 {
13438 struct remote_state *rs = get_remote_state ();
13439
13440 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13441 location->owner->number,
13442 phex (location->address, sizeof (CORE_ADDR)));
13443 putpkt (rs->buf);
13444 remote_get_noisy_reply ();
13445 if (rs->buf[0] == '\0')
13446 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13447 if (strcmp (rs->buf.data (), "OK") != 0)
13448 error (_("Error on target while enabling tracepoint."));
13449 }
13450
13451 void
13452 remote_target::disable_tracepoint (struct bp_location *location)
13453 {
13454 struct remote_state *rs = get_remote_state ();
13455
13456 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13457 location->owner->number,
13458 phex (location->address, sizeof (CORE_ADDR)));
13459 putpkt (rs->buf);
13460 remote_get_noisy_reply ();
13461 if (rs->buf[0] == '\0')
13462 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13463 if (strcmp (rs->buf.data (), "OK") != 0)
13464 error (_("Error on target while disabling tracepoint."));
13465 }
13466
13467 void
13468 remote_target::trace_set_readonly_regions ()
13469 {
13470 asection *s;
13471 bfd_size_type size;
13472 bfd_vma vma;
13473 int anysecs = 0;
13474 int offset = 0;
13475
13476 if (!current_program_space->exec_bfd ())
13477 return; /* No information to give. */
13478
13479 struct remote_state *rs = get_remote_state ();
13480
13481 strcpy (rs->buf.data (), "QTro");
13482 offset = strlen (rs->buf.data ());
13483 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
13484 {
13485 char tmp1[40], tmp2[40];
13486 int sec_length;
13487
13488 if ((s->flags & SEC_LOAD) == 0 ||
13489 /* (s->flags & SEC_CODE) == 0 || */
13490 (s->flags & SEC_READONLY) == 0)
13491 continue;
13492
13493 anysecs = 1;
13494 vma = bfd_section_vma (s);
13495 size = bfd_section_size (s);
13496 sprintf_vma (tmp1, vma);
13497 sprintf_vma (tmp2, vma + size);
13498 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13499 if (offset + sec_length + 1 > rs->buf.size ())
13500 {
13501 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13502 warning (_("\
13503 Too many sections for read-only sections definition packet."));
13504 break;
13505 }
13506 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13507 tmp1, tmp2);
13508 offset += sec_length;
13509 }
13510 if (anysecs)
13511 {
13512 putpkt (rs->buf);
13513 getpkt (&rs->buf, 0);
13514 }
13515 }
13516
13517 void
13518 remote_target::trace_start ()
13519 {
13520 struct remote_state *rs = get_remote_state ();
13521
13522 putpkt ("QTStart");
13523 remote_get_noisy_reply ();
13524 if (rs->buf[0] == '\0')
13525 error (_("Target does not support this command."));
13526 if (strcmp (rs->buf.data (), "OK") != 0)
13527 error (_("Bogus reply from target: %s"), rs->buf.data ());
13528 }
13529
13530 int
13531 remote_target::get_trace_status (struct trace_status *ts)
13532 {
13533 /* Initialize it just to avoid a GCC false warning. */
13534 char *p = NULL;
13535 enum packet_result result;
13536 struct remote_state *rs = get_remote_state ();
13537
13538 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13539 return -1;
13540
13541 /* FIXME we need to get register block size some other way. */
13542 trace_regblock_size
13543 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13544
13545 putpkt ("qTStatus");
13546
13547 try
13548 {
13549 p = remote_get_noisy_reply ();
13550 }
13551 catch (const gdb_exception_error &ex)
13552 {
13553 if (ex.error != TARGET_CLOSE_ERROR)
13554 {
13555 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13556 return -1;
13557 }
13558 throw;
13559 }
13560
13561 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13562
13563 /* If the remote target doesn't do tracing, flag it. */
13564 if (result == PACKET_UNKNOWN)
13565 return -1;
13566
13567 /* We're working with a live target. */
13568 ts->filename = NULL;
13569
13570 if (*p++ != 'T')
13571 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13572
13573 /* Function 'parse_trace_status' sets default value of each field of
13574 'ts' at first, so we don't have to do it here. */
13575 parse_trace_status (p, ts);
13576
13577 return ts->running;
13578 }
13579
13580 void
13581 remote_target::get_tracepoint_status (struct breakpoint *bp,
13582 struct uploaded_tp *utp)
13583 {
13584 struct remote_state *rs = get_remote_state ();
13585 char *reply;
13586 struct tracepoint *tp = (struct tracepoint *) bp;
13587 size_t size = get_remote_packet_size ();
13588
13589 if (tp)
13590 {
13591 tp->hit_count = 0;
13592 tp->traceframe_usage = 0;
13593 for (bp_location *loc : tp->locations ())
13594 {
13595 /* If the tracepoint was never downloaded, don't go asking for
13596 any status. */
13597 if (tp->number_on_target == 0)
13598 continue;
13599 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13600 phex_nz (loc->address, 0));
13601 putpkt (rs->buf);
13602 reply = remote_get_noisy_reply ();
13603 if (reply && *reply)
13604 {
13605 if (*reply == 'V')
13606 parse_tracepoint_status (reply + 1, bp, utp);
13607 }
13608 }
13609 }
13610 else if (utp)
13611 {
13612 utp->hit_count = 0;
13613 utp->traceframe_usage = 0;
13614 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13615 phex_nz (utp->addr, 0));
13616 putpkt (rs->buf);
13617 reply = remote_get_noisy_reply ();
13618 if (reply && *reply)
13619 {
13620 if (*reply == 'V')
13621 parse_tracepoint_status (reply + 1, bp, utp);
13622 }
13623 }
13624 }
13625
13626 void
13627 remote_target::trace_stop ()
13628 {
13629 struct remote_state *rs = get_remote_state ();
13630
13631 putpkt ("QTStop");
13632 remote_get_noisy_reply ();
13633 if (rs->buf[0] == '\0')
13634 error (_("Target does not support this command."));
13635 if (strcmp (rs->buf.data (), "OK") != 0)
13636 error (_("Bogus reply from target: %s"), rs->buf.data ());
13637 }
13638
13639 int
13640 remote_target::trace_find (enum trace_find_type type, int num,
13641 CORE_ADDR addr1, CORE_ADDR addr2,
13642 int *tpp)
13643 {
13644 struct remote_state *rs = get_remote_state ();
13645 char *endbuf = rs->buf.data () + get_remote_packet_size ();
13646 char *p, *reply;
13647 int target_frameno = -1, target_tracept = -1;
13648
13649 /* Lookups other than by absolute frame number depend on the current
13650 trace selected, so make sure it is correct on the remote end
13651 first. */
13652 if (type != tfind_number)
13653 set_remote_traceframe ();
13654
13655 p = rs->buf.data ();
13656 strcpy (p, "QTFrame:");
13657 p = strchr (p, '\0');
13658 switch (type)
13659 {
13660 case tfind_number:
13661 xsnprintf (p, endbuf - p, "%x", num);
13662 break;
13663 case tfind_pc:
13664 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13665 break;
13666 case tfind_tp:
13667 xsnprintf (p, endbuf - p, "tdp:%x", num);
13668 break;
13669 case tfind_range:
13670 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13671 phex_nz (addr2, 0));
13672 break;
13673 case tfind_outside:
13674 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13675 phex_nz (addr2, 0));
13676 break;
13677 default:
13678 error (_("Unknown trace find type %d"), type);
13679 }
13680
13681 putpkt (rs->buf);
13682 reply = remote_get_noisy_reply ();
13683 if (*reply == '\0')
13684 error (_("Target does not support this command."));
13685
13686 while (reply && *reply)
13687 switch (*reply)
13688 {
13689 case 'F':
13690 p = ++reply;
13691 target_frameno = (int) strtol (p, &reply, 16);
13692 if (reply == p)
13693 error (_("Unable to parse trace frame number"));
13694 /* Don't update our remote traceframe number cache on failure
13695 to select a remote traceframe. */
13696 if (target_frameno == -1)
13697 return -1;
13698 break;
13699 case 'T':
13700 p = ++reply;
13701 target_tracept = (int) strtol (p, &reply, 16);
13702 if (reply == p)
13703 error (_("Unable to parse tracepoint number"));
13704 break;
13705 case 'O': /* "OK"? */
13706 if (reply[1] == 'K' && reply[2] == '\0')
13707 reply += 2;
13708 else
13709 error (_("Bogus reply from target: %s"), reply);
13710 break;
13711 default:
13712 error (_("Bogus reply from target: %s"), reply);
13713 }
13714 if (tpp)
13715 *tpp = target_tracept;
13716
13717 rs->remote_traceframe_number = target_frameno;
13718 return target_frameno;
13719 }
13720
13721 bool
13722 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13723 {
13724 struct remote_state *rs = get_remote_state ();
13725 char *reply;
13726 ULONGEST uval;
13727
13728 set_remote_traceframe ();
13729
13730 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13731 putpkt (rs->buf);
13732 reply = remote_get_noisy_reply ();
13733 if (reply && *reply)
13734 {
13735 if (*reply == 'V')
13736 {
13737 unpack_varlen_hex (reply + 1, &uval);
13738 *val = (LONGEST) uval;
13739 return true;
13740 }
13741 }
13742 return false;
13743 }
13744
13745 int
13746 remote_target::save_trace_data (const char *filename)
13747 {
13748 struct remote_state *rs = get_remote_state ();
13749 char *p, *reply;
13750
13751 p = rs->buf.data ();
13752 strcpy (p, "QTSave:");
13753 p += strlen (p);
13754 if ((p - rs->buf.data ()) + strlen (filename) * 2
13755 >= get_remote_packet_size ())
13756 error (_("Remote file name too long for trace save packet"));
13757 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13758 *p++ = '\0';
13759 putpkt (rs->buf);
13760 reply = remote_get_noisy_reply ();
13761 if (*reply == '\0')
13762 error (_("Target does not support this command."));
13763 if (strcmp (reply, "OK") != 0)
13764 error (_("Bogus reply from target: %s"), reply);
13765 return 0;
13766 }
13767
13768 /* This is basically a memory transfer, but needs to be its own packet
13769 because we don't know how the target actually organizes its trace
13770 memory, plus we want to be able to ask for as much as possible, but
13771 not be unhappy if we don't get as much as we ask for. */
13772
13773 LONGEST
13774 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13775 {
13776 struct remote_state *rs = get_remote_state ();
13777 char *reply;
13778 char *p;
13779 int rslt;
13780
13781 p = rs->buf.data ();
13782 strcpy (p, "qTBuffer:");
13783 p += strlen (p);
13784 p += hexnumstr (p, offset);
13785 *p++ = ',';
13786 p += hexnumstr (p, len);
13787 *p++ = '\0';
13788
13789 putpkt (rs->buf);
13790 reply = remote_get_noisy_reply ();
13791 if (reply && *reply)
13792 {
13793 /* 'l' by itself means we're at the end of the buffer and
13794 there is nothing more to get. */
13795 if (*reply == 'l')
13796 return 0;
13797
13798 /* Convert the reply into binary. Limit the number of bytes to
13799 convert according to our passed-in buffer size, rather than
13800 what was returned in the packet; if the target is
13801 unexpectedly generous and gives us a bigger reply than we
13802 asked for, we don't want to crash. */
13803 rslt = hex2bin (reply, buf, len);
13804 return rslt;
13805 }
13806
13807 /* Something went wrong, flag as an error. */
13808 return -1;
13809 }
13810
13811 void
13812 remote_target::set_disconnected_tracing (int val)
13813 {
13814 struct remote_state *rs = get_remote_state ();
13815
13816 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13817 {
13818 char *reply;
13819
13820 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13821 "QTDisconnected:%x", val);
13822 putpkt (rs->buf);
13823 reply = remote_get_noisy_reply ();
13824 if (*reply == '\0')
13825 error (_("Target does not support this command."));
13826 if (strcmp (reply, "OK") != 0)
13827 error (_("Bogus reply from target: %s"), reply);
13828 }
13829 else if (val)
13830 warning (_("Target does not support disconnected tracing."));
13831 }
13832
13833 int
13834 remote_target::core_of_thread (ptid_t ptid)
13835 {
13836 thread_info *info = find_thread_ptid (this, ptid);
13837
13838 if (info != NULL && info->priv != NULL)
13839 return get_remote_thread_info (info)->core;
13840
13841 return -1;
13842 }
13843
13844 void
13845 remote_target::set_circular_trace_buffer (int val)
13846 {
13847 struct remote_state *rs = get_remote_state ();
13848 char *reply;
13849
13850 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13851 "QTBuffer:circular:%x", val);
13852 putpkt (rs->buf);
13853 reply = remote_get_noisy_reply ();
13854 if (*reply == '\0')
13855 error (_("Target does not support this command."));
13856 if (strcmp (reply, "OK") != 0)
13857 error (_("Bogus reply from target: %s"), reply);
13858 }
13859
13860 traceframe_info_up
13861 remote_target::traceframe_info ()
13862 {
13863 gdb::optional<gdb::char_vector> text
13864 = target_read_stralloc (current_inferior ()->top_target (),
13865 TARGET_OBJECT_TRACEFRAME_INFO,
13866 NULL);
13867 if (text)
13868 return parse_traceframe_info (text->data ());
13869
13870 return NULL;
13871 }
13872
13873 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13874 instruction on which a fast tracepoint may be placed. Returns -1
13875 if the packet is not supported, and 0 if the minimum instruction
13876 length is unknown. */
13877
13878 int
13879 remote_target::get_min_fast_tracepoint_insn_len ()
13880 {
13881 struct remote_state *rs = get_remote_state ();
13882 char *reply;
13883
13884 /* If we're not debugging a process yet, the IPA can't be
13885 loaded. */
13886 if (!target_has_execution ())
13887 return 0;
13888
13889 /* Make sure the remote is pointing at the right process. */
13890 set_general_process ();
13891
13892 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13893 putpkt (rs->buf);
13894 reply = remote_get_noisy_reply ();
13895 if (*reply == '\0')
13896 return -1;
13897 else
13898 {
13899 ULONGEST min_insn_len;
13900
13901 unpack_varlen_hex (reply, &min_insn_len);
13902
13903 return (int) min_insn_len;
13904 }
13905 }
13906
13907 void
13908 remote_target::set_trace_buffer_size (LONGEST val)
13909 {
13910 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13911 {
13912 struct remote_state *rs = get_remote_state ();
13913 char *buf = rs->buf.data ();
13914 char *endbuf = buf + get_remote_packet_size ();
13915 enum packet_result result;
13916
13917 gdb_assert (val >= 0 || val == -1);
13918 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13919 /* Send -1 as literal "-1" to avoid host size dependency. */
13920 if (val < 0)
13921 {
13922 *buf++ = '-';
13923 buf += hexnumstr (buf, (ULONGEST) -val);
13924 }
13925 else
13926 buf += hexnumstr (buf, (ULONGEST) val);
13927
13928 putpkt (rs->buf);
13929 remote_get_noisy_reply ();
13930 result = packet_ok (rs->buf,
13931 &remote_protocol_packets[PACKET_QTBuffer_size]);
13932
13933 if (result != PACKET_OK)
13934 warning (_("Bogus reply from target: %s"), rs->buf.data ());
13935 }
13936 }
13937
13938 bool
13939 remote_target::set_trace_notes (const char *user, const char *notes,
13940 const char *stop_notes)
13941 {
13942 struct remote_state *rs = get_remote_state ();
13943 char *reply;
13944 char *buf = rs->buf.data ();
13945 char *endbuf = buf + get_remote_packet_size ();
13946 int nbytes;
13947
13948 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13949 if (user)
13950 {
13951 buf += xsnprintf (buf, endbuf - buf, "user:");
13952 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13953 buf += 2 * nbytes;
13954 *buf++ = ';';
13955 }
13956 if (notes)
13957 {
13958 buf += xsnprintf (buf, endbuf - buf, "notes:");
13959 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13960 buf += 2 * nbytes;
13961 *buf++ = ';';
13962 }
13963 if (stop_notes)
13964 {
13965 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13966 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13967 buf += 2 * nbytes;
13968 *buf++ = ';';
13969 }
13970 /* Ensure the buffer is terminated. */
13971 *buf = '\0';
13972
13973 putpkt (rs->buf);
13974 reply = remote_get_noisy_reply ();
13975 if (*reply == '\0')
13976 return false;
13977
13978 if (strcmp (reply, "OK") != 0)
13979 error (_("Bogus reply from target: %s"), reply);
13980
13981 return true;
13982 }
13983
13984 bool
13985 remote_target::use_agent (bool use)
13986 {
13987 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13988 {
13989 struct remote_state *rs = get_remote_state ();
13990
13991 /* If the stub supports QAgent. */
13992 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13993 putpkt (rs->buf);
13994 getpkt (&rs->buf, 0);
13995
13996 if (strcmp (rs->buf.data (), "OK") == 0)
13997 {
13998 ::use_agent = use;
13999 return true;
14000 }
14001 }
14002
14003 return false;
14004 }
14005
14006 bool
14007 remote_target::can_use_agent ()
14008 {
14009 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
14010 }
14011
14012 struct btrace_target_info
14013 {
14014 /* The ptid of the traced thread. */
14015 ptid_t ptid;
14016
14017 /* The obtained branch trace configuration. */
14018 struct btrace_config conf;
14019 };
14020
14021 /* Reset our idea of our target's btrace configuration. */
14022
14023 static void
14024 remote_btrace_reset (remote_state *rs)
14025 {
14026 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
14027 }
14028
14029 /* Synchronize the configuration with the target. */
14030
14031 void
14032 remote_target::btrace_sync_conf (const btrace_config *conf)
14033 {
14034 struct packet_config *packet;
14035 struct remote_state *rs;
14036 char *buf, *pos, *endbuf;
14037
14038 rs = get_remote_state ();
14039 buf = rs->buf.data ();
14040 endbuf = buf + get_remote_packet_size ();
14041
14042 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
14043 if (packet_config_support (packet) == PACKET_ENABLE
14044 && conf->bts.size != rs->btrace_config.bts.size)
14045 {
14046 pos = buf;
14047 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14048 conf->bts.size);
14049
14050 putpkt (buf);
14051 getpkt (&rs->buf, 0);
14052
14053 if (packet_ok (buf, packet) == PACKET_ERROR)
14054 {
14055 if (buf[0] == 'E' && buf[1] == '.')
14056 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
14057 else
14058 error (_("Failed to configure the BTS buffer size."));
14059 }
14060
14061 rs->btrace_config.bts.size = conf->bts.size;
14062 }
14063
14064 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
14065 if (packet_config_support (packet) == PACKET_ENABLE
14066 && conf->pt.size != rs->btrace_config.pt.size)
14067 {
14068 pos = buf;
14069 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14070 conf->pt.size);
14071
14072 putpkt (buf);
14073 getpkt (&rs->buf, 0);
14074
14075 if (packet_ok (buf, packet) == PACKET_ERROR)
14076 {
14077 if (buf[0] == 'E' && buf[1] == '.')
14078 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
14079 else
14080 error (_("Failed to configure the trace buffer size."));
14081 }
14082
14083 rs->btrace_config.pt.size = conf->pt.size;
14084 }
14085 }
14086
14087 /* Read the current thread's btrace configuration from the target and
14088 store it into CONF. */
14089
14090 static void
14091 btrace_read_config (struct btrace_config *conf)
14092 {
14093 gdb::optional<gdb::char_vector> xml
14094 = target_read_stralloc (current_inferior ()->top_target (),
14095 TARGET_OBJECT_BTRACE_CONF, "");
14096 if (xml)
14097 parse_xml_btrace_conf (conf, xml->data ());
14098 }
14099
14100 /* Maybe reopen target btrace. */
14101
14102 void
14103 remote_target::remote_btrace_maybe_reopen ()
14104 {
14105 struct remote_state *rs = get_remote_state ();
14106 int btrace_target_pushed = 0;
14107 #if !defined (HAVE_LIBIPT)
14108 int warned = 0;
14109 #endif
14110
14111 /* Don't bother walking the entirety of the remote thread list when
14112 we know the feature isn't supported by the remote. */
14113 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
14114 return;
14115
14116 scoped_restore_current_thread restore_thread;
14117
14118 for (thread_info *tp : all_non_exited_threads (this))
14119 {
14120 set_general_thread (tp->ptid);
14121
14122 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
14123 btrace_read_config (&rs->btrace_config);
14124
14125 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
14126 continue;
14127
14128 #if !defined (HAVE_LIBIPT)
14129 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
14130 {
14131 if (!warned)
14132 {
14133 warned = 1;
14134 warning (_("Target is recording using Intel Processor Trace "
14135 "but support was disabled at compile time."));
14136 }
14137
14138 continue;
14139 }
14140 #endif /* !defined (HAVE_LIBIPT) */
14141
14142 /* Push target, once, but before anything else happens. This way our
14143 changes to the threads will be cleaned up by unpushing the target
14144 in case btrace_read_config () throws. */
14145 if (!btrace_target_pushed)
14146 {
14147 btrace_target_pushed = 1;
14148 record_btrace_push_target ();
14149 printf_filtered (_("Target is recording using %s.\n"),
14150 btrace_format_string (rs->btrace_config.format));
14151 }
14152
14153 tp->btrace.target = XCNEW (struct btrace_target_info);
14154 tp->btrace.target->ptid = tp->ptid;
14155 tp->btrace.target->conf = rs->btrace_config;
14156 }
14157 }
14158
14159 /* Enable branch tracing. */
14160
14161 struct btrace_target_info *
14162 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
14163 {
14164 struct btrace_target_info *tinfo = NULL;
14165 struct packet_config *packet = NULL;
14166 struct remote_state *rs = get_remote_state ();
14167 char *buf = rs->buf.data ();
14168 char *endbuf = buf + get_remote_packet_size ();
14169
14170 switch (conf->format)
14171 {
14172 case BTRACE_FORMAT_BTS:
14173 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14174 break;
14175
14176 case BTRACE_FORMAT_PT:
14177 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14178 break;
14179 }
14180
14181 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
14182 error (_("Target does not support branch tracing."));
14183
14184 btrace_sync_conf (conf);
14185
14186 set_general_thread (ptid);
14187
14188 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14189 putpkt (rs->buf);
14190 getpkt (&rs->buf, 0);
14191
14192 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14193 {
14194 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14195 error (_("Could not enable branch tracing for %s: %s"),
14196 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
14197 else
14198 error (_("Could not enable branch tracing for %s."),
14199 target_pid_to_str (ptid).c_str ());
14200 }
14201
14202 tinfo = XCNEW (struct btrace_target_info);
14203 tinfo->ptid = ptid;
14204
14205 /* If we fail to read the configuration, we lose some information, but the
14206 tracing itself is not impacted. */
14207 try
14208 {
14209 btrace_read_config (&tinfo->conf);
14210 }
14211 catch (const gdb_exception_error &err)
14212 {
14213 if (err.message != NULL)
14214 warning ("%s", err.what ());
14215 }
14216
14217 return tinfo;
14218 }
14219
14220 /* Disable branch tracing. */
14221
14222 void
14223 remote_target::disable_btrace (struct btrace_target_info *tinfo)
14224 {
14225 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14226 struct remote_state *rs = get_remote_state ();
14227 char *buf = rs->buf.data ();
14228 char *endbuf = buf + get_remote_packet_size ();
14229
14230 if (packet_config_support (packet) != PACKET_ENABLE)
14231 error (_("Target does not support branch tracing."));
14232
14233 set_general_thread (tinfo->ptid);
14234
14235 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14236 putpkt (rs->buf);
14237 getpkt (&rs->buf, 0);
14238
14239 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14240 {
14241 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14242 error (_("Could not disable branch tracing for %s: %s"),
14243 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
14244 else
14245 error (_("Could not disable branch tracing for %s."),
14246 target_pid_to_str (tinfo->ptid).c_str ());
14247 }
14248
14249 xfree (tinfo);
14250 }
14251
14252 /* Teardown branch tracing. */
14253
14254 void
14255 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
14256 {
14257 /* We must not talk to the target during teardown. */
14258 xfree (tinfo);
14259 }
14260
14261 /* Read the branch trace. */
14262
14263 enum btrace_error
14264 remote_target::read_btrace (struct btrace_data *btrace,
14265 struct btrace_target_info *tinfo,
14266 enum btrace_read_type type)
14267 {
14268 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
14269 const char *annex;
14270
14271 if (packet_config_support (packet) != PACKET_ENABLE)
14272 error (_("Target does not support branch tracing."));
14273
14274 #if !defined(HAVE_LIBEXPAT)
14275 error (_("Cannot process branch tracing result. XML parsing not supported."));
14276 #endif
14277
14278 switch (type)
14279 {
14280 case BTRACE_READ_ALL:
14281 annex = "all";
14282 break;
14283 case BTRACE_READ_NEW:
14284 annex = "new";
14285 break;
14286 case BTRACE_READ_DELTA:
14287 annex = "delta";
14288 break;
14289 default:
14290 internal_error (__FILE__, __LINE__,
14291 _("Bad branch tracing read type: %u."),
14292 (unsigned int) type);
14293 }
14294
14295 gdb::optional<gdb::char_vector> xml
14296 = target_read_stralloc (current_inferior ()->top_target (),
14297 TARGET_OBJECT_BTRACE, annex);
14298 if (!xml)
14299 return BTRACE_ERR_UNKNOWN;
14300
14301 parse_xml_btrace (btrace, xml->data ());
14302
14303 return BTRACE_ERR_NONE;
14304 }
14305
14306 const struct btrace_config *
14307 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
14308 {
14309 return &tinfo->conf;
14310 }
14311
14312 bool
14313 remote_target::augmented_libraries_svr4_read ()
14314 {
14315 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14316 == PACKET_ENABLE);
14317 }
14318
14319 /* Implementation of to_load. */
14320
14321 void
14322 remote_target::load (const char *name, int from_tty)
14323 {
14324 generic_load (name, from_tty);
14325 }
14326
14327 /* Accepts an integer PID; returns a string representing a file that
14328 can be opened on the remote side to get the symbols for the child
14329 process. Returns NULL if the operation is not supported. */
14330
14331 char *
14332 remote_target::pid_to_exec_file (int pid)
14333 {
14334 static gdb::optional<gdb::char_vector> filename;
14335 char *annex = NULL;
14336
14337 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14338 return NULL;
14339
14340 inferior *inf = find_inferior_pid (this, pid);
14341 if (inf == NULL)
14342 internal_error (__FILE__, __LINE__,
14343 _("not currently attached to process %d"), pid);
14344
14345 if (!inf->fake_pid_p)
14346 {
14347 const int annex_size = 9;
14348
14349 annex = (char *) alloca (annex_size);
14350 xsnprintf (annex, annex_size, "%x", pid);
14351 }
14352
14353 filename = target_read_stralloc (current_inferior ()->top_target (),
14354 TARGET_OBJECT_EXEC_FILE, annex);
14355
14356 return filename ? filename->data () : nullptr;
14357 }
14358
14359 /* Implement the to_can_do_single_step target_ops method. */
14360
14361 int
14362 remote_target::can_do_single_step ()
14363 {
14364 /* We can only tell whether target supports single step or not by
14365 supported s and S vCont actions if the stub supports vContSupported
14366 feature. If the stub doesn't support vContSupported feature,
14367 we have conservatively to think target doesn't supports single
14368 step. */
14369 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14370 {
14371 struct remote_state *rs = get_remote_state ();
14372
14373 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14374 remote_vcont_probe ();
14375
14376 return rs->supports_vCont.s && rs->supports_vCont.S;
14377 }
14378 else
14379 return 0;
14380 }
14381
14382 /* Implementation of the to_execution_direction method for the remote
14383 target. */
14384
14385 enum exec_direction_kind
14386 remote_target::execution_direction ()
14387 {
14388 struct remote_state *rs = get_remote_state ();
14389
14390 return rs->last_resume_exec_dir;
14391 }
14392
14393 /* Return pointer to the thread_info struct which corresponds to
14394 THREAD_HANDLE (having length HANDLE_LEN). */
14395
14396 thread_info *
14397 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14398 int handle_len,
14399 inferior *inf)
14400 {
14401 for (thread_info *tp : all_non_exited_threads (this))
14402 {
14403 remote_thread_info *priv = get_remote_thread_info (tp);
14404
14405 if (tp->inf == inf && priv != NULL)
14406 {
14407 if (handle_len != priv->thread_handle.size ())
14408 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14409 handle_len, priv->thread_handle.size ());
14410 if (memcmp (thread_handle, priv->thread_handle.data (),
14411 handle_len) == 0)
14412 return tp;
14413 }
14414 }
14415
14416 return NULL;
14417 }
14418
14419 gdb::byte_vector
14420 remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14421 {
14422 remote_thread_info *priv = get_remote_thread_info (tp);
14423 return priv->thread_handle;
14424 }
14425
14426 bool
14427 remote_target::can_async_p ()
14428 {
14429 /* This flag should be checked in the common target.c code. */
14430 gdb_assert (target_async_permitted);
14431
14432 /* We're async whenever the serial device can. */
14433 struct remote_state *rs = get_remote_state ();
14434 return serial_can_async_p (rs->remote_desc);
14435 }
14436
14437 bool
14438 remote_target::is_async_p ()
14439 {
14440 /* We're async whenever the serial device is. */
14441 struct remote_state *rs = get_remote_state ();
14442 return serial_is_async_p (rs->remote_desc);
14443 }
14444
14445 /* Pass the SERIAL event on and up to the client. One day this code
14446 will be able to delay notifying the client of an event until the
14447 point where an entire packet has been received. */
14448
14449 static serial_event_ftype remote_async_serial_handler;
14450
14451 static void
14452 remote_async_serial_handler (struct serial *scb, void *context)
14453 {
14454 /* Don't propogate error information up to the client. Instead let
14455 the client find out about the error by querying the target. */
14456 inferior_event_handler (INF_REG_EVENT);
14457 }
14458
14459 static void
14460 remote_async_inferior_event_handler (gdb_client_data data)
14461 {
14462 inferior_event_handler (INF_REG_EVENT);
14463 }
14464
14465 int
14466 remote_target::async_wait_fd ()
14467 {
14468 struct remote_state *rs = get_remote_state ();
14469 return rs->remote_desc->fd;
14470 }
14471
14472 void
14473 remote_target::async (int enable)
14474 {
14475 struct remote_state *rs = get_remote_state ();
14476
14477 if (enable)
14478 {
14479 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14480
14481 /* If there are pending events in the stop reply queue tell the
14482 event loop to process them. */
14483 if (!rs->stop_reply_queue.empty ())
14484 mark_async_event_handler (rs->remote_async_inferior_event_token);
14485 /* For simplicity, below we clear the pending events token
14486 without remembering whether it is marked, so here we always
14487 mark it. If there's actually no pending notification to
14488 process, this ends up being a no-op (other than a spurious
14489 event-loop wakeup). */
14490 if (target_is_non_stop_p ())
14491 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14492 }
14493 else
14494 {
14495 serial_async (rs->remote_desc, NULL, NULL);
14496 /* If the core is disabling async, it doesn't want to be
14497 disturbed with target events. Clear all async event sources
14498 too. */
14499 clear_async_event_handler (rs->remote_async_inferior_event_token);
14500 if (target_is_non_stop_p ())
14501 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14502 }
14503 }
14504
14505 /* Implementation of the to_thread_events method. */
14506
14507 void
14508 remote_target::thread_events (int enable)
14509 {
14510 struct remote_state *rs = get_remote_state ();
14511 size_t size = get_remote_packet_size ();
14512
14513 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14514 return;
14515
14516 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14517 putpkt (rs->buf);
14518 getpkt (&rs->buf, 0);
14519
14520 switch (packet_ok (rs->buf,
14521 &remote_protocol_packets[PACKET_QThreadEvents]))
14522 {
14523 case PACKET_OK:
14524 if (strcmp (rs->buf.data (), "OK") != 0)
14525 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14526 break;
14527 case PACKET_ERROR:
14528 warning (_("Remote failure reply: %s"), rs->buf.data ());
14529 break;
14530 case PACKET_UNKNOWN:
14531 break;
14532 }
14533 }
14534
14535 static void
14536 show_remote_cmd (const char *args, int from_tty)
14537 {
14538 /* We can't just use cmd_show_list here, because we want to skip
14539 the redundant "show remote Z-packet" and the legacy aliases. */
14540 struct cmd_list_element *list = remote_show_cmdlist;
14541 struct ui_out *uiout = current_uiout;
14542
14543 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14544 for (; list != NULL; list = list->next)
14545 if (strcmp (list->name, "Z-packet") == 0)
14546 continue;
14547 else if (list->type == not_set_cmd)
14548 /* Alias commands are exactly like the original, except they
14549 don't have the normal type. */
14550 continue;
14551 else
14552 {
14553 ui_out_emit_tuple option_emitter (uiout, "option");
14554
14555 uiout->field_string ("name", list->name);
14556 uiout->text (": ");
14557 if (list->type == show_cmd)
14558 do_show_command (NULL, from_tty, list);
14559 else
14560 cmd_func (list, NULL, from_tty);
14561 }
14562 }
14563
14564
14565 /* Function to be called whenever a new objfile (shlib) is detected. */
14566 static void
14567 remote_new_objfile (struct objfile *objfile)
14568 {
14569 remote_target *remote = get_current_remote_target ();
14570
14571 /* First, check whether the current inferior's process target is a remote
14572 target. */
14573 if (remote == nullptr)
14574 return;
14575
14576 /* When we are attaching or handling a fork child and the shared library
14577 subsystem reads the list of loaded libraries, we receive new objfile
14578 events in between each found library. The libraries are read in an
14579 undefined order, so if we gave the remote side a chance to look up
14580 symbols between each objfile, we might give it an inconsistent picture
14581 of the inferior. It could appear that a library A appears loaded but
14582 a library B does not, even though library A requires library B. That
14583 would present a state that couldn't normally exist in the inferior.
14584
14585 So, skip these events, we'll give the remote a chance to look up symbols
14586 once all the loaded libraries and their symbols are known to GDB. */
14587 if (current_inferior ()->in_initial_library_scan)
14588 return;
14589
14590 remote->remote_check_symbols ();
14591 }
14592
14593 /* Pull all the tracepoints defined on the target and create local
14594 data structures representing them. We don't want to create real
14595 tracepoints yet, we don't want to mess up the user's existing
14596 collection. */
14597
14598 int
14599 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14600 {
14601 struct remote_state *rs = get_remote_state ();
14602 char *p;
14603
14604 /* Ask for a first packet of tracepoint definition. */
14605 putpkt ("qTfP");
14606 getpkt (&rs->buf, 0);
14607 p = rs->buf.data ();
14608 while (*p && *p != 'l')
14609 {
14610 parse_tracepoint_definition (p, utpp);
14611 /* Ask for another packet of tracepoint definition. */
14612 putpkt ("qTsP");
14613 getpkt (&rs->buf, 0);
14614 p = rs->buf.data ();
14615 }
14616 return 0;
14617 }
14618
14619 int
14620 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14621 {
14622 struct remote_state *rs = get_remote_state ();
14623 char *p;
14624
14625 /* Ask for a first packet of variable definition. */
14626 putpkt ("qTfV");
14627 getpkt (&rs->buf, 0);
14628 p = rs->buf.data ();
14629 while (*p && *p != 'l')
14630 {
14631 parse_tsv_definition (p, utsvp);
14632 /* Ask for another packet of variable definition. */
14633 putpkt ("qTsV");
14634 getpkt (&rs->buf, 0);
14635 p = rs->buf.data ();
14636 }
14637 return 0;
14638 }
14639
14640 /* The "set/show range-stepping" show hook. */
14641
14642 static void
14643 show_range_stepping (struct ui_file *file, int from_tty,
14644 struct cmd_list_element *c,
14645 const char *value)
14646 {
14647 fprintf_filtered (file,
14648 _("Debugger's willingness to use range stepping "
14649 "is %s.\n"), value);
14650 }
14651
14652 /* Return true if the vCont;r action is supported by the remote
14653 stub. */
14654
14655 bool
14656 remote_target::vcont_r_supported ()
14657 {
14658 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14659 remote_vcont_probe ();
14660
14661 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14662 && get_remote_state ()->supports_vCont.r);
14663 }
14664
14665 /* The "set/show range-stepping" set hook. */
14666
14667 static void
14668 set_range_stepping (const char *ignore_args, int from_tty,
14669 struct cmd_list_element *c)
14670 {
14671 /* When enabling, check whether range stepping is actually supported
14672 by the target, and warn if not. */
14673 if (use_range_stepping)
14674 {
14675 remote_target *remote = get_current_remote_target ();
14676 if (remote == NULL
14677 || !remote->vcont_r_supported ())
14678 warning (_("Range stepping is not supported by the current target"));
14679 }
14680 }
14681
14682 static void
14683 show_remote_debug (struct ui_file *file, int from_tty,
14684 struct cmd_list_element *c, const char *value)
14685 {
14686 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14687 value);
14688 }
14689
14690 static void
14691 show_remote_timeout (struct ui_file *file, int from_tty,
14692 struct cmd_list_element *c, const char *value)
14693 {
14694 fprintf_filtered (file,
14695 _("Timeout limit to wait for target to respond is %s.\n"),
14696 value);
14697 }
14698
14699 /* Implement the "supports_memory_tagging" target_ops method. */
14700
14701 bool
14702 remote_target::supports_memory_tagging ()
14703 {
14704 return remote_memory_tagging_p ();
14705 }
14706
14707 /* Create the qMemTags packet given ADDRESS, LEN and TYPE. */
14708
14709 static void
14710 create_fetch_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14711 size_t len, int type)
14712 {
14713 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14714
14715 std::string request = string_printf ("qMemTags:%s,%s:%s",
14716 phex_nz (address, addr_size),
14717 phex_nz (len, sizeof (len)),
14718 phex_nz (type, sizeof (type)));
14719
14720 strcpy (packet.data (), request.c_str ());
14721 }
14722
14723 /* Parse the qMemTags packet reply into TAGS.
14724
14725 Return true if successful, false otherwise. */
14726
14727 static bool
14728 parse_fetch_memtags_reply (const gdb::char_vector &reply,
14729 gdb::byte_vector &tags)
14730 {
14731 if (reply.empty () || reply[0] == 'E' || reply[0] != 'm')
14732 return false;
14733
14734 /* Copy the tag data. */
14735 tags = hex2bin (reply.data () + 1);
14736
14737 return true;
14738 }
14739
14740 /* Create the QMemTags packet given ADDRESS, LEN, TYPE and TAGS. */
14741
14742 static void
14743 create_store_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14744 size_t len, int type,
14745 const gdb::byte_vector &tags)
14746 {
14747 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14748
14749 /* Put together the main packet, address and length. */
14750 std::string request = string_printf ("QMemTags:%s,%s:%s:",
14751 phex_nz (address, addr_size),
14752 phex_nz (len, sizeof (len)),
14753 phex_nz (type, sizeof (type)));
14754 request += bin2hex (tags.data (), tags.size ());
14755
14756 /* Check if we have exceeded the maximum packet size. */
14757 if (packet.size () < request.length ())
14758 error (_("Contents too big for packet QMemTags."));
14759
14760 strcpy (packet.data (), request.c_str ());
14761 }
14762
14763 /* Implement the "fetch_memtags" target_ops method. */
14764
14765 bool
14766 remote_target::fetch_memtags (CORE_ADDR address, size_t len,
14767 gdb::byte_vector &tags, int type)
14768 {
14769 /* Make sure the qMemTags packet is supported. */
14770 if (!remote_memory_tagging_p ())
14771 gdb_assert_not_reached ("remote fetch_memtags called with packet disabled");
14772
14773 struct remote_state *rs = get_remote_state ();
14774
14775 create_fetch_memtags_request (rs->buf, address, len, type);
14776
14777 putpkt (rs->buf);
14778 getpkt (&rs->buf, 0);
14779
14780 return parse_fetch_memtags_reply (rs->buf, tags);
14781 }
14782
14783 /* Implement the "store_memtags" target_ops method. */
14784
14785 bool
14786 remote_target::store_memtags (CORE_ADDR address, size_t len,
14787 const gdb::byte_vector &tags, int type)
14788 {
14789 /* Make sure the QMemTags packet is supported. */
14790 if (!remote_memory_tagging_p ())
14791 gdb_assert_not_reached ("remote store_memtags called with packet disabled");
14792
14793 struct remote_state *rs = get_remote_state ();
14794
14795 create_store_memtags_request (rs->buf, address, len, type, tags);
14796
14797 putpkt (rs->buf);
14798 getpkt (&rs->buf, 0);
14799
14800 /* Verify if the request was successful. */
14801 return packet_check_result (rs->buf.data ()) == PACKET_OK;
14802 }
14803
14804 /* Return true if remote target T is non-stop. */
14805
14806 bool
14807 remote_target_is_non_stop_p (remote_target *t)
14808 {
14809 scoped_restore_current_thread restore_thread;
14810 switch_to_target_no_thread (t);
14811
14812 return target_is_non_stop_p ();
14813 }
14814
14815 #if GDB_SELF_TEST
14816
14817 namespace selftests {
14818
14819 static void
14820 test_memory_tagging_functions ()
14821 {
14822 remote_target remote;
14823
14824 struct packet_config *config
14825 = &remote_protocol_packets[PACKET_memory_tagging_feature];
14826
14827 scoped_restore restore_memtag_support_
14828 = make_scoped_restore (&config->support);
14829
14830 /* Test memory tagging packet support. */
14831 config->support = PACKET_SUPPORT_UNKNOWN;
14832 SELF_CHECK (remote.supports_memory_tagging () == false);
14833 config->support = PACKET_DISABLE;
14834 SELF_CHECK (remote.supports_memory_tagging () == false);
14835 config->support = PACKET_ENABLE;
14836 SELF_CHECK (remote.supports_memory_tagging () == true);
14837
14838 /* Setup testing. */
14839 gdb::char_vector packet;
14840 gdb::byte_vector tags, bv;
14841 std::string expected, reply;
14842 packet.resize (32000);
14843
14844 /* Test creating a qMemTags request. */
14845
14846 expected = "qMemTags:0,0:0";
14847 create_fetch_memtags_request (packet, 0x0, 0x0, 0);
14848 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14849
14850 expected = "qMemTags:deadbeef,10:1";
14851 create_fetch_memtags_request (packet, 0xdeadbeef, 16, 1);
14852 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14853
14854 /* Test parsing a qMemTags reply. */
14855
14856 /* Error reply, tags vector unmodified. */
14857 reply = "E00";
14858 strcpy (packet.data (), reply.c_str ());
14859 tags.resize (0);
14860 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == false);
14861 SELF_CHECK (tags.size () == 0);
14862
14863 /* Valid reply, tags vector updated. */
14864 tags.resize (0);
14865 bv.resize (0);
14866
14867 for (int i = 0; i < 5; i++)
14868 bv.push_back (i);
14869
14870 reply = "m" + bin2hex (bv.data (), bv.size ());
14871 strcpy (packet.data (), reply.c_str ());
14872
14873 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == true);
14874 SELF_CHECK (tags.size () == 5);
14875
14876 for (int i = 0; i < 5; i++)
14877 SELF_CHECK (tags[i] == i);
14878
14879 /* Test creating a QMemTags request. */
14880
14881 /* Empty tag data. */
14882 tags.resize (0);
14883 expected = "QMemTags:0,0:0:";
14884 create_store_memtags_request (packet, 0x0, 0x0, 0, tags);
14885 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14886 expected.length ()) == 0);
14887
14888 /* Non-empty tag data. */
14889 tags.resize (0);
14890 for (int i = 0; i < 5; i++)
14891 tags.push_back (i);
14892 expected = "QMemTags:deadbeef,ff:1:0001020304";
14893 create_store_memtags_request (packet, 0xdeadbeef, 255, 1, tags);
14894 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14895 expected.length ()) == 0);
14896 }
14897
14898 } // namespace selftests
14899 #endif /* GDB_SELF_TEST */
14900
14901 void _initialize_remote ();
14902 void
14903 _initialize_remote ()
14904 {
14905 /* architecture specific data */
14906 remote_g_packet_data_handle =
14907 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14908
14909 add_target (remote_target_info, remote_target::open);
14910 add_target (extended_remote_target_info, extended_remote_target::open);
14911
14912 /* Hook into new objfile notification. */
14913 gdb::observers::new_objfile.attach (remote_new_objfile, "remote");
14914
14915 #if 0
14916 init_remote_threadtests ();
14917 #endif
14918
14919 /* set/show remote ... */
14920
14921 add_basic_prefix_cmd ("remote", class_maintenance, _("\
14922 Remote protocol specific variables.\n\
14923 Configure various remote-protocol specific variables such as\n\
14924 the packets being used."),
14925 &remote_set_cmdlist,
14926 0 /* allow-unknown */, &setlist);
14927 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14928 Remote protocol specific variables.\n\
14929 Configure various remote-protocol specific variables such as\n\
14930 the packets being used."),
14931 &remote_show_cmdlist,
14932 0 /* allow-unknown */, &showlist);
14933
14934 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14935 Compare section data on target to the exec file.\n\
14936 Argument is a single section name (default: all loaded sections).\n\
14937 To compare only read-only loaded sections, specify the -r option."),
14938 &cmdlist);
14939
14940 add_cmd ("packet", class_maintenance, cli_packet_command, _("\
14941 Send an arbitrary packet to a remote target.\n\
14942 maintenance packet TEXT\n\
14943 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14944 this command sends the string TEXT to the inferior, and displays the\n\
14945 response packet. GDB supplies the initial `$' character, and the\n\
14946 terminating `#' character and checksum."),
14947 &maintenancelist);
14948
14949 set_show_commands remotebreak_cmds
14950 = add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14951 Set whether to send break if interrupted."), _("\
14952 Show whether to send break if interrupted."), _("\
14953 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14954 set_remotebreak, show_remotebreak,
14955 &setlist, &showlist);
14956 deprecate_cmd (remotebreak_cmds.set, "set remote interrupt-sequence");
14957 deprecate_cmd (remotebreak_cmds.show, "show remote interrupt-sequence");
14958
14959 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14960 interrupt_sequence_modes, &interrupt_sequence_mode,
14961 _("\
14962 Set interrupt sequence to remote target."), _("\
14963 Show interrupt sequence to remote target."), _("\
14964 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14965 NULL, show_interrupt_sequence,
14966 &remote_set_cmdlist,
14967 &remote_show_cmdlist);
14968
14969 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14970 &interrupt_on_connect, _("\
14971 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14972 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14973 If set, interrupt sequence is sent to remote target."),
14974 NULL, NULL,
14975 &remote_set_cmdlist, &remote_show_cmdlist);
14976
14977 /* Install commands for configuring memory read/write packets. */
14978
14979 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14980 Set the maximum number of bytes per memory write packet (deprecated)."),
14981 &setlist);
14982 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14983 Show the maximum number of bytes per memory write packet (deprecated)."),
14984 &showlist);
14985 add_cmd ("memory-write-packet-size", no_class,
14986 set_memory_write_packet_size, _("\
14987 Set the maximum number of bytes per memory-write packet.\n\
14988 Specify the number of bytes in a packet or 0 (zero) for the\n\
14989 default packet size. The actual limit is further reduced\n\
14990 dependent on the target. Specify ``fixed'' to disable the\n\
14991 further restriction and ``limit'' to enable that restriction."),
14992 &remote_set_cmdlist);
14993 add_cmd ("memory-read-packet-size", no_class,
14994 set_memory_read_packet_size, _("\
14995 Set the maximum number of bytes per memory-read packet.\n\
14996 Specify the number of bytes in a packet or 0 (zero) for the\n\
14997 default packet size. The actual limit is further reduced\n\
14998 dependent on the target. Specify ``fixed'' to disable the\n\
14999 further restriction and ``limit'' to enable that restriction."),
15000 &remote_set_cmdlist);
15001 add_cmd ("memory-write-packet-size", no_class,
15002 show_memory_write_packet_size,
15003 _("Show the maximum number of bytes per memory-write packet."),
15004 &remote_show_cmdlist);
15005 add_cmd ("memory-read-packet-size", no_class,
15006 show_memory_read_packet_size,
15007 _("Show the maximum number of bytes per memory-read packet."),
15008 &remote_show_cmdlist);
15009
15010 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
15011 &remote_hw_watchpoint_limit, _("\
15012 Set the maximum number of target hardware watchpoints."), _("\
15013 Show the maximum number of target hardware watchpoints."), _("\
15014 Specify \"unlimited\" for unlimited hardware watchpoints."),
15015 NULL, show_hardware_watchpoint_limit,
15016 &remote_set_cmdlist,
15017 &remote_show_cmdlist);
15018 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
15019 no_class,
15020 &remote_hw_watchpoint_length_limit, _("\
15021 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
15022 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
15023 Specify \"unlimited\" to allow watchpoints of unlimited size."),
15024 NULL, show_hardware_watchpoint_length_limit,
15025 &remote_set_cmdlist, &remote_show_cmdlist);
15026 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
15027 &remote_hw_breakpoint_limit, _("\
15028 Set the maximum number of target hardware breakpoints."), _("\
15029 Show the maximum number of target hardware breakpoints."), _("\
15030 Specify \"unlimited\" for unlimited hardware breakpoints."),
15031 NULL, show_hardware_breakpoint_limit,
15032 &remote_set_cmdlist, &remote_show_cmdlist);
15033
15034 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
15035 &remote_address_size, _("\
15036 Set the maximum size of the address (in bits) in a memory packet."), _("\
15037 Show the maximum size of the address (in bits) in a memory packet."), NULL,
15038 NULL,
15039 NULL, /* FIXME: i18n: */
15040 &setlist, &showlist);
15041
15042 init_all_packet_configs ();
15043
15044 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
15045 "X", "binary-download", 1);
15046
15047 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
15048 "vCont", "verbose-resume", 0);
15049
15050 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
15051 "QPassSignals", "pass-signals", 0);
15052
15053 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
15054 "QCatchSyscalls", "catch-syscalls", 0);
15055
15056 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
15057 "QProgramSignals", "program-signals", 0);
15058
15059 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
15060 "QSetWorkingDir", "set-working-dir", 0);
15061
15062 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
15063 "QStartupWithShell", "startup-with-shell", 0);
15064
15065 add_packet_config_cmd (&remote_protocol_packets
15066 [PACKET_QEnvironmentHexEncoded],
15067 "QEnvironmentHexEncoded", "environment-hex-encoded",
15068 0);
15069
15070 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
15071 "QEnvironmentReset", "environment-reset",
15072 0);
15073
15074 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
15075 "QEnvironmentUnset", "environment-unset",
15076 0);
15077
15078 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
15079 "qSymbol", "symbol-lookup", 0);
15080
15081 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
15082 "P", "set-register", 1);
15083
15084 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
15085 "p", "fetch-register", 1);
15086
15087 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
15088 "Z0", "software-breakpoint", 0);
15089
15090 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
15091 "Z1", "hardware-breakpoint", 0);
15092
15093 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
15094 "Z2", "write-watchpoint", 0);
15095
15096 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
15097 "Z3", "read-watchpoint", 0);
15098
15099 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
15100 "Z4", "access-watchpoint", 0);
15101
15102 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
15103 "qXfer:auxv:read", "read-aux-vector", 0);
15104
15105 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
15106 "qXfer:exec-file:read", "pid-to-exec-file", 0);
15107
15108 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
15109 "qXfer:features:read", "target-features", 0);
15110
15111 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
15112 "qXfer:libraries:read", "library-info", 0);
15113
15114 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
15115 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
15116
15117 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
15118 "qXfer:memory-map:read", "memory-map", 0);
15119
15120 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
15121 "qXfer:osdata:read", "osdata", 0);
15122
15123 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
15124 "qXfer:threads:read", "threads", 0);
15125
15126 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
15127 "qXfer:siginfo:read", "read-siginfo-object", 0);
15128
15129 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
15130 "qXfer:siginfo:write", "write-siginfo-object", 0);
15131
15132 add_packet_config_cmd
15133 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
15134 "qXfer:traceframe-info:read", "traceframe-info", 0);
15135
15136 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
15137 "qXfer:uib:read", "unwind-info-block", 0);
15138
15139 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
15140 "qGetTLSAddr", "get-thread-local-storage-address",
15141 0);
15142
15143 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
15144 "qGetTIBAddr", "get-thread-information-block-address",
15145 0);
15146
15147 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
15148 "bc", "reverse-continue", 0);
15149
15150 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
15151 "bs", "reverse-step", 0);
15152
15153 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
15154 "qSupported", "supported-packets", 0);
15155
15156 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
15157 "qSearch:memory", "search-memory", 0);
15158
15159 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
15160 "qTStatus", "trace-status", 0);
15161
15162 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
15163 "vFile:setfs", "hostio-setfs", 0);
15164
15165 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
15166 "vFile:open", "hostio-open", 0);
15167
15168 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
15169 "vFile:pread", "hostio-pread", 0);
15170
15171 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
15172 "vFile:pwrite", "hostio-pwrite", 0);
15173
15174 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
15175 "vFile:close", "hostio-close", 0);
15176
15177 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
15178 "vFile:unlink", "hostio-unlink", 0);
15179
15180 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
15181 "vFile:readlink", "hostio-readlink", 0);
15182
15183 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
15184 "vFile:fstat", "hostio-fstat", 0);
15185
15186 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
15187 "vAttach", "attach", 0);
15188
15189 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
15190 "vRun", "run", 0);
15191
15192 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
15193 "QStartNoAckMode", "noack", 0);
15194
15195 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
15196 "vKill", "kill", 0);
15197
15198 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
15199 "qAttached", "query-attached", 0);
15200
15201 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
15202 "ConditionalTracepoints",
15203 "conditional-tracepoints", 0);
15204
15205 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
15206 "ConditionalBreakpoints",
15207 "conditional-breakpoints", 0);
15208
15209 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
15210 "BreakpointCommands",
15211 "breakpoint-commands", 0);
15212
15213 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
15214 "FastTracepoints", "fast-tracepoints", 0);
15215
15216 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
15217 "TracepointSource", "TracepointSource", 0);
15218
15219 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
15220 "QAllow", "allow", 0);
15221
15222 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
15223 "StaticTracepoints", "static-tracepoints", 0);
15224
15225 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
15226 "InstallInTrace", "install-in-trace", 0);
15227
15228 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
15229 "qXfer:statictrace:read", "read-sdata-object", 0);
15230
15231 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
15232 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
15233
15234 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
15235 "QDisableRandomization", "disable-randomization", 0);
15236
15237 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
15238 "QAgent", "agent", 0);
15239
15240 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
15241 "QTBuffer:size", "trace-buffer-size", 0);
15242
15243 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
15244 "Qbtrace:off", "disable-btrace", 0);
15245
15246 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
15247 "Qbtrace:bts", "enable-btrace-bts", 0);
15248
15249 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
15250 "Qbtrace:pt", "enable-btrace-pt", 0);
15251
15252 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
15253 "qXfer:btrace", "read-btrace", 0);
15254
15255 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
15256 "qXfer:btrace-conf", "read-btrace-conf", 0);
15257
15258 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
15259 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
15260
15261 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
15262 "multiprocess-feature", "multiprocess-feature", 0);
15263
15264 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
15265 "swbreak-feature", "swbreak-feature", 0);
15266
15267 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
15268 "hwbreak-feature", "hwbreak-feature", 0);
15269
15270 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
15271 "fork-event-feature", "fork-event-feature", 0);
15272
15273 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
15274 "vfork-event-feature", "vfork-event-feature", 0);
15275
15276 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
15277 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
15278
15279 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
15280 "vContSupported", "verbose-resume-supported", 0);
15281
15282 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
15283 "exec-event-feature", "exec-event-feature", 0);
15284
15285 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
15286 "vCtrlC", "ctrl-c", 0);
15287
15288 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
15289 "QThreadEvents", "thread-events", 0);
15290
15291 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
15292 "N stop reply", "no-resumed-stop-reply", 0);
15293
15294 add_packet_config_cmd (&remote_protocol_packets[PACKET_memory_tagging_feature],
15295 "memory-tagging-feature", "memory-tagging-feature", 0);
15296
15297 /* Assert that we've registered "set remote foo-packet" commands
15298 for all packet configs. */
15299 {
15300 int i;
15301
15302 for (i = 0; i < PACKET_MAX; i++)
15303 {
15304 /* Ideally all configs would have a command associated. Some
15305 still don't though. */
15306 int excepted;
15307
15308 switch (i)
15309 {
15310 case PACKET_QNonStop:
15311 case PACKET_EnableDisableTracepoints_feature:
15312 case PACKET_tracenz_feature:
15313 case PACKET_DisconnectedTracing_feature:
15314 case PACKET_augmented_libraries_svr4_read_feature:
15315 case PACKET_qCRC:
15316 /* Additions to this list need to be well justified:
15317 pre-existing packets are OK; new packets are not. */
15318 excepted = 1;
15319 break;
15320 default:
15321 excepted = 0;
15322 break;
15323 }
15324
15325 /* This catches both forgetting to add a config command, and
15326 forgetting to remove a packet from the exception list. */
15327 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
15328 }
15329 }
15330
15331 /* Keep the old ``set remote Z-packet ...'' working. Each individual
15332 Z sub-packet has its own set and show commands, but users may
15333 have sets to this variable in their .gdbinit files (or in their
15334 documentation). */
15335 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
15336 &remote_Z_packet_detect, _("\
15337 Set use of remote protocol `Z' packets."), _("\
15338 Show use of remote protocol `Z' packets."), _("\
15339 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
15340 packets."),
15341 set_remote_protocol_Z_packet_cmd,
15342 show_remote_protocol_Z_packet_cmd,
15343 /* FIXME: i18n: Use of remote protocol
15344 `Z' packets is %s. */
15345 &remote_set_cmdlist, &remote_show_cmdlist);
15346
15347 add_basic_prefix_cmd ("remote", class_files, _("\
15348 Manipulate files on the remote system.\n\
15349 Transfer files to and from the remote target system."),
15350 &remote_cmdlist,
15351 0 /* allow-unknown */, &cmdlist);
15352
15353 add_cmd ("put", class_files, remote_put_command,
15354 _("Copy a local file to the remote system."),
15355 &remote_cmdlist);
15356
15357 add_cmd ("get", class_files, remote_get_command,
15358 _("Copy a remote file to the local system."),
15359 &remote_cmdlist);
15360
15361 add_cmd ("delete", class_files, remote_delete_command,
15362 _("Delete a remote file."),
15363 &remote_cmdlist);
15364
15365 add_setshow_string_noescape_cmd ("exec-file", class_files,
15366 &remote_exec_file_var, _("\
15367 Set the remote pathname for \"run\"."), _("\
15368 Show the remote pathname for \"run\"."), NULL,
15369 set_remote_exec_file,
15370 show_remote_exec_file,
15371 &remote_set_cmdlist,
15372 &remote_show_cmdlist);
15373
15374 add_setshow_boolean_cmd ("range-stepping", class_run,
15375 &use_range_stepping, _("\
15376 Enable or disable range stepping."), _("\
15377 Show whether target-assisted range stepping is enabled."), _("\
15378 If on, and the target supports it, when stepping a source line, GDB\n\
15379 tells the target to step the corresponding range of addresses itself instead\n\
15380 of issuing multiple single-steps. This speeds up source level\n\
15381 stepping. If off, GDB always issues single-steps, even if range\n\
15382 stepping is supported by the target. The default is on."),
15383 set_range_stepping,
15384 show_range_stepping,
15385 &setlist,
15386 &showlist);
15387
15388 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15389 Set watchdog timer."), _("\
15390 Show watchdog timer."), _("\
15391 When non-zero, this timeout is used instead of waiting forever for a target\n\
15392 to finish a low-level step or continue operation. If the specified amount\n\
15393 of time passes without a response from the target, an error occurs."),
15394 NULL,
15395 show_watchdog,
15396 &setlist, &showlist);
15397
15398 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15399 &remote_packet_max_chars, _("\
15400 Set the maximum number of characters to display for each remote packet."), _("\
15401 Show the maximum number of characters to display for each remote packet."), _("\
15402 Specify \"unlimited\" to display all the characters."),
15403 NULL, show_remote_packet_max_chars,
15404 &setdebuglist, &showdebuglist);
15405
15406 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15407 _("Set debugging of remote protocol."),
15408 _("Show debugging of remote protocol."),
15409 _("\
15410 When enabled, each packet sent or received with the remote target\n\
15411 is displayed."),
15412 NULL,
15413 show_remote_debug,
15414 &setdebuglist, &showdebuglist);
15415
15416 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15417 &remote_timeout, _("\
15418 Set timeout limit to wait for target to respond."), _("\
15419 Show timeout limit to wait for target to respond."), _("\
15420 This value is used to set the time limit for gdb to wait for a response\n\
15421 from the target."),
15422 NULL,
15423 show_remote_timeout,
15424 &setlist, &showlist);
15425
15426 /* Eventually initialize fileio. See fileio.c */
15427 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
15428
15429 #if GDB_SELF_TEST
15430 selftests::register_test ("remote_memory_tagging",
15431 selftests::test_memory_tagging_functions);
15432 #endif
15433 }