Replace some more qsort calls with std::sort
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2019 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* See the GDB User Guide for details of the GDB remote protocol. */
21
22 #include "defs.h"
23 #include <ctype.h>
24 #include <fcntl.h>
25 #include "inferior.h"
26 #include "infrun.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "target.h"
30 #include "process-stratum-target.h"
31 #include "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 "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" /* for exec_bfd */
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 <algorithm>
79 #include <unordered_map>
80
81 /* The remote target. */
82
83 static const char remote_doc[] = N_("\
84 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85 Specify the serial device it is connected to\n\
86 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87
88 #define OPAQUETHREADBYTES 8
89
90 /* a 64 bit opaque identifier */
91 typedef unsigned char threadref[OPAQUETHREADBYTES];
92
93 struct gdb_ext_thread_info;
94 struct threads_listing_context;
95 typedef int (*rmt_thread_action) (threadref *ref, void *context);
96 struct protocol_feature;
97 struct packet_reg;
98
99 struct stop_reply;
100 typedef std::unique_ptr<stop_reply> stop_reply_up;
101
102 /* Generic configuration support for packets the stub optionally
103 supports. Allows the user to specify the use of the packet as well
104 as allowing GDB to auto-detect support in the remote stub. */
105
106 enum packet_support
107 {
108 PACKET_SUPPORT_UNKNOWN = 0,
109 PACKET_ENABLE,
110 PACKET_DISABLE
111 };
112
113 /* Analyze a packet's return value and update the packet config
114 accordingly. */
115
116 enum packet_result
117 {
118 PACKET_ERROR,
119 PACKET_OK,
120 PACKET_UNKNOWN
121 };
122
123 struct threads_listing_context;
124
125 /* Stub vCont actions support.
126
127 Each field is a boolean flag indicating whether the stub reports
128 support for the corresponding action. */
129
130 struct vCont_action_support
131 {
132 /* vCont;t */
133 bool t = false;
134
135 /* vCont;r */
136 bool r = false;
137
138 /* vCont;s */
139 bool s = false;
140
141 /* vCont;S */
142 bool S = false;
143 };
144
145 /* About this many threadids fit in a packet. */
146
147 #define MAXTHREADLISTRESULTS 32
148
149 /* Data for the vFile:pread readahead cache. */
150
151 struct readahead_cache
152 {
153 /* Invalidate the readahead cache. */
154 void invalidate ();
155
156 /* Invalidate the readahead cache if it is holding data for FD. */
157 void invalidate_fd (int fd);
158
159 /* Serve pread from the readahead cache. Returns number of bytes
160 read, or 0 if the request can't be served from the cache. */
161 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
162
163 /* The file descriptor for the file that is being cached. -1 if the
164 cache is invalid. */
165 int fd = -1;
166
167 /* The offset into the file that the cache buffer corresponds
168 to. */
169 ULONGEST offset = 0;
170
171 /* The buffer holding the cache contents. */
172 gdb_byte *buf = nullptr;
173 /* The buffer's size. We try to read as much as fits into a packet
174 at a time. */
175 size_t bufsize = 0;
176
177 /* Cache hit and miss counters. */
178 ULONGEST hit_count = 0;
179 ULONGEST miss_count = 0;
180 };
181
182 /* Description of the remote protocol for a given architecture. */
183
184 struct packet_reg
185 {
186 long offset; /* Offset into G packet. */
187 long regnum; /* GDB's internal register number. */
188 LONGEST pnum; /* Remote protocol register number. */
189 int in_g_packet; /* Always part of G packet. */
190 /* long size in bytes; == register_size (target_gdbarch (), regnum);
191 at present. */
192 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
193 at present. */
194 };
195
196 struct remote_arch_state
197 {
198 explicit remote_arch_state (struct gdbarch *gdbarch);
199
200 /* Description of the remote protocol registers. */
201 long sizeof_g_packet;
202
203 /* Description of the remote protocol registers indexed by REGNUM
204 (making an array gdbarch_num_regs in size). */
205 std::unique_ptr<packet_reg[]> regs;
206
207 /* This is the size (in chars) of the first response to the ``g''
208 packet. It is used as a heuristic when determining the maximum
209 size of memory-read and memory-write packets. A target will
210 typically only reserve a buffer large enough to hold the ``g''
211 packet. The size does not include packet overhead (headers and
212 trailers). */
213 long actual_register_packet_size;
214
215 /* This is the maximum size (in chars) of a non read/write packet.
216 It is also used as a cap on the size of read/write packets. */
217 long remote_packet_size;
218 };
219
220 /* Description of the remote protocol state for the currently
221 connected target. This is per-target state, and independent of the
222 selected architecture. */
223
224 class remote_state
225 {
226 public:
227
228 remote_state ();
229 ~remote_state ();
230
231 /* Get the remote arch state for GDBARCH. */
232 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
233
234 public: /* data */
235
236 /* A buffer to use for incoming packets, and its current size. The
237 buffer is grown dynamically for larger incoming packets.
238 Outgoing packets may also be constructed in this buffer.
239 The size of the buffer is always at least REMOTE_PACKET_SIZE;
240 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
241 packets. */
242 gdb::char_vector buf;
243
244 /* True if we're going through initial connection setup (finding out
245 about the remote side's threads, relocating symbols, etc.). */
246 bool starting_up = false;
247
248 /* If we negotiated packet size explicitly (and thus can bypass
249 heuristics for the largest packet size that will not overflow
250 a buffer in the stub), this will be set to that packet size.
251 Otherwise zero, meaning to use the guessed size. */
252 long explicit_packet_size = 0;
253
254 /* remote_wait is normally called when the target is running and
255 waits for a stop reply packet. But sometimes we need to call it
256 when the target is already stopped. We can send a "?" packet
257 and have remote_wait read the response. Or, if we already have
258 the response, we can stash it in BUF and tell remote_wait to
259 skip calling getpkt. This flag is set when BUF contains a
260 stop reply packet and the target is not waiting. */
261 int cached_wait_status = 0;
262
263 /* True, if in no ack mode. That is, neither GDB nor the stub will
264 expect acks from each other. The connection is assumed to be
265 reliable. */
266 bool noack_mode = false;
267
268 /* True if we're connected in extended remote mode. */
269 bool extended = false;
270
271 /* True if we resumed the target and we're waiting for the target to
272 stop. In the mean time, we can't start another command/query.
273 The remote server wouldn't be ready to process it, so we'd
274 timeout waiting for a reply that would never come and eventually
275 we'd close the connection. This can happen in asynchronous mode
276 because we allow GDB commands while the target is running. */
277 bool waiting_for_stop_reply = false;
278
279 /* The status of the stub support for the various vCont actions. */
280 vCont_action_support supports_vCont;
281
282 /* True if the user has pressed Ctrl-C, but the target hasn't
283 responded to that. */
284 bool ctrlc_pending_p = false;
285
286 /* True if we saw a Ctrl-C while reading or writing from/to the
287 remote descriptor. At that point it is not safe to send a remote
288 interrupt packet, so we instead remember we saw the Ctrl-C and
289 process it once we're done with sending/receiving the current
290 packet, which should be shortly. If however that takes too long,
291 and the user presses Ctrl-C again, we offer to disconnect. */
292 bool got_ctrlc_during_io = false;
293
294 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
295 remote_open knows that we don't have a file open when the program
296 starts. */
297 struct serial *remote_desc = nullptr;
298
299 /* These are the threads which we last sent to the remote system. The
300 TID member will be -1 for all or -2 for not sent yet. */
301 ptid_t general_thread = null_ptid;
302 ptid_t continue_thread = null_ptid;
303
304 /* This is the traceframe which we last selected on the remote system.
305 It will be -1 if no traceframe is selected. */
306 int remote_traceframe_number = -1;
307
308 char *last_pass_packet = nullptr;
309
310 /* The last QProgramSignals packet sent to the target. We bypass
311 sending a new program signals list down to the target if the new
312 packet is exactly the same as the last we sent. IOW, we only let
313 the target know about program signals list changes. */
314 char *last_program_signals_packet = nullptr;
315
316 gdb_signal last_sent_signal = GDB_SIGNAL_0;
317
318 bool last_sent_step = false;
319
320 /* The execution direction of the last resume we got. */
321 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
322
323 char *finished_object = nullptr;
324 char *finished_annex = nullptr;
325 ULONGEST finished_offset = 0;
326
327 /* Should we try the 'ThreadInfo' query packet?
328
329 This variable (NOT available to the user: auto-detect only!)
330 determines whether GDB will use the new, simpler "ThreadInfo"
331 query or the older, more complex syntax for thread queries.
332 This is an auto-detect variable (set to true at each connect,
333 and set to false when the target fails to recognize it). */
334 bool use_threadinfo_query = false;
335 bool use_threadextra_query = false;
336
337 threadref echo_nextthread {};
338 threadref nextthread {};
339 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
340
341 /* The state of remote notification. */
342 struct remote_notif_state *notif_state = nullptr;
343
344 /* The branch trace configuration. */
345 struct btrace_config btrace_config {};
346
347 /* The argument to the last "vFile:setfs:" packet we sent, used
348 to avoid sending repeated unnecessary "vFile:setfs:" packets.
349 Initialized to -1 to indicate that no "vFile:setfs:" packet
350 has yet been sent. */
351 int fs_pid = -1;
352
353 /* A readahead cache for vFile:pread. Often, reading a binary
354 involves a sequence of small reads. E.g., when parsing an ELF
355 file. A readahead cache helps mostly the case of remote
356 debugging on a connection with higher latency, due to the
357 request/reply nature of the RSP. We only cache data for a single
358 file descriptor at a time. */
359 struct readahead_cache readahead_cache;
360
361 /* The list of already fetched and acknowledged stop events. This
362 queue is used for notification Stop, and other notifications
363 don't need queue for their events, because the notification
364 events of Stop can't be consumed immediately, so that events
365 should be queued first, and be consumed by remote_wait_{ns,as}
366 one per time. Other notifications can consume their events
367 immediately, so queue is not needed for them. */
368 std::vector<stop_reply_up> stop_reply_queue;
369
370 /* Asynchronous signal handle registered as event loop source for
371 when we have pending events ready to be passed to the core. */
372 struct async_event_handler *remote_async_inferior_event_token = nullptr;
373
374 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
375 ``forever'' still use the normal timeout mechanism. This is
376 currently used by the ASYNC code to guarentee that target reads
377 during the initial connect always time-out. Once getpkt has been
378 modified to return a timeout indication and, in turn
379 remote_wait()/wait_for_inferior() have gained a timeout parameter
380 this can go away. */
381 int wait_forever_enabled_p = 1;
382
383 private:
384 /* Mapping of remote protocol data for each gdbarch. Usually there
385 is only one entry here, though we may see more with stubs that
386 support multi-process. */
387 std::unordered_map<struct gdbarch *, remote_arch_state>
388 m_arch_states;
389 };
390
391 static const target_info remote_target_info = {
392 "remote",
393 N_("Remote serial target in gdb-specific protocol"),
394 remote_doc
395 };
396
397 class remote_target : public process_stratum_target
398 {
399 public:
400 remote_target () = default;
401 ~remote_target () override;
402
403 const target_info &info () const override
404 { return remote_target_info; }
405
406 thread_control_capabilities get_thread_control_capabilities () override
407 { return tc_schedlock; }
408
409 /* Open a remote connection. */
410 static void open (const char *, int);
411
412 void close () override;
413
414 void detach (inferior *, int) override;
415 void disconnect (const char *, int) override;
416
417 void commit_resume () override;
418 void resume (ptid_t, int, enum gdb_signal) override;
419 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
420
421 void fetch_registers (struct regcache *, int) override;
422 void store_registers (struct regcache *, int) override;
423 void prepare_to_store (struct regcache *) override;
424
425 void files_info () override;
426
427 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
428
429 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
430 enum remove_bp_reason) override;
431
432
433 bool stopped_by_sw_breakpoint () override;
434 bool supports_stopped_by_sw_breakpoint () override;
435
436 bool stopped_by_hw_breakpoint () override;
437
438 bool supports_stopped_by_hw_breakpoint () override;
439
440 bool stopped_by_watchpoint () override;
441
442 bool stopped_data_address (CORE_ADDR *) override;
443
444 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
445
446 int can_use_hw_breakpoint (enum bptype, int, int) override;
447
448 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
449
450 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
451
452 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
453
454 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
455 struct expression *) override;
456
457 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
458 struct expression *) override;
459
460 void kill () override;
461
462 void load (const char *, int) override;
463
464 void mourn_inferior () override;
465
466 void pass_signals (gdb::array_view<const unsigned char>) override;
467
468 int set_syscall_catchpoint (int, bool, int,
469 gdb::array_view<const int>) override;
470
471 void program_signals (gdb::array_view<const unsigned char>) override;
472
473 bool thread_alive (ptid_t ptid) override;
474
475 const char *thread_name (struct thread_info *) override;
476
477 void update_thread_list () override;
478
479 std::string pid_to_str (ptid_t) override;
480
481 const char *extra_thread_info (struct thread_info *) override;
482
483 ptid_t get_ada_task_ptid (long lwp, long thread) override;
484
485 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
486 int handle_len,
487 inferior *inf) override;
488
489 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
490 override;
491
492 void stop (ptid_t) override;
493
494 void interrupt () override;
495
496 void pass_ctrlc () override;
497
498 enum target_xfer_status xfer_partial (enum target_object object,
499 const char *annex,
500 gdb_byte *readbuf,
501 const gdb_byte *writebuf,
502 ULONGEST offset, ULONGEST len,
503 ULONGEST *xfered_len) override;
504
505 ULONGEST get_memory_xfer_limit () override;
506
507 void rcmd (const char *command, struct ui_file *output) override;
508
509 char *pid_to_exec_file (int pid) override;
510
511 void log_command (const char *cmd) override
512 {
513 serial_log_command (this, cmd);
514 }
515
516 CORE_ADDR get_thread_local_address (ptid_t ptid,
517 CORE_ADDR load_module_addr,
518 CORE_ADDR offset) override;
519
520 bool can_execute_reverse () override;
521
522 std::vector<mem_region> memory_map () override;
523
524 void flash_erase (ULONGEST address, LONGEST length) override;
525
526 void flash_done () override;
527
528 const struct target_desc *read_description () override;
529
530 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
531 const gdb_byte *pattern, ULONGEST pattern_len,
532 CORE_ADDR *found_addrp) override;
533
534 bool can_async_p () override;
535
536 bool is_async_p () override;
537
538 void async (int) override;
539
540 void thread_events (int) override;
541
542 int can_do_single_step () override;
543
544 void terminal_inferior () override;
545
546 void terminal_ours () override;
547
548 bool supports_non_stop () override;
549
550 bool supports_multi_process () override;
551
552 bool supports_disable_randomization () override;
553
554 bool filesystem_is_local () override;
555
556
557 int fileio_open (struct inferior *inf, const char *filename,
558 int flags, int mode, int warn_if_slow,
559 int *target_errno) override;
560
561 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
562 ULONGEST offset, int *target_errno) override;
563
564 int fileio_pread (int fd, gdb_byte *read_buf, int len,
565 ULONGEST offset, int *target_errno) override;
566
567 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
568
569 int fileio_close (int fd, int *target_errno) override;
570
571 int fileio_unlink (struct inferior *inf,
572 const char *filename,
573 int *target_errno) override;
574
575 gdb::optional<std::string>
576 fileio_readlink (struct inferior *inf,
577 const char *filename,
578 int *target_errno) override;
579
580 bool supports_enable_disable_tracepoint () override;
581
582 bool supports_string_tracing () override;
583
584 bool supports_evaluation_of_breakpoint_conditions () override;
585
586 bool can_run_breakpoint_commands () override;
587
588 void trace_init () override;
589
590 void download_tracepoint (struct bp_location *location) override;
591
592 bool can_download_tracepoint () override;
593
594 void download_trace_state_variable (const trace_state_variable &tsv) override;
595
596 void enable_tracepoint (struct bp_location *location) override;
597
598 void disable_tracepoint (struct bp_location *location) override;
599
600 void trace_set_readonly_regions () override;
601
602 void trace_start () override;
603
604 int get_trace_status (struct trace_status *ts) override;
605
606 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
607 override;
608
609 void trace_stop () override;
610
611 int trace_find (enum trace_find_type type, int num,
612 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
613
614 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
615
616 int save_trace_data (const char *filename) override;
617
618 int upload_tracepoints (struct uploaded_tp **utpp) override;
619
620 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
621
622 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
623
624 int get_min_fast_tracepoint_insn_len () override;
625
626 void set_disconnected_tracing (int val) override;
627
628 void set_circular_trace_buffer (int val) override;
629
630 void set_trace_buffer_size (LONGEST val) override;
631
632 bool set_trace_notes (const char *user, const char *notes,
633 const char *stopnotes) override;
634
635 int core_of_thread (ptid_t ptid) override;
636
637 int verify_memory (const gdb_byte *data,
638 CORE_ADDR memaddr, ULONGEST size) override;
639
640
641 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
642
643 void set_permissions () override;
644
645 bool static_tracepoint_marker_at (CORE_ADDR,
646 struct static_tracepoint_marker *marker)
647 override;
648
649 std::vector<static_tracepoint_marker>
650 static_tracepoint_markers_by_strid (const char *id) override;
651
652 traceframe_info_up traceframe_info () override;
653
654 bool use_agent (bool use) override;
655 bool can_use_agent () override;
656
657 struct btrace_target_info *enable_btrace (ptid_t ptid,
658 const struct btrace_config *conf) override;
659
660 void disable_btrace (struct btrace_target_info *tinfo) override;
661
662 void teardown_btrace (struct btrace_target_info *tinfo) override;
663
664 enum btrace_error read_btrace (struct btrace_data *data,
665 struct btrace_target_info *btinfo,
666 enum btrace_read_type type) override;
667
668 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
669 bool augmented_libraries_svr4_read () override;
670 int follow_fork (int, int) override;
671 void follow_exec (struct inferior *, const char *) override;
672 int insert_fork_catchpoint (int) override;
673 int remove_fork_catchpoint (int) override;
674 int insert_vfork_catchpoint (int) override;
675 int remove_vfork_catchpoint (int) override;
676 int insert_exec_catchpoint (int) override;
677 int remove_exec_catchpoint (int) override;
678 enum exec_direction_kind execution_direction () override;
679
680 public: /* Remote specific methods. */
681
682 void remote_download_command_source (int num, ULONGEST addr,
683 struct command_line *cmds);
684
685 void remote_file_put (const char *local_file, const char *remote_file,
686 int from_tty);
687 void remote_file_get (const char *remote_file, const char *local_file,
688 int from_tty);
689 void remote_file_delete (const char *remote_file, int from_tty);
690
691 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
692 ULONGEST offset, int *remote_errno);
693 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
694 ULONGEST offset, int *remote_errno);
695 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
696 ULONGEST offset, int *remote_errno);
697
698 int remote_hostio_send_command (int command_bytes, int which_packet,
699 int *remote_errno, char **attachment,
700 int *attachment_len);
701 int remote_hostio_set_filesystem (struct inferior *inf,
702 int *remote_errno);
703 /* We should get rid of this and use fileio_open directly. */
704 int remote_hostio_open (struct inferior *inf, const char *filename,
705 int flags, int mode, int warn_if_slow,
706 int *remote_errno);
707 int remote_hostio_close (int fd, int *remote_errno);
708
709 int remote_hostio_unlink (inferior *inf, const char *filename,
710 int *remote_errno);
711
712 struct remote_state *get_remote_state ();
713
714 long get_remote_packet_size (void);
715 long get_memory_packet_size (struct memory_packet_config *config);
716
717 long get_memory_write_packet_size ();
718 long get_memory_read_packet_size ();
719
720 char *append_pending_thread_resumptions (char *p, char *endp,
721 ptid_t ptid);
722 static void open_1 (const char *name, int from_tty, int extended_p);
723 void start_remote (int from_tty, int extended_p);
724 void remote_detach_1 (struct inferior *inf, int from_tty);
725
726 char *append_resumption (char *p, char *endp,
727 ptid_t ptid, int step, gdb_signal siggnal);
728 int remote_resume_with_vcont (ptid_t ptid, int step,
729 gdb_signal siggnal);
730
731 void add_current_inferior_and_thread (char *wait_status);
732
733 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
734 int options);
735 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
736 int options);
737
738 ptid_t process_stop_reply (struct stop_reply *stop_reply,
739 target_waitstatus *status);
740
741 void remote_notice_new_inferior (ptid_t currthread, int executing);
742
743 void process_initial_stop_replies (int from_tty);
744
745 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
746
747 void btrace_sync_conf (const btrace_config *conf);
748
749 void remote_btrace_maybe_reopen ();
750
751 void remove_new_fork_children (threads_listing_context *context);
752 void kill_new_fork_children (int pid);
753 void discard_pending_stop_replies (struct inferior *inf);
754 int stop_reply_queue_length ();
755
756 void check_pending_events_prevent_wildcard_vcont
757 (int *may_global_wildcard_vcont);
758
759 void discard_pending_stop_replies_in_queue ();
760 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
761 struct stop_reply *queued_stop_reply (ptid_t ptid);
762 int peek_stop_reply (ptid_t ptid);
763 void remote_parse_stop_reply (const char *buf, stop_reply *event);
764
765 void remote_stop_ns (ptid_t ptid);
766 void remote_interrupt_as ();
767 void remote_interrupt_ns ();
768
769 char *remote_get_noisy_reply ();
770 int remote_query_attached (int pid);
771 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
772 int try_open_exec);
773
774 ptid_t remote_current_thread (ptid_t oldpid);
775 ptid_t get_current_thread (char *wait_status);
776
777 void set_thread (ptid_t ptid, int gen);
778 void set_general_thread (ptid_t ptid);
779 void set_continue_thread (ptid_t ptid);
780 void set_general_process ();
781
782 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
783
784 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
785 gdb_ext_thread_info *info);
786 int remote_get_threadinfo (threadref *threadid, int fieldset,
787 gdb_ext_thread_info *info);
788
789 int parse_threadlist_response (char *pkt, int result_limit,
790 threadref *original_echo,
791 threadref *resultlist,
792 int *doneflag);
793 int remote_get_threadlist (int startflag, threadref *nextthread,
794 int result_limit, int *done, int *result_count,
795 threadref *threadlist);
796
797 int remote_threadlist_iterator (rmt_thread_action stepfunction,
798 void *context, int looplimit);
799
800 int remote_get_threads_with_ql (threads_listing_context *context);
801 int remote_get_threads_with_qxfer (threads_listing_context *context);
802 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
803
804 void extended_remote_restart ();
805
806 void get_offsets ();
807
808 void remote_check_symbols ();
809
810 void remote_supported_packet (const struct protocol_feature *feature,
811 enum packet_support support,
812 const char *argument);
813
814 void remote_query_supported ();
815
816 void remote_packet_size (const protocol_feature *feature,
817 packet_support support, const char *value);
818
819 void remote_serial_quit_handler ();
820
821 void remote_detach_pid (int pid);
822
823 void remote_vcont_probe ();
824
825 void remote_resume_with_hc (ptid_t ptid, int step,
826 gdb_signal siggnal);
827
828 void send_interrupt_sequence ();
829 void interrupt_query ();
830
831 void remote_notif_get_pending_events (notif_client *nc);
832
833 int fetch_register_using_p (struct regcache *regcache,
834 packet_reg *reg);
835 int send_g_packet ();
836 void process_g_packet (struct regcache *regcache);
837 void fetch_registers_using_g (struct regcache *regcache);
838 int store_register_using_P (const struct regcache *regcache,
839 packet_reg *reg);
840 void store_registers_using_G (const struct regcache *regcache);
841
842 void set_remote_traceframe ();
843
844 void check_binary_download (CORE_ADDR addr);
845
846 target_xfer_status remote_write_bytes_aux (const char *header,
847 CORE_ADDR memaddr,
848 const gdb_byte *myaddr,
849 ULONGEST len_units,
850 int unit_size,
851 ULONGEST *xfered_len_units,
852 char packet_format,
853 int use_length);
854
855 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
856 const gdb_byte *myaddr, ULONGEST len,
857 int unit_size, ULONGEST *xfered_len);
858
859 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
860 ULONGEST len_units,
861 int unit_size, ULONGEST *xfered_len_units);
862
863 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
864 ULONGEST memaddr,
865 ULONGEST len,
866 int unit_size,
867 ULONGEST *xfered_len);
868
869 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
870 gdb_byte *myaddr, ULONGEST len,
871 int unit_size,
872 ULONGEST *xfered_len);
873
874 packet_result remote_send_printf (const char *format, ...)
875 ATTRIBUTE_PRINTF (2, 3);
876
877 target_xfer_status remote_flash_write (ULONGEST address,
878 ULONGEST length, ULONGEST *xfered_len,
879 const gdb_byte *data);
880
881 int readchar (int timeout);
882
883 void remote_serial_write (const char *str, int len);
884
885 int putpkt (const char *buf);
886 int putpkt_binary (const char *buf, int cnt);
887
888 int putpkt (const gdb::char_vector &buf)
889 {
890 return putpkt (buf.data ());
891 }
892
893 void skip_frame ();
894 long read_frame (gdb::char_vector *buf_p);
895 void getpkt (gdb::char_vector *buf, int forever);
896 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
897 int expecting_notif, int *is_notif);
898 int getpkt_sane (gdb::char_vector *buf, int forever);
899 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
900 int *is_notif);
901 int remote_vkill (int pid);
902 void remote_kill_k ();
903
904 void extended_remote_disable_randomization (int val);
905 int extended_remote_run (const std::string &args);
906
907 void send_environment_packet (const char *action,
908 const char *packet,
909 const char *value);
910
911 void extended_remote_environment_support ();
912 void extended_remote_set_inferior_cwd ();
913
914 target_xfer_status remote_write_qxfer (const char *object_name,
915 const char *annex,
916 const gdb_byte *writebuf,
917 ULONGEST offset, LONGEST len,
918 ULONGEST *xfered_len,
919 struct packet_config *packet);
920
921 target_xfer_status remote_read_qxfer (const char *object_name,
922 const char *annex,
923 gdb_byte *readbuf, ULONGEST offset,
924 LONGEST len,
925 ULONGEST *xfered_len,
926 struct packet_config *packet);
927
928 void push_stop_reply (struct stop_reply *new_event);
929
930 bool vcont_r_supported ();
931
932 void packet_command (const char *args, int from_tty);
933
934 private: /* data fields */
935
936 /* The remote state. Don't reference this directly. Use the
937 get_remote_state method instead. */
938 remote_state m_remote_state;
939 };
940
941 static const target_info extended_remote_target_info = {
942 "extended-remote",
943 N_("Extended remote serial target in gdb-specific protocol"),
944 remote_doc
945 };
946
947 /* Set up the extended remote target by extending the standard remote
948 target and adding to it. */
949
950 class extended_remote_target final : public remote_target
951 {
952 public:
953 const target_info &info () const override
954 { return extended_remote_target_info; }
955
956 /* Open an extended-remote connection. */
957 static void open (const char *, int);
958
959 bool can_create_inferior () override { return true; }
960 void create_inferior (const char *, const std::string &,
961 char **, int) override;
962
963 void detach (inferior *, int) override;
964
965 bool can_attach () override { return true; }
966 void attach (const char *, int) override;
967
968 void post_attach (int) override;
969 bool supports_disable_randomization () override;
970 };
971
972 /* Per-program-space data key. */
973 static const struct program_space_key<char, gdb::xfree_deleter<char>>
974 remote_pspace_data;
975
976 /* The variable registered as the control variable used by the
977 remote exec-file commands. While the remote exec-file setting is
978 per-program-space, the set/show machinery uses this as the
979 location of the remote exec-file value. */
980 static char *remote_exec_file_var;
981
982 /* The size to align memory write packets, when practical. The protocol
983 does not guarantee any alignment, and gdb will generate short
984 writes and unaligned writes, but even as a best-effort attempt this
985 can improve bulk transfers. For instance, if a write is misaligned
986 relative to the target's data bus, the stub may need to make an extra
987 round trip fetching data from the target. This doesn't make a
988 huge difference, but it's easy to do, so we try to be helpful.
989
990 The alignment chosen is arbitrary; usually data bus width is
991 important here, not the possibly larger cache line size. */
992 enum { REMOTE_ALIGN_WRITES = 16 };
993
994 /* Prototypes for local functions. */
995
996 static int hexnumlen (ULONGEST num);
997
998 static int stubhex (int ch);
999
1000 static int hexnumstr (char *, ULONGEST);
1001
1002 static int hexnumnstr (char *, ULONGEST, int);
1003
1004 static CORE_ADDR remote_address_masked (CORE_ADDR);
1005
1006 static void print_packet (const char *);
1007
1008 static int stub_unpack_int (char *buff, int fieldlength);
1009
1010 struct packet_config;
1011
1012 static void show_packet_config_cmd (struct packet_config *config);
1013
1014 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1015 int from_tty,
1016 struct cmd_list_element *c,
1017 const char *value);
1018
1019 static ptid_t read_ptid (const char *buf, const char **obuf);
1020
1021 static void remote_async_inferior_event_handler (gdb_client_data);
1022
1023 static bool remote_read_description_p (struct target_ops *target);
1024
1025 static void remote_console_output (const char *msg);
1026
1027 static void remote_btrace_reset (remote_state *rs);
1028
1029 static void remote_unpush_and_throw (void);
1030
1031 /* For "remote". */
1032
1033 static struct cmd_list_element *remote_cmdlist;
1034
1035 /* For "set remote" and "show remote". */
1036
1037 static struct cmd_list_element *remote_set_cmdlist;
1038 static struct cmd_list_element *remote_show_cmdlist;
1039
1040 /* Controls whether GDB is willing to use range stepping. */
1041
1042 static bool use_range_stepping = true;
1043
1044 /* The max number of chars in debug output. The rest of chars are
1045 omitted. */
1046
1047 #define REMOTE_DEBUG_MAX_CHAR 512
1048
1049 /* Private data that we'll store in (struct thread_info)->priv. */
1050 struct remote_thread_info : public private_thread_info
1051 {
1052 std::string extra;
1053 std::string name;
1054 int core = -1;
1055
1056 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1057 sequence of bytes. */
1058 gdb::byte_vector thread_handle;
1059
1060 /* Whether the target stopped for a breakpoint/watchpoint. */
1061 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1062
1063 /* This is set to the data address of the access causing the target
1064 to stop for a watchpoint. */
1065 CORE_ADDR watch_data_address = 0;
1066
1067 /* Fields used by the vCont action coalescing implemented in
1068 remote_resume / remote_commit_resume. remote_resume stores each
1069 thread's last resume request in these fields, so that a later
1070 remote_commit_resume knows which is the proper action for this
1071 thread to include in the vCont packet. */
1072
1073 /* True if the last target_resume call for this thread was a step
1074 request, false if a continue request. */
1075 int last_resume_step = 0;
1076
1077 /* The signal specified in the last target_resume call for this
1078 thread. */
1079 gdb_signal last_resume_sig = GDB_SIGNAL_0;
1080
1081 /* Whether this thread was already vCont-resumed on the remote
1082 side. */
1083 int vcont_resumed = 0;
1084 };
1085
1086 remote_state::remote_state ()
1087 : buf (400)
1088 {
1089 }
1090
1091 remote_state::~remote_state ()
1092 {
1093 xfree (this->last_pass_packet);
1094 xfree (this->last_program_signals_packet);
1095 xfree (this->finished_object);
1096 xfree (this->finished_annex);
1097 }
1098
1099 /* Utility: generate error from an incoming stub packet. */
1100 static void
1101 trace_error (char *buf)
1102 {
1103 if (*buf++ != 'E')
1104 return; /* not an error msg */
1105 switch (*buf)
1106 {
1107 case '1': /* malformed packet error */
1108 if (*++buf == '0') /* general case: */
1109 error (_("remote.c: error in outgoing packet."));
1110 else
1111 error (_("remote.c: error in outgoing packet at field #%ld."),
1112 strtol (buf, NULL, 16));
1113 default:
1114 error (_("Target returns error code '%s'."), buf);
1115 }
1116 }
1117
1118 /* Utility: wait for reply from stub, while accepting "O" packets. */
1119
1120 char *
1121 remote_target::remote_get_noisy_reply ()
1122 {
1123 struct remote_state *rs = get_remote_state ();
1124
1125 do /* Loop on reply from remote stub. */
1126 {
1127 char *buf;
1128
1129 QUIT; /* Allow user to bail out with ^C. */
1130 getpkt (&rs->buf, 0);
1131 buf = rs->buf.data ();
1132 if (buf[0] == 'E')
1133 trace_error (buf);
1134 else if (startswith (buf, "qRelocInsn:"))
1135 {
1136 ULONGEST ul;
1137 CORE_ADDR from, to, org_to;
1138 const char *p, *pp;
1139 int adjusted_size = 0;
1140 int relocated = 0;
1141
1142 p = buf + strlen ("qRelocInsn:");
1143 pp = unpack_varlen_hex (p, &ul);
1144 if (*pp != ';')
1145 error (_("invalid qRelocInsn packet: %s"), buf);
1146 from = ul;
1147
1148 p = pp + 1;
1149 unpack_varlen_hex (p, &ul);
1150 to = ul;
1151
1152 org_to = to;
1153
1154 try
1155 {
1156 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1157 relocated = 1;
1158 }
1159 catch (const gdb_exception &ex)
1160 {
1161 if (ex.error == MEMORY_ERROR)
1162 {
1163 /* Propagate memory errors silently back to the
1164 target. The stub may have limited the range of
1165 addresses we can write to, for example. */
1166 }
1167 else
1168 {
1169 /* Something unexpectedly bad happened. Be verbose
1170 so we can tell what, and propagate the error back
1171 to the stub, so it doesn't get stuck waiting for
1172 a response. */
1173 exception_fprintf (gdb_stderr, ex,
1174 _("warning: relocating instruction: "));
1175 }
1176 putpkt ("E01");
1177 }
1178
1179 if (relocated)
1180 {
1181 adjusted_size = to - org_to;
1182
1183 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
1184 putpkt (buf);
1185 }
1186 }
1187 else if (buf[0] == 'O' && buf[1] != 'K')
1188 remote_console_output (buf + 1); /* 'O' message from stub */
1189 else
1190 return buf; /* Here's the actual reply. */
1191 }
1192 while (1);
1193 }
1194
1195 struct remote_arch_state *
1196 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1197 {
1198 remote_arch_state *rsa;
1199
1200 auto it = this->m_arch_states.find (gdbarch);
1201 if (it == this->m_arch_states.end ())
1202 {
1203 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1204 std::forward_as_tuple (gdbarch),
1205 std::forward_as_tuple (gdbarch));
1206 rsa = &p.first->second;
1207
1208 /* Make sure that the packet buffer is plenty big enough for
1209 this architecture. */
1210 if (this->buf.size () < rsa->remote_packet_size)
1211 this->buf.resize (2 * rsa->remote_packet_size);
1212 }
1213 else
1214 rsa = &it->second;
1215
1216 return rsa;
1217 }
1218
1219 /* Fetch the global remote target state. */
1220
1221 remote_state *
1222 remote_target::get_remote_state ()
1223 {
1224 /* Make sure that the remote architecture state has been
1225 initialized, because doing so might reallocate rs->buf. Any
1226 function which calls getpkt also needs to be mindful of changes
1227 to rs->buf, but this call limits the number of places which run
1228 into trouble. */
1229 m_remote_state.get_remote_arch_state (target_gdbarch ());
1230
1231 return &m_remote_state;
1232 }
1233
1234 /* Fetch the remote exec-file from the current program space. */
1235
1236 static const char *
1237 get_remote_exec_file (void)
1238 {
1239 char *remote_exec_file;
1240
1241 remote_exec_file = remote_pspace_data.get (current_program_space);
1242 if (remote_exec_file == NULL)
1243 return "";
1244
1245 return remote_exec_file;
1246 }
1247
1248 /* Set the remote exec file for PSPACE. */
1249
1250 static void
1251 set_pspace_remote_exec_file (struct program_space *pspace,
1252 const char *remote_exec_file)
1253 {
1254 char *old_file = remote_pspace_data.get (pspace);
1255
1256 xfree (old_file);
1257 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
1258 }
1259
1260 /* The "set/show remote exec-file" set command hook. */
1261
1262 static void
1263 set_remote_exec_file (const char *ignored, int from_tty,
1264 struct cmd_list_element *c)
1265 {
1266 gdb_assert (remote_exec_file_var != NULL);
1267 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1268 }
1269
1270 /* The "set/show remote exec-file" show command hook. */
1271
1272 static void
1273 show_remote_exec_file (struct ui_file *file, int from_tty,
1274 struct cmd_list_element *cmd, const char *value)
1275 {
1276 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1277 }
1278
1279 static int
1280 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1281 {
1282 int regnum, num_remote_regs, offset;
1283 struct packet_reg **remote_regs;
1284
1285 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1286 {
1287 struct packet_reg *r = &regs[regnum];
1288
1289 if (register_size (gdbarch, regnum) == 0)
1290 /* Do not try to fetch zero-sized (placeholder) registers. */
1291 r->pnum = -1;
1292 else
1293 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1294
1295 r->regnum = regnum;
1296 }
1297
1298 /* Define the g/G packet format as the contents of each register
1299 with a remote protocol number, in order of ascending protocol
1300 number. */
1301
1302 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1303 for (num_remote_regs = 0, regnum = 0;
1304 regnum < gdbarch_num_regs (gdbarch);
1305 regnum++)
1306 if (regs[regnum].pnum != -1)
1307 remote_regs[num_remote_regs++] = &regs[regnum];
1308
1309 std::sort (remote_regs, remote_regs + num_remote_regs,
1310 [] (const packet_reg *a, const packet_reg *b)
1311 { return a->pnum < b->pnum; });
1312
1313 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1314 {
1315 remote_regs[regnum]->in_g_packet = 1;
1316 remote_regs[regnum]->offset = offset;
1317 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1318 }
1319
1320 return offset;
1321 }
1322
1323 /* Given the architecture described by GDBARCH, return the remote
1324 protocol register's number and the register's offset in the g/G
1325 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1326 If the target does not have a mapping for REGNUM, return false,
1327 otherwise, return true. */
1328
1329 int
1330 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1331 int *pnum, int *poffset)
1332 {
1333 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1334
1335 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1336
1337 map_regcache_remote_table (gdbarch, regs.data ());
1338
1339 *pnum = regs[regnum].pnum;
1340 *poffset = regs[regnum].offset;
1341
1342 return *pnum != -1;
1343 }
1344
1345 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1346 {
1347 /* Use the architecture to build a regnum<->pnum table, which will be
1348 1:1 unless a feature set specifies otherwise. */
1349 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1350
1351 /* Record the maximum possible size of the g packet - it may turn out
1352 to be smaller. */
1353 this->sizeof_g_packet
1354 = map_regcache_remote_table (gdbarch, this->regs.get ());
1355
1356 /* Default maximum number of characters in a packet body. Many
1357 remote stubs have a hardwired buffer size of 400 bytes
1358 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1359 as the maximum packet-size to ensure that the packet and an extra
1360 NUL character can always fit in the buffer. This stops GDB
1361 trashing stubs that try to squeeze an extra NUL into what is
1362 already a full buffer (As of 1999-12-04 that was most stubs). */
1363 this->remote_packet_size = 400 - 1;
1364
1365 /* This one is filled in when a ``g'' packet is received. */
1366 this->actual_register_packet_size = 0;
1367
1368 /* Should rsa->sizeof_g_packet needs more space than the
1369 default, adjust the size accordingly. Remember that each byte is
1370 encoded as two characters. 32 is the overhead for the packet
1371 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1372 (``$NN:G...#NN'') is a better guess, the below has been padded a
1373 little. */
1374 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1375 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1376 }
1377
1378 /* Get a pointer to the current remote target. If not connected to a
1379 remote target, return NULL. */
1380
1381 static remote_target *
1382 get_current_remote_target ()
1383 {
1384 target_ops *proc_target = find_target_at (process_stratum);
1385 return dynamic_cast<remote_target *> (proc_target);
1386 }
1387
1388 /* Return the current allowed size of a remote packet. This is
1389 inferred from the current architecture, and should be used to
1390 limit the length of outgoing packets. */
1391 long
1392 remote_target::get_remote_packet_size ()
1393 {
1394 struct remote_state *rs = get_remote_state ();
1395 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1396
1397 if (rs->explicit_packet_size)
1398 return rs->explicit_packet_size;
1399
1400 return rsa->remote_packet_size;
1401 }
1402
1403 static struct packet_reg *
1404 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1405 long regnum)
1406 {
1407 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1408 return NULL;
1409 else
1410 {
1411 struct packet_reg *r = &rsa->regs[regnum];
1412
1413 gdb_assert (r->regnum == regnum);
1414 return r;
1415 }
1416 }
1417
1418 static struct packet_reg *
1419 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1420 LONGEST pnum)
1421 {
1422 int i;
1423
1424 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1425 {
1426 struct packet_reg *r = &rsa->regs[i];
1427
1428 if (r->pnum == pnum)
1429 return r;
1430 }
1431 return NULL;
1432 }
1433
1434 /* Allow the user to specify what sequence to send to the remote
1435 when he requests a program interruption: Although ^C is usually
1436 what remote systems expect (this is the default, here), it is
1437 sometimes preferable to send a break. On other systems such
1438 as the Linux kernel, a break followed by g, which is Magic SysRq g
1439 is required in order to interrupt the execution. */
1440 const char interrupt_sequence_control_c[] = "Ctrl-C";
1441 const char interrupt_sequence_break[] = "BREAK";
1442 const char interrupt_sequence_break_g[] = "BREAK-g";
1443 static const char *const interrupt_sequence_modes[] =
1444 {
1445 interrupt_sequence_control_c,
1446 interrupt_sequence_break,
1447 interrupt_sequence_break_g,
1448 NULL
1449 };
1450 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1451
1452 static void
1453 show_interrupt_sequence (struct ui_file *file, int from_tty,
1454 struct cmd_list_element *c,
1455 const char *value)
1456 {
1457 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1458 fprintf_filtered (file,
1459 _("Send the ASCII ETX character (Ctrl-c) "
1460 "to the remote target to interrupt the "
1461 "execution of the program.\n"));
1462 else if (interrupt_sequence_mode == interrupt_sequence_break)
1463 fprintf_filtered (file,
1464 _("send a break signal to the remote target "
1465 "to interrupt the execution of the program.\n"));
1466 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1467 fprintf_filtered (file,
1468 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1469 "the remote target to interrupt the execution "
1470 "of Linux kernel.\n"));
1471 else
1472 internal_error (__FILE__, __LINE__,
1473 _("Invalid value for interrupt_sequence_mode: %s."),
1474 interrupt_sequence_mode);
1475 }
1476
1477 /* This boolean variable specifies whether interrupt_sequence is sent
1478 to the remote target when gdb connects to it.
1479 This is mostly needed when you debug the Linux kernel: The Linux kernel
1480 expects BREAK g which is Magic SysRq g for connecting gdb. */
1481 static bool interrupt_on_connect = false;
1482
1483 /* This variable is used to implement the "set/show remotebreak" commands.
1484 Since these commands are now deprecated in favor of "set/show remote
1485 interrupt-sequence", it no longer has any effect on the code. */
1486 static bool remote_break;
1487
1488 static void
1489 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1490 {
1491 if (remote_break)
1492 interrupt_sequence_mode = interrupt_sequence_break;
1493 else
1494 interrupt_sequence_mode = interrupt_sequence_control_c;
1495 }
1496
1497 static void
1498 show_remotebreak (struct ui_file *file, int from_tty,
1499 struct cmd_list_element *c,
1500 const char *value)
1501 {
1502 }
1503
1504 /* This variable sets the number of bits in an address that are to be
1505 sent in a memory ("M" or "m") packet. Normally, after stripping
1506 leading zeros, the entire address would be sent. This variable
1507 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1508 initial implementation of remote.c restricted the address sent in
1509 memory packets to ``host::sizeof long'' bytes - (typically 32
1510 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1511 address was never sent. Since fixing this bug may cause a break in
1512 some remote targets this variable is principally provided to
1513 facilitate backward compatibility. */
1514
1515 static unsigned int remote_address_size;
1516
1517 \f
1518 /* User configurable variables for the number of characters in a
1519 memory read/write packet. MIN (rsa->remote_packet_size,
1520 rsa->sizeof_g_packet) is the default. Some targets need smaller
1521 values (fifo overruns, et.al.) and some users need larger values
1522 (speed up transfers). The variables ``preferred_*'' (the user
1523 request), ``current_*'' (what was actually set) and ``forced_*''
1524 (Positive - a soft limit, negative - a hard limit). */
1525
1526 struct memory_packet_config
1527 {
1528 const char *name;
1529 long size;
1530 int fixed_p;
1531 };
1532
1533 /* The default max memory-write-packet-size, when the setting is
1534 "fixed". The 16k is historical. (It came from older GDB's using
1535 alloca for buffers and the knowledge (folklore?) that some hosts
1536 don't cope very well with large alloca calls.) */
1537 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1538
1539 /* The minimum remote packet size for memory transfers. Ensures we
1540 can write at least one byte. */
1541 #define MIN_MEMORY_PACKET_SIZE 20
1542
1543 /* Get the memory packet size, assuming it is fixed. */
1544
1545 static long
1546 get_fixed_memory_packet_size (struct memory_packet_config *config)
1547 {
1548 gdb_assert (config->fixed_p);
1549
1550 if (config->size <= 0)
1551 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1552 else
1553 return config->size;
1554 }
1555
1556 /* Compute the current size of a read/write packet. Since this makes
1557 use of ``actual_register_packet_size'' the computation is dynamic. */
1558
1559 long
1560 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1561 {
1562 struct remote_state *rs = get_remote_state ();
1563 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1564
1565 long what_they_get;
1566 if (config->fixed_p)
1567 what_they_get = get_fixed_memory_packet_size (config);
1568 else
1569 {
1570 what_they_get = get_remote_packet_size ();
1571 /* Limit the packet to the size specified by the user. */
1572 if (config->size > 0
1573 && what_they_get > config->size)
1574 what_they_get = config->size;
1575
1576 /* Limit it to the size of the targets ``g'' response unless we have
1577 permission from the stub to use a larger packet size. */
1578 if (rs->explicit_packet_size == 0
1579 && rsa->actual_register_packet_size > 0
1580 && what_they_get > rsa->actual_register_packet_size)
1581 what_they_get = rsa->actual_register_packet_size;
1582 }
1583 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1584 what_they_get = MIN_MEMORY_PACKET_SIZE;
1585
1586 /* Make sure there is room in the global buffer for this packet
1587 (including its trailing NUL byte). */
1588 if (rs->buf.size () < what_they_get + 1)
1589 rs->buf.resize (2 * what_they_get);
1590
1591 return what_they_get;
1592 }
1593
1594 /* Update the size of a read/write packet. If they user wants
1595 something really big then do a sanity check. */
1596
1597 static void
1598 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1599 {
1600 int fixed_p = config->fixed_p;
1601 long size = config->size;
1602
1603 if (args == NULL)
1604 error (_("Argument required (integer, `fixed' or `limited')."));
1605 else if (strcmp (args, "hard") == 0
1606 || strcmp (args, "fixed") == 0)
1607 fixed_p = 1;
1608 else if (strcmp (args, "soft") == 0
1609 || strcmp (args, "limit") == 0)
1610 fixed_p = 0;
1611 else
1612 {
1613 char *end;
1614
1615 size = strtoul (args, &end, 0);
1616 if (args == end)
1617 error (_("Invalid %s (bad syntax)."), config->name);
1618
1619 /* Instead of explicitly capping the size of a packet to or
1620 disallowing it, the user is allowed to set the size to
1621 something arbitrarily large. */
1622 }
1623
1624 /* Extra checks? */
1625 if (fixed_p && !config->fixed_p)
1626 {
1627 /* So that the query shows the correct value. */
1628 long query_size = (size <= 0
1629 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1630 : size);
1631
1632 if (! query (_("The target may not be able to correctly handle a %s\n"
1633 "of %ld bytes. Change the packet size? "),
1634 config->name, query_size))
1635 error (_("Packet size not changed."));
1636 }
1637 /* Update the config. */
1638 config->fixed_p = fixed_p;
1639 config->size = size;
1640 }
1641
1642 static void
1643 show_memory_packet_size (struct memory_packet_config *config)
1644 {
1645 if (config->size == 0)
1646 printf_filtered (_("The %s is 0 (default). "), config->name);
1647 else
1648 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1649 if (config->fixed_p)
1650 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1651 get_fixed_memory_packet_size (config));
1652 else
1653 {
1654 remote_target *remote = get_current_remote_target ();
1655
1656 if (remote != NULL)
1657 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1658 remote->get_memory_packet_size (config));
1659 else
1660 puts_filtered ("The actual limit will be further reduced "
1661 "dependent on the target.\n");
1662 }
1663 }
1664
1665 static struct memory_packet_config memory_write_packet_config =
1666 {
1667 "memory-write-packet-size",
1668 };
1669
1670 static void
1671 set_memory_write_packet_size (const char *args, int from_tty)
1672 {
1673 set_memory_packet_size (args, &memory_write_packet_config);
1674 }
1675
1676 static void
1677 show_memory_write_packet_size (const char *args, int from_tty)
1678 {
1679 show_memory_packet_size (&memory_write_packet_config);
1680 }
1681
1682 /* Show the number of hardware watchpoints that can be used. */
1683
1684 static void
1685 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1686 struct cmd_list_element *c,
1687 const char *value)
1688 {
1689 fprintf_filtered (file, _("The maximum number of target hardware "
1690 "watchpoints is %s.\n"), value);
1691 }
1692
1693 /* Show the length limit (in bytes) for hardware watchpoints. */
1694
1695 static void
1696 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1697 struct cmd_list_element *c,
1698 const char *value)
1699 {
1700 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1701 "hardware watchpoint is %s.\n"), value);
1702 }
1703
1704 /* Show the number of hardware breakpoints that can be used. */
1705
1706 static void
1707 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1708 struct cmd_list_element *c,
1709 const char *value)
1710 {
1711 fprintf_filtered (file, _("The maximum number of target hardware "
1712 "breakpoints is %s.\n"), value);
1713 }
1714
1715 long
1716 remote_target::get_memory_write_packet_size ()
1717 {
1718 return get_memory_packet_size (&memory_write_packet_config);
1719 }
1720
1721 static struct memory_packet_config memory_read_packet_config =
1722 {
1723 "memory-read-packet-size",
1724 };
1725
1726 static void
1727 set_memory_read_packet_size (const char *args, int from_tty)
1728 {
1729 set_memory_packet_size (args, &memory_read_packet_config);
1730 }
1731
1732 static void
1733 show_memory_read_packet_size (const char *args, int from_tty)
1734 {
1735 show_memory_packet_size (&memory_read_packet_config);
1736 }
1737
1738 long
1739 remote_target::get_memory_read_packet_size ()
1740 {
1741 long size = get_memory_packet_size (&memory_read_packet_config);
1742
1743 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1744 extra buffer size argument before the memory read size can be
1745 increased beyond this. */
1746 if (size > get_remote_packet_size ())
1747 size = get_remote_packet_size ();
1748 return size;
1749 }
1750
1751 \f
1752
1753 struct packet_config
1754 {
1755 const char *name;
1756 const char *title;
1757
1758 /* If auto, GDB auto-detects support for this packet or feature,
1759 either through qSupported, or by trying the packet and looking
1760 at the response. If true, GDB assumes the target supports this
1761 packet. If false, the packet is disabled. Configs that don't
1762 have an associated command always have this set to auto. */
1763 enum auto_boolean detect;
1764
1765 /* Does the target support this packet? */
1766 enum packet_support support;
1767 };
1768
1769 static enum packet_support packet_config_support (struct packet_config *config);
1770 static enum packet_support packet_support (int packet);
1771
1772 static void
1773 show_packet_config_cmd (struct packet_config *config)
1774 {
1775 const char *support = "internal-error";
1776
1777 switch (packet_config_support (config))
1778 {
1779 case PACKET_ENABLE:
1780 support = "enabled";
1781 break;
1782 case PACKET_DISABLE:
1783 support = "disabled";
1784 break;
1785 case PACKET_SUPPORT_UNKNOWN:
1786 support = "unknown";
1787 break;
1788 }
1789 switch (config->detect)
1790 {
1791 case AUTO_BOOLEAN_AUTO:
1792 printf_filtered (_("Support for the `%s' packet "
1793 "is auto-detected, currently %s.\n"),
1794 config->name, support);
1795 break;
1796 case AUTO_BOOLEAN_TRUE:
1797 case AUTO_BOOLEAN_FALSE:
1798 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1799 config->name, support);
1800 break;
1801 }
1802 }
1803
1804 static void
1805 add_packet_config_cmd (struct packet_config *config, const char *name,
1806 const char *title, int legacy)
1807 {
1808 char *set_doc;
1809 char *show_doc;
1810 char *cmd_name;
1811
1812 config->name = name;
1813 config->title = title;
1814 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1815 name, title);
1816 show_doc = xstrprintf ("Show current use of remote "
1817 "protocol `%s' (%s) packet.",
1818 name, title);
1819 /* set/show TITLE-packet {auto,on,off} */
1820 cmd_name = xstrprintf ("%s-packet", title);
1821 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1822 &config->detect, set_doc,
1823 show_doc, NULL, /* help_doc */
1824 NULL,
1825 show_remote_protocol_packet_cmd,
1826 &remote_set_cmdlist, &remote_show_cmdlist);
1827 /* The command code copies the documentation strings. */
1828 xfree (set_doc);
1829 xfree (show_doc);
1830 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1831 if (legacy)
1832 {
1833 char *legacy_name;
1834
1835 legacy_name = xstrprintf ("%s-packet", name);
1836 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1837 &remote_set_cmdlist);
1838 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1839 &remote_show_cmdlist);
1840 }
1841 }
1842
1843 static enum packet_result
1844 packet_check_result (const char *buf)
1845 {
1846 if (buf[0] != '\0')
1847 {
1848 /* The stub recognized the packet request. Check that the
1849 operation succeeded. */
1850 if (buf[0] == 'E'
1851 && isxdigit (buf[1]) && isxdigit (buf[2])
1852 && buf[3] == '\0')
1853 /* "Enn" - definitely an error. */
1854 return PACKET_ERROR;
1855
1856 /* Always treat "E." as an error. This will be used for
1857 more verbose error messages, such as E.memtypes. */
1858 if (buf[0] == 'E' && buf[1] == '.')
1859 return PACKET_ERROR;
1860
1861 /* The packet may or may not be OK. Just assume it is. */
1862 return PACKET_OK;
1863 }
1864 else
1865 /* The stub does not support the packet. */
1866 return PACKET_UNKNOWN;
1867 }
1868
1869 static enum packet_result
1870 packet_check_result (const gdb::char_vector &buf)
1871 {
1872 return packet_check_result (buf.data ());
1873 }
1874
1875 static enum packet_result
1876 packet_ok (const char *buf, struct packet_config *config)
1877 {
1878 enum packet_result result;
1879
1880 if (config->detect != AUTO_BOOLEAN_TRUE
1881 && config->support == PACKET_DISABLE)
1882 internal_error (__FILE__, __LINE__,
1883 _("packet_ok: attempt to use a disabled packet"));
1884
1885 result = packet_check_result (buf);
1886 switch (result)
1887 {
1888 case PACKET_OK:
1889 case PACKET_ERROR:
1890 /* The stub recognized the packet request. */
1891 if (config->support == PACKET_SUPPORT_UNKNOWN)
1892 {
1893 if (remote_debug)
1894 fprintf_unfiltered (gdb_stdlog,
1895 "Packet %s (%s) is supported\n",
1896 config->name, config->title);
1897 config->support = PACKET_ENABLE;
1898 }
1899 break;
1900 case PACKET_UNKNOWN:
1901 /* The stub does not support the packet. */
1902 if (config->detect == AUTO_BOOLEAN_AUTO
1903 && config->support == PACKET_ENABLE)
1904 {
1905 /* If the stub previously indicated that the packet was
1906 supported then there is a protocol error. */
1907 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1908 config->name, config->title);
1909 }
1910 else if (config->detect == AUTO_BOOLEAN_TRUE)
1911 {
1912 /* The user set it wrong. */
1913 error (_("Enabled packet %s (%s) not recognized by stub"),
1914 config->name, config->title);
1915 }
1916
1917 if (remote_debug)
1918 fprintf_unfiltered (gdb_stdlog,
1919 "Packet %s (%s) is NOT supported\n",
1920 config->name, config->title);
1921 config->support = PACKET_DISABLE;
1922 break;
1923 }
1924
1925 return result;
1926 }
1927
1928 static enum packet_result
1929 packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1930 {
1931 return packet_ok (buf.data (), config);
1932 }
1933
1934 enum {
1935 PACKET_vCont = 0,
1936 PACKET_X,
1937 PACKET_qSymbol,
1938 PACKET_P,
1939 PACKET_p,
1940 PACKET_Z0,
1941 PACKET_Z1,
1942 PACKET_Z2,
1943 PACKET_Z3,
1944 PACKET_Z4,
1945 PACKET_vFile_setfs,
1946 PACKET_vFile_open,
1947 PACKET_vFile_pread,
1948 PACKET_vFile_pwrite,
1949 PACKET_vFile_close,
1950 PACKET_vFile_unlink,
1951 PACKET_vFile_readlink,
1952 PACKET_vFile_fstat,
1953 PACKET_qXfer_auxv,
1954 PACKET_qXfer_features,
1955 PACKET_qXfer_exec_file,
1956 PACKET_qXfer_libraries,
1957 PACKET_qXfer_libraries_svr4,
1958 PACKET_qXfer_memory_map,
1959 PACKET_qXfer_osdata,
1960 PACKET_qXfer_threads,
1961 PACKET_qXfer_statictrace_read,
1962 PACKET_qXfer_traceframe_info,
1963 PACKET_qXfer_uib,
1964 PACKET_qGetTIBAddr,
1965 PACKET_qGetTLSAddr,
1966 PACKET_qSupported,
1967 PACKET_qTStatus,
1968 PACKET_QPassSignals,
1969 PACKET_QCatchSyscalls,
1970 PACKET_QProgramSignals,
1971 PACKET_QSetWorkingDir,
1972 PACKET_QStartupWithShell,
1973 PACKET_QEnvironmentHexEncoded,
1974 PACKET_QEnvironmentReset,
1975 PACKET_QEnvironmentUnset,
1976 PACKET_qCRC,
1977 PACKET_qSearch_memory,
1978 PACKET_vAttach,
1979 PACKET_vRun,
1980 PACKET_QStartNoAckMode,
1981 PACKET_vKill,
1982 PACKET_qXfer_siginfo_read,
1983 PACKET_qXfer_siginfo_write,
1984 PACKET_qAttached,
1985
1986 /* Support for conditional tracepoints. */
1987 PACKET_ConditionalTracepoints,
1988
1989 /* Support for target-side breakpoint conditions. */
1990 PACKET_ConditionalBreakpoints,
1991
1992 /* Support for target-side breakpoint commands. */
1993 PACKET_BreakpointCommands,
1994
1995 /* Support for fast tracepoints. */
1996 PACKET_FastTracepoints,
1997
1998 /* Support for static tracepoints. */
1999 PACKET_StaticTracepoints,
2000
2001 /* Support for installing tracepoints while a trace experiment is
2002 running. */
2003 PACKET_InstallInTrace,
2004
2005 PACKET_bc,
2006 PACKET_bs,
2007 PACKET_TracepointSource,
2008 PACKET_QAllow,
2009 PACKET_qXfer_fdpic,
2010 PACKET_QDisableRandomization,
2011 PACKET_QAgent,
2012 PACKET_QTBuffer_size,
2013 PACKET_Qbtrace_off,
2014 PACKET_Qbtrace_bts,
2015 PACKET_Qbtrace_pt,
2016 PACKET_qXfer_btrace,
2017
2018 /* Support for the QNonStop packet. */
2019 PACKET_QNonStop,
2020
2021 /* Support for the QThreadEvents packet. */
2022 PACKET_QThreadEvents,
2023
2024 /* Support for multi-process extensions. */
2025 PACKET_multiprocess_feature,
2026
2027 /* Support for enabling and disabling tracepoints while a trace
2028 experiment is running. */
2029 PACKET_EnableDisableTracepoints_feature,
2030
2031 /* Support for collecting strings using the tracenz bytecode. */
2032 PACKET_tracenz_feature,
2033
2034 /* Support for continuing to run a trace experiment while GDB is
2035 disconnected. */
2036 PACKET_DisconnectedTracing_feature,
2037
2038 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2039 PACKET_augmented_libraries_svr4_read_feature,
2040
2041 /* Support for the qXfer:btrace-conf:read packet. */
2042 PACKET_qXfer_btrace_conf,
2043
2044 /* Support for the Qbtrace-conf:bts:size packet. */
2045 PACKET_Qbtrace_conf_bts_size,
2046
2047 /* Support for swbreak+ feature. */
2048 PACKET_swbreak_feature,
2049
2050 /* Support for hwbreak+ feature. */
2051 PACKET_hwbreak_feature,
2052
2053 /* Support for fork events. */
2054 PACKET_fork_event_feature,
2055
2056 /* Support for vfork events. */
2057 PACKET_vfork_event_feature,
2058
2059 /* Support for the Qbtrace-conf:pt:size packet. */
2060 PACKET_Qbtrace_conf_pt_size,
2061
2062 /* Support for exec events. */
2063 PACKET_exec_event_feature,
2064
2065 /* Support for query supported vCont actions. */
2066 PACKET_vContSupported,
2067
2068 /* Support remote CTRL-C. */
2069 PACKET_vCtrlC,
2070
2071 /* Support TARGET_WAITKIND_NO_RESUMED. */
2072 PACKET_no_resumed,
2073
2074 PACKET_MAX
2075 };
2076
2077 static struct packet_config remote_protocol_packets[PACKET_MAX];
2078
2079 /* Returns the packet's corresponding "set remote foo-packet" command
2080 state. See struct packet_config for more details. */
2081
2082 static enum auto_boolean
2083 packet_set_cmd_state (int packet)
2084 {
2085 return remote_protocol_packets[packet].detect;
2086 }
2087
2088 /* Returns whether a given packet or feature is supported. This takes
2089 into account the state of the corresponding "set remote foo-packet"
2090 command, which may be used to bypass auto-detection. */
2091
2092 static enum packet_support
2093 packet_config_support (struct packet_config *config)
2094 {
2095 switch (config->detect)
2096 {
2097 case AUTO_BOOLEAN_TRUE:
2098 return PACKET_ENABLE;
2099 case AUTO_BOOLEAN_FALSE:
2100 return PACKET_DISABLE;
2101 case AUTO_BOOLEAN_AUTO:
2102 return config->support;
2103 default:
2104 gdb_assert_not_reached (_("bad switch"));
2105 }
2106 }
2107
2108 /* Same as packet_config_support, but takes the packet's enum value as
2109 argument. */
2110
2111 static enum packet_support
2112 packet_support (int packet)
2113 {
2114 struct packet_config *config = &remote_protocol_packets[packet];
2115
2116 return packet_config_support (config);
2117 }
2118
2119 static void
2120 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2121 struct cmd_list_element *c,
2122 const char *value)
2123 {
2124 struct packet_config *packet;
2125
2126 for (packet = remote_protocol_packets;
2127 packet < &remote_protocol_packets[PACKET_MAX];
2128 packet++)
2129 {
2130 if (&packet->detect == c->var)
2131 {
2132 show_packet_config_cmd (packet);
2133 return;
2134 }
2135 }
2136 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2137 c->name);
2138 }
2139
2140 /* Should we try one of the 'Z' requests? */
2141
2142 enum Z_packet_type
2143 {
2144 Z_PACKET_SOFTWARE_BP,
2145 Z_PACKET_HARDWARE_BP,
2146 Z_PACKET_WRITE_WP,
2147 Z_PACKET_READ_WP,
2148 Z_PACKET_ACCESS_WP,
2149 NR_Z_PACKET_TYPES
2150 };
2151
2152 /* For compatibility with older distributions. Provide a ``set remote
2153 Z-packet ...'' command that updates all the Z packet types. */
2154
2155 static enum auto_boolean remote_Z_packet_detect;
2156
2157 static void
2158 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2159 struct cmd_list_element *c)
2160 {
2161 int i;
2162
2163 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2164 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2165 }
2166
2167 static void
2168 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2169 struct cmd_list_element *c,
2170 const char *value)
2171 {
2172 int i;
2173
2174 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2175 {
2176 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2177 }
2178 }
2179
2180 /* Returns true if the multi-process extensions are in effect. */
2181
2182 static int
2183 remote_multi_process_p (struct remote_state *rs)
2184 {
2185 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2186 }
2187
2188 /* Returns true if fork events are supported. */
2189
2190 static int
2191 remote_fork_event_p (struct remote_state *rs)
2192 {
2193 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2194 }
2195
2196 /* Returns true if vfork events are supported. */
2197
2198 static int
2199 remote_vfork_event_p (struct remote_state *rs)
2200 {
2201 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2202 }
2203
2204 /* Returns true if exec events are supported. */
2205
2206 static int
2207 remote_exec_event_p (struct remote_state *rs)
2208 {
2209 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2210 }
2211
2212 /* Insert fork catchpoint target routine. If fork events are enabled
2213 then return success, nothing more to do. */
2214
2215 int
2216 remote_target::insert_fork_catchpoint (int pid)
2217 {
2218 struct remote_state *rs = get_remote_state ();
2219
2220 return !remote_fork_event_p (rs);
2221 }
2222
2223 /* Remove fork catchpoint target routine. Nothing to do, just
2224 return success. */
2225
2226 int
2227 remote_target::remove_fork_catchpoint (int pid)
2228 {
2229 return 0;
2230 }
2231
2232 /* Insert vfork catchpoint target routine. If vfork events are enabled
2233 then return success, nothing more to do. */
2234
2235 int
2236 remote_target::insert_vfork_catchpoint (int pid)
2237 {
2238 struct remote_state *rs = get_remote_state ();
2239
2240 return !remote_vfork_event_p (rs);
2241 }
2242
2243 /* Remove vfork catchpoint target routine. Nothing to do, just
2244 return success. */
2245
2246 int
2247 remote_target::remove_vfork_catchpoint (int pid)
2248 {
2249 return 0;
2250 }
2251
2252 /* Insert exec catchpoint target routine. If exec events are
2253 enabled, just return success. */
2254
2255 int
2256 remote_target::insert_exec_catchpoint (int pid)
2257 {
2258 struct remote_state *rs = get_remote_state ();
2259
2260 return !remote_exec_event_p (rs);
2261 }
2262
2263 /* Remove exec catchpoint target routine. Nothing to do, just
2264 return success. */
2265
2266 int
2267 remote_target::remove_exec_catchpoint (int pid)
2268 {
2269 return 0;
2270 }
2271
2272 \f
2273
2274 /* Take advantage of the fact that the TID field is not used, to tag
2275 special ptids with it set to != 0. */
2276 static const ptid_t magic_null_ptid (42000, -1, 1);
2277 static const ptid_t not_sent_ptid (42000, -2, 1);
2278 static const ptid_t any_thread_ptid (42000, 0, 1);
2279
2280 /* Find out if the stub attached to PID (and hence GDB should offer to
2281 detach instead of killing it when bailing out). */
2282
2283 int
2284 remote_target::remote_query_attached (int pid)
2285 {
2286 struct remote_state *rs = get_remote_state ();
2287 size_t size = get_remote_packet_size ();
2288
2289 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2290 return 0;
2291
2292 if (remote_multi_process_p (rs))
2293 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
2294 else
2295 xsnprintf (rs->buf.data (), size, "qAttached");
2296
2297 putpkt (rs->buf);
2298 getpkt (&rs->buf, 0);
2299
2300 switch (packet_ok (rs->buf,
2301 &remote_protocol_packets[PACKET_qAttached]))
2302 {
2303 case PACKET_OK:
2304 if (strcmp (rs->buf.data (), "1") == 0)
2305 return 1;
2306 break;
2307 case PACKET_ERROR:
2308 warning (_("Remote failure reply: %s"), rs->buf.data ());
2309 break;
2310 case PACKET_UNKNOWN:
2311 break;
2312 }
2313
2314 return 0;
2315 }
2316
2317 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2318 has been invented by GDB, instead of reported by the target. Since
2319 we can be connected to a remote system before before knowing about
2320 any inferior, mark the target with execution when we find the first
2321 inferior. If ATTACHED is 1, then we had just attached to this
2322 inferior. If it is 0, then we just created this inferior. If it
2323 is -1, then try querying the remote stub to find out if it had
2324 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2325 attempt to open this inferior's executable as the main executable
2326 if no main executable is open already. */
2327
2328 inferior *
2329 remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
2330 int try_open_exec)
2331 {
2332 struct inferior *inf;
2333
2334 /* Check whether this process we're learning about is to be
2335 considered attached, or if is to be considered to have been
2336 spawned by the stub. */
2337 if (attached == -1)
2338 attached = remote_query_attached (pid);
2339
2340 if (gdbarch_has_global_solist (target_gdbarch ()))
2341 {
2342 /* If the target shares code across all inferiors, then every
2343 attach adds a new inferior. */
2344 inf = add_inferior (pid);
2345
2346 /* ... and every inferior is bound to the same program space.
2347 However, each inferior may still have its own address
2348 space. */
2349 inf->aspace = maybe_new_address_space ();
2350 inf->pspace = current_program_space;
2351 }
2352 else
2353 {
2354 /* In the traditional debugging scenario, there's a 1-1 match
2355 between program/address spaces. We simply bind the inferior
2356 to the program space's address space. */
2357 inf = current_inferior ();
2358 inferior_appeared (inf, pid);
2359 }
2360
2361 inf->attach_flag = attached;
2362 inf->fake_pid_p = fake_pid_p;
2363
2364 /* If no main executable is currently open then attempt to
2365 open the file that was executed to create this inferior. */
2366 if (try_open_exec && get_exec_file (0) == NULL)
2367 exec_file_locate_attach (pid, 0, 1);
2368
2369 return inf;
2370 }
2371
2372 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2373 static remote_thread_info *get_remote_thread_info (ptid_t ptid);
2374
2375 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2376 according to RUNNING. */
2377
2378 thread_info *
2379 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2380 {
2381 struct remote_state *rs = get_remote_state ();
2382 struct thread_info *thread;
2383
2384 /* GDB historically didn't pull threads in the initial connection
2385 setup. If the remote target doesn't even have a concept of
2386 threads (e.g., a bare-metal target), even if internally we
2387 consider that a single-threaded target, mentioning a new thread
2388 might be confusing to the user. Be silent then, preserving the
2389 age old behavior. */
2390 if (rs->starting_up)
2391 thread = add_thread_silent (ptid);
2392 else
2393 thread = add_thread (ptid);
2394
2395 get_remote_thread_info (thread)->vcont_resumed = executing;
2396 set_executing (ptid, executing);
2397 set_running (ptid, running);
2398
2399 return thread;
2400 }
2401
2402 /* Come here when we learn about a thread id from the remote target.
2403 It may be the first time we hear about such thread, so take the
2404 opportunity to add it to GDB's thread list. In case this is the
2405 first time we're noticing its corresponding inferior, add it to
2406 GDB's inferior list as well. EXECUTING indicates whether the
2407 thread is (internally) executing or stopped. */
2408
2409 void
2410 remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
2411 {
2412 /* In non-stop mode, we assume new found threads are (externally)
2413 running until proven otherwise with a stop reply. In all-stop,
2414 we can only get here if all threads are stopped. */
2415 int running = target_is_non_stop_p () ? 1 : 0;
2416
2417 /* If this is a new thread, add it to GDB's thread list.
2418 If we leave it up to WFI to do this, bad things will happen. */
2419
2420 thread_info *tp = find_thread_ptid (currthread);
2421 if (tp != NULL && tp->state == THREAD_EXITED)
2422 {
2423 /* We're seeing an event on a thread id we knew had exited.
2424 This has to be a new thread reusing the old id. Add it. */
2425 remote_add_thread (currthread, running, executing);
2426 return;
2427 }
2428
2429 if (!in_thread_list (currthread))
2430 {
2431 struct inferior *inf = NULL;
2432 int pid = currthread.pid ();
2433
2434 if (inferior_ptid.is_pid ()
2435 && pid == inferior_ptid.pid ())
2436 {
2437 /* inferior_ptid has no thread member yet. This can happen
2438 with the vAttach -> remote_wait,"TAAthread:" path if the
2439 stub doesn't support qC. This is the first stop reported
2440 after an attach, so this is the main thread. Update the
2441 ptid in the thread list. */
2442 if (in_thread_list (ptid_t (pid)))
2443 thread_change_ptid (inferior_ptid, currthread);
2444 else
2445 {
2446 remote_add_thread (currthread, running, executing);
2447 inferior_ptid = currthread;
2448 }
2449 return;
2450 }
2451
2452 if (magic_null_ptid == inferior_ptid)
2453 {
2454 /* inferior_ptid is not set yet. This can happen with the
2455 vRun -> remote_wait,"TAAthread:" path if the stub
2456 doesn't support qC. This is the first stop reported
2457 after an attach, so this is the main thread. Update the
2458 ptid in the thread list. */
2459 thread_change_ptid (inferior_ptid, currthread);
2460 return;
2461 }
2462
2463 /* When connecting to a target remote, or to a target
2464 extended-remote which already was debugging an inferior, we
2465 may not know about it yet. Add it before adding its child
2466 thread, so notifications are emitted in a sensible order. */
2467 if (find_inferior_pid (currthread.pid ()) == NULL)
2468 {
2469 struct remote_state *rs = get_remote_state ();
2470 bool fake_pid_p = !remote_multi_process_p (rs);
2471
2472 inf = remote_add_inferior (fake_pid_p,
2473 currthread.pid (), -1, 1);
2474 }
2475
2476 /* This is really a new thread. Add it. */
2477 thread_info *new_thr
2478 = remote_add_thread (currthread, running, executing);
2479
2480 /* If we found a new inferior, let the common code do whatever
2481 it needs to with it (e.g., read shared libraries, insert
2482 breakpoints), unless we're just setting up an all-stop
2483 connection. */
2484 if (inf != NULL)
2485 {
2486 struct remote_state *rs = get_remote_state ();
2487
2488 if (!rs->starting_up)
2489 notice_new_inferior (new_thr, executing, 0);
2490 }
2491 }
2492 }
2493
2494 /* Return THREAD's private thread data, creating it if necessary. */
2495
2496 static remote_thread_info *
2497 get_remote_thread_info (thread_info *thread)
2498 {
2499 gdb_assert (thread != NULL);
2500
2501 if (thread->priv == NULL)
2502 thread->priv.reset (new remote_thread_info);
2503
2504 return static_cast<remote_thread_info *> (thread->priv.get ());
2505 }
2506
2507 static remote_thread_info *
2508 get_remote_thread_info (ptid_t ptid)
2509 {
2510 thread_info *thr = find_thread_ptid (ptid);
2511 return get_remote_thread_info (thr);
2512 }
2513
2514 /* Call this function as a result of
2515 1) A halt indication (T packet) containing a thread id
2516 2) A direct query of currthread
2517 3) Successful execution of set thread */
2518
2519 static void
2520 record_currthread (struct remote_state *rs, ptid_t currthread)
2521 {
2522 rs->general_thread = currthread;
2523 }
2524
2525 /* If 'QPassSignals' is supported, tell the remote stub what signals
2526 it can simply pass through to the inferior without reporting. */
2527
2528 void
2529 remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
2530 {
2531 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2532 {
2533 char *pass_packet, *p;
2534 int count = 0;
2535 struct remote_state *rs = get_remote_state ();
2536
2537 gdb_assert (pass_signals.size () < 256);
2538 for (size_t i = 0; i < pass_signals.size (); i++)
2539 {
2540 if (pass_signals[i])
2541 count++;
2542 }
2543 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2544 strcpy (pass_packet, "QPassSignals:");
2545 p = pass_packet + strlen (pass_packet);
2546 for (size_t i = 0; i < pass_signals.size (); i++)
2547 {
2548 if (pass_signals[i])
2549 {
2550 if (i >= 16)
2551 *p++ = tohex (i >> 4);
2552 *p++ = tohex (i & 15);
2553 if (count)
2554 *p++ = ';';
2555 else
2556 break;
2557 count--;
2558 }
2559 }
2560 *p = 0;
2561 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2562 {
2563 putpkt (pass_packet);
2564 getpkt (&rs->buf, 0);
2565 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2566 if (rs->last_pass_packet)
2567 xfree (rs->last_pass_packet);
2568 rs->last_pass_packet = pass_packet;
2569 }
2570 else
2571 xfree (pass_packet);
2572 }
2573 }
2574
2575 /* If 'QCatchSyscalls' is supported, tell the remote stub
2576 to report syscalls to GDB. */
2577
2578 int
2579 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2580 gdb::array_view<const int> syscall_counts)
2581 {
2582 const char *catch_packet;
2583 enum packet_result result;
2584 int n_sysno = 0;
2585
2586 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2587 {
2588 /* Not supported. */
2589 return 1;
2590 }
2591
2592 if (needed && any_count == 0)
2593 {
2594 /* Count how many syscalls are to be caught. */
2595 for (size_t i = 0; i < syscall_counts.size (); i++)
2596 {
2597 if (syscall_counts[i] != 0)
2598 n_sysno++;
2599 }
2600 }
2601
2602 if (remote_debug)
2603 {
2604 fprintf_unfiltered (gdb_stdlog,
2605 "remote_set_syscall_catchpoint "
2606 "pid %d needed %d any_count %d n_sysno %d\n",
2607 pid, needed, any_count, n_sysno);
2608 }
2609
2610 std::string built_packet;
2611 if (needed)
2612 {
2613 /* Prepare a packet with the sysno list, assuming max 8+1
2614 characters for a sysno. If the resulting packet size is too
2615 big, fallback on the non-selective packet. */
2616 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2617 built_packet.reserve (maxpktsz);
2618 built_packet = "QCatchSyscalls:1";
2619 if (any_count == 0)
2620 {
2621 /* Add in each syscall to be caught. */
2622 for (size_t i = 0; i < syscall_counts.size (); i++)
2623 {
2624 if (syscall_counts[i] != 0)
2625 string_appendf (built_packet, ";%zx", i);
2626 }
2627 }
2628 if (built_packet.size () > get_remote_packet_size ())
2629 {
2630 /* catch_packet too big. Fallback to less efficient
2631 non selective mode, with GDB doing the filtering. */
2632 catch_packet = "QCatchSyscalls:1";
2633 }
2634 else
2635 catch_packet = built_packet.c_str ();
2636 }
2637 else
2638 catch_packet = "QCatchSyscalls:0";
2639
2640 struct remote_state *rs = get_remote_state ();
2641
2642 putpkt (catch_packet);
2643 getpkt (&rs->buf, 0);
2644 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2645 if (result == PACKET_OK)
2646 return 0;
2647 else
2648 return -1;
2649 }
2650
2651 /* If 'QProgramSignals' is supported, tell the remote stub what
2652 signals it should pass through to the inferior when detaching. */
2653
2654 void
2655 remote_target::program_signals (gdb::array_view<const unsigned char> signals)
2656 {
2657 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2658 {
2659 char *packet, *p;
2660 int count = 0;
2661 struct remote_state *rs = get_remote_state ();
2662
2663 gdb_assert (signals.size () < 256);
2664 for (size_t i = 0; i < signals.size (); i++)
2665 {
2666 if (signals[i])
2667 count++;
2668 }
2669 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2670 strcpy (packet, "QProgramSignals:");
2671 p = packet + strlen (packet);
2672 for (size_t i = 0; i < signals.size (); i++)
2673 {
2674 if (signal_pass_state (i))
2675 {
2676 if (i >= 16)
2677 *p++ = tohex (i >> 4);
2678 *p++ = tohex (i & 15);
2679 if (count)
2680 *p++ = ';';
2681 else
2682 break;
2683 count--;
2684 }
2685 }
2686 *p = 0;
2687 if (!rs->last_program_signals_packet
2688 || strcmp (rs->last_program_signals_packet, packet) != 0)
2689 {
2690 putpkt (packet);
2691 getpkt (&rs->buf, 0);
2692 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2693 xfree (rs->last_program_signals_packet);
2694 rs->last_program_signals_packet = packet;
2695 }
2696 else
2697 xfree (packet);
2698 }
2699 }
2700
2701 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2702 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2703 thread. If GEN is set, set the general thread, if not, then set
2704 the step/continue thread. */
2705 void
2706 remote_target::set_thread (ptid_t ptid, int gen)
2707 {
2708 struct remote_state *rs = get_remote_state ();
2709 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2710 char *buf = rs->buf.data ();
2711 char *endbuf = buf + get_remote_packet_size ();
2712
2713 if (state == ptid)
2714 return;
2715
2716 *buf++ = 'H';
2717 *buf++ = gen ? 'g' : 'c';
2718 if (ptid == magic_null_ptid)
2719 xsnprintf (buf, endbuf - buf, "0");
2720 else if (ptid == any_thread_ptid)
2721 xsnprintf (buf, endbuf - buf, "0");
2722 else if (ptid == minus_one_ptid)
2723 xsnprintf (buf, endbuf - buf, "-1");
2724 else
2725 write_ptid (buf, endbuf, ptid);
2726 putpkt (rs->buf);
2727 getpkt (&rs->buf, 0);
2728 if (gen)
2729 rs->general_thread = ptid;
2730 else
2731 rs->continue_thread = ptid;
2732 }
2733
2734 void
2735 remote_target::set_general_thread (ptid_t ptid)
2736 {
2737 set_thread (ptid, 1);
2738 }
2739
2740 void
2741 remote_target::set_continue_thread (ptid_t ptid)
2742 {
2743 set_thread (ptid, 0);
2744 }
2745
2746 /* Change the remote current process. Which thread within the process
2747 ends up selected isn't important, as long as it is the same process
2748 as what INFERIOR_PTID points to.
2749
2750 This comes from that fact that there is no explicit notion of
2751 "selected process" in the protocol. The selected process for
2752 general operations is the process the selected general thread
2753 belongs to. */
2754
2755 void
2756 remote_target::set_general_process ()
2757 {
2758 struct remote_state *rs = get_remote_state ();
2759
2760 /* If the remote can't handle multiple processes, don't bother. */
2761 if (!remote_multi_process_p (rs))
2762 return;
2763
2764 /* We only need to change the remote current thread if it's pointing
2765 at some other process. */
2766 if (rs->general_thread.pid () != inferior_ptid.pid ())
2767 set_general_thread (inferior_ptid);
2768 }
2769
2770 \f
2771 /* Return nonzero if this is the main thread that we made up ourselves
2772 to model non-threaded targets as single-threaded. */
2773
2774 static int
2775 remote_thread_always_alive (ptid_t ptid)
2776 {
2777 if (ptid == magic_null_ptid)
2778 /* The main thread is always alive. */
2779 return 1;
2780
2781 if (ptid.pid () != 0 && ptid.lwp () == 0)
2782 /* The main thread is always alive. This can happen after a
2783 vAttach, if the remote side doesn't support
2784 multi-threading. */
2785 return 1;
2786
2787 return 0;
2788 }
2789
2790 /* Return nonzero if the thread PTID is still alive on the remote
2791 system. */
2792
2793 bool
2794 remote_target::thread_alive (ptid_t ptid)
2795 {
2796 struct remote_state *rs = get_remote_state ();
2797 char *p, *endp;
2798
2799 /* Check if this is a thread that we made up ourselves to model
2800 non-threaded targets as single-threaded. */
2801 if (remote_thread_always_alive (ptid))
2802 return 1;
2803
2804 p = rs->buf.data ();
2805 endp = p + get_remote_packet_size ();
2806
2807 *p++ = 'T';
2808 write_ptid (p, endp, ptid);
2809
2810 putpkt (rs->buf);
2811 getpkt (&rs->buf, 0);
2812 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2813 }
2814
2815 /* Return a pointer to a thread name if we know it and NULL otherwise.
2816 The thread_info object owns the memory for the name. */
2817
2818 const char *
2819 remote_target::thread_name (struct thread_info *info)
2820 {
2821 if (info->priv != NULL)
2822 {
2823 const std::string &name = get_remote_thread_info (info)->name;
2824 return !name.empty () ? name.c_str () : NULL;
2825 }
2826
2827 return NULL;
2828 }
2829
2830 /* About these extended threadlist and threadinfo packets. They are
2831 variable length packets but, the fields within them are often fixed
2832 length. They are redundent enough to send over UDP as is the
2833 remote protocol in general. There is a matching unit test module
2834 in libstub. */
2835
2836 /* WARNING: This threadref data structure comes from the remote O.S.,
2837 libstub protocol encoding, and remote.c. It is not particularly
2838 changable. */
2839
2840 /* Right now, the internal structure is int. We want it to be bigger.
2841 Plan to fix this. */
2842
2843 typedef int gdb_threadref; /* Internal GDB thread reference. */
2844
2845 /* gdb_ext_thread_info is an internal GDB data structure which is
2846 equivalent to the reply of the remote threadinfo packet. */
2847
2848 struct gdb_ext_thread_info
2849 {
2850 threadref threadid; /* External form of thread reference. */
2851 int active; /* Has state interesting to GDB?
2852 regs, stack. */
2853 char display[256]; /* Brief state display, name,
2854 blocked/suspended. */
2855 char shortname[32]; /* To be used to name threads. */
2856 char more_display[256]; /* Long info, statistics, queue depth,
2857 whatever. */
2858 };
2859
2860 /* The volume of remote transfers can be limited by submitting
2861 a mask containing bits specifying the desired information.
2862 Use a union of these values as the 'selection' parameter to
2863 get_thread_info. FIXME: Make these TAG names more thread specific. */
2864
2865 #define TAG_THREADID 1
2866 #define TAG_EXISTS 2
2867 #define TAG_DISPLAY 4
2868 #define TAG_THREADNAME 8
2869 #define TAG_MOREDISPLAY 16
2870
2871 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2872
2873 static char *unpack_nibble (char *buf, int *val);
2874
2875 static char *unpack_byte (char *buf, int *value);
2876
2877 static char *pack_int (char *buf, int value);
2878
2879 static char *unpack_int (char *buf, int *value);
2880
2881 static char *unpack_string (char *src, char *dest, int length);
2882
2883 static char *pack_threadid (char *pkt, threadref *id);
2884
2885 static char *unpack_threadid (char *inbuf, threadref *id);
2886
2887 void int_to_threadref (threadref *id, int value);
2888
2889 static int threadref_to_int (threadref *ref);
2890
2891 static void copy_threadref (threadref *dest, threadref *src);
2892
2893 static int threadmatch (threadref *dest, threadref *src);
2894
2895 static char *pack_threadinfo_request (char *pkt, int mode,
2896 threadref *id);
2897
2898 static char *pack_threadlist_request (char *pkt, int startflag,
2899 int threadcount,
2900 threadref *nextthread);
2901
2902 static int remote_newthread_step (threadref *ref, void *context);
2903
2904
2905 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2906 buffer we're allowed to write to. Returns
2907 BUF+CHARACTERS_WRITTEN. */
2908
2909 char *
2910 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2911 {
2912 int pid, tid;
2913 struct remote_state *rs = get_remote_state ();
2914
2915 if (remote_multi_process_p (rs))
2916 {
2917 pid = ptid.pid ();
2918 if (pid < 0)
2919 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2920 else
2921 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2922 }
2923 tid = ptid.lwp ();
2924 if (tid < 0)
2925 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2926 else
2927 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2928
2929 return buf;
2930 }
2931
2932 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2933 last parsed char. Returns null_ptid if no thread id is found, and
2934 throws an error if the thread id has an invalid format. */
2935
2936 static ptid_t
2937 read_ptid (const char *buf, const char **obuf)
2938 {
2939 const char *p = buf;
2940 const char *pp;
2941 ULONGEST pid = 0, tid = 0;
2942
2943 if (*p == 'p')
2944 {
2945 /* Multi-process ptid. */
2946 pp = unpack_varlen_hex (p + 1, &pid);
2947 if (*pp != '.')
2948 error (_("invalid remote ptid: %s"), p);
2949
2950 p = pp;
2951 pp = unpack_varlen_hex (p + 1, &tid);
2952 if (obuf)
2953 *obuf = pp;
2954 return ptid_t (pid, tid, 0);
2955 }
2956
2957 /* No multi-process. Just a tid. */
2958 pp = unpack_varlen_hex (p, &tid);
2959
2960 /* Return null_ptid when no thread id is found. */
2961 if (p == pp)
2962 {
2963 if (obuf)
2964 *obuf = pp;
2965 return null_ptid;
2966 }
2967
2968 /* Since the stub is not sending a process id, then default to
2969 what's in inferior_ptid, unless it's null at this point. If so,
2970 then since there's no way to know the pid of the reported
2971 threads, use the magic number. */
2972 if (inferior_ptid == null_ptid)
2973 pid = magic_null_ptid.pid ();
2974 else
2975 pid = inferior_ptid.pid ();
2976
2977 if (obuf)
2978 *obuf = pp;
2979 return ptid_t (pid, tid, 0);
2980 }
2981
2982 static int
2983 stubhex (int ch)
2984 {
2985 if (ch >= 'a' && ch <= 'f')
2986 return ch - 'a' + 10;
2987 if (ch >= '0' && ch <= '9')
2988 return ch - '0';
2989 if (ch >= 'A' && ch <= 'F')
2990 return ch - 'A' + 10;
2991 return -1;
2992 }
2993
2994 static int
2995 stub_unpack_int (char *buff, int fieldlength)
2996 {
2997 int nibble;
2998 int retval = 0;
2999
3000 while (fieldlength)
3001 {
3002 nibble = stubhex (*buff++);
3003 retval |= nibble;
3004 fieldlength--;
3005 if (fieldlength)
3006 retval = retval << 4;
3007 }
3008 return retval;
3009 }
3010
3011 static char *
3012 unpack_nibble (char *buf, int *val)
3013 {
3014 *val = fromhex (*buf++);
3015 return buf;
3016 }
3017
3018 static char *
3019 unpack_byte (char *buf, int *value)
3020 {
3021 *value = stub_unpack_int (buf, 2);
3022 return buf + 2;
3023 }
3024
3025 static char *
3026 pack_int (char *buf, int value)
3027 {
3028 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3029 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3030 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3031 buf = pack_hex_byte (buf, (value & 0xff));
3032 return buf;
3033 }
3034
3035 static char *
3036 unpack_int (char *buf, int *value)
3037 {
3038 *value = stub_unpack_int (buf, 8);
3039 return buf + 8;
3040 }
3041
3042 #if 0 /* Currently unused, uncomment when needed. */
3043 static char *pack_string (char *pkt, char *string);
3044
3045 static char *
3046 pack_string (char *pkt, char *string)
3047 {
3048 char ch;
3049 int len;
3050
3051 len = strlen (string);
3052 if (len > 200)
3053 len = 200; /* Bigger than most GDB packets, junk??? */
3054 pkt = pack_hex_byte (pkt, len);
3055 while (len-- > 0)
3056 {
3057 ch = *string++;
3058 if ((ch == '\0') || (ch == '#'))
3059 ch = '*'; /* Protect encapsulation. */
3060 *pkt++ = ch;
3061 }
3062 return pkt;
3063 }
3064 #endif /* 0 (unused) */
3065
3066 static char *
3067 unpack_string (char *src, char *dest, int length)
3068 {
3069 while (length--)
3070 *dest++ = *src++;
3071 *dest = '\0';
3072 return src;
3073 }
3074
3075 static char *
3076 pack_threadid (char *pkt, threadref *id)
3077 {
3078 char *limit;
3079 unsigned char *altid;
3080
3081 altid = (unsigned char *) id;
3082 limit = pkt + BUF_THREAD_ID_SIZE;
3083 while (pkt < limit)
3084 pkt = pack_hex_byte (pkt, *altid++);
3085 return pkt;
3086 }
3087
3088
3089 static char *
3090 unpack_threadid (char *inbuf, threadref *id)
3091 {
3092 char *altref;
3093 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3094 int x, y;
3095
3096 altref = (char *) id;
3097
3098 while (inbuf < limit)
3099 {
3100 x = stubhex (*inbuf++);
3101 y = stubhex (*inbuf++);
3102 *altref++ = (x << 4) | y;
3103 }
3104 return inbuf;
3105 }
3106
3107 /* Externally, threadrefs are 64 bits but internally, they are still
3108 ints. This is due to a mismatch of specifications. We would like
3109 to use 64bit thread references internally. This is an adapter
3110 function. */
3111
3112 void
3113 int_to_threadref (threadref *id, int value)
3114 {
3115 unsigned char *scan;
3116
3117 scan = (unsigned char *) id;
3118 {
3119 int i = 4;
3120 while (i--)
3121 *scan++ = 0;
3122 }
3123 *scan++ = (value >> 24) & 0xff;
3124 *scan++ = (value >> 16) & 0xff;
3125 *scan++ = (value >> 8) & 0xff;
3126 *scan++ = (value & 0xff);
3127 }
3128
3129 static int
3130 threadref_to_int (threadref *ref)
3131 {
3132 int i, value = 0;
3133 unsigned char *scan;
3134
3135 scan = *ref;
3136 scan += 4;
3137 i = 4;
3138 while (i-- > 0)
3139 value = (value << 8) | ((*scan++) & 0xff);
3140 return value;
3141 }
3142
3143 static void
3144 copy_threadref (threadref *dest, threadref *src)
3145 {
3146 int i;
3147 unsigned char *csrc, *cdest;
3148
3149 csrc = (unsigned char *) src;
3150 cdest = (unsigned char *) dest;
3151 i = 8;
3152 while (i--)
3153 *cdest++ = *csrc++;
3154 }
3155
3156 static int
3157 threadmatch (threadref *dest, threadref *src)
3158 {
3159 /* Things are broken right now, so just assume we got a match. */
3160 #if 0
3161 unsigned char *srcp, *destp;
3162 int i, result;
3163 srcp = (char *) src;
3164 destp = (char *) dest;
3165
3166 result = 1;
3167 while (i-- > 0)
3168 result &= (*srcp++ == *destp++) ? 1 : 0;
3169 return result;
3170 #endif
3171 return 1;
3172 }
3173
3174 /*
3175 threadid:1, # always request threadid
3176 context_exists:2,
3177 display:4,
3178 unique_name:8,
3179 more_display:16
3180 */
3181
3182 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3183
3184 static char *
3185 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3186 {
3187 *pkt++ = 'q'; /* Info Query */
3188 *pkt++ = 'P'; /* process or thread info */
3189 pkt = pack_int (pkt, mode); /* mode */
3190 pkt = pack_threadid (pkt, id); /* threadid */
3191 *pkt = '\0'; /* terminate */
3192 return pkt;
3193 }
3194
3195 /* These values tag the fields in a thread info response packet. */
3196 /* Tagging the fields allows us to request specific fields and to
3197 add more fields as time goes by. */
3198
3199 #define TAG_THREADID 1 /* Echo the thread identifier. */
3200 #define TAG_EXISTS 2 /* Is this process defined enough to
3201 fetch registers and its stack? */
3202 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3203 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3204 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3205 the process. */
3206
3207 int
3208 remote_target::remote_unpack_thread_info_response (char *pkt,
3209 threadref *expectedref,
3210 gdb_ext_thread_info *info)
3211 {
3212 struct remote_state *rs = get_remote_state ();
3213 int mask, length;
3214 int tag;
3215 threadref ref;
3216 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
3217 int retval = 1;
3218
3219 /* info->threadid = 0; FIXME: implement zero_threadref. */
3220 info->active = 0;
3221 info->display[0] = '\0';
3222 info->shortname[0] = '\0';
3223 info->more_display[0] = '\0';
3224
3225 /* Assume the characters indicating the packet type have been
3226 stripped. */
3227 pkt = unpack_int (pkt, &mask); /* arg mask */
3228 pkt = unpack_threadid (pkt, &ref);
3229
3230 if (mask == 0)
3231 warning (_("Incomplete response to threadinfo request."));
3232 if (!threadmatch (&ref, expectedref))
3233 { /* This is an answer to a different request. */
3234 warning (_("ERROR RMT Thread info mismatch."));
3235 return 0;
3236 }
3237 copy_threadref (&info->threadid, &ref);
3238
3239 /* Loop on tagged fields , try to bail if something goes wrong. */
3240
3241 /* Packets are terminated with nulls. */
3242 while ((pkt < limit) && mask && *pkt)
3243 {
3244 pkt = unpack_int (pkt, &tag); /* tag */
3245 pkt = unpack_byte (pkt, &length); /* length */
3246 if (!(tag & mask)) /* Tags out of synch with mask. */
3247 {
3248 warning (_("ERROR RMT: threadinfo tag mismatch."));
3249 retval = 0;
3250 break;
3251 }
3252 if (tag == TAG_THREADID)
3253 {
3254 if (length != 16)
3255 {
3256 warning (_("ERROR RMT: length of threadid is not 16."));
3257 retval = 0;
3258 break;
3259 }
3260 pkt = unpack_threadid (pkt, &ref);
3261 mask = mask & ~TAG_THREADID;
3262 continue;
3263 }
3264 if (tag == TAG_EXISTS)
3265 {
3266 info->active = stub_unpack_int (pkt, length);
3267 pkt += length;
3268 mask = mask & ~(TAG_EXISTS);
3269 if (length > 8)
3270 {
3271 warning (_("ERROR RMT: 'exists' length too long."));
3272 retval = 0;
3273 break;
3274 }
3275 continue;
3276 }
3277 if (tag == TAG_THREADNAME)
3278 {
3279 pkt = unpack_string (pkt, &info->shortname[0], length);
3280 mask = mask & ~TAG_THREADNAME;
3281 continue;
3282 }
3283 if (tag == TAG_DISPLAY)
3284 {
3285 pkt = unpack_string (pkt, &info->display[0], length);
3286 mask = mask & ~TAG_DISPLAY;
3287 continue;
3288 }
3289 if (tag == TAG_MOREDISPLAY)
3290 {
3291 pkt = unpack_string (pkt, &info->more_display[0], length);
3292 mask = mask & ~TAG_MOREDISPLAY;
3293 continue;
3294 }
3295 warning (_("ERROR RMT: unknown thread info tag."));
3296 break; /* Not a tag we know about. */
3297 }
3298 return retval;
3299 }
3300
3301 int
3302 remote_target::remote_get_threadinfo (threadref *threadid,
3303 int fieldset,
3304 gdb_ext_thread_info *info)
3305 {
3306 struct remote_state *rs = get_remote_state ();
3307 int result;
3308
3309 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
3310 putpkt (rs->buf);
3311 getpkt (&rs->buf, 0);
3312
3313 if (rs->buf[0] == '\0')
3314 return 0;
3315
3316 result = remote_unpack_thread_info_response (&rs->buf[2],
3317 threadid, info);
3318 return result;
3319 }
3320
3321 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3322
3323 static char *
3324 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3325 threadref *nextthread)
3326 {
3327 *pkt++ = 'q'; /* info query packet */
3328 *pkt++ = 'L'; /* Process LIST or threadLIST request */
3329 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
3330 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3331 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3332 *pkt = '\0';
3333 return pkt;
3334 }
3335
3336 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3337
3338 int
3339 remote_target::parse_threadlist_response (char *pkt, int result_limit,
3340 threadref *original_echo,
3341 threadref *resultlist,
3342 int *doneflag)
3343 {
3344 struct remote_state *rs = get_remote_state ();
3345 char *limit;
3346 int count, resultcount, done;
3347
3348 resultcount = 0;
3349 /* Assume the 'q' and 'M chars have been stripped. */
3350 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
3351 /* done parse past here */
3352 pkt = unpack_byte (pkt, &count); /* count field */
3353 pkt = unpack_nibble (pkt, &done);
3354 /* The first threadid is the argument threadid. */
3355 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3356 while ((count-- > 0) && (pkt < limit))
3357 {
3358 pkt = unpack_threadid (pkt, resultlist++);
3359 if (resultcount++ >= result_limit)
3360 break;
3361 }
3362 if (doneflag)
3363 *doneflag = done;
3364 return resultcount;
3365 }
3366
3367 /* Fetch the next batch of threads from the remote. Returns -1 if the
3368 qL packet is not supported, 0 on error and 1 on success. */
3369
3370 int
3371 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3372 int result_limit, int *done, int *result_count,
3373 threadref *threadlist)
3374 {
3375 struct remote_state *rs = get_remote_state ();
3376 int result = 1;
3377
3378 /* Truncate result limit to be smaller than the packet size. */
3379 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3380 >= get_remote_packet_size ())
3381 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3382
3383 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3384 nextthread);
3385 putpkt (rs->buf);
3386 getpkt (&rs->buf, 0);
3387 if (rs->buf[0] == '\0')
3388 {
3389 /* Packet not supported. */
3390 return -1;
3391 }
3392
3393 *result_count =
3394 parse_threadlist_response (&rs->buf[2], result_limit,
3395 &rs->echo_nextthread, threadlist, done);
3396
3397 if (!threadmatch (&rs->echo_nextthread, nextthread))
3398 {
3399 /* FIXME: This is a good reason to drop the packet. */
3400 /* Possibly, there is a duplicate response. */
3401 /* Possibilities :
3402 retransmit immediatly - race conditions
3403 retransmit after timeout - yes
3404 exit
3405 wait for packet, then exit
3406 */
3407 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3408 return 0; /* I choose simply exiting. */
3409 }
3410 if (*result_count <= 0)
3411 {
3412 if (*done != 1)
3413 {
3414 warning (_("RMT ERROR : failed to get remote thread list."));
3415 result = 0;
3416 }
3417 return result; /* break; */
3418 }
3419 if (*result_count > result_limit)
3420 {
3421 *result_count = 0;
3422 warning (_("RMT ERROR: threadlist response longer than requested."));
3423 return 0;
3424 }
3425 return result;
3426 }
3427
3428 /* Fetch the list of remote threads, with the qL packet, and call
3429 STEPFUNCTION for each thread found. Stops iterating and returns 1
3430 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3431 STEPFUNCTION returns false. If the packet is not supported,
3432 returns -1. */
3433
3434 int
3435 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3436 void *context, int looplimit)
3437 {
3438 struct remote_state *rs = get_remote_state ();
3439 int done, i, result_count;
3440 int startflag = 1;
3441 int result = 1;
3442 int loopcount = 0;
3443
3444 done = 0;
3445 while (!done)
3446 {
3447 if (loopcount++ > looplimit)
3448 {
3449 result = 0;
3450 warning (_("Remote fetch threadlist -infinite loop-."));
3451 break;
3452 }
3453 result = remote_get_threadlist (startflag, &rs->nextthread,
3454 MAXTHREADLISTRESULTS,
3455 &done, &result_count,
3456 rs->resultthreadlist);
3457 if (result <= 0)
3458 break;
3459 /* Clear for later iterations. */
3460 startflag = 0;
3461 /* Setup to resume next batch of thread references, set nextthread. */
3462 if (result_count >= 1)
3463 copy_threadref (&rs->nextthread,
3464 &rs->resultthreadlist[result_count - 1]);
3465 i = 0;
3466 while (result_count--)
3467 {
3468 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3469 {
3470 result = 0;
3471 break;
3472 }
3473 }
3474 }
3475 return result;
3476 }
3477
3478 /* A thread found on the remote target. */
3479
3480 struct thread_item
3481 {
3482 explicit thread_item (ptid_t ptid_)
3483 : ptid (ptid_)
3484 {}
3485
3486 thread_item (thread_item &&other) = default;
3487 thread_item &operator= (thread_item &&other) = default;
3488
3489 DISABLE_COPY_AND_ASSIGN (thread_item);
3490
3491 /* The thread's PTID. */
3492 ptid_t ptid;
3493
3494 /* The thread's extra info. */
3495 std::string extra;
3496
3497 /* The thread's name. */
3498 std::string name;
3499
3500 /* The core the thread was running on. -1 if not known. */
3501 int core = -1;
3502
3503 /* The thread handle associated with the thread. */
3504 gdb::byte_vector thread_handle;
3505 };
3506
3507 /* Context passed around to the various methods listing remote
3508 threads. As new threads are found, they're added to the ITEMS
3509 vector. */
3510
3511 struct threads_listing_context
3512 {
3513 /* Return true if this object contains an entry for a thread with ptid
3514 PTID. */
3515
3516 bool contains_thread (ptid_t ptid) const
3517 {
3518 auto match_ptid = [&] (const thread_item &item)
3519 {
3520 return item.ptid == ptid;
3521 };
3522
3523 auto it = std::find_if (this->items.begin (),
3524 this->items.end (),
3525 match_ptid);
3526
3527 return it != this->items.end ();
3528 }
3529
3530 /* Remove the thread with ptid PTID. */
3531
3532 void remove_thread (ptid_t ptid)
3533 {
3534 auto match_ptid = [&] (const thread_item &item)
3535 {
3536 return item.ptid == ptid;
3537 };
3538
3539 auto it = std::remove_if (this->items.begin (),
3540 this->items.end (),
3541 match_ptid);
3542
3543 if (it != this->items.end ())
3544 this->items.erase (it);
3545 }
3546
3547 /* The threads found on the remote target. */
3548 std::vector<thread_item> items;
3549 };
3550
3551 static int
3552 remote_newthread_step (threadref *ref, void *data)
3553 {
3554 struct threads_listing_context *context
3555 = (struct threads_listing_context *) data;
3556 int pid = inferior_ptid.pid ();
3557 int lwp = threadref_to_int (ref);
3558 ptid_t ptid (pid, lwp);
3559
3560 context->items.emplace_back (ptid);
3561
3562 return 1; /* continue iterator */
3563 }
3564
3565 #define CRAZY_MAX_THREADS 1000
3566
3567 ptid_t
3568 remote_target::remote_current_thread (ptid_t oldpid)
3569 {
3570 struct remote_state *rs = get_remote_state ();
3571
3572 putpkt ("qC");
3573 getpkt (&rs->buf, 0);
3574 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3575 {
3576 const char *obuf;
3577 ptid_t result;
3578
3579 result = read_ptid (&rs->buf[2], &obuf);
3580 if (*obuf != '\0' && remote_debug)
3581 fprintf_unfiltered (gdb_stdlog,
3582 "warning: garbage in qC reply\n");
3583
3584 return result;
3585 }
3586 else
3587 return oldpid;
3588 }
3589
3590 /* List remote threads using the deprecated qL packet. */
3591
3592 int
3593 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3594 {
3595 if (remote_threadlist_iterator (remote_newthread_step, context,
3596 CRAZY_MAX_THREADS) >= 0)
3597 return 1;
3598
3599 return 0;
3600 }
3601
3602 #if defined(HAVE_LIBEXPAT)
3603
3604 static void
3605 start_thread (struct gdb_xml_parser *parser,
3606 const struct gdb_xml_element *element,
3607 void *user_data,
3608 std::vector<gdb_xml_value> &attributes)
3609 {
3610 struct threads_listing_context *data
3611 = (struct threads_listing_context *) user_data;
3612 struct gdb_xml_value *attr;
3613
3614 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3615 ptid_t ptid = read_ptid (id, NULL);
3616
3617 data->items.emplace_back (ptid);
3618 thread_item &item = data->items.back ();
3619
3620 attr = xml_find_attribute (attributes, "core");
3621 if (attr != NULL)
3622 item.core = *(ULONGEST *) attr->value.get ();
3623
3624 attr = xml_find_attribute (attributes, "name");
3625 if (attr != NULL)
3626 item.name = (const char *) attr->value.get ();
3627
3628 attr = xml_find_attribute (attributes, "handle");
3629 if (attr != NULL)
3630 item.thread_handle = hex2bin ((const char *) attr->value.get ());
3631 }
3632
3633 static void
3634 end_thread (struct gdb_xml_parser *parser,
3635 const struct gdb_xml_element *element,
3636 void *user_data, const char *body_text)
3637 {
3638 struct threads_listing_context *data
3639 = (struct threads_listing_context *) user_data;
3640
3641 if (body_text != NULL && *body_text != '\0')
3642 data->items.back ().extra = body_text;
3643 }
3644
3645 const struct gdb_xml_attribute thread_attributes[] = {
3646 { "id", GDB_XML_AF_NONE, NULL, NULL },
3647 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3648 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3649 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3650 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3651 };
3652
3653 const struct gdb_xml_element thread_children[] = {
3654 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3655 };
3656
3657 const struct gdb_xml_element threads_children[] = {
3658 { "thread", thread_attributes, thread_children,
3659 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3660 start_thread, end_thread },
3661 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3662 };
3663
3664 const struct gdb_xml_element threads_elements[] = {
3665 { "threads", NULL, threads_children,
3666 GDB_XML_EF_NONE, NULL, NULL },
3667 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3668 };
3669
3670 #endif
3671
3672 /* List remote threads using qXfer:threads:read. */
3673
3674 int
3675 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3676 {
3677 #if defined(HAVE_LIBEXPAT)
3678 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3679 {
3680 gdb::optional<gdb::char_vector> xml
3681 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3682
3683 if (xml && (*xml)[0] != '\0')
3684 {
3685 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3686 threads_elements, xml->data (), context);
3687 }
3688
3689 return 1;
3690 }
3691 #endif
3692
3693 return 0;
3694 }
3695
3696 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3697
3698 int
3699 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3700 {
3701 struct remote_state *rs = get_remote_state ();
3702
3703 if (rs->use_threadinfo_query)
3704 {
3705 const char *bufp;
3706
3707 putpkt ("qfThreadInfo");
3708 getpkt (&rs->buf, 0);
3709 bufp = rs->buf.data ();
3710 if (bufp[0] != '\0') /* q packet recognized */
3711 {
3712 while (*bufp++ == 'm') /* reply contains one or more TID */
3713 {
3714 do
3715 {
3716 ptid_t ptid = read_ptid (bufp, &bufp);
3717 context->items.emplace_back (ptid);
3718 }
3719 while (*bufp++ == ','); /* comma-separated list */
3720 putpkt ("qsThreadInfo");
3721 getpkt (&rs->buf, 0);
3722 bufp = rs->buf.data ();
3723 }
3724 return 1;
3725 }
3726 else
3727 {
3728 /* Packet not recognized. */
3729 rs->use_threadinfo_query = 0;
3730 }
3731 }
3732
3733 return 0;
3734 }
3735
3736 /* Implement the to_update_thread_list function for the remote
3737 targets. */
3738
3739 void
3740 remote_target::update_thread_list ()
3741 {
3742 struct threads_listing_context context;
3743 int got_list = 0;
3744
3745 /* We have a few different mechanisms to fetch the thread list. Try
3746 them all, starting with the most preferred one first, falling
3747 back to older methods. */
3748 if (remote_get_threads_with_qxfer (&context)
3749 || remote_get_threads_with_qthreadinfo (&context)
3750 || remote_get_threads_with_ql (&context))
3751 {
3752 got_list = 1;
3753
3754 if (context.items.empty ()
3755 && remote_thread_always_alive (inferior_ptid))
3756 {
3757 /* Some targets don't really support threads, but still
3758 reply an (empty) thread list in response to the thread
3759 listing packets, instead of replying "packet not
3760 supported". Exit early so we don't delete the main
3761 thread. */
3762 return;
3763 }
3764
3765 /* CONTEXT now holds the current thread list on the remote
3766 target end. Delete GDB-side threads no longer found on the
3767 target. */
3768 for (thread_info *tp : all_threads_safe ())
3769 {
3770 if (!context.contains_thread (tp->ptid))
3771 {
3772 /* Not found. */
3773 delete_thread (tp);
3774 }
3775 }
3776
3777 /* Remove any unreported fork child threads from CONTEXT so
3778 that we don't interfere with follow fork, which is where
3779 creation of such threads is handled. */
3780 remove_new_fork_children (&context);
3781
3782 /* And now add threads we don't know about yet to our list. */
3783 for (thread_item &item : context.items)
3784 {
3785 if (item.ptid != null_ptid)
3786 {
3787 /* In non-stop mode, we assume new found threads are
3788 executing until proven otherwise with a stop reply.
3789 In all-stop, we can only get here if all threads are
3790 stopped. */
3791 int executing = target_is_non_stop_p () ? 1 : 0;
3792
3793 remote_notice_new_inferior (item.ptid, executing);
3794
3795 thread_info *tp = find_thread_ptid (item.ptid);
3796 remote_thread_info *info = get_remote_thread_info (tp);
3797 info->core = item.core;
3798 info->extra = std::move (item.extra);
3799 info->name = std::move (item.name);
3800 info->thread_handle = std::move (item.thread_handle);
3801 }
3802 }
3803 }
3804
3805 if (!got_list)
3806 {
3807 /* If no thread listing method is supported, then query whether
3808 each known thread is alive, one by one, with the T packet.
3809 If the target doesn't support threads at all, then this is a
3810 no-op. See remote_thread_alive. */
3811 prune_threads ();
3812 }
3813 }
3814
3815 /*
3816 * Collect a descriptive string about the given thread.
3817 * The target may say anything it wants to about the thread
3818 * (typically info about its blocked / runnable state, name, etc.).
3819 * This string will appear in the info threads display.
3820 *
3821 * Optional: targets are not required to implement this function.
3822 */
3823
3824 const char *
3825 remote_target::extra_thread_info (thread_info *tp)
3826 {
3827 struct remote_state *rs = get_remote_state ();
3828 int set;
3829 threadref id;
3830 struct gdb_ext_thread_info threadinfo;
3831
3832 if (rs->remote_desc == 0) /* paranoia */
3833 internal_error (__FILE__, __LINE__,
3834 _("remote_threads_extra_info"));
3835
3836 if (tp->ptid == magic_null_ptid
3837 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
3838 /* This is the main thread which was added by GDB. The remote
3839 server doesn't know about it. */
3840 return NULL;
3841
3842 std::string &extra = get_remote_thread_info (tp)->extra;
3843
3844 /* If already have cached info, use it. */
3845 if (!extra.empty ())
3846 return extra.c_str ();
3847
3848 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3849 {
3850 /* If we're using qXfer:threads:read, then the extra info is
3851 included in the XML. So if we didn't have anything cached,
3852 it's because there's really no extra info. */
3853 return NULL;
3854 }
3855
3856 if (rs->use_threadextra_query)
3857 {
3858 char *b = rs->buf.data ();
3859 char *endb = b + get_remote_packet_size ();
3860
3861 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3862 b += strlen (b);
3863 write_ptid (b, endb, tp->ptid);
3864
3865 putpkt (rs->buf);
3866 getpkt (&rs->buf, 0);
3867 if (rs->buf[0] != 0)
3868 {
3869 extra.resize (strlen (rs->buf.data ()) / 2);
3870 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
3871 return extra.c_str ();
3872 }
3873 }
3874
3875 /* If the above query fails, fall back to the old method. */
3876 rs->use_threadextra_query = 0;
3877 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3878 | TAG_MOREDISPLAY | TAG_DISPLAY;
3879 int_to_threadref (&id, tp->ptid.lwp ());
3880 if (remote_get_threadinfo (&id, set, &threadinfo))
3881 if (threadinfo.active)
3882 {
3883 if (*threadinfo.shortname)
3884 string_appendf (extra, " Name: %s", threadinfo.shortname);
3885 if (*threadinfo.display)
3886 {
3887 if (!extra.empty ())
3888 extra += ',';
3889 string_appendf (extra, " State: %s", threadinfo.display);
3890 }
3891 if (*threadinfo.more_display)
3892 {
3893 if (!extra.empty ())
3894 extra += ',';
3895 string_appendf (extra, " Priority: %s", threadinfo.more_display);
3896 }
3897 return extra.c_str ();
3898 }
3899 return NULL;
3900 }
3901 \f
3902
3903 bool
3904 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3905 struct static_tracepoint_marker *marker)
3906 {
3907 struct remote_state *rs = get_remote_state ();
3908 char *p = rs->buf.data ();
3909
3910 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3911 p += strlen (p);
3912 p += hexnumstr (p, addr);
3913 putpkt (rs->buf);
3914 getpkt (&rs->buf, 0);
3915 p = rs->buf.data ();
3916
3917 if (*p == 'E')
3918 error (_("Remote failure reply: %s"), p);
3919
3920 if (*p++ == 'm')
3921 {
3922 parse_static_tracepoint_marker_definition (p, NULL, marker);
3923 return true;
3924 }
3925
3926 return false;
3927 }
3928
3929 std::vector<static_tracepoint_marker>
3930 remote_target::static_tracepoint_markers_by_strid (const char *strid)
3931 {
3932 struct remote_state *rs = get_remote_state ();
3933 std::vector<static_tracepoint_marker> markers;
3934 const char *p;
3935 static_tracepoint_marker marker;
3936
3937 /* Ask for a first packet of static tracepoint marker
3938 definition. */
3939 putpkt ("qTfSTM");
3940 getpkt (&rs->buf, 0);
3941 p = rs->buf.data ();
3942 if (*p == 'E')
3943 error (_("Remote failure reply: %s"), p);
3944
3945 while (*p++ == 'm')
3946 {
3947 do
3948 {
3949 parse_static_tracepoint_marker_definition (p, &p, &marker);
3950
3951 if (strid == NULL || marker.str_id == strid)
3952 markers.push_back (std::move (marker));
3953 }
3954 while (*p++ == ','); /* comma-separated list */
3955 /* Ask for another packet of static tracepoint definition. */
3956 putpkt ("qTsSTM");
3957 getpkt (&rs->buf, 0);
3958 p = rs->buf.data ();
3959 }
3960
3961 return markers;
3962 }
3963
3964 \f
3965 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3966
3967 ptid_t
3968 remote_target::get_ada_task_ptid (long lwp, long thread)
3969 {
3970 return ptid_t (inferior_ptid.pid (), lwp, 0);
3971 }
3972 \f
3973
3974 /* Restart the remote side; this is an extended protocol operation. */
3975
3976 void
3977 remote_target::extended_remote_restart ()
3978 {
3979 struct remote_state *rs = get_remote_state ();
3980
3981 /* Send the restart command; for reasons I don't understand the
3982 remote side really expects a number after the "R". */
3983 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
3984 putpkt (rs->buf);
3985
3986 remote_fileio_reset ();
3987 }
3988 \f
3989 /* Clean up connection to a remote debugger. */
3990
3991 void
3992 remote_target::close ()
3993 {
3994 /* Make sure we leave stdin registered in the event loop. */
3995 terminal_ours ();
3996
3997 /* We don't have a connection to the remote stub anymore. Get rid
3998 of all the inferiors and their threads we were controlling.
3999 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4000 will be unable to find the thread corresponding to (pid, 0, 0). */
4001 inferior_ptid = null_ptid;
4002 discard_all_inferiors ();
4003
4004 trace_reset_local_state ();
4005
4006 delete this;
4007 }
4008
4009 remote_target::~remote_target ()
4010 {
4011 struct remote_state *rs = get_remote_state ();
4012
4013 /* Check for NULL because we may get here with a partially
4014 constructed target/connection. */
4015 if (rs->remote_desc == nullptr)
4016 return;
4017
4018 serial_close (rs->remote_desc);
4019
4020 /* We are destroying the remote target, so we should discard
4021 everything of this target. */
4022 discard_pending_stop_replies_in_queue ();
4023
4024 if (rs->remote_async_inferior_event_token)
4025 delete_async_event_handler (&rs->remote_async_inferior_event_token);
4026
4027 delete rs->notif_state;
4028 }
4029
4030 /* Query the remote side for the text, data and bss offsets. */
4031
4032 void
4033 remote_target::get_offsets ()
4034 {
4035 struct remote_state *rs = get_remote_state ();
4036 char *buf;
4037 char *ptr;
4038 int lose, num_segments = 0, do_sections, do_segments;
4039 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4040 struct section_offsets *offs;
4041 struct symfile_segment_data *data;
4042
4043 if (symfile_objfile == NULL)
4044 return;
4045
4046 putpkt ("qOffsets");
4047 getpkt (&rs->buf, 0);
4048 buf = rs->buf.data ();
4049
4050 if (buf[0] == '\000')
4051 return; /* Return silently. Stub doesn't support
4052 this command. */
4053 if (buf[0] == 'E')
4054 {
4055 warning (_("Remote failure reply: %s"), buf);
4056 return;
4057 }
4058
4059 /* Pick up each field in turn. This used to be done with scanf, but
4060 scanf will make trouble if CORE_ADDR size doesn't match
4061 conversion directives correctly. The following code will work
4062 with any size of CORE_ADDR. */
4063 text_addr = data_addr = bss_addr = 0;
4064 ptr = buf;
4065 lose = 0;
4066
4067 if (startswith (ptr, "Text="))
4068 {
4069 ptr += 5;
4070 /* Don't use strtol, could lose on big values. */
4071 while (*ptr && *ptr != ';')
4072 text_addr = (text_addr << 4) + fromhex (*ptr++);
4073
4074 if (startswith (ptr, ";Data="))
4075 {
4076 ptr += 6;
4077 while (*ptr && *ptr != ';')
4078 data_addr = (data_addr << 4) + fromhex (*ptr++);
4079 }
4080 else
4081 lose = 1;
4082
4083 if (!lose && startswith (ptr, ";Bss="))
4084 {
4085 ptr += 5;
4086 while (*ptr && *ptr != ';')
4087 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4088
4089 if (bss_addr != data_addr)
4090 warning (_("Target reported unsupported offsets: %s"), buf);
4091 }
4092 else
4093 lose = 1;
4094 }
4095 else if (startswith (ptr, "TextSeg="))
4096 {
4097 ptr += 8;
4098 /* Don't use strtol, could lose on big values. */
4099 while (*ptr && *ptr != ';')
4100 text_addr = (text_addr << 4) + fromhex (*ptr++);
4101 num_segments = 1;
4102
4103 if (startswith (ptr, ";DataSeg="))
4104 {
4105 ptr += 9;
4106 while (*ptr && *ptr != ';')
4107 data_addr = (data_addr << 4) + fromhex (*ptr++);
4108 num_segments++;
4109 }
4110 }
4111 else
4112 lose = 1;
4113
4114 if (lose)
4115 error (_("Malformed response to offset query, %s"), buf);
4116 else if (*ptr != '\0')
4117 warning (_("Target reported unsupported offsets: %s"), buf);
4118
4119 offs = ((struct section_offsets *)
4120 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
4121 memcpy (offs, symfile_objfile->section_offsets,
4122 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
4123
4124 data = get_symfile_segment_data (symfile_objfile->obfd);
4125 do_segments = (data != NULL);
4126 do_sections = num_segments == 0;
4127
4128 if (num_segments > 0)
4129 {
4130 segments[0] = text_addr;
4131 segments[1] = data_addr;
4132 }
4133 /* If we have two segments, we can still try to relocate everything
4134 by assuming that the .text and .data offsets apply to the whole
4135 text and data segments. Convert the offsets given in the packet
4136 to base addresses for symfile_map_offsets_to_segments. */
4137 else if (data && data->num_segments == 2)
4138 {
4139 segments[0] = data->segment_bases[0] + text_addr;
4140 segments[1] = data->segment_bases[1] + data_addr;
4141 num_segments = 2;
4142 }
4143 /* If the object file has only one segment, assume that it is text
4144 rather than data; main programs with no writable data are rare,
4145 but programs with no code are useless. Of course the code might
4146 have ended up in the data segment... to detect that we would need
4147 the permissions here. */
4148 else if (data && data->num_segments == 1)
4149 {
4150 segments[0] = data->segment_bases[0] + text_addr;
4151 num_segments = 1;
4152 }
4153 /* There's no way to relocate by segment. */
4154 else
4155 do_segments = 0;
4156
4157 if (do_segments)
4158 {
4159 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4160 offs, num_segments, segments);
4161
4162 if (ret == 0 && !do_sections)
4163 error (_("Can not handle qOffsets TextSeg "
4164 "response with this symbol file"));
4165
4166 if (ret > 0)
4167 do_sections = 0;
4168 }
4169
4170 if (data)
4171 free_symfile_segment_data (data);
4172
4173 if (do_sections)
4174 {
4175 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4176
4177 /* This is a temporary kludge to force data and bss to use the
4178 same offsets because that's what nlmconv does now. The real
4179 solution requires changes to the stub and remote.c that I
4180 don't have time to do right now. */
4181
4182 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4183 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4184 }
4185
4186 objfile_relocate (symfile_objfile, offs);
4187 }
4188
4189 /* Send interrupt_sequence to remote target. */
4190
4191 void
4192 remote_target::send_interrupt_sequence ()
4193 {
4194 struct remote_state *rs = get_remote_state ();
4195
4196 if (interrupt_sequence_mode == interrupt_sequence_control_c)
4197 remote_serial_write ("\x03", 1);
4198 else if (interrupt_sequence_mode == interrupt_sequence_break)
4199 serial_send_break (rs->remote_desc);
4200 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4201 {
4202 serial_send_break (rs->remote_desc);
4203 remote_serial_write ("g", 1);
4204 }
4205 else
4206 internal_error (__FILE__, __LINE__,
4207 _("Invalid value for interrupt_sequence_mode: %s."),
4208 interrupt_sequence_mode);
4209 }
4210
4211
4212 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4213 and extract the PTID. Returns NULL_PTID if not found. */
4214
4215 static ptid_t
4216 stop_reply_extract_thread (char *stop_reply)
4217 {
4218 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4219 {
4220 const char *p;
4221
4222 /* Txx r:val ; r:val (...) */
4223 p = &stop_reply[3];
4224
4225 /* Look for "register" named "thread". */
4226 while (*p != '\0')
4227 {
4228 const char *p1;
4229
4230 p1 = strchr (p, ':');
4231 if (p1 == NULL)
4232 return null_ptid;
4233
4234 if (strncmp (p, "thread", p1 - p) == 0)
4235 return read_ptid (++p1, &p);
4236
4237 p1 = strchr (p, ';');
4238 if (p1 == NULL)
4239 return null_ptid;
4240 p1++;
4241
4242 p = p1;
4243 }
4244 }
4245
4246 return null_ptid;
4247 }
4248
4249 /* Determine the remote side's current thread. If we have a stop
4250 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4251 "thread" register we can extract the current thread from. If not,
4252 ask the remote which is the current thread with qC. The former
4253 method avoids a roundtrip. */
4254
4255 ptid_t
4256 remote_target::get_current_thread (char *wait_status)
4257 {
4258 ptid_t ptid = null_ptid;
4259
4260 /* Note we don't use remote_parse_stop_reply as that makes use of
4261 the target architecture, which we haven't yet fully determined at
4262 this point. */
4263 if (wait_status != NULL)
4264 ptid = stop_reply_extract_thread (wait_status);
4265 if (ptid == null_ptid)
4266 ptid = remote_current_thread (inferior_ptid);
4267
4268 return ptid;
4269 }
4270
4271 /* Query the remote target for which is the current thread/process,
4272 add it to our tables, and update INFERIOR_PTID. The caller is
4273 responsible for setting the state such that the remote end is ready
4274 to return the current thread.
4275
4276 This function is called after handling the '?' or 'vRun' packets,
4277 whose response is a stop reply from which we can also try
4278 extracting the thread. If the target doesn't support the explicit
4279 qC query, we infer the current thread from that stop reply, passed
4280 in in WAIT_STATUS, which may be NULL. */
4281
4282 void
4283 remote_target::add_current_inferior_and_thread (char *wait_status)
4284 {
4285 struct remote_state *rs = get_remote_state ();
4286 bool fake_pid_p = false;
4287
4288 inferior_ptid = null_ptid;
4289
4290 /* Now, if we have thread information, update inferior_ptid. */
4291 ptid_t curr_ptid = get_current_thread (wait_status);
4292
4293 if (curr_ptid != null_ptid)
4294 {
4295 if (!remote_multi_process_p (rs))
4296 fake_pid_p = true;
4297 }
4298 else
4299 {
4300 /* Without this, some commands which require an active target
4301 (such as kill) won't work. This variable serves (at least)
4302 double duty as both the pid of the target process (if it has
4303 such), and as a flag indicating that a target is active. */
4304 curr_ptid = magic_null_ptid;
4305 fake_pid_p = true;
4306 }
4307
4308 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4309
4310 /* Add the main thread and switch to it. Don't try reading
4311 registers yet, since we haven't fetched the target description
4312 yet. */
4313 thread_info *tp = add_thread_silent (curr_ptid);
4314 switch_to_thread_no_regs (tp);
4315 }
4316
4317 /* Print info about a thread that was found already stopped on
4318 connection. */
4319
4320 static void
4321 print_one_stopped_thread (struct thread_info *thread)
4322 {
4323 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4324
4325 switch_to_thread (thread);
4326 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
4327 set_current_sal_from_frame (get_current_frame ());
4328
4329 thread->suspend.waitstatus_pending_p = 0;
4330
4331 if (ws->kind == TARGET_WAITKIND_STOPPED)
4332 {
4333 enum gdb_signal sig = ws->value.sig;
4334
4335 if (signal_print_state (sig))
4336 gdb::observers::signal_received.notify (sig);
4337 }
4338 gdb::observers::normal_stop.notify (NULL, 1);
4339 }
4340
4341 /* Process all initial stop replies the remote side sent in response
4342 to the ? packet. These indicate threads that were already stopped
4343 on initial connection. We mark these threads as stopped and print
4344 their current frame before giving the user the prompt. */
4345
4346 void
4347 remote_target::process_initial_stop_replies (int from_tty)
4348 {
4349 int pending_stop_replies = stop_reply_queue_length ();
4350 struct thread_info *selected = NULL;
4351 struct thread_info *lowest_stopped = NULL;
4352 struct thread_info *first = NULL;
4353
4354 /* Consume the initial pending events. */
4355 while (pending_stop_replies-- > 0)
4356 {
4357 ptid_t waiton_ptid = minus_one_ptid;
4358 ptid_t event_ptid;
4359 struct target_waitstatus ws;
4360 int ignore_event = 0;
4361
4362 memset (&ws, 0, sizeof (ws));
4363 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4364 if (remote_debug)
4365 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4366
4367 switch (ws.kind)
4368 {
4369 case TARGET_WAITKIND_IGNORE:
4370 case TARGET_WAITKIND_NO_RESUMED:
4371 case TARGET_WAITKIND_SIGNALLED:
4372 case TARGET_WAITKIND_EXITED:
4373 /* We shouldn't see these, but if we do, just ignore. */
4374 if (remote_debug)
4375 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4376 ignore_event = 1;
4377 break;
4378
4379 case TARGET_WAITKIND_EXECD:
4380 xfree (ws.value.execd_pathname);
4381 break;
4382 default:
4383 break;
4384 }
4385
4386 if (ignore_event)
4387 continue;
4388
4389 struct thread_info *evthread = find_thread_ptid (event_ptid);
4390
4391 if (ws.kind == TARGET_WAITKIND_STOPPED)
4392 {
4393 enum gdb_signal sig = ws.value.sig;
4394
4395 /* Stubs traditionally report SIGTRAP as initial signal,
4396 instead of signal 0. Suppress it. */
4397 if (sig == GDB_SIGNAL_TRAP)
4398 sig = GDB_SIGNAL_0;
4399 evthread->suspend.stop_signal = sig;
4400 ws.value.sig = sig;
4401 }
4402
4403 evthread->suspend.waitstatus = ws;
4404
4405 if (ws.kind != TARGET_WAITKIND_STOPPED
4406 || ws.value.sig != GDB_SIGNAL_0)
4407 evthread->suspend.waitstatus_pending_p = 1;
4408
4409 set_executing (event_ptid, 0);
4410 set_running (event_ptid, 0);
4411 get_remote_thread_info (evthread)->vcont_resumed = 0;
4412 }
4413
4414 /* "Notice" the new inferiors before anything related to
4415 registers/memory. */
4416 for (inferior *inf : all_non_exited_inferiors ())
4417 {
4418 inf->needs_setup = 1;
4419
4420 if (non_stop)
4421 {
4422 thread_info *thread = any_live_thread_of_inferior (inf);
4423 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
4424 from_tty);
4425 }
4426 }
4427
4428 /* If all-stop on top of non-stop, pause all threads. Note this
4429 records the threads' stop pc, so must be done after "noticing"
4430 the inferiors. */
4431 if (!non_stop)
4432 {
4433 stop_all_threads ();
4434
4435 /* If all threads of an inferior were already stopped, we
4436 haven't setup the inferior yet. */
4437 for (inferior *inf : all_non_exited_inferiors ())
4438 {
4439 if (inf->needs_setup)
4440 {
4441 thread_info *thread = any_live_thread_of_inferior (inf);
4442 switch_to_thread_no_regs (thread);
4443 setup_inferior (0);
4444 }
4445 }
4446 }
4447
4448 /* Now go over all threads that are stopped, and print their current
4449 frame. If all-stop, then if there's a signalled thread, pick
4450 that as current. */
4451 for (thread_info *thread : all_non_exited_threads ())
4452 {
4453 if (first == NULL)
4454 first = thread;
4455
4456 if (!non_stop)
4457 thread->set_running (false);
4458 else if (thread->state != THREAD_STOPPED)
4459 continue;
4460
4461 if (selected == NULL
4462 && thread->suspend.waitstatus_pending_p)
4463 selected = thread;
4464
4465 if (lowest_stopped == NULL
4466 || thread->inf->num < lowest_stopped->inf->num
4467 || thread->per_inf_num < lowest_stopped->per_inf_num)
4468 lowest_stopped = thread;
4469
4470 if (non_stop)
4471 print_one_stopped_thread (thread);
4472 }
4473
4474 /* In all-stop, we only print the status of one thread, and leave
4475 others with their status pending. */
4476 if (!non_stop)
4477 {
4478 thread_info *thread = selected;
4479 if (thread == NULL)
4480 thread = lowest_stopped;
4481 if (thread == NULL)
4482 thread = first;
4483
4484 print_one_stopped_thread (thread);
4485 }
4486
4487 /* For "info program". */
4488 thread_info *thread = inferior_thread ();
4489 if (thread->state == THREAD_STOPPED)
4490 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
4491 }
4492
4493 /* Start the remote connection and sync state. */
4494
4495 void
4496 remote_target::start_remote (int from_tty, int extended_p)
4497 {
4498 struct remote_state *rs = get_remote_state ();
4499 struct packet_config *noack_config;
4500 char *wait_status = NULL;
4501
4502 /* Signal other parts that we're going through the initial setup,
4503 and so things may not be stable yet. E.g., we don't try to
4504 install tracepoints until we've relocated symbols. Also, a
4505 Ctrl-C before we're connected and synced up can't interrupt the
4506 target. Instead, it offers to drop the (potentially wedged)
4507 connection. */
4508 rs->starting_up = 1;
4509
4510 QUIT;
4511
4512 if (interrupt_on_connect)
4513 send_interrupt_sequence ();
4514
4515 /* Ack any packet which the remote side has already sent. */
4516 remote_serial_write ("+", 1);
4517
4518 /* The first packet we send to the target is the optional "supported
4519 packets" request. If the target can answer this, it will tell us
4520 which later probes to skip. */
4521 remote_query_supported ();
4522
4523 /* If the stub wants to get a QAllow, compose one and send it. */
4524 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4525 set_permissions ();
4526
4527 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4528 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4529 as a reply to known packet. For packet "vFile:setfs:" it is an
4530 invalid reply and GDB would return error in
4531 remote_hostio_set_filesystem, making remote files access impossible.
4532 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4533 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4534 {
4535 const char v_mustreplyempty[] = "vMustReplyEmpty";
4536
4537 putpkt (v_mustreplyempty);
4538 getpkt (&rs->buf, 0);
4539 if (strcmp (rs->buf.data (), "OK") == 0)
4540 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4541 else if (strcmp (rs->buf.data (), "") != 0)
4542 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4543 rs->buf.data ());
4544 }
4545
4546 /* Next, we possibly activate noack mode.
4547
4548 If the QStartNoAckMode packet configuration is set to AUTO,
4549 enable noack mode if the stub reported a wish for it with
4550 qSupported.
4551
4552 If set to TRUE, then enable noack mode even if the stub didn't
4553 report it in qSupported. If the stub doesn't reply OK, the
4554 session ends with an error.
4555
4556 If FALSE, then don't activate noack mode, regardless of what the
4557 stub claimed should be the default with qSupported. */
4558
4559 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4560 if (packet_config_support (noack_config) != PACKET_DISABLE)
4561 {
4562 putpkt ("QStartNoAckMode");
4563 getpkt (&rs->buf, 0);
4564 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4565 rs->noack_mode = 1;
4566 }
4567
4568 if (extended_p)
4569 {
4570 /* Tell the remote that we are using the extended protocol. */
4571 putpkt ("!");
4572 getpkt (&rs->buf, 0);
4573 }
4574
4575 /* Let the target know which signals it is allowed to pass down to
4576 the program. */
4577 update_signals_program_target ();
4578
4579 /* Next, if the target can specify a description, read it. We do
4580 this before anything involving memory or registers. */
4581 target_find_description ();
4582
4583 /* Next, now that we know something about the target, update the
4584 address spaces in the program spaces. */
4585 update_address_spaces ();
4586
4587 /* On OSs where the list of libraries is global to all
4588 processes, we fetch them early. */
4589 if (gdbarch_has_global_solist (target_gdbarch ()))
4590 solib_add (NULL, from_tty, auto_solib_add);
4591
4592 if (target_is_non_stop_p ())
4593 {
4594 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4595 error (_("Non-stop mode requested, but remote "
4596 "does not support non-stop"));
4597
4598 putpkt ("QNonStop:1");
4599 getpkt (&rs->buf, 0);
4600
4601 if (strcmp (rs->buf.data (), "OK") != 0)
4602 error (_("Remote refused setting non-stop mode with: %s"),
4603 rs->buf.data ());
4604
4605 /* Find about threads and processes the stub is already
4606 controlling. We default to adding them in the running state.
4607 The '?' query below will then tell us about which threads are
4608 stopped. */
4609 this->update_thread_list ();
4610 }
4611 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4612 {
4613 /* Don't assume that the stub can operate in all-stop mode.
4614 Request it explicitly. */
4615 putpkt ("QNonStop:0");
4616 getpkt (&rs->buf, 0);
4617
4618 if (strcmp (rs->buf.data (), "OK") != 0)
4619 error (_("Remote refused setting all-stop mode with: %s"),
4620 rs->buf.data ());
4621 }
4622
4623 /* Upload TSVs regardless of whether the target is running or not. The
4624 remote stub, such as GDBserver, may have some predefined or builtin
4625 TSVs, even if the target is not running. */
4626 if (get_trace_status (current_trace_status ()) != -1)
4627 {
4628 struct uploaded_tsv *uploaded_tsvs = NULL;
4629
4630 upload_trace_state_variables (&uploaded_tsvs);
4631 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4632 }
4633
4634 /* Check whether the target is running now. */
4635 putpkt ("?");
4636 getpkt (&rs->buf, 0);
4637
4638 if (!target_is_non_stop_p ())
4639 {
4640 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4641 {
4642 if (!extended_p)
4643 error (_("The target is not running (try extended-remote?)"));
4644
4645 /* We're connected, but not running. Drop out before we
4646 call start_remote. */
4647 rs->starting_up = 0;
4648 return;
4649 }
4650 else
4651 {
4652 /* Save the reply for later. */
4653 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4654 strcpy (wait_status, rs->buf.data ());
4655 }
4656
4657 /* Fetch thread list. */
4658 target_update_thread_list ();
4659
4660 /* Let the stub know that we want it to return the thread. */
4661 set_continue_thread (minus_one_ptid);
4662
4663 if (thread_count () == 0)
4664 {
4665 /* Target has no concept of threads at all. GDB treats
4666 non-threaded target as single-threaded; add a main
4667 thread. */
4668 add_current_inferior_and_thread (wait_status);
4669 }
4670 else
4671 {
4672 /* We have thread information; select the thread the target
4673 says should be current. If we're reconnecting to a
4674 multi-threaded program, this will ideally be the thread
4675 that last reported an event before GDB disconnected. */
4676 inferior_ptid = get_current_thread (wait_status);
4677 if (inferior_ptid == null_ptid)
4678 {
4679 /* Odd... The target was able to list threads, but not
4680 tell us which thread was current (no "thread"
4681 register in T stop reply?). Just pick the first
4682 thread in the thread list then. */
4683
4684 if (remote_debug)
4685 fprintf_unfiltered (gdb_stdlog,
4686 "warning: couldn't determine remote "
4687 "current thread; picking first in list.\n");
4688
4689 inferior_ptid = inferior_list->thread_list->ptid;
4690 }
4691 }
4692
4693 /* init_wait_for_inferior should be called before get_offsets in order
4694 to manage `inserted' flag in bp loc in a correct state.
4695 breakpoint_init_inferior, called from init_wait_for_inferior, set
4696 `inserted' flag to 0, while before breakpoint_re_set, called from
4697 start_remote, set `inserted' flag to 1. In the initialization of
4698 inferior, breakpoint_init_inferior should be called first, and then
4699 breakpoint_re_set can be called. If this order is broken, state of
4700 `inserted' flag is wrong, and cause some problems on breakpoint
4701 manipulation. */
4702 init_wait_for_inferior ();
4703
4704 get_offsets (); /* Get text, data & bss offsets. */
4705
4706 /* If we could not find a description using qXfer, and we know
4707 how to do it some other way, try again. This is not
4708 supported for non-stop; it could be, but it is tricky if
4709 there are no stopped threads when we connect. */
4710 if (remote_read_description_p (this)
4711 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4712 {
4713 target_clear_description ();
4714 target_find_description ();
4715 }
4716
4717 /* Use the previously fetched status. */
4718 gdb_assert (wait_status != NULL);
4719 strcpy (rs->buf.data (), wait_status);
4720 rs->cached_wait_status = 1;
4721
4722 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
4723 }
4724 else
4725 {
4726 /* Clear WFI global state. Do this before finding about new
4727 threads and inferiors, and setting the current inferior.
4728 Otherwise we would clear the proceed status of the current
4729 inferior when we want its stop_soon state to be preserved
4730 (see notice_new_inferior). */
4731 init_wait_for_inferior ();
4732
4733 /* In non-stop, we will either get an "OK", meaning that there
4734 are no stopped threads at this time; or, a regular stop
4735 reply. In the latter case, there may be more than one thread
4736 stopped --- we pull them all out using the vStopped
4737 mechanism. */
4738 if (strcmp (rs->buf.data (), "OK") != 0)
4739 {
4740 struct notif_client *notif = &notif_client_stop;
4741
4742 /* remote_notif_get_pending_replies acks this one, and gets
4743 the rest out. */
4744 rs->notif_state->pending_event[notif_client_stop.id]
4745 = remote_notif_parse (this, notif, rs->buf.data ());
4746 remote_notif_get_pending_events (notif);
4747 }
4748
4749 if (thread_count () == 0)
4750 {
4751 if (!extended_p)
4752 error (_("The target is not running (try extended-remote?)"));
4753
4754 /* We're connected, but not running. Drop out before we
4755 call start_remote. */
4756 rs->starting_up = 0;
4757 return;
4758 }
4759
4760 /* In non-stop mode, any cached wait status will be stored in
4761 the stop reply queue. */
4762 gdb_assert (wait_status == NULL);
4763
4764 /* Report all signals during attach/startup. */
4765 pass_signals ({});
4766
4767 /* If there are already stopped threads, mark them stopped and
4768 report their stops before giving the prompt to the user. */
4769 process_initial_stop_replies (from_tty);
4770
4771 if (target_can_async_p ())
4772 target_async (1);
4773 }
4774
4775 /* If we connected to a live target, do some additional setup. */
4776 if (target_has_execution)
4777 {
4778 if (symfile_objfile) /* No use without a symbol-file. */
4779 remote_check_symbols ();
4780 }
4781
4782 /* Possibly the target has been engaged in a trace run started
4783 previously; find out where things are at. */
4784 if (get_trace_status (current_trace_status ()) != -1)
4785 {
4786 struct uploaded_tp *uploaded_tps = NULL;
4787
4788 if (current_trace_status ()->running)
4789 printf_filtered (_("Trace is already running on the target.\n"));
4790
4791 upload_tracepoints (&uploaded_tps);
4792
4793 merge_uploaded_tracepoints (&uploaded_tps);
4794 }
4795
4796 /* Possibly the target has been engaged in a btrace record started
4797 previously; find out where things are at. */
4798 remote_btrace_maybe_reopen ();
4799
4800 /* The thread and inferior lists are now synchronized with the
4801 target, our symbols have been relocated, and we're merged the
4802 target's tracepoints with ours. We're done with basic start
4803 up. */
4804 rs->starting_up = 0;
4805
4806 /* Maybe breakpoints are global and need to be inserted now. */
4807 if (breakpoints_should_be_inserted_now ())
4808 insert_breakpoints ();
4809 }
4810
4811 /* Open a connection to a remote debugger.
4812 NAME is the filename used for communication. */
4813
4814 void
4815 remote_target::open (const char *name, int from_tty)
4816 {
4817 open_1 (name, from_tty, 0);
4818 }
4819
4820 /* Open a connection to a remote debugger using the extended
4821 remote gdb protocol. NAME is the filename used for communication. */
4822
4823 void
4824 extended_remote_target::open (const char *name, int from_tty)
4825 {
4826 open_1 (name, from_tty, 1 /*extended_p */);
4827 }
4828
4829 /* Reset all packets back to "unknown support". Called when opening a
4830 new connection to a remote target. */
4831
4832 static void
4833 reset_all_packet_configs_support (void)
4834 {
4835 int i;
4836
4837 for (i = 0; i < PACKET_MAX; i++)
4838 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4839 }
4840
4841 /* Initialize all packet configs. */
4842
4843 static void
4844 init_all_packet_configs (void)
4845 {
4846 int i;
4847
4848 for (i = 0; i < PACKET_MAX; i++)
4849 {
4850 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4851 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4852 }
4853 }
4854
4855 /* Symbol look-up. */
4856
4857 void
4858 remote_target::remote_check_symbols ()
4859 {
4860 char *tmp;
4861 int end;
4862
4863 /* The remote side has no concept of inferiors that aren't running
4864 yet, it only knows about running processes. If we're connected
4865 but our current inferior is not running, we should not invite the
4866 remote target to request symbol lookups related to its
4867 (unrelated) current process. */
4868 if (!target_has_execution)
4869 return;
4870
4871 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4872 return;
4873
4874 /* Make sure the remote is pointing at the right process. Note
4875 there's no way to select "no process". */
4876 set_general_process ();
4877
4878 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4879 because we need both at the same time. */
4880 gdb::char_vector msg (get_remote_packet_size ());
4881 gdb::char_vector reply (get_remote_packet_size ());
4882
4883 /* Invite target to request symbol lookups. */
4884
4885 putpkt ("qSymbol::");
4886 getpkt (&reply, 0);
4887 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
4888
4889 while (startswith (reply.data (), "qSymbol:"))
4890 {
4891 struct bound_minimal_symbol sym;
4892
4893 tmp = &reply[8];
4894 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4895 strlen (tmp) / 2);
4896 msg[end] = '\0';
4897 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
4898 if (sym.minsym == NULL)
4899 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4900 &reply[8]);
4901 else
4902 {
4903 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4904 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4905
4906 /* If this is a function address, return the start of code
4907 instead of any data function descriptor. */
4908 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4909 sym_addr,
4910 current_top_target ());
4911
4912 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
4913 phex_nz (sym_addr, addr_size), &reply[8]);
4914 }
4915
4916 putpkt (msg.data ());
4917 getpkt (&reply, 0);
4918 }
4919 }
4920
4921 static struct serial *
4922 remote_serial_open (const char *name)
4923 {
4924 static int udp_warning = 0;
4925
4926 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4927 of in ser-tcp.c, because it is the remote protocol assuming that the
4928 serial connection is reliable and not the serial connection promising
4929 to be. */
4930 if (!udp_warning && startswith (name, "udp:"))
4931 {
4932 warning (_("The remote protocol may be unreliable over UDP.\n"
4933 "Some events may be lost, rendering further debugging "
4934 "impossible."));
4935 udp_warning = 1;
4936 }
4937
4938 return serial_open (name);
4939 }
4940
4941 /* Inform the target of our permission settings. The permission flags
4942 work without this, but if the target knows the settings, it can do
4943 a couple things. First, it can add its own check, to catch cases
4944 that somehow manage to get by the permissions checks in target
4945 methods. Second, if the target is wired to disallow particular
4946 settings (for instance, a system in the field that is not set up to
4947 be able to stop at a breakpoint), it can object to any unavailable
4948 permissions. */
4949
4950 void
4951 remote_target::set_permissions ()
4952 {
4953 struct remote_state *rs = get_remote_state ();
4954
4955 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
4956 "WriteReg:%x;WriteMem:%x;"
4957 "InsertBreak:%x;InsertTrace:%x;"
4958 "InsertFastTrace:%x;Stop:%x",
4959 may_write_registers, may_write_memory,
4960 may_insert_breakpoints, may_insert_tracepoints,
4961 may_insert_fast_tracepoints, may_stop);
4962 putpkt (rs->buf);
4963 getpkt (&rs->buf, 0);
4964
4965 /* If the target didn't like the packet, warn the user. Do not try
4966 to undo the user's settings, that would just be maddening. */
4967 if (strcmp (rs->buf.data (), "OK") != 0)
4968 warning (_("Remote refused setting permissions with: %s"),
4969 rs->buf.data ());
4970 }
4971
4972 /* This type describes each known response to the qSupported
4973 packet. */
4974 struct protocol_feature
4975 {
4976 /* The name of this protocol feature. */
4977 const char *name;
4978
4979 /* The default for this protocol feature. */
4980 enum packet_support default_support;
4981
4982 /* The function to call when this feature is reported, or after
4983 qSupported processing if the feature is not supported.
4984 The first argument points to this structure. The second
4985 argument indicates whether the packet requested support be
4986 enabled, disabled, or probed (or the default, if this function
4987 is being called at the end of processing and this feature was
4988 not reported). The third argument may be NULL; if not NULL, it
4989 is a NUL-terminated string taken from the packet following
4990 this feature's name and an equals sign. */
4991 void (*func) (remote_target *remote, const struct protocol_feature *,
4992 enum packet_support, const char *);
4993
4994 /* The corresponding packet for this feature. Only used if
4995 FUNC is remote_supported_packet. */
4996 int packet;
4997 };
4998
4999 static void
5000 remote_supported_packet (remote_target *remote,
5001 const struct protocol_feature *feature,
5002 enum packet_support support,
5003 const char *argument)
5004 {
5005 if (argument)
5006 {
5007 warning (_("Remote qSupported response supplied an unexpected value for"
5008 " \"%s\"."), feature->name);
5009 return;
5010 }
5011
5012 remote_protocol_packets[feature->packet].support = support;
5013 }
5014
5015 void
5016 remote_target::remote_packet_size (const protocol_feature *feature,
5017 enum packet_support support, const char *value)
5018 {
5019 struct remote_state *rs = get_remote_state ();
5020
5021 int packet_size;
5022 char *value_end;
5023
5024 if (support != PACKET_ENABLE)
5025 return;
5026
5027 if (value == NULL || *value == '\0')
5028 {
5029 warning (_("Remote target reported \"%s\" without a size."),
5030 feature->name);
5031 return;
5032 }
5033
5034 errno = 0;
5035 packet_size = strtol (value, &value_end, 16);
5036 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5037 {
5038 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5039 feature->name, value);
5040 return;
5041 }
5042
5043 /* Record the new maximum packet size. */
5044 rs->explicit_packet_size = packet_size;
5045 }
5046
5047 void
5048 remote_packet_size (remote_target *remote, const protocol_feature *feature,
5049 enum packet_support support, const char *value)
5050 {
5051 remote->remote_packet_size (feature, support, value);
5052 }
5053
5054 static const struct protocol_feature remote_protocol_features[] = {
5055 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
5056 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
5057 PACKET_qXfer_auxv },
5058 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5059 PACKET_qXfer_exec_file },
5060 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5061 PACKET_qXfer_features },
5062 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5063 PACKET_qXfer_libraries },
5064 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5065 PACKET_qXfer_libraries_svr4 },
5066 { "augmented-libraries-svr4-read", PACKET_DISABLE,
5067 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
5068 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
5069 PACKET_qXfer_memory_map },
5070 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5071 PACKET_qXfer_osdata },
5072 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5073 PACKET_qXfer_threads },
5074 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5075 PACKET_qXfer_traceframe_info },
5076 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5077 PACKET_QPassSignals },
5078 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5079 PACKET_QCatchSyscalls },
5080 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5081 PACKET_QProgramSignals },
5082 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5083 PACKET_QSetWorkingDir },
5084 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5085 PACKET_QStartupWithShell },
5086 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_QEnvironmentHexEncoded },
5088 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_QEnvironmentReset },
5090 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_QEnvironmentUnset },
5092 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_QStartNoAckMode },
5094 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_multiprocess_feature },
5096 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
5097 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5098 PACKET_qXfer_siginfo_read },
5099 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5100 PACKET_qXfer_siginfo_write },
5101 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
5102 PACKET_ConditionalTracepoints },
5103 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
5104 PACKET_ConditionalBreakpoints },
5105 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
5106 PACKET_BreakpointCommands },
5107 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
5108 PACKET_FastTracepoints },
5109 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
5110 PACKET_StaticTracepoints },
5111 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
5112 PACKET_InstallInTrace},
5113 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5114 PACKET_DisconnectedTracing_feature },
5115 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5116 PACKET_bc },
5117 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_bs },
5119 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_TracepointSource },
5121 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_QAllow },
5123 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_EnableDisableTracepoints_feature },
5125 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_qXfer_fdpic },
5127 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_qXfer_uib },
5129 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_QDisableRandomization },
5131 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
5132 { "QTBuffer:size", PACKET_DISABLE,
5133 remote_supported_packet, PACKET_QTBuffer_size},
5134 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
5135 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5136 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
5137 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
5138 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
5139 PACKET_qXfer_btrace },
5140 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
5141 PACKET_qXfer_btrace_conf },
5142 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
5143 PACKET_Qbtrace_conf_bts_size },
5144 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
5145 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
5146 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5147 PACKET_fork_event_feature },
5148 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5149 PACKET_vfork_event_feature },
5150 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5151 PACKET_exec_event_feature },
5152 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
5153 PACKET_Qbtrace_conf_pt_size },
5154 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5155 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
5156 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
5157 };
5158
5159 static char *remote_support_xml;
5160
5161 /* Register string appended to "xmlRegisters=" in qSupported query. */
5162
5163 void
5164 register_remote_support_xml (const char *xml)
5165 {
5166 #if defined(HAVE_LIBEXPAT)
5167 if (remote_support_xml == NULL)
5168 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
5169 else
5170 {
5171 char *copy = xstrdup (remote_support_xml + 13);
5172 char *p = strtok (copy, ",");
5173
5174 do
5175 {
5176 if (strcmp (p, xml) == 0)
5177 {
5178 /* already there */
5179 xfree (copy);
5180 return;
5181 }
5182 }
5183 while ((p = strtok (NULL, ",")) != NULL);
5184 xfree (copy);
5185
5186 remote_support_xml = reconcat (remote_support_xml,
5187 remote_support_xml, ",", xml,
5188 (char *) NULL);
5189 }
5190 #endif
5191 }
5192
5193 static void
5194 remote_query_supported_append (std::string *msg, const char *append)
5195 {
5196 if (!msg->empty ())
5197 msg->append (";");
5198 msg->append (append);
5199 }
5200
5201 void
5202 remote_target::remote_query_supported ()
5203 {
5204 struct remote_state *rs = get_remote_state ();
5205 char *next;
5206 int i;
5207 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5208
5209 /* The packet support flags are handled differently for this packet
5210 than for most others. We treat an error, a disabled packet, and
5211 an empty response identically: any features which must be reported
5212 to be used will be automatically disabled. An empty buffer
5213 accomplishes this, since that is also the representation for a list
5214 containing no features. */
5215
5216 rs->buf[0] = 0;
5217 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
5218 {
5219 std::string q;
5220
5221 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
5222 remote_query_supported_append (&q, "multiprocess+");
5223
5224 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
5225 remote_query_supported_append (&q, "swbreak+");
5226 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
5227 remote_query_supported_append (&q, "hwbreak+");
5228
5229 remote_query_supported_append (&q, "qRelocInsn+");
5230
5231 if (packet_set_cmd_state (PACKET_fork_event_feature)
5232 != AUTO_BOOLEAN_FALSE)
5233 remote_query_supported_append (&q, "fork-events+");
5234 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5235 != AUTO_BOOLEAN_FALSE)
5236 remote_query_supported_append (&q, "vfork-events+");
5237 if (packet_set_cmd_state (PACKET_exec_event_feature)
5238 != AUTO_BOOLEAN_FALSE)
5239 remote_query_supported_append (&q, "exec-events+");
5240
5241 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
5242 remote_query_supported_append (&q, "vContSupported+");
5243
5244 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
5245 remote_query_supported_append (&q, "QThreadEvents+");
5246
5247 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
5248 remote_query_supported_append (&q, "no-resumed+");
5249
5250 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5251 the qSupported:xmlRegisters=i386 handling. */
5252 if (remote_support_xml != NULL
5253 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
5254 remote_query_supported_append (&q, remote_support_xml);
5255
5256 q = "qSupported:" + q;
5257 putpkt (q.c_str ());
5258
5259 getpkt (&rs->buf, 0);
5260
5261 /* If an error occured, warn, but do not return - just reset the
5262 buffer to empty and go on to disable features. */
5263 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5264 == PACKET_ERROR)
5265 {
5266 warning (_("Remote failure reply: %s"), rs->buf.data ());
5267 rs->buf[0] = 0;
5268 }
5269 }
5270
5271 memset (seen, 0, sizeof (seen));
5272
5273 next = rs->buf.data ();
5274 while (*next)
5275 {
5276 enum packet_support is_supported;
5277 char *p, *end, *name_end, *value;
5278
5279 /* First separate out this item from the rest of the packet. If
5280 there's another item after this, we overwrite the separator
5281 (terminated strings are much easier to work with). */
5282 p = next;
5283 end = strchr (p, ';');
5284 if (end == NULL)
5285 {
5286 end = p + strlen (p);
5287 next = end;
5288 }
5289 else
5290 {
5291 *end = '\0';
5292 next = end + 1;
5293
5294 if (end == p)
5295 {
5296 warning (_("empty item in \"qSupported\" response"));
5297 continue;
5298 }
5299 }
5300
5301 name_end = strchr (p, '=');
5302 if (name_end)
5303 {
5304 /* This is a name=value entry. */
5305 is_supported = PACKET_ENABLE;
5306 value = name_end + 1;
5307 *name_end = '\0';
5308 }
5309 else
5310 {
5311 value = NULL;
5312 switch (end[-1])
5313 {
5314 case '+':
5315 is_supported = PACKET_ENABLE;
5316 break;
5317
5318 case '-':
5319 is_supported = PACKET_DISABLE;
5320 break;
5321
5322 case '?':
5323 is_supported = PACKET_SUPPORT_UNKNOWN;
5324 break;
5325
5326 default:
5327 warning (_("unrecognized item \"%s\" "
5328 "in \"qSupported\" response"), p);
5329 continue;
5330 }
5331 end[-1] = '\0';
5332 }
5333
5334 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5335 if (strcmp (remote_protocol_features[i].name, p) == 0)
5336 {
5337 const struct protocol_feature *feature;
5338
5339 seen[i] = 1;
5340 feature = &remote_protocol_features[i];
5341 feature->func (this, feature, is_supported, value);
5342 break;
5343 }
5344 }
5345
5346 /* If we increased the packet size, make sure to increase the global
5347 buffer size also. We delay this until after parsing the entire
5348 qSupported packet, because this is the same buffer we were
5349 parsing. */
5350 if (rs->buf.size () < rs->explicit_packet_size)
5351 rs->buf.resize (rs->explicit_packet_size);
5352
5353 /* Handle the defaults for unmentioned features. */
5354 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5355 if (!seen[i])
5356 {
5357 const struct protocol_feature *feature;
5358
5359 feature = &remote_protocol_features[i];
5360 feature->func (this, feature, feature->default_support, NULL);
5361 }
5362 }
5363
5364 /* Serial QUIT handler for the remote serial descriptor.
5365
5366 Defers handling a Ctrl-C until we're done with the current
5367 command/response packet sequence, unless:
5368
5369 - We're setting up the connection. Don't send a remote interrupt
5370 request, as we're not fully synced yet. Quit immediately
5371 instead.
5372
5373 - The target has been resumed in the foreground
5374 (target_terminal::is_ours is false) with a synchronous resume
5375 packet, and we're blocked waiting for the stop reply, thus a
5376 Ctrl-C should be immediately sent to the target.
5377
5378 - We get a second Ctrl-C while still within the same serial read or
5379 write. In that case the serial is seemingly wedged --- offer to
5380 quit/disconnect.
5381
5382 - We see a second Ctrl-C without target response, after having
5383 previously interrupted the target. In that case the target/stub
5384 is probably wedged --- offer to quit/disconnect.
5385 */
5386
5387 void
5388 remote_target::remote_serial_quit_handler ()
5389 {
5390 struct remote_state *rs = get_remote_state ();
5391
5392 if (check_quit_flag ())
5393 {
5394 /* If we're starting up, we're not fully synced yet. Quit
5395 immediately. */
5396 if (rs->starting_up)
5397 quit ();
5398 else if (rs->got_ctrlc_during_io)
5399 {
5400 if (query (_("The target is not responding to GDB commands.\n"
5401 "Stop debugging it? ")))
5402 remote_unpush_and_throw ();
5403 }
5404 /* If ^C has already been sent once, offer to disconnect. */
5405 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
5406 interrupt_query ();
5407 /* All-stop protocol, and blocked waiting for stop reply. Send
5408 an interrupt request. */
5409 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
5410 target_interrupt ();
5411 else
5412 rs->got_ctrlc_during_io = 1;
5413 }
5414 }
5415
5416 /* The remote_target that is current while the quit handler is
5417 overridden with remote_serial_quit_handler. */
5418 static remote_target *curr_quit_handler_target;
5419
5420 static void
5421 remote_serial_quit_handler ()
5422 {
5423 curr_quit_handler_target->remote_serial_quit_handler ();
5424 }
5425
5426 /* Remove any of the remote.c targets from target stack. Upper targets depend
5427 on it so remove them first. */
5428
5429 static void
5430 remote_unpush_target (void)
5431 {
5432 pop_all_targets_at_and_above (process_stratum);
5433 }
5434
5435 static void
5436 remote_unpush_and_throw (void)
5437 {
5438 remote_unpush_target ();
5439 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5440 }
5441
5442 void
5443 remote_target::open_1 (const char *name, int from_tty, int extended_p)
5444 {
5445 remote_target *curr_remote = get_current_remote_target ();
5446
5447 if (name == 0)
5448 error (_("To open a remote debug connection, you need to specify what\n"
5449 "serial device is attached to the remote system\n"
5450 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5451
5452 /* If we're connected to a running target, target_preopen will kill it.
5453 Ask this question first, before target_preopen has a chance to kill
5454 anything. */
5455 if (curr_remote != NULL && !have_inferiors ())
5456 {
5457 if (from_tty
5458 && !query (_("Already connected to a remote target. Disconnect? ")))
5459 error (_("Still connected."));
5460 }
5461
5462 /* Here the possibly existing remote target gets unpushed. */
5463 target_preopen (from_tty);
5464
5465 remote_fileio_reset ();
5466 reopen_exec_file ();
5467 reread_symbols ();
5468
5469 remote_target *remote
5470 = (extended_p ? new extended_remote_target () : new remote_target ());
5471 target_ops_up target_holder (remote);
5472
5473 remote_state *rs = remote->get_remote_state ();
5474
5475 /* See FIXME above. */
5476 if (!target_async_permitted)
5477 rs->wait_forever_enabled_p = 1;
5478
5479 rs->remote_desc = remote_serial_open (name);
5480 if (!rs->remote_desc)
5481 perror_with_name (name);
5482
5483 if (baud_rate != -1)
5484 {
5485 if (serial_setbaudrate (rs->remote_desc, baud_rate))
5486 {
5487 /* The requested speed could not be set. Error out to
5488 top level after closing remote_desc. Take care to
5489 set remote_desc to NULL to avoid closing remote_desc
5490 more than once. */
5491 serial_close (rs->remote_desc);
5492 rs->remote_desc = NULL;
5493 perror_with_name (name);
5494 }
5495 }
5496
5497 serial_setparity (rs->remote_desc, serial_parity);
5498 serial_raw (rs->remote_desc);
5499
5500 /* If there is something sitting in the buffer we might take it as a
5501 response to a command, which would be bad. */
5502 serial_flush_input (rs->remote_desc);
5503
5504 if (from_tty)
5505 {
5506 puts_filtered ("Remote debugging using ");
5507 puts_filtered (name);
5508 puts_filtered ("\n");
5509 }
5510
5511 /* Switch to using the remote target now. */
5512 push_target (std::move (target_holder));
5513
5514 /* Register extra event sources in the event loop. */
5515 rs->remote_async_inferior_event_token
5516 = create_async_event_handler (remote_async_inferior_event_handler,
5517 remote);
5518 rs->notif_state = remote_notif_state_allocate (remote);
5519
5520 /* Reset the target state; these things will be queried either by
5521 remote_query_supported or as they are needed. */
5522 reset_all_packet_configs_support ();
5523 rs->cached_wait_status = 0;
5524 rs->explicit_packet_size = 0;
5525 rs->noack_mode = 0;
5526 rs->extended = extended_p;
5527 rs->waiting_for_stop_reply = 0;
5528 rs->ctrlc_pending_p = 0;
5529 rs->got_ctrlc_during_io = 0;
5530
5531 rs->general_thread = not_sent_ptid;
5532 rs->continue_thread = not_sent_ptid;
5533 rs->remote_traceframe_number = -1;
5534
5535 rs->last_resume_exec_dir = EXEC_FORWARD;
5536
5537 /* Probe for ability to use "ThreadInfo" query, as required. */
5538 rs->use_threadinfo_query = 1;
5539 rs->use_threadextra_query = 1;
5540
5541 rs->readahead_cache.invalidate ();
5542
5543 if (target_async_permitted)
5544 {
5545 /* FIXME: cagney/1999-09-23: During the initial connection it is
5546 assumed that the target is already ready and able to respond to
5547 requests. Unfortunately remote_start_remote() eventually calls
5548 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5549 around this. Eventually a mechanism that allows
5550 wait_for_inferior() to expect/get timeouts will be
5551 implemented. */
5552 rs->wait_forever_enabled_p = 0;
5553 }
5554
5555 /* First delete any symbols previously loaded from shared libraries. */
5556 no_shared_libraries (NULL, 0);
5557
5558 /* Start the remote connection. If error() or QUIT, discard this
5559 target (we'd otherwise be in an inconsistent state) and then
5560 propogate the error on up the exception chain. This ensures that
5561 the caller doesn't stumble along blindly assuming that the
5562 function succeeded. The CLI doesn't have this problem but other
5563 UI's, such as MI do.
5564
5565 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5566 this function should return an error indication letting the
5567 caller restore the previous state. Unfortunately the command
5568 ``target remote'' is directly wired to this function making that
5569 impossible. On a positive note, the CLI side of this problem has
5570 been fixed - the function set_cmd_context() makes it possible for
5571 all the ``target ....'' commands to share a common callback
5572 function. See cli-dump.c. */
5573 {
5574
5575 try
5576 {
5577 remote->start_remote (from_tty, extended_p);
5578 }
5579 catch (const gdb_exception &ex)
5580 {
5581 /* Pop the partially set up target - unless something else did
5582 already before throwing the exception. */
5583 if (ex.error != TARGET_CLOSE_ERROR)
5584 remote_unpush_target ();
5585 throw;
5586 }
5587 }
5588
5589 remote_btrace_reset (rs);
5590
5591 if (target_async_permitted)
5592 rs->wait_forever_enabled_p = 1;
5593 }
5594
5595 /* Detach the specified process. */
5596
5597 void
5598 remote_target::remote_detach_pid (int pid)
5599 {
5600 struct remote_state *rs = get_remote_state ();
5601
5602 /* This should not be necessary, but the handling for D;PID in
5603 GDBserver versions prior to 8.2 incorrectly assumes that the
5604 selected process points to the same process we're detaching,
5605 leading to misbehavior (and possibly GDBserver crashing) when it
5606 does not. Since it's easy and cheap, work around it by forcing
5607 GDBserver to select GDB's current process. */
5608 set_general_process ();
5609
5610 if (remote_multi_process_p (rs))
5611 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
5612 else
5613 strcpy (rs->buf.data (), "D");
5614
5615 putpkt (rs->buf);
5616 getpkt (&rs->buf, 0);
5617
5618 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5619 ;
5620 else if (rs->buf[0] == '\0')
5621 error (_("Remote doesn't know how to detach"));
5622 else
5623 error (_("Can't detach process."));
5624 }
5625
5626 /* This detaches a program to which we previously attached, using
5627 inferior_ptid to identify the process. After this is done, GDB
5628 can be used to debug some other program. We better not have left
5629 any breakpoints in the target program or it'll die when it hits
5630 one. */
5631
5632 void
5633 remote_target::remote_detach_1 (inferior *inf, int from_tty)
5634 {
5635 int pid = inferior_ptid.pid ();
5636 struct remote_state *rs = get_remote_state ();
5637 int is_fork_parent;
5638
5639 if (!target_has_execution)
5640 error (_("No process to detach from."));
5641
5642 target_announce_detach (from_tty);
5643
5644 /* Tell the remote target to detach. */
5645 remote_detach_pid (pid);
5646
5647 /* Exit only if this is the only active inferior. */
5648 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5649 puts_filtered (_("Ending remote debugging.\n"));
5650
5651 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5652
5653 /* Check to see if we are detaching a fork parent. Note that if we
5654 are detaching a fork child, tp == NULL. */
5655 is_fork_parent = (tp != NULL
5656 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5657
5658 /* If doing detach-on-fork, we don't mourn, because that will delete
5659 breakpoints that should be available for the followed inferior. */
5660 if (!is_fork_parent)
5661 {
5662 /* Save the pid as a string before mourning, since that will
5663 unpush the remote target, and we need the string after. */
5664 std::string infpid = target_pid_to_str (ptid_t (pid));
5665
5666 target_mourn_inferior (inferior_ptid);
5667 if (print_inferior_events)
5668 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5669 inf->num, infpid.c_str ());
5670 }
5671 else
5672 {
5673 inferior_ptid = null_ptid;
5674 detach_inferior (current_inferior ());
5675 }
5676 }
5677
5678 void
5679 remote_target::detach (inferior *inf, int from_tty)
5680 {
5681 remote_detach_1 (inf, from_tty);
5682 }
5683
5684 void
5685 extended_remote_target::detach (inferior *inf, int from_tty)
5686 {
5687 remote_detach_1 (inf, from_tty);
5688 }
5689
5690 /* Target follow-fork function for remote targets. On entry, and
5691 at return, the current inferior is the fork parent.
5692
5693 Note that although this is currently only used for extended-remote,
5694 it is named remote_follow_fork in anticipation of using it for the
5695 remote target as well. */
5696
5697 int
5698 remote_target::follow_fork (int follow_child, int detach_fork)
5699 {
5700 struct remote_state *rs = get_remote_state ();
5701 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5702
5703 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5704 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5705 {
5706 /* When following the parent and detaching the child, we detach
5707 the child here. For the case of following the child and
5708 detaching the parent, the detach is done in the target-
5709 independent follow fork code in infrun.c. We can't use
5710 target_detach when detaching an unfollowed child because
5711 the client side doesn't know anything about the child. */
5712 if (detach_fork && !follow_child)
5713 {
5714 /* Detach the fork child. */
5715 ptid_t child_ptid;
5716 pid_t child_pid;
5717
5718 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5719 child_pid = child_ptid.pid ();
5720
5721 remote_detach_pid (child_pid);
5722 }
5723 }
5724 return 0;
5725 }
5726
5727 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5728 in the program space of the new inferior. On entry and at return the
5729 current inferior is the exec'ing inferior. INF is the new exec'd
5730 inferior, which may be the same as the exec'ing inferior unless
5731 follow-exec-mode is "new". */
5732
5733 void
5734 remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
5735 {
5736 /* We know that this is a target file name, so if it has the "target:"
5737 prefix we strip it off before saving it in the program space. */
5738 if (is_target_filename (execd_pathname))
5739 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5740
5741 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5742 }
5743
5744 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5745
5746 void
5747 remote_target::disconnect (const char *args, int from_tty)
5748 {
5749 if (args)
5750 error (_("Argument given to \"disconnect\" when remotely debugging."));
5751
5752 /* Make sure we unpush even the extended remote targets. Calling
5753 target_mourn_inferior won't unpush, and remote_mourn won't
5754 unpush if there is more than one inferior left. */
5755 unpush_target (this);
5756 generic_mourn_inferior ();
5757
5758 if (from_tty)
5759 puts_filtered ("Ending remote debugging.\n");
5760 }
5761
5762 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5763 be chatty about it. */
5764
5765 void
5766 extended_remote_target::attach (const char *args, int from_tty)
5767 {
5768 struct remote_state *rs = get_remote_state ();
5769 int pid;
5770 char *wait_status = NULL;
5771
5772 pid = parse_pid_to_attach (args);
5773
5774 /* Remote PID can be freely equal to getpid, do not check it here the same
5775 way as in other targets. */
5776
5777 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5778 error (_("This target does not support attaching to a process"));
5779
5780 if (from_tty)
5781 {
5782 char *exec_file = get_exec_file (0);
5783
5784 if (exec_file)
5785 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5786 target_pid_to_str (ptid_t (pid)).c_str ());
5787 else
5788 printf_unfiltered (_("Attaching to %s\n"),
5789 target_pid_to_str (ptid_t (pid)).c_str ());
5790 }
5791
5792 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
5793 putpkt (rs->buf);
5794 getpkt (&rs->buf, 0);
5795
5796 switch (packet_ok (rs->buf,
5797 &remote_protocol_packets[PACKET_vAttach]))
5798 {
5799 case PACKET_OK:
5800 if (!target_is_non_stop_p ())
5801 {
5802 /* Save the reply for later. */
5803 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5804 strcpy (wait_status, rs->buf.data ());
5805 }
5806 else if (strcmp (rs->buf.data (), "OK") != 0)
5807 error (_("Attaching to %s failed with: %s"),
5808 target_pid_to_str (ptid_t (pid)).c_str (),
5809 rs->buf.data ());
5810 break;
5811 case PACKET_UNKNOWN:
5812 error (_("This target does not support attaching to a process"));
5813 default:
5814 error (_("Attaching to %s failed"),
5815 target_pid_to_str (ptid_t (pid)).c_str ());
5816 }
5817
5818 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
5819
5820 inferior_ptid = ptid_t (pid);
5821
5822 if (target_is_non_stop_p ())
5823 {
5824 struct thread_info *thread;
5825
5826 /* Get list of threads. */
5827 update_thread_list ();
5828
5829 thread = first_thread_of_inferior (current_inferior ());
5830 if (thread)
5831 inferior_ptid = thread->ptid;
5832 else
5833 inferior_ptid = ptid_t (pid);
5834
5835 /* Invalidate our notion of the remote current thread. */
5836 record_currthread (rs, minus_one_ptid);
5837 }
5838 else
5839 {
5840 /* Now, if we have thread information, update inferior_ptid. */
5841 inferior_ptid = remote_current_thread (inferior_ptid);
5842
5843 /* Add the main thread to the thread list. */
5844 thread_info *thr = add_thread_silent (inferior_ptid);
5845 /* Don't consider the thread stopped until we've processed the
5846 saved stop reply. */
5847 set_executing (thr->ptid, true);
5848 }
5849
5850 /* Next, if the target can specify a description, read it. We do
5851 this before anything involving memory or registers. */
5852 target_find_description ();
5853
5854 if (!target_is_non_stop_p ())
5855 {
5856 /* Use the previously fetched status. */
5857 gdb_assert (wait_status != NULL);
5858
5859 if (target_can_async_p ())
5860 {
5861 struct notif_event *reply
5862 = remote_notif_parse (this, &notif_client_stop, wait_status);
5863
5864 push_stop_reply ((struct stop_reply *) reply);
5865
5866 target_async (1);
5867 }
5868 else
5869 {
5870 gdb_assert (wait_status != NULL);
5871 strcpy (rs->buf.data (), wait_status);
5872 rs->cached_wait_status = 1;
5873 }
5874 }
5875 else
5876 gdb_assert (wait_status == NULL);
5877 }
5878
5879 /* Implementation of the to_post_attach method. */
5880
5881 void
5882 extended_remote_target::post_attach (int pid)
5883 {
5884 /* Get text, data & bss offsets. */
5885 get_offsets ();
5886
5887 /* In certain cases GDB might not have had the chance to start
5888 symbol lookup up until now. This could happen if the debugged
5889 binary is not using shared libraries, the vsyscall page is not
5890 present (on Linux) and the binary itself hadn't changed since the
5891 debugging process was started. */
5892 if (symfile_objfile != NULL)
5893 remote_check_symbols();
5894 }
5895
5896 \f
5897 /* Check for the availability of vCont. This function should also check
5898 the response. */
5899
5900 void
5901 remote_target::remote_vcont_probe ()
5902 {
5903 remote_state *rs = get_remote_state ();
5904 char *buf;
5905
5906 strcpy (rs->buf.data (), "vCont?");
5907 putpkt (rs->buf);
5908 getpkt (&rs->buf, 0);
5909 buf = rs->buf.data ();
5910
5911 /* Make sure that the features we assume are supported. */
5912 if (startswith (buf, "vCont"))
5913 {
5914 char *p = &buf[5];
5915 int support_c, support_C;
5916
5917 rs->supports_vCont.s = 0;
5918 rs->supports_vCont.S = 0;
5919 support_c = 0;
5920 support_C = 0;
5921 rs->supports_vCont.t = 0;
5922 rs->supports_vCont.r = 0;
5923 while (p && *p == ';')
5924 {
5925 p++;
5926 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5927 rs->supports_vCont.s = 1;
5928 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5929 rs->supports_vCont.S = 1;
5930 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5931 support_c = 1;
5932 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5933 support_C = 1;
5934 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5935 rs->supports_vCont.t = 1;
5936 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5937 rs->supports_vCont.r = 1;
5938
5939 p = strchr (p, ';');
5940 }
5941
5942 /* If c, and C are not all supported, we can't use vCont. Clearing
5943 BUF will make packet_ok disable the packet. */
5944 if (!support_c || !support_C)
5945 buf[0] = 0;
5946 }
5947
5948 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5949 }
5950
5951 /* Helper function for building "vCont" resumptions. Write a
5952 resumption to P. ENDP points to one-passed-the-end of the buffer
5953 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5954 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5955 resumed thread should be single-stepped and/or signalled. If PTID
5956 equals minus_one_ptid, then all threads are resumed; if PTID
5957 represents a process, then all threads of the process are resumed;
5958 the thread to be stepped and/or signalled is given in the global
5959 INFERIOR_PTID. */
5960
5961 char *
5962 remote_target::append_resumption (char *p, char *endp,
5963 ptid_t ptid, int step, gdb_signal siggnal)
5964 {
5965 struct remote_state *rs = get_remote_state ();
5966
5967 if (step && siggnal != GDB_SIGNAL_0)
5968 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
5969 else if (step
5970 /* GDB is willing to range step. */
5971 && use_range_stepping
5972 /* Target supports range stepping. */
5973 && rs->supports_vCont.r
5974 /* We don't currently support range stepping multiple
5975 threads with a wildcard (though the protocol allows it,
5976 so stubs shouldn't make an active effort to forbid
5977 it). */
5978 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
5979 {
5980 struct thread_info *tp;
5981
5982 if (ptid == minus_one_ptid)
5983 {
5984 /* If we don't know about the target thread's tid, then
5985 we're resuming magic_null_ptid (see caller). */
5986 tp = find_thread_ptid (magic_null_ptid);
5987 }
5988 else
5989 tp = find_thread_ptid (ptid);
5990 gdb_assert (tp != NULL);
5991
5992 if (tp->control.may_range_step)
5993 {
5994 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5995
5996 p += xsnprintf (p, endp - p, ";r%s,%s",
5997 phex_nz (tp->control.step_range_start,
5998 addr_size),
5999 phex_nz (tp->control.step_range_end,
6000 addr_size));
6001 }
6002 else
6003 p += xsnprintf (p, endp - p, ";s");
6004 }
6005 else if (step)
6006 p += xsnprintf (p, endp - p, ";s");
6007 else if (siggnal != GDB_SIGNAL_0)
6008 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6009 else
6010 p += xsnprintf (p, endp - p, ";c");
6011
6012 if (remote_multi_process_p (rs) && ptid.is_pid ())
6013 {
6014 ptid_t nptid;
6015
6016 /* All (-1) threads of process. */
6017 nptid = ptid_t (ptid.pid (), -1, 0);
6018
6019 p += xsnprintf (p, endp - p, ":");
6020 p = write_ptid (p, endp, nptid);
6021 }
6022 else if (ptid != minus_one_ptid)
6023 {
6024 p += xsnprintf (p, endp - p, ":");
6025 p = write_ptid (p, endp, ptid);
6026 }
6027
6028 return p;
6029 }
6030
6031 /* Clear the thread's private info on resume. */
6032
6033 static void
6034 resume_clear_thread_private_info (struct thread_info *thread)
6035 {
6036 if (thread->priv != NULL)
6037 {
6038 remote_thread_info *priv = get_remote_thread_info (thread);
6039
6040 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6041 priv->watch_data_address = 0;
6042 }
6043 }
6044
6045 /* Append a vCont continue-with-signal action for threads that have a
6046 non-zero stop signal. */
6047
6048 char *
6049 remote_target::append_pending_thread_resumptions (char *p, char *endp,
6050 ptid_t ptid)
6051 {
6052 for (thread_info *thread : all_non_exited_threads (ptid))
6053 if (inferior_ptid != thread->ptid
6054 && thread->suspend.stop_signal != GDB_SIGNAL_0)
6055 {
6056 p = append_resumption (p, endp, thread->ptid,
6057 0, thread->suspend.stop_signal);
6058 thread->suspend.stop_signal = GDB_SIGNAL_0;
6059 resume_clear_thread_private_info (thread);
6060 }
6061
6062 return p;
6063 }
6064
6065 /* Set the target running, using the packets that use Hc
6066 (c/s/C/S). */
6067
6068 void
6069 remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6070 gdb_signal siggnal)
6071 {
6072 struct remote_state *rs = get_remote_state ();
6073 char *buf;
6074
6075 rs->last_sent_signal = siggnal;
6076 rs->last_sent_step = step;
6077
6078 /* The c/s/C/S resume packets use Hc, so set the continue
6079 thread. */
6080 if (ptid == minus_one_ptid)
6081 set_continue_thread (any_thread_ptid);
6082 else
6083 set_continue_thread (ptid);
6084
6085 for (thread_info *thread : all_non_exited_threads ())
6086 resume_clear_thread_private_info (thread);
6087
6088 buf = rs->buf.data ();
6089 if (::execution_direction == EXEC_REVERSE)
6090 {
6091 /* We don't pass signals to the target in reverse exec mode. */
6092 if (info_verbose && siggnal != GDB_SIGNAL_0)
6093 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6094 siggnal);
6095
6096 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6097 error (_("Remote reverse-step not supported."));
6098 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6099 error (_("Remote reverse-continue not supported."));
6100
6101 strcpy (buf, step ? "bs" : "bc");
6102 }
6103 else if (siggnal != GDB_SIGNAL_0)
6104 {
6105 buf[0] = step ? 'S' : 'C';
6106 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6107 buf[2] = tohex (((int) siggnal) & 0xf);
6108 buf[3] = '\0';
6109 }
6110 else
6111 strcpy (buf, step ? "s" : "c");
6112
6113 putpkt (buf);
6114 }
6115
6116 /* Resume the remote inferior by using a "vCont" packet. The thread
6117 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6118 resumed thread should be single-stepped and/or signalled. If PTID
6119 equals minus_one_ptid, then all threads are resumed; the thread to
6120 be stepped and/or signalled is given in the global INFERIOR_PTID.
6121 This function returns non-zero iff it resumes the inferior.
6122
6123 This function issues a strict subset of all possible vCont commands
6124 at the moment. */
6125
6126 int
6127 remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6128 enum gdb_signal siggnal)
6129 {
6130 struct remote_state *rs = get_remote_state ();
6131 char *p;
6132 char *endp;
6133
6134 /* No reverse execution actions defined for vCont. */
6135 if (::execution_direction == EXEC_REVERSE)
6136 return 0;
6137
6138 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6139 remote_vcont_probe ();
6140
6141 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6142 return 0;
6143
6144 p = rs->buf.data ();
6145 endp = p + get_remote_packet_size ();
6146
6147 /* If we could generate a wider range of packets, we'd have to worry
6148 about overflowing BUF. Should there be a generic
6149 "multi-part-packet" packet? */
6150
6151 p += xsnprintf (p, endp - p, "vCont");
6152
6153 if (ptid == magic_null_ptid)
6154 {
6155 /* MAGIC_NULL_PTID means that we don't have any active threads,
6156 so we don't have any TID numbers the inferior will
6157 understand. Make sure to only send forms that do not specify
6158 a TID. */
6159 append_resumption (p, endp, minus_one_ptid, step, siggnal);
6160 }
6161 else if (ptid == minus_one_ptid || ptid.is_pid ())
6162 {
6163 /* Resume all threads (of all processes, or of a single
6164 process), with preference for INFERIOR_PTID. This assumes
6165 inferior_ptid belongs to the set of all threads we are about
6166 to resume. */
6167 if (step || siggnal != GDB_SIGNAL_0)
6168 {
6169 /* Step inferior_ptid, with or without signal. */
6170 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
6171 }
6172
6173 /* Also pass down any pending signaled resumption for other
6174 threads not the current. */
6175 p = append_pending_thread_resumptions (p, endp, ptid);
6176
6177 /* And continue others without a signal. */
6178 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
6179 }
6180 else
6181 {
6182 /* Scheduler locking; resume only PTID. */
6183 append_resumption (p, endp, ptid, step, siggnal);
6184 }
6185
6186 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
6187 putpkt (rs->buf);
6188
6189 if (target_is_non_stop_p ())
6190 {
6191 /* In non-stop, the stub replies to vCont with "OK". The stop
6192 reply will be reported asynchronously by means of a `%Stop'
6193 notification. */
6194 getpkt (&rs->buf, 0);
6195 if (strcmp (rs->buf.data (), "OK") != 0)
6196 error (_("Unexpected vCont reply in non-stop mode: %s"),
6197 rs->buf.data ());
6198 }
6199
6200 return 1;
6201 }
6202
6203 /* Tell the remote machine to resume. */
6204
6205 void
6206 remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
6207 {
6208 struct remote_state *rs = get_remote_state ();
6209
6210 /* When connected in non-stop mode, the core resumes threads
6211 individually. Resuming remote threads directly in target_resume
6212 would thus result in sending one packet per thread. Instead, to
6213 minimize roundtrip latency, here we just store the resume
6214 request; the actual remote resumption will be done in
6215 target_commit_resume / remote_commit_resume, where we'll be able
6216 to do vCont action coalescing. */
6217 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
6218 {
6219 remote_thread_info *remote_thr;
6220
6221 if (minus_one_ptid == ptid || ptid.is_pid ())
6222 remote_thr = get_remote_thread_info (inferior_ptid);
6223 else
6224 remote_thr = get_remote_thread_info (ptid);
6225
6226 remote_thr->last_resume_step = step;
6227 remote_thr->last_resume_sig = siggnal;
6228 return;
6229 }
6230
6231 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6232 (explained in remote-notif.c:handle_notification) so
6233 remote_notif_process is not called. We need find a place where
6234 it is safe to start a 'vNotif' sequence. It is good to do it
6235 before resuming inferior, because inferior was stopped and no RSP
6236 traffic at that moment. */
6237 if (!target_is_non_stop_p ())
6238 remote_notif_process (rs->notif_state, &notif_client_stop);
6239
6240 rs->last_resume_exec_dir = ::execution_direction;
6241
6242 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6243 if (!remote_resume_with_vcont (ptid, step, siggnal))
6244 remote_resume_with_hc (ptid, step, siggnal);
6245
6246 /* We are about to start executing the inferior, let's register it
6247 with the event loop. NOTE: this is the one place where all the
6248 execution commands end up. We could alternatively do this in each
6249 of the execution commands in infcmd.c. */
6250 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6251 into infcmd.c in order to allow inferior function calls to work
6252 NOT asynchronously. */
6253 if (target_can_async_p ())
6254 target_async (1);
6255
6256 /* We've just told the target to resume. The remote server will
6257 wait for the inferior to stop, and then send a stop reply. In
6258 the mean time, we can't start another command/query ourselves
6259 because the stub wouldn't be ready to process it. This applies
6260 only to the base all-stop protocol, however. In non-stop (which
6261 only supports vCont), the stub replies with an "OK", and is
6262 immediate able to process further serial input. */
6263 if (!target_is_non_stop_p ())
6264 rs->waiting_for_stop_reply = 1;
6265 }
6266
6267 static int is_pending_fork_parent_thread (struct thread_info *thread);
6268
6269 /* Private per-inferior info for target remote processes. */
6270
6271 struct remote_inferior : public private_inferior
6272 {
6273 /* Whether we can send a wildcard vCont for this process. */
6274 bool may_wildcard_vcont = true;
6275 };
6276
6277 /* Get the remote private inferior data associated to INF. */
6278
6279 static remote_inferior *
6280 get_remote_inferior (inferior *inf)
6281 {
6282 if (inf->priv == NULL)
6283 inf->priv.reset (new remote_inferior);
6284
6285 return static_cast<remote_inferior *> (inf->priv.get ());
6286 }
6287
6288 /* Class used to track the construction of a vCont packet in the
6289 outgoing packet buffer. This is used to send multiple vCont
6290 packets if we have more actions than would fit a single packet. */
6291
6292 class vcont_builder
6293 {
6294 public:
6295 explicit vcont_builder (remote_target *remote)
6296 : m_remote (remote)
6297 {
6298 restart ();
6299 }
6300
6301 void flush ();
6302 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6303
6304 private:
6305 void restart ();
6306
6307 /* The remote target. */
6308 remote_target *m_remote;
6309
6310 /* Pointer to the first action. P points here if no action has been
6311 appended yet. */
6312 char *m_first_action;
6313
6314 /* Where the next action will be appended. */
6315 char *m_p;
6316
6317 /* The end of the buffer. Must never write past this. */
6318 char *m_endp;
6319 };
6320
6321 /* Prepare the outgoing buffer for a new vCont packet. */
6322
6323 void
6324 vcont_builder::restart ()
6325 {
6326 struct remote_state *rs = m_remote->get_remote_state ();
6327
6328 m_p = rs->buf.data ();
6329 m_endp = m_p + m_remote->get_remote_packet_size ();
6330 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6331 m_first_action = m_p;
6332 }
6333
6334 /* If the vCont packet being built has any action, send it to the
6335 remote end. */
6336
6337 void
6338 vcont_builder::flush ()
6339 {
6340 struct remote_state *rs;
6341
6342 if (m_p == m_first_action)
6343 return;
6344
6345 rs = m_remote->get_remote_state ();
6346 m_remote->putpkt (rs->buf);
6347 m_remote->getpkt (&rs->buf, 0);
6348 if (strcmp (rs->buf.data (), "OK") != 0)
6349 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
6350 }
6351
6352 /* The largest action is range-stepping, with its two addresses. This
6353 is more than sufficient. If a new, bigger action is created, it'll
6354 quickly trigger a failed assertion in append_resumption (and we'll
6355 just bump this). */
6356 #define MAX_ACTION_SIZE 200
6357
6358 /* Append a new vCont action in the outgoing packet being built. If
6359 the action doesn't fit the packet along with previous actions, push
6360 what we've got so far to the remote end and start over a new vCont
6361 packet (with the new action). */
6362
6363 void
6364 vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
6365 {
6366 char buf[MAX_ACTION_SIZE + 1];
6367
6368 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6369 ptid, step, siggnal);
6370
6371 /* Check whether this new action would fit in the vCont packet along
6372 with previous actions. If not, send what we've got so far and
6373 start a new vCont packet. */
6374 size_t rsize = endp - buf;
6375 if (rsize > m_endp - m_p)
6376 {
6377 flush ();
6378 restart ();
6379
6380 /* Should now fit. */
6381 gdb_assert (rsize <= m_endp - m_p);
6382 }
6383
6384 memcpy (m_p, buf, rsize);
6385 m_p += rsize;
6386 *m_p = '\0';
6387 }
6388
6389 /* to_commit_resume implementation. */
6390
6391 void
6392 remote_target::commit_resume ()
6393 {
6394 int any_process_wildcard;
6395 int may_global_wildcard_vcont;
6396
6397 /* If connected in all-stop mode, we'd send the remote resume
6398 request directly from remote_resume. Likewise if
6399 reverse-debugging, as there are no defined vCont actions for
6400 reverse execution. */
6401 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
6402 return;
6403
6404 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6405 instead of resuming all threads of each process individually.
6406 However, if any thread of a process must remain halted, we can't
6407 send wildcard resumes and must send one action per thread.
6408
6409 Care must be taken to not resume threads/processes the server
6410 side already told us are stopped, but the core doesn't know about
6411 yet, because the events are still in the vStopped notification
6412 queue. For example:
6413
6414 #1 => vCont s:p1.1;c
6415 #2 <= OK
6416 #3 <= %Stopped T05 p1.1
6417 #4 => vStopped
6418 #5 <= T05 p1.2
6419 #6 => vStopped
6420 #7 <= OK
6421 #8 (infrun handles the stop for p1.1 and continues stepping)
6422 #9 => vCont s:p1.1;c
6423
6424 The last vCont above would resume thread p1.2 by mistake, because
6425 the server has no idea that the event for p1.2 had not been
6426 handled yet.
6427
6428 The server side must similarly ignore resume actions for the
6429 thread that has a pending %Stopped notification (and any other
6430 threads with events pending), until GDB acks the notification
6431 with vStopped. Otherwise, e.g., the following case is
6432 mishandled:
6433
6434 #1 => g (or any other packet)
6435 #2 <= [registers]
6436 #3 <= %Stopped T05 p1.2
6437 #4 => vCont s:p1.1;c
6438 #5 <= OK
6439
6440 Above, the server must not resume thread p1.2. GDB can't know
6441 that p1.2 stopped until it acks the %Stopped notification, and
6442 since from GDB's perspective all threads should be running, it
6443 sends a "c" action.
6444
6445 Finally, special care must also be given to handling fork/vfork
6446 events. A (v)fork event actually tells us that two processes
6447 stopped -- the parent and the child. Until we follow the fork,
6448 we must not resume the child. Therefore, if we have a pending
6449 fork follow, we must not send a global wildcard resume action
6450 (vCont;c). We can still send process-wide wildcards though. */
6451
6452 /* Start by assuming a global wildcard (vCont;c) is possible. */
6453 may_global_wildcard_vcont = 1;
6454
6455 /* And assume every process is individually wildcard-able too. */
6456 for (inferior *inf : all_non_exited_inferiors ())
6457 {
6458 remote_inferior *priv = get_remote_inferior (inf);
6459
6460 priv->may_wildcard_vcont = true;
6461 }
6462
6463 /* Check for any pending events (not reported or processed yet) and
6464 disable process and global wildcard resumes appropriately. */
6465 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6466
6467 for (thread_info *tp : all_non_exited_threads ())
6468 {
6469 /* If a thread of a process is not meant to be resumed, then we
6470 can't wildcard that process. */
6471 if (!tp->executing)
6472 {
6473 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
6474
6475 /* And if we can't wildcard a process, we can't wildcard
6476 everything either. */
6477 may_global_wildcard_vcont = 0;
6478 continue;
6479 }
6480
6481 /* If a thread is the parent of an unfollowed fork, then we
6482 can't do a global wildcard, as that would resume the fork
6483 child. */
6484 if (is_pending_fork_parent_thread (tp))
6485 may_global_wildcard_vcont = 0;
6486 }
6487
6488 /* Now let's build the vCont packet(s). Actions must be appended
6489 from narrower to wider scopes (thread -> process -> global). If
6490 we end up with too many actions for a single packet vcont_builder
6491 flushes the current vCont packet to the remote side and starts a
6492 new one. */
6493 struct vcont_builder vcont_builder (this);
6494
6495 /* Threads first. */
6496 for (thread_info *tp : all_non_exited_threads ())
6497 {
6498 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6499
6500 if (!tp->executing || remote_thr->vcont_resumed)
6501 continue;
6502
6503 gdb_assert (!thread_is_in_step_over_chain (tp));
6504
6505 if (!remote_thr->last_resume_step
6506 && remote_thr->last_resume_sig == GDB_SIGNAL_0
6507 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
6508 {
6509 /* We'll send a wildcard resume instead. */
6510 remote_thr->vcont_resumed = 1;
6511 continue;
6512 }
6513
6514 vcont_builder.push_action (tp->ptid,
6515 remote_thr->last_resume_step,
6516 remote_thr->last_resume_sig);
6517 remote_thr->vcont_resumed = 1;
6518 }
6519
6520 /* Now check whether we can send any process-wide wildcard. This is
6521 to avoid sending a global wildcard in the case nothing is
6522 supposed to be resumed. */
6523 any_process_wildcard = 0;
6524
6525 for (inferior *inf : all_non_exited_inferiors ())
6526 {
6527 if (get_remote_inferior (inf)->may_wildcard_vcont)
6528 {
6529 any_process_wildcard = 1;
6530 break;
6531 }
6532 }
6533
6534 if (any_process_wildcard)
6535 {
6536 /* If all processes are wildcard-able, then send a single "c"
6537 action, otherwise, send an "all (-1) threads of process"
6538 continue action for each running process, if any. */
6539 if (may_global_wildcard_vcont)
6540 {
6541 vcont_builder.push_action (minus_one_ptid,
6542 false, GDB_SIGNAL_0);
6543 }
6544 else
6545 {
6546 for (inferior *inf : all_non_exited_inferiors ())
6547 {
6548 if (get_remote_inferior (inf)->may_wildcard_vcont)
6549 {
6550 vcont_builder.push_action (ptid_t (inf->pid),
6551 false, GDB_SIGNAL_0);
6552 }
6553 }
6554 }
6555 }
6556
6557 vcont_builder.flush ();
6558 }
6559
6560 \f
6561
6562 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6563 thread, all threads of a remote process, or all threads of all
6564 processes. */
6565
6566 void
6567 remote_target::remote_stop_ns (ptid_t ptid)
6568 {
6569 struct remote_state *rs = get_remote_state ();
6570 char *p = rs->buf.data ();
6571 char *endp = p + get_remote_packet_size ();
6572
6573 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6574 remote_vcont_probe ();
6575
6576 if (!rs->supports_vCont.t)
6577 error (_("Remote server does not support stopping threads"));
6578
6579 if (ptid == minus_one_ptid
6580 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6581 p += xsnprintf (p, endp - p, "vCont;t");
6582 else
6583 {
6584 ptid_t nptid;
6585
6586 p += xsnprintf (p, endp - p, "vCont;t:");
6587
6588 if (ptid.is_pid ())
6589 /* All (-1) threads of process. */
6590 nptid = ptid_t (ptid.pid (), -1, 0);
6591 else
6592 {
6593 /* Small optimization: if we already have a stop reply for
6594 this thread, no use in telling the stub we want this
6595 stopped. */
6596 if (peek_stop_reply (ptid))
6597 return;
6598
6599 nptid = ptid;
6600 }
6601
6602 write_ptid (p, endp, nptid);
6603 }
6604
6605 /* In non-stop, we get an immediate OK reply. The stop reply will
6606 come in asynchronously by notification. */
6607 putpkt (rs->buf);
6608 getpkt (&rs->buf, 0);
6609 if (strcmp (rs->buf.data (), "OK") != 0)
6610 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
6611 rs->buf.data ());
6612 }
6613
6614 /* All-stop version of target_interrupt. Sends a break or a ^C to
6615 interrupt the remote target. It is undefined which thread of which
6616 process reports the interrupt. */
6617
6618 void
6619 remote_target::remote_interrupt_as ()
6620 {
6621 struct remote_state *rs = get_remote_state ();
6622
6623 rs->ctrlc_pending_p = 1;
6624
6625 /* If the inferior is stopped already, but the core didn't know
6626 about it yet, just ignore the request. The cached wait status
6627 will be collected in remote_wait. */
6628 if (rs->cached_wait_status)
6629 return;
6630
6631 /* Send interrupt_sequence to remote target. */
6632 send_interrupt_sequence ();
6633 }
6634
6635 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6636 the remote target. It is undefined which thread of which process
6637 reports the interrupt. Throws an error if the packet is not
6638 supported by the server. */
6639
6640 void
6641 remote_target::remote_interrupt_ns ()
6642 {
6643 struct remote_state *rs = get_remote_state ();
6644 char *p = rs->buf.data ();
6645 char *endp = p + get_remote_packet_size ();
6646
6647 xsnprintf (p, endp - p, "vCtrlC");
6648
6649 /* In non-stop, we get an immediate OK reply. The stop reply will
6650 come in asynchronously by notification. */
6651 putpkt (rs->buf);
6652 getpkt (&rs->buf, 0);
6653
6654 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6655 {
6656 case PACKET_OK:
6657 break;
6658 case PACKET_UNKNOWN:
6659 error (_("No support for interrupting the remote target."));
6660 case PACKET_ERROR:
6661 error (_("Interrupting target failed: %s"), rs->buf.data ());
6662 }
6663 }
6664
6665 /* Implement the to_stop function for the remote targets. */
6666
6667 void
6668 remote_target::stop (ptid_t ptid)
6669 {
6670 if (remote_debug)
6671 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
6672
6673 if (target_is_non_stop_p ())
6674 remote_stop_ns (ptid);
6675 else
6676 {
6677 /* We don't currently have a way to transparently pause the
6678 remote target in all-stop mode. Interrupt it instead. */
6679 remote_interrupt_as ();
6680 }
6681 }
6682
6683 /* Implement the to_interrupt function for the remote targets. */
6684
6685 void
6686 remote_target::interrupt ()
6687 {
6688 if (remote_debug)
6689 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6690
6691 if (target_is_non_stop_p ())
6692 remote_interrupt_ns ();
6693 else
6694 remote_interrupt_as ();
6695 }
6696
6697 /* Implement the to_pass_ctrlc function for the remote targets. */
6698
6699 void
6700 remote_target::pass_ctrlc ()
6701 {
6702 struct remote_state *rs = get_remote_state ();
6703
6704 if (remote_debug)
6705 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6706
6707 /* If we're starting up, we're not fully synced yet. Quit
6708 immediately. */
6709 if (rs->starting_up)
6710 quit ();
6711 /* If ^C has already been sent once, offer to disconnect. */
6712 else if (rs->ctrlc_pending_p)
6713 interrupt_query ();
6714 else
6715 target_interrupt ();
6716 }
6717
6718 /* Ask the user what to do when an interrupt is received. */
6719
6720 void
6721 remote_target::interrupt_query ()
6722 {
6723 struct remote_state *rs = get_remote_state ();
6724
6725 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
6726 {
6727 if (query (_("The target is not responding to interrupt requests.\n"
6728 "Stop debugging it? ")))
6729 {
6730 remote_unpush_target ();
6731 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
6732 }
6733 }
6734 else
6735 {
6736 if (query (_("Interrupted while waiting for the program.\n"
6737 "Give up waiting? ")))
6738 quit ();
6739 }
6740 }
6741
6742 /* Enable/disable target terminal ownership. Most targets can use
6743 terminal groups to control terminal ownership. Remote targets are
6744 different in that explicit transfer of ownership to/from GDB/target
6745 is required. */
6746
6747 void
6748 remote_target::terminal_inferior ()
6749 {
6750 /* NOTE: At this point we could also register our selves as the
6751 recipient of all input. Any characters typed could then be
6752 passed on down to the target. */
6753 }
6754
6755 void
6756 remote_target::terminal_ours ()
6757 {
6758 }
6759
6760 static void
6761 remote_console_output (const char *msg)
6762 {
6763 const char *p;
6764
6765 for (p = msg; p[0] && p[1]; p += 2)
6766 {
6767 char tb[2];
6768 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
6769
6770 tb[0] = c;
6771 tb[1] = 0;
6772 fputs_unfiltered (tb, gdb_stdtarg);
6773 }
6774 gdb_flush (gdb_stdtarg);
6775 }
6776
6777 struct stop_reply : public notif_event
6778 {
6779 ~stop_reply ();
6780
6781 /* The identifier of the thread about this event */
6782 ptid_t ptid;
6783
6784 /* The remote state this event is associated with. When the remote
6785 connection, represented by a remote_state object, is closed,
6786 all the associated stop_reply events should be released. */
6787 struct remote_state *rs;
6788
6789 struct target_waitstatus ws;
6790
6791 /* The architecture associated with the expedited registers. */
6792 gdbarch *arch;
6793
6794 /* Expedited registers. This makes remote debugging a bit more
6795 efficient for those targets that provide critical registers as
6796 part of their normal status mechanism (as another roundtrip to
6797 fetch them is avoided). */
6798 std::vector<cached_reg_t> regcache;
6799
6800 enum target_stop_reason stop_reason;
6801
6802 CORE_ADDR watch_data_address;
6803
6804 int core;
6805 };
6806
6807 /* Return the length of the stop reply queue. */
6808
6809 int
6810 remote_target::stop_reply_queue_length ()
6811 {
6812 remote_state *rs = get_remote_state ();
6813 return rs->stop_reply_queue.size ();
6814 }
6815
6816 void
6817 remote_notif_stop_parse (remote_target *remote,
6818 struct notif_client *self, const char *buf,
6819 struct notif_event *event)
6820 {
6821 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
6822 }
6823
6824 static void
6825 remote_notif_stop_ack (remote_target *remote,
6826 struct notif_client *self, const char *buf,
6827 struct notif_event *event)
6828 {
6829 struct stop_reply *stop_reply = (struct stop_reply *) event;
6830
6831 /* acknowledge */
6832 putpkt (remote, self->ack_command);
6833
6834 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6835 {
6836 /* We got an unknown stop reply. */
6837 error (_("Unknown stop reply"));
6838 }
6839
6840 remote->push_stop_reply (stop_reply);
6841 }
6842
6843 static int
6844 remote_notif_stop_can_get_pending_events (remote_target *remote,
6845 struct notif_client *self)
6846 {
6847 /* We can't get pending events in remote_notif_process for
6848 notification stop, and we have to do this in remote_wait_ns
6849 instead. If we fetch all queued events from stub, remote stub
6850 may exit and we have no chance to process them back in
6851 remote_wait_ns. */
6852 remote_state *rs = remote->get_remote_state ();
6853 mark_async_event_handler (rs->remote_async_inferior_event_token);
6854 return 0;
6855 }
6856
6857 stop_reply::~stop_reply ()
6858 {
6859 for (cached_reg_t &reg : regcache)
6860 xfree (reg.data);
6861 }
6862
6863 static notif_event_up
6864 remote_notif_stop_alloc_reply ()
6865 {
6866 return notif_event_up (new struct stop_reply ());
6867 }
6868
6869 /* A client of notification Stop. */
6870
6871 struct notif_client notif_client_stop =
6872 {
6873 "Stop",
6874 "vStopped",
6875 remote_notif_stop_parse,
6876 remote_notif_stop_ack,
6877 remote_notif_stop_can_get_pending_events,
6878 remote_notif_stop_alloc_reply,
6879 REMOTE_NOTIF_STOP,
6880 };
6881
6882 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6883 the pid of the process that owns the threads we want to check, or
6884 -1 if we want to check all threads. */
6885
6886 static int
6887 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6888 ptid_t thread_ptid)
6889 {
6890 if (ws->kind == TARGET_WAITKIND_FORKED
6891 || ws->kind == TARGET_WAITKIND_VFORKED)
6892 {
6893 if (event_pid == -1 || event_pid == thread_ptid.pid ())
6894 return 1;
6895 }
6896
6897 return 0;
6898 }
6899
6900 /* Return the thread's pending status used to determine whether the
6901 thread is a fork parent stopped at a fork event. */
6902
6903 static struct target_waitstatus *
6904 thread_pending_fork_status (struct thread_info *thread)
6905 {
6906 if (thread->suspend.waitstatus_pending_p)
6907 return &thread->suspend.waitstatus;
6908 else
6909 return &thread->pending_follow;
6910 }
6911
6912 /* Determine if THREAD is a pending fork parent thread. */
6913
6914 static int
6915 is_pending_fork_parent_thread (struct thread_info *thread)
6916 {
6917 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6918 int pid = -1;
6919
6920 return is_pending_fork_parent (ws, pid, thread->ptid);
6921 }
6922
6923 /* If CONTEXT contains any fork child threads that have not been
6924 reported yet, remove them from the CONTEXT list. If such a
6925 thread exists it is because we are stopped at a fork catchpoint
6926 and have not yet called follow_fork, which will set up the
6927 host-side data structures for the new process. */
6928
6929 void
6930 remote_target::remove_new_fork_children (threads_listing_context *context)
6931 {
6932 int pid = -1;
6933 struct notif_client *notif = &notif_client_stop;
6934
6935 /* For any threads stopped at a fork event, remove the corresponding
6936 fork child threads from the CONTEXT list. */
6937 for (thread_info *thread : all_non_exited_threads ())
6938 {
6939 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6940
6941 if (is_pending_fork_parent (ws, pid, thread->ptid))
6942 context->remove_thread (ws->value.related_pid);
6943 }
6944
6945 /* Check for any pending fork events (not reported or processed yet)
6946 in process PID and remove those fork child threads from the
6947 CONTEXT list as well. */
6948 remote_notif_get_pending_events (notif);
6949 for (auto &event : get_remote_state ()->stop_reply_queue)
6950 if (event->ws.kind == TARGET_WAITKIND_FORKED
6951 || event->ws.kind == TARGET_WAITKIND_VFORKED
6952 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6953 context->remove_thread (event->ws.value.related_pid);
6954 }
6955
6956 /* Check whether any event pending in the vStopped queue would prevent
6957 a global or process wildcard vCont action. Clear
6958 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6959 and clear the event inferior's may_wildcard_vcont flag if we can't
6960 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6961
6962 void
6963 remote_target::check_pending_events_prevent_wildcard_vcont
6964 (int *may_global_wildcard)
6965 {
6966 struct notif_client *notif = &notif_client_stop;
6967
6968 remote_notif_get_pending_events (notif);
6969 for (auto &event : get_remote_state ()->stop_reply_queue)
6970 {
6971 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6972 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6973 continue;
6974
6975 if (event->ws.kind == TARGET_WAITKIND_FORKED
6976 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6977 *may_global_wildcard = 0;
6978
6979 struct inferior *inf = find_inferior_ptid (event->ptid);
6980
6981 /* This may be the first time we heard about this process.
6982 Regardless, we must not do a global wildcard resume, otherwise
6983 we'd resume this process too. */
6984 *may_global_wildcard = 0;
6985 if (inf != NULL)
6986 get_remote_inferior (inf)->may_wildcard_vcont = false;
6987 }
6988 }
6989
6990 /* Discard all pending stop replies of inferior INF. */
6991
6992 void
6993 remote_target::discard_pending_stop_replies (struct inferior *inf)
6994 {
6995 struct stop_reply *reply;
6996 struct remote_state *rs = get_remote_state ();
6997 struct remote_notif_state *rns = rs->notif_state;
6998
6999 /* This function can be notified when an inferior exists. When the
7000 target is not remote, the notification state is NULL. */
7001 if (rs->remote_desc == NULL)
7002 return;
7003
7004 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7005
7006 /* Discard the in-flight notification. */
7007 if (reply != NULL && reply->ptid.pid () == inf->pid)
7008 {
7009 delete reply;
7010 rns->pending_event[notif_client_stop.id] = NULL;
7011 }
7012
7013 /* Discard the stop replies we have already pulled with
7014 vStopped. */
7015 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7016 rs->stop_reply_queue.end (),
7017 [=] (const stop_reply_up &event)
7018 {
7019 return event->ptid.pid () == inf->pid;
7020 });
7021 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7022 }
7023
7024 /* Discard the stop replies for RS in stop_reply_queue. */
7025
7026 void
7027 remote_target::discard_pending_stop_replies_in_queue ()
7028 {
7029 remote_state *rs = get_remote_state ();
7030
7031 /* Discard the stop replies we have already pulled with
7032 vStopped. */
7033 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7034 rs->stop_reply_queue.end (),
7035 [=] (const stop_reply_up &event)
7036 {
7037 return event->rs == rs;
7038 });
7039 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7040 }
7041
7042 /* Remove the first reply in 'stop_reply_queue' which matches
7043 PTID. */
7044
7045 struct stop_reply *
7046 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7047 {
7048 remote_state *rs = get_remote_state ();
7049
7050 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7051 rs->stop_reply_queue.end (),
7052 [=] (const stop_reply_up &event)
7053 {
7054 return event->ptid.matches (ptid);
7055 });
7056 struct stop_reply *result;
7057 if (iter == rs->stop_reply_queue.end ())
7058 result = nullptr;
7059 else
7060 {
7061 result = iter->release ();
7062 rs->stop_reply_queue.erase (iter);
7063 }
7064
7065 if (notif_debug)
7066 fprintf_unfiltered (gdb_stdlog,
7067 "notif: discard queued event: 'Stop' in %s\n",
7068 target_pid_to_str (ptid).c_str ());
7069
7070 return result;
7071 }
7072
7073 /* Look for a queued stop reply belonging to PTID. If one is found,
7074 remove it from the queue, and return it. Returns NULL if none is
7075 found. If there are still queued events left to process, tell the
7076 event loop to get back to target_wait soon. */
7077
7078 struct stop_reply *
7079 remote_target::queued_stop_reply (ptid_t ptid)
7080 {
7081 remote_state *rs = get_remote_state ();
7082 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7083
7084 if (!rs->stop_reply_queue.empty ())
7085 {
7086 /* There's still at least an event left. */
7087 mark_async_event_handler (rs->remote_async_inferior_event_token);
7088 }
7089
7090 return r;
7091 }
7092
7093 /* Push a fully parsed stop reply in the stop reply queue. Since we
7094 know that we now have at least one queued event left to pass to the
7095 core side, tell the event loop to get back to target_wait soon. */
7096
7097 void
7098 remote_target::push_stop_reply (struct stop_reply *new_event)
7099 {
7100 remote_state *rs = get_remote_state ();
7101 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7102
7103 if (notif_debug)
7104 fprintf_unfiltered (gdb_stdlog,
7105 "notif: push 'Stop' %s to queue %d\n",
7106 target_pid_to_str (new_event->ptid).c_str (),
7107 int (rs->stop_reply_queue.size ()));
7108
7109 mark_async_event_handler (rs->remote_async_inferior_event_token);
7110 }
7111
7112 /* Returns true if we have a stop reply for PTID. */
7113
7114 int
7115 remote_target::peek_stop_reply (ptid_t ptid)
7116 {
7117 remote_state *rs = get_remote_state ();
7118 for (auto &event : rs->stop_reply_queue)
7119 if (ptid == event->ptid
7120 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7121 return 1;
7122 return 0;
7123 }
7124
7125 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7126 starting with P and ending with PEND matches PREFIX. */
7127
7128 static int
7129 strprefix (const char *p, const char *pend, const char *prefix)
7130 {
7131 for ( ; p < pend; p++, prefix++)
7132 if (*p != *prefix)
7133 return 0;
7134 return *prefix == '\0';
7135 }
7136
7137 /* Parse the stop reply in BUF. Either the function succeeds, and the
7138 result is stored in EVENT, or throws an error. */
7139
7140 void
7141 remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
7142 {
7143 remote_arch_state *rsa = NULL;
7144 ULONGEST addr;
7145 const char *p;
7146 int skipregs = 0;
7147
7148 event->ptid = null_ptid;
7149 event->rs = get_remote_state ();
7150 event->ws.kind = TARGET_WAITKIND_IGNORE;
7151 event->ws.value.integer = 0;
7152 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7153 event->regcache.clear ();
7154 event->core = -1;
7155
7156 switch (buf[0])
7157 {
7158 case 'T': /* Status with PC, SP, FP, ... */
7159 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7160 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7161 ss = signal number
7162 n... = register number
7163 r... = register contents
7164 */
7165
7166 p = &buf[3]; /* after Txx */
7167 while (*p)
7168 {
7169 const char *p1;
7170 int fieldsize;
7171
7172 p1 = strchr (p, ':');
7173 if (p1 == NULL)
7174 error (_("Malformed packet(a) (missing colon): %s\n\
7175 Packet: '%s'\n"),
7176 p, buf);
7177 if (p == p1)
7178 error (_("Malformed packet(a) (missing register number): %s\n\
7179 Packet: '%s'\n"),
7180 p, buf);
7181
7182 /* Some "registers" are actually extended stop information.
7183 Note if you're adding a new entry here: GDB 7.9 and
7184 earlier assume that all register "numbers" that start
7185 with an hex digit are real register numbers. Make sure
7186 the server only sends such a packet if it knows the
7187 client understands it. */
7188
7189 if (strprefix (p, p1, "thread"))
7190 event->ptid = read_ptid (++p1, &p);
7191 else if (strprefix (p, p1, "syscall_entry"))
7192 {
7193 ULONGEST sysno;
7194
7195 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7196 p = unpack_varlen_hex (++p1, &sysno);
7197 event->ws.value.syscall_number = (int) sysno;
7198 }
7199 else if (strprefix (p, p1, "syscall_return"))
7200 {
7201 ULONGEST sysno;
7202
7203 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7204 p = unpack_varlen_hex (++p1, &sysno);
7205 event->ws.value.syscall_number = (int) sysno;
7206 }
7207 else if (strprefix (p, p1, "watch")
7208 || strprefix (p, p1, "rwatch")
7209 || strprefix (p, p1, "awatch"))
7210 {
7211 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7212 p = unpack_varlen_hex (++p1, &addr);
7213 event->watch_data_address = (CORE_ADDR) addr;
7214 }
7215 else if (strprefix (p, p1, "swbreak"))
7216 {
7217 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7218
7219 /* Make sure the stub doesn't forget to indicate support
7220 with qSupported. */
7221 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7222 error (_("Unexpected swbreak stop reason"));
7223
7224 /* The value part is documented as "must be empty",
7225 though we ignore it, in case we ever decide to make
7226 use of it in a backward compatible way. */
7227 p = strchrnul (p1 + 1, ';');
7228 }
7229 else if (strprefix (p, p1, "hwbreak"))
7230 {
7231 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7232
7233 /* Make sure the stub doesn't forget to indicate support
7234 with qSupported. */
7235 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7236 error (_("Unexpected hwbreak stop reason"));
7237
7238 /* See above. */
7239 p = strchrnul (p1 + 1, ';');
7240 }
7241 else if (strprefix (p, p1, "library"))
7242 {
7243 event->ws.kind = TARGET_WAITKIND_LOADED;
7244 p = strchrnul (p1 + 1, ';');
7245 }
7246 else if (strprefix (p, p1, "replaylog"))
7247 {
7248 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7249 /* p1 will indicate "begin" or "end", but it makes
7250 no difference for now, so ignore it. */
7251 p = strchrnul (p1 + 1, ';');
7252 }
7253 else if (strprefix (p, p1, "core"))
7254 {
7255 ULONGEST c;
7256
7257 p = unpack_varlen_hex (++p1, &c);
7258 event->core = c;
7259 }
7260 else if (strprefix (p, p1, "fork"))
7261 {
7262 event->ws.value.related_pid = read_ptid (++p1, &p);
7263 event->ws.kind = TARGET_WAITKIND_FORKED;
7264 }
7265 else if (strprefix (p, p1, "vfork"))
7266 {
7267 event->ws.value.related_pid = read_ptid (++p1, &p);
7268 event->ws.kind = TARGET_WAITKIND_VFORKED;
7269 }
7270 else if (strprefix (p, p1, "vforkdone"))
7271 {
7272 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
7273 p = strchrnul (p1 + 1, ';');
7274 }
7275 else if (strprefix (p, p1, "exec"))
7276 {
7277 ULONGEST ignored;
7278 int pathlen;
7279
7280 /* Determine the length of the execd pathname. */
7281 p = unpack_varlen_hex (++p1, &ignored);
7282 pathlen = (p - p1) / 2;
7283
7284 /* Save the pathname for event reporting and for
7285 the next run command. */
7286 gdb::unique_xmalloc_ptr<char[]> pathname
7287 ((char *) xmalloc (pathlen + 1));
7288 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
7289 pathname[pathlen] = '\0';
7290
7291 /* This is freed during event handling. */
7292 event->ws.value.execd_pathname = pathname.release ();
7293 event->ws.kind = TARGET_WAITKIND_EXECD;
7294
7295 /* Skip the registers included in this packet, since
7296 they may be for an architecture different from the
7297 one used by the original program. */
7298 skipregs = 1;
7299 }
7300 else if (strprefix (p, p1, "create"))
7301 {
7302 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
7303 p = strchrnul (p1 + 1, ';');
7304 }
7305 else
7306 {
7307 ULONGEST pnum;
7308 const char *p_temp;
7309
7310 if (skipregs)
7311 {
7312 p = strchrnul (p1 + 1, ';');
7313 p++;
7314 continue;
7315 }
7316
7317 /* Maybe a real ``P'' register number. */
7318 p_temp = unpack_varlen_hex (p, &pnum);
7319 /* If the first invalid character is the colon, we got a
7320 register number. Otherwise, it's an unknown stop
7321 reason. */
7322 if (p_temp == p1)
7323 {
7324 /* If we haven't parsed the event's thread yet, find
7325 it now, in order to find the architecture of the
7326 reported expedited registers. */
7327 if (event->ptid == null_ptid)
7328 {
7329 const char *thr = strstr (p1 + 1, ";thread:");
7330 if (thr != NULL)
7331 event->ptid = read_ptid (thr + strlen (";thread:"),
7332 NULL);
7333 else
7334 {
7335 /* Either the current thread hasn't changed,
7336 or the inferior is not multi-threaded.
7337 The event must be for the thread we last
7338 set as (or learned as being) current. */
7339 event->ptid = event->rs->general_thread;
7340 }
7341 }
7342
7343 if (rsa == NULL)
7344 {
7345 inferior *inf = (event->ptid == null_ptid
7346 ? NULL
7347 : find_inferior_ptid (event->ptid));
7348 /* If this is the first time we learn anything
7349 about this process, skip the registers
7350 included in this packet, since we don't yet
7351 know which architecture to use to parse them.
7352 We'll determine the architecture later when
7353 we process the stop reply and retrieve the
7354 target description, via
7355 remote_notice_new_inferior ->
7356 post_create_inferior. */
7357 if (inf == NULL)
7358 {
7359 p = strchrnul (p1 + 1, ';');
7360 p++;
7361 continue;
7362 }
7363
7364 event->arch = inf->gdbarch;
7365 rsa = event->rs->get_remote_arch_state (event->arch);
7366 }
7367
7368 packet_reg *reg
7369 = packet_reg_from_pnum (event->arch, rsa, pnum);
7370 cached_reg_t cached_reg;
7371
7372 if (reg == NULL)
7373 error (_("Remote sent bad register number %s: %s\n\
7374 Packet: '%s'\n"),
7375 hex_string (pnum), p, buf);
7376
7377 cached_reg.num = reg->regnum;
7378 cached_reg.data = (gdb_byte *)
7379 xmalloc (register_size (event->arch, reg->regnum));
7380
7381 p = p1 + 1;
7382 fieldsize = hex2bin (p, cached_reg.data,
7383 register_size (event->arch, reg->regnum));
7384 p += 2 * fieldsize;
7385 if (fieldsize < register_size (event->arch, reg->regnum))
7386 warning (_("Remote reply is too short: %s"), buf);
7387
7388 event->regcache.push_back (cached_reg);
7389 }
7390 else
7391 {
7392 /* Not a number. Silently skip unknown optional
7393 info. */
7394 p = strchrnul (p1 + 1, ';');
7395 }
7396 }
7397
7398 if (*p != ';')
7399 error (_("Remote register badly formatted: %s\nhere: %s"),
7400 buf, p);
7401 ++p;
7402 }
7403
7404 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7405 break;
7406
7407 /* fall through */
7408 case 'S': /* Old style status, just signal only. */
7409 {
7410 int sig;
7411
7412 event->ws.kind = TARGET_WAITKIND_STOPPED;
7413 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7414 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7415 event->ws.value.sig = (enum gdb_signal) sig;
7416 else
7417 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7418 }
7419 break;
7420 case 'w': /* Thread exited. */
7421 {
7422 ULONGEST value;
7423
7424 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7425 p = unpack_varlen_hex (&buf[1], &value);
7426 event->ws.value.integer = value;
7427 if (*p != ';')
7428 error (_("stop reply packet badly formatted: %s"), buf);
7429 event->ptid = read_ptid (++p, NULL);
7430 break;
7431 }
7432 case 'W': /* Target exited. */
7433 case 'X':
7434 {
7435 int pid;
7436 ULONGEST value;
7437
7438 /* GDB used to accept only 2 hex chars here. Stubs should
7439 only send more if they detect GDB supports multi-process
7440 support. */
7441 p = unpack_varlen_hex (&buf[1], &value);
7442
7443 if (buf[0] == 'W')
7444 {
7445 /* The remote process exited. */
7446 event->ws.kind = TARGET_WAITKIND_EXITED;
7447 event->ws.value.integer = value;
7448 }
7449 else
7450 {
7451 /* The remote process exited with a signal. */
7452 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7453 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7454 event->ws.value.sig = (enum gdb_signal) value;
7455 else
7456 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7457 }
7458
7459 /* If no process is specified, assume inferior_ptid. */
7460 pid = inferior_ptid.pid ();
7461 if (*p == '\0')
7462 ;
7463 else if (*p == ';')
7464 {
7465 p++;
7466
7467 if (*p == '\0')
7468 ;
7469 else if (startswith (p, "process:"))
7470 {
7471 ULONGEST upid;
7472
7473 p += sizeof ("process:") - 1;
7474 unpack_varlen_hex (p, &upid);
7475 pid = upid;
7476 }
7477 else
7478 error (_("unknown stop reply packet: %s"), buf);
7479 }
7480 else
7481 error (_("unknown stop reply packet: %s"), buf);
7482 event->ptid = ptid_t (pid);
7483 }
7484 break;
7485 case 'N':
7486 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7487 event->ptid = minus_one_ptid;
7488 break;
7489 }
7490
7491 if (target_is_non_stop_p () && event->ptid == null_ptid)
7492 error (_("No process or thread specified in stop reply: %s"), buf);
7493 }
7494
7495 /* When the stub wants to tell GDB about a new notification reply, it
7496 sends a notification (%Stop, for example). Those can come it at
7497 any time, hence, we have to make sure that any pending
7498 putpkt/getpkt sequence we're making is finished, before querying
7499 the stub for more events with the corresponding ack command
7500 (vStopped, for example). E.g., if we started a vStopped sequence
7501 immediately upon receiving the notification, something like this
7502 could happen:
7503
7504 1.1) --> Hg 1
7505 1.2) <-- OK
7506 1.3) --> g
7507 1.4) <-- %Stop
7508 1.5) --> vStopped
7509 1.6) <-- (registers reply to step #1.3)
7510
7511 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7512 query.
7513
7514 To solve this, whenever we parse a %Stop notification successfully,
7515 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7516 doing whatever we were doing:
7517
7518 2.1) --> Hg 1
7519 2.2) <-- OK
7520 2.3) --> g
7521 2.4) <-- %Stop
7522 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7523 2.5) <-- (registers reply to step #2.3)
7524
7525 Eventually after step #2.5, we return to the event loop, which
7526 notices there's an event on the
7527 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7528 associated callback --- the function below. At this point, we're
7529 always safe to start a vStopped sequence. :
7530
7531 2.6) --> vStopped
7532 2.7) <-- T05 thread:2
7533 2.8) --> vStopped
7534 2.9) --> OK
7535 */
7536
7537 void
7538 remote_target::remote_notif_get_pending_events (notif_client *nc)
7539 {
7540 struct remote_state *rs = get_remote_state ();
7541
7542 if (rs->notif_state->pending_event[nc->id] != NULL)
7543 {
7544 if (notif_debug)
7545 fprintf_unfiltered (gdb_stdlog,
7546 "notif: process: '%s' ack pending event\n",
7547 nc->name);
7548
7549 /* acknowledge */
7550 nc->ack (this, nc, rs->buf.data (),
7551 rs->notif_state->pending_event[nc->id]);
7552 rs->notif_state->pending_event[nc->id] = NULL;
7553
7554 while (1)
7555 {
7556 getpkt (&rs->buf, 0);
7557 if (strcmp (rs->buf.data (), "OK") == 0)
7558 break;
7559 else
7560 remote_notif_ack (this, nc, rs->buf.data ());
7561 }
7562 }
7563 else
7564 {
7565 if (notif_debug)
7566 fprintf_unfiltered (gdb_stdlog,
7567 "notif: process: '%s' no pending reply\n",
7568 nc->name);
7569 }
7570 }
7571
7572 /* Wrapper around remote_target::remote_notif_get_pending_events to
7573 avoid having to export the whole remote_target class. */
7574
7575 void
7576 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7577 {
7578 remote->remote_notif_get_pending_events (nc);
7579 }
7580
7581 /* Called when it is decided that STOP_REPLY holds the info of the
7582 event that is to be returned to the core. This function always
7583 destroys STOP_REPLY. */
7584
7585 ptid_t
7586 remote_target::process_stop_reply (struct stop_reply *stop_reply,
7587 struct target_waitstatus *status)
7588 {
7589 ptid_t ptid;
7590
7591 *status = stop_reply->ws;
7592 ptid = stop_reply->ptid;
7593
7594 /* If no thread/process was reported by the stub, assume the current
7595 inferior. */
7596 if (ptid == null_ptid)
7597 ptid = inferior_ptid;
7598
7599 if (status->kind != TARGET_WAITKIND_EXITED
7600 && status->kind != TARGET_WAITKIND_SIGNALLED
7601 && status->kind != TARGET_WAITKIND_NO_RESUMED)
7602 {
7603 /* Expedited registers. */
7604 if (!stop_reply->regcache.empty ())
7605 {
7606 struct regcache *regcache
7607 = get_thread_arch_regcache (ptid, stop_reply->arch);
7608
7609 for (cached_reg_t &reg : stop_reply->regcache)
7610 {
7611 regcache->raw_supply (reg.num, reg.data);
7612 xfree (reg.data);
7613 }
7614
7615 stop_reply->regcache.clear ();
7616 }
7617
7618 remote_notice_new_inferior (ptid, 0);
7619 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
7620 remote_thr->core = stop_reply->core;
7621 remote_thr->stop_reason = stop_reply->stop_reason;
7622 remote_thr->watch_data_address = stop_reply->watch_data_address;
7623 remote_thr->vcont_resumed = 0;
7624 }
7625
7626 delete stop_reply;
7627 return ptid;
7628 }
7629
7630 /* The non-stop mode version of target_wait. */
7631
7632 ptid_t
7633 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
7634 {
7635 struct remote_state *rs = get_remote_state ();
7636 struct stop_reply *stop_reply;
7637 int ret;
7638 int is_notif = 0;
7639
7640 /* If in non-stop mode, get out of getpkt even if a
7641 notification is received. */
7642
7643 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
7644 while (1)
7645 {
7646 if (ret != -1 && !is_notif)
7647 switch (rs->buf[0])
7648 {
7649 case 'E': /* Error of some sort. */
7650 /* We're out of sync with the target now. Did it continue
7651 or not? We can't tell which thread it was in non-stop,
7652 so just ignore this. */
7653 warning (_("Remote failure reply: %s"), rs->buf.data ());
7654 break;
7655 case 'O': /* Console output. */
7656 remote_console_output (&rs->buf[1]);
7657 break;
7658 default:
7659 warning (_("Invalid remote reply: %s"), rs->buf.data ());
7660 break;
7661 }
7662
7663 /* Acknowledge a pending stop reply that may have arrived in the
7664 mean time. */
7665 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
7666 remote_notif_get_pending_events (&notif_client_stop);
7667
7668 /* If indeed we noticed a stop reply, we're done. */
7669 stop_reply = queued_stop_reply (ptid);
7670 if (stop_reply != NULL)
7671 return process_stop_reply (stop_reply, status);
7672
7673 /* Still no event. If we're just polling for an event, then
7674 return to the event loop. */
7675 if (options & TARGET_WNOHANG)
7676 {
7677 status->kind = TARGET_WAITKIND_IGNORE;
7678 return minus_one_ptid;
7679 }
7680
7681 /* Otherwise do a blocking wait. */
7682 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
7683 }
7684 }
7685
7686 /* Wait until the remote machine stops, then return, storing status in
7687 STATUS just as `wait' would. */
7688
7689 ptid_t
7690 remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
7691 {
7692 struct remote_state *rs = get_remote_state ();
7693 ptid_t event_ptid = null_ptid;
7694 char *buf;
7695 struct stop_reply *stop_reply;
7696
7697 again:
7698
7699 status->kind = TARGET_WAITKIND_IGNORE;
7700 status->value.integer = 0;
7701
7702 stop_reply = queued_stop_reply (ptid);
7703 if (stop_reply != NULL)
7704 return process_stop_reply (stop_reply, status);
7705
7706 if (rs->cached_wait_status)
7707 /* Use the cached wait status, but only once. */
7708 rs->cached_wait_status = 0;
7709 else
7710 {
7711 int ret;
7712 int is_notif;
7713 int forever = ((options & TARGET_WNOHANG) == 0
7714 && rs->wait_forever_enabled_p);
7715
7716 if (!rs->waiting_for_stop_reply)
7717 {
7718 status->kind = TARGET_WAITKIND_NO_RESUMED;
7719 return minus_one_ptid;
7720 }
7721
7722 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7723 _never_ wait for ever -> test on target_is_async_p().
7724 However, before we do that we need to ensure that the caller
7725 knows how to take the target into/out of async mode. */
7726 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
7727
7728 /* GDB gets a notification. Return to core as this event is
7729 not interesting. */
7730 if (ret != -1 && is_notif)
7731 return minus_one_ptid;
7732
7733 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7734 return minus_one_ptid;
7735 }
7736
7737 buf = rs->buf.data ();
7738
7739 /* Assume that the target has acknowledged Ctrl-C unless we receive
7740 an 'F' or 'O' packet. */
7741 if (buf[0] != 'F' && buf[0] != 'O')
7742 rs->ctrlc_pending_p = 0;
7743
7744 switch (buf[0])
7745 {
7746 case 'E': /* Error of some sort. */
7747 /* We're out of sync with the target now. Did it continue or
7748 not? Not is more likely, so report a stop. */
7749 rs->waiting_for_stop_reply = 0;
7750
7751 warning (_("Remote failure reply: %s"), buf);
7752 status->kind = TARGET_WAITKIND_STOPPED;
7753 status->value.sig = GDB_SIGNAL_0;
7754 break;
7755 case 'F': /* File-I/O request. */
7756 /* GDB may access the inferior memory while handling the File-I/O
7757 request, but we don't want GDB accessing memory while waiting
7758 for a stop reply. See the comments in putpkt_binary. Set
7759 waiting_for_stop_reply to 0 temporarily. */
7760 rs->waiting_for_stop_reply = 0;
7761 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
7762 rs->ctrlc_pending_p = 0;
7763 /* GDB handled the File-I/O request, and the target is running
7764 again. Keep waiting for events. */
7765 rs->waiting_for_stop_reply = 1;
7766 break;
7767 case 'N': case 'T': case 'S': case 'X': case 'W':
7768 {
7769 /* There is a stop reply to handle. */
7770 rs->waiting_for_stop_reply = 0;
7771
7772 stop_reply
7773 = (struct stop_reply *) remote_notif_parse (this,
7774 &notif_client_stop,
7775 rs->buf.data ());
7776
7777 event_ptid = process_stop_reply (stop_reply, status);
7778 break;
7779 }
7780 case 'O': /* Console output. */
7781 remote_console_output (buf + 1);
7782 break;
7783 case '\0':
7784 if (rs->last_sent_signal != GDB_SIGNAL_0)
7785 {
7786 /* Zero length reply means that we tried 'S' or 'C' and the
7787 remote system doesn't support it. */
7788 target_terminal::ours_for_output ();
7789 printf_filtered
7790 ("Can't send signals to this remote system. %s not sent.\n",
7791 gdb_signal_to_name (rs->last_sent_signal));
7792 rs->last_sent_signal = GDB_SIGNAL_0;
7793 target_terminal::inferior ();
7794
7795 strcpy (buf, rs->last_sent_step ? "s" : "c");
7796 putpkt (buf);
7797 break;
7798 }
7799 /* fallthrough */
7800 default:
7801 warning (_("Invalid remote reply: %s"), buf);
7802 break;
7803 }
7804
7805 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7806 return minus_one_ptid;
7807 else if (status->kind == TARGET_WAITKIND_IGNORE)
7808 {
7809 /* Nothing interesting happened. If we're doing a non-blocking
7810 poll, we're done. Otherwise, go back to waiting. */
7811 if (options & TARGET_WNOHANG)
7812 return minus_one_ptid;
7813 else
7814 goto again;
7815 }
7816 else if (status->kind != TARGET_WAITKIND_EXITED
7817 && status->kind != TARGET_WAITKIND_SIGNALLED)
7818 {
7819 if (event_ptid != null_ptid)
7820 record_currthread (rs, event_ptid);
7821 else
7822 event_ptid = inferior_ptid;
7823 }
7824 else
7825 /* A process exit. Invalidate our notion of current thread. */
7826 record_currthread (rs, minus_one_ptid);
7827
7828 return event_ptid;
7829 }
7830
7831 /* Wait until the remote machine stops, then return, storing status in
7832 STATUS just as `wait' would. */
7833
7834 ptid_t
7835 remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
7836 {
7837 ptid_t event_ptid;
7838
7839 if (target_is_non_stop_p ())
7840 event_ptid = wait_ns (ptid, status, options);
7841 else
7842 event_ptid = wait_as (ptid, status, options);
7843
7844 if (target_is_async_p ())
7845 {
7846 remote_state *rs = get_remote_state ();
7847
7848 /* If there are are events left in the queue tell the event loop
7849 to return here. */
7850 if (!rs->stop_reply_queue.empty ())
7851 mark_async_event_handler (rs->remote_async_inferior_event_token);
7852 }
7853
7854 return event_ptid;
7855 }
7856
7857 /* Fetch a single register using a 'p' packet. */
7858
7859 int
7860 remote_target::fetch_register_using_p (struct regcache *regcache,
7861 packet_reg *reg)
7862 {
7863 struct gdbarch *gdbarch = regcache->arch ();
7864 struct remote_state *rs = get_remote_state ();
7865 char *buf, *p;
7866 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
7867 int i;
7868
7869 if (packet_support (PACKET_p) == PACKET_DISABLE)
7870 return 0;
7871
7872 if (reg->pnum == -1)
7873 return 0;
7874
7875 p = rs->buf.data ();
7876 *p++ = 'p';
7877 p += hexnumstr (p, reg->pnum);
7878 *p++ = '\0';
7879 putpkt (rs->buf);
7880 getpkt (&rs->buf, 0);
7881
7882 buf = rs->buf.data ();
7883
7884 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
7885 {
7886 case PACKET_OK:
7887 break;
7888 case PACKET_UNKNOWN:
7889 return 0;
7890 case PACKET_ERROR:
7891 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7892 gdbarch_register_name (regcache->arch (),
7893 reg->regnum),
7894 buf);
7895 }
7896
7897 /* If this register is unfetchable, tell the regcache. */
7898 if (buf[0] == 'x')
7899 {
7900 regcache->raw_supply (reg->regnum, NULL);
7901 return 1;
7902 }
7903
7904 /* Otherwise, parse and supply the value. */
7905 p = buf;
7906 i = 0;
7907 while (p[0] != 0)
7908 {
7909 if (p[1] == 0)
7910 error (_("fetch_register_using_p: early buf termination"));
7911
7912 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7913 p += 2;
7914 }
7915 regcache->raw_supply (reg->regnum, regp);
7916 return 1;
7917 }
7918
7919 /* Fetch the registers included in the target's 'g' packet. */
7920
7921 int
7922 remote_target::send_g_packet ()
7923 {
7924 struct remote_state *rs = get_remote_state ();
7925 int buf_len;
7926
7927 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
7928 putpkt (rs->buf);
7929 getpkt (&rs->buf, 0);
7930 if (packet_check_result (rs->buf) == PACKET_ERROR)
7931 error (_("Could not read registers; remote failure reply '%s'"),
7932 rs->buf.data ());
7933
7934 /* We can get out of synch in various cases. If the first character
7935 in the buffer is not a hex character, assume that has happened
7936 and try to fetch another packet to read. */
7937 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7938 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7939 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7940 && rs->buf[0] != 'x') /* New: unavailable register value. */
7941 {
7942 if (remote_debug)
7943 fprintf_unfiltered (gdb_stdlog,
7944 "Bad register packet; fetching a new packet\n");
7945 getpkt (&rs->buf, 0);
7946 }
7947
7948 buf_len = strlen (rs->buf.data ());
7949
7950 /* Sanity check the received packet. */
7951 if (buf_len % 2 != 0)
7952 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
7953
7954 return buf_len / 2;
7955 }
7956
7957 void
7958 remote_target::process_g_packet (struct regcache *regcache)
7959 {
7960 struct gdbarch *gdbarch = regcache->arch ();
7961 struct remote_state *rs = get_remote_state ();
7962 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
7963 int i, buf_len;
7964 char *p;
7965 char *regs;
7966
7967 buf_len = strlen (rs->buf.data ());
7968
7969 /* Further sanity checks, with knowledge of the architecture. */
7970 if (buf_len > 2 * rsa->sizeof_g_packet)
7971 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7972 "bytes): %s"),
7973 rsa->sizeof_g_packet, buf_len / 2,
7974 rs->buf.data ());
7975
7976 /* Save the size of the packet sent to us by the target. It is used
7977 as a heuristic when determining the max size of packets that the
7978 target can safely receive. */
7979 if (rsa->actual_register_packet_size == 0)
7980 rsa->actual_register_packet_size = buf_len;
7981
7982 /* If this is smaller than we guessed the 'g' packet would be,
7983 update our records. A 'g' reply that doesn't include a register's
7984 value implies either that the register is not available, or that
7985 the 'p' packet must be used. */
7986 if (buf_len < 2 * rsa->sizeof_g_packet)
7987 {
7988 long sizeof_g_packet = buf_len / 2;
7989
7990 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7991 {
7992 long offset = rsa->regs[i].offset;
7993 long reg_size = register_size (gdbarch, i);
7994
7995 if (rsa->regs[i].pnum == -1)
7996 continue;
7997
7998 if (offset >= sizeof_g_packet)
7999 rsa->regs[i].in_g_packet = 0;
8000 else if (offset + reg_size > sizeof_g_packet)
8001 error (_("Truncated register %d in remote 'g' packet"), i);
8002 else
8003 rsa->regs[i].in_g_packet = 1;
8004 }
8005
8006 /* Looks valid enough, we can assume this is the correct length
8007 for a 'g' packet. It's important not to adjust
8008 rsa->sizeof_g_packet if we have truncated registers otherwise
8009 this "if" won't be run the next time the method is called
8010 with a packet of the same size and one of the internal errors
8011 below will trigger instead. */
8012 rsa->sizeof_g_packet = sizeof_g_packet;
8013 }
8014
8015 regs = (char *) alloca (rsa->sizeof_g_packet);
8016
8017 /* Unimplemented registers read as all bits zero. */
8018 memset (regs, 0, rsa->sizeof_g_packet);
8019
8020 /* Reply describes registers byte by byte, each byte encoded as two
8021 hex characters. Suck them all up, then supply them to the
8022 register cacheing/storage mechanism. */
8023
8024 p = rs->buf.data ();
8025 for (i = 0; i < rsa->sizeof_g_packet; i++)
8026 {
8027 if (p[0] == 0 || p[1] == 0)
8028 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8029 internal_error (__FILE__, __LINE__,
8030 _("unexpected end of 'g' packet reply"));
8031
8032 if (p[0] == 'x' && p[1] == 'x')
8033 regs[i] = 0; /* 'x' */
8034 else
8035 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8036 p += 2;
8037 }
8038
8039 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8040 {
8041 struct packet_reg *r = &rsa->regs[i];
8042 long reg_size = register_size (gdbarch, i);
8043
8044 if (r->in_g_packet)
8045 {
8046 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
8047 /* This shouldn't happen - we adjusted in_g_packet above. */
8048 internal_error (__FILE__, __LINE__,
8049 _("unexpected end of 'g' packet reply"));
8050 else if (rs->buf[r->offset * 2] == 'x')
8051 {
8052 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
8053 /* The register isn't available, mark it as such (at
8054 the same time setting the value to zero). */
8055 regcache->raw_supply (r->regnum, NULL);
8056 }
8057 else
8058 regcache->raw_supply (r->regnum, regs + r->offset);
8059 }
8060 }
8061 }
8062
8063 void
8064 remote_target::fetch_registers_using_g (struct regcache *regcache)
8065 {
8066 send_g_packet ();
8067 process_g_packet (regcache);
8068 }
8069
8070 /* Make the remote selected traceframe match GDB's selected
8071 traceframe. */
8072
8073 void
8074 remote_target::set_remote_traceframe ()
8075 {
8076 int newnum;
8077 struct remote_state *rs = get_remote_state ();
8078
8079 if (rs->remote_traceframe_number == get_traceframe_number ())
8080 return;
8081
8082 /* Avoid recursion, remote_trace_find calls us again. */
8083 rs->remote_traceframe_number = get_traceframe_number ();
8084
8085 newnum = target_trace_find (tfind_number,
8086 get_traceframe_number (), 0, 0, NULL);
8087
8088 /* Should not happen. If it does, all bets are off. */
8089 if (newnum != get_traceframe_number ())
8090 warning (_("could not set remote traceframe"));
8091 }
8092
8093 void
8094 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8095 {
8096 struct gdbarch *gdbarch = regcache->arch ();
8097 struct remote_state *rs = get_remote_state ();
8098 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8099 int i;
8100
8101 set_remote_traceframe ();
8102 set_general_thread (regcache->ptid ());
8103
8104 if (regnum >= 0)
8105 {
8106 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8107
8108 gdb_assert (reg != NULL);
8109
8110 /* If this register might be in the 'g' packet, try that first -
8111 we are likely to read more than one register. If this is the
8112 first 'g' packet, we might be overly optimistic about its
8113 contents, so fall back to 'p'. */
8114 if (reg->in_g_packet)
8115 {
8116 fetch_registers_using_g (regcache);
8117 if (reg->in_g_packet)
8118 return;
8119 }
8120
8121 if (fetch_register_using_p (regcache, reg))
8122 return;
8123
8124 /* This register is not available. */
8125 regcache->raw_supply (reg->regnum, NULL);
8126
8127 return;
8128 }
8129
8130 fetch_registers_using_g (regcache);
8131
8132 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8133 if (!rsa->regs[i].in_g_packet)
8134 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8135 {
8136 /* This register is not available. */
8137 regcache->raw_supply (i, NULL);
8138 }
8139 }
8140
8141 /* Prepare to store registers. Since we may send them all (using a
8142 'G' request), we have to read out the ones we don't want to change
8143 first. */
8144
8145 void
8146 remote_target::prepare_to_store (struct regcache *regcache)
8147 {
8148 struct remote_state *rs = get_remote_state ();
8149 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8150 int i;
8151
8152 /* Make sure the entire registers array is valid. */
8153 switch (packet_support (PACKET_P))
8154 {
8155 case PACKET_DISABLE:
8156 case PACKET_SUPPORT_UNKNOWN:
8157 /* Make sure all the necessary registers are cached. */
8158 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8159 if (rsa->regs[i].in_g_packet)
8160 regcache->raw_update (rsa->regs[i].regnum);
8161 break;
8162 case PACKET_ENABLE:
8163 break;
8164 }
8165 }
8166
8167 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8168 packet was not recognized. */
8169
8170 int
8171 remote_target::store_register_using_P (const struct regcache *regcache,
8172 packet_reg *reg)
8173 {
8174 struct gdbarch *gdbarch = regcache->arch ();
8175 struct remote_state *rs = get_remote_state ();
8176 /* Try storing a single register. */
8177 char *buf = rs->buf.data ();
8178 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8179 char *p;
8180
8181 if (packet_support (PACKET_P) == PACKET_DISABLE)
8182 return 0;
8183
8184 if (reg->pnum == -1)
8185 return 0;
8186
8187 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8188 p = buf + strlen (buf);
8189 regcache->raw_collect (reg->regnum, regp);
8190 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8191 putpkt (rs->buf);
8192 getpkt (&rs->buf, 0);
8193
8194 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8195 {
8196 case PACKET_OK:
8197 return 1;
8198 case PACKET_ERROR:
8199 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8200 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
8201 case PACKET_UNKNOWN:
8202 return 0;
8203 default:
8204 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8205 }
8206 }
8207
8208 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8209 contents of the register cache buffer. FIXME: ignores errors. */
8210
8211 void
8212 remote_target::store_registers_using_G (const struct regcache *regcache)
8213 {
8214 struct remote_state *rs = get_remote_state ();
8215 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8216 gdb_byte *regs;
8217 char *p;
8218
8219 /* Extract all the registers in the regcache copying them into a
8220 local buffer. */
8221 {
8222 int i;
8223
8224 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8225 memset (regs, 0, rsa->sizeof_g_packet);
8226 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8227 {
8228 struct packet_reg *r = &rsa->regs[i];
8229
8230 if (r->in_g_packet)
8231 regcache->raw_collect (r->regnum, regs + r->offset);
8232 }
8233 }
8234
8235 /* Command describes registers byte by byte,
8236 each byte encoded as two hex characters. */
8237 p = rs->buf.data ();
8238 *p++ = 'G';
8239 bin2hex (regs, p, rsa->sizeof_g_packet);
8240 putpkt (rs->buf);
8241 getpkt (&rs->buf, 0);
8242 if (packet_check_result (rs->buf) == PACKET_ERROR)
8243 error (_("Could not write registers; remote failure reply '%s'"),
8244 rs->buf.data ());
8245 }
8246
8247 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8248 of the register cache buffer. FIXME: ignores errors. */
8249
8250 void
8251 remote_target::store_registers (struct regcache *regcache, int regnum)
8252 {
8253 struct gdbarch *gdbarch = regcache->arch ();
8254 struct remote_state *rs = get_remote_state ();
8255 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8256 int i;
8257
8258 set_remote_traceframe ();
8259 set_general_thread (regcache->ptid ());
8260
8261 if (regnum >= 0)
8262 {
8263 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8264
8265 gdb_assert (reg != NULL);
8266
8267 /* Always prefer to store registers using the 'P' packet if
8268 possible; we often change only a small number of registers.
8269 Sometimes we change a larger number; we'd need help from a
8270 higher layer to know to use 'G'. */
8271 if (store_register_using_P (regcache, reg))
8272 return;
8273
8274 /* For now, don't complain if we have no way to write the
8275 register. GDB loses track of unavailable registers too
8276 easily. Some day, this may be an error. We don't have
8277 any way to read the register, either... */
8278 if (!reg->in_g_packet)
8279 return;
8280
8281 store_registers_using_G (regcache);
8282 return;
8283 }
8284
8285 store_registers_using_G (regcache);
8286
8287 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8288 if (!rsa->regs[i].in_g_packet)
8289 if (!store_register_using_P (regcache, &rsa->regs[i]))
8290 /* See above for why we do not issue an error here. */
8291 continue;
8292 }
8293 \f
8294
8295 /* Return the number of hex digits in num. */
8296
8297 static int
8298 hexnumlen (ULONGEST num)
8299 {
8300 int i;
8301
8302 for (i = 0; num != 0; i++)
8303 num >>= 4;
8304
8305 return std::max (i, 1);
8306 }
8307
8308 /* Set BUF to the minimum number of hex digits representing NUM. */
8309
8310 static int
8311 hexnumstr (char *buf, ULONGEST num)
8312 {
8313 int len = hexnumlen (num);
8314
8315 return hexnumnstr (buf, num, len);
8316 }
8317
8318
8319 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8320
8321 static int
8322 hexnumnstr (char *buf, ULONGEST num, int width)
8323 {
8324 int i;
8325
8326 buf[width] = '\0';
8327
8328 for (i = width - 1; i >= 0; i--)
8329 {
8330 buf[i] = "0123456789abcdef"[(num & 0xf)];
8331 num >>= 4;
8332 }
8333
8334 return width;
8335 }
8336
8337 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8338
8339 static CORE_ADDR
8340 remote_address_masked (CORE_ADDR addr)
8341 {
8342 unsigned int address_size = remote_address_size;
8343
8344 /* If "remoteaddresssize" was not set, default to target address size. */
8345 if (!address_size)
8346 address_size = gdbarch_addr_bit (target_gdbarch ());
8347
8348 if (address_size > 0
8349 && address_size < (sizeof (ULONGEST) * 8))
8350 {
8351 /* Only create a mask when that mask can safely be constructed
8352 in a ULONGEST variable. */
8353 ULONGEST mask = 1;
8354
8355 mask = (mask << address_size) - 1;
8356 addr &= mask;
8357 }
8358 return addr;
8359 }
8360
8361 /* Determine whether the remote target supports binary downloading.
8362 This is accomplished by sending a no-op memory write of zero length
8363 to the target at the specified address. It does not suffice to send
8364 the whole packet, since many stubs strip the eighth bit and
8365 subsequently compute a wrong checksum, which causes real havoc with
8366 remote_write_bytes.
8367
8368 NOTE: This can still lose if the serial line is not eight-bit
8369 clean. In cases like this, the user should clear "remote
8370 X-packet". */
8371
8372 void
8373 remote_target::check_binary_download (CORE_ADDR addr)
8374 {
8375 struct remote_state *rs = get_remote_state ();
8376
8377 switch (packet_support (PACKET_X))
8378 {
8379 case PACKET_DISABLE:
8380 break;
8381 case PACKET_ENABLE:
8382 break;
8383 case PACKET_SUPPORT_UNKNOWN:
8384 {
8385 char *p;
8386
8387 p = rs->buf.data ();
8388 *p++ = 'X';
8389 p += hexnumstr (p, (ULONGEST) addr);
8390 *p++ = ',';
8391 p += hexnumstr (p, (ULONGEST) 0);
8392 *p++ = ':';
8393 *p = '\0';
8394
8395 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8396 getpkt (&rs->buf, 0);
8397
8398 if (rs->buf[0] == '\0')
8399 {
8400 if (remote_debug)
8401 fprintf_unfiltered (gdb_stdlog,
8402 "binary downloading NOT "
8403 "supported by target\n");
8404 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8405 }
8406 else
8407 {
8408 if (remote_debug)
8409 fprintf_unfiltered (gdb_stdlog,
8410 "binary downloading supported by target\n");
8411 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8412 }
8413 break;
8414 }
8415 }
8416 }
8417
8418 /* Helper function to resize the payload in order to try to get a good
8419 alignment. We try to write an amount of data such that the next write will
8420 start on an address aligned on REMOTE_ALIGN_WRITES. */
8421
8422 static int
8423 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8424 {
8425 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8426 }
8427
8428 /* Write memory data directly to the remote machine.
8429 This does not inform the data cache; the data cache uses this.
8430 HEADER is the starting part of the packet.
8431 MEMADDR is the address in the remote memory space.
8432 MYADDR is the address of the buffer in our space.
8433 LEN_UNITS is the number of addressable units to write.
8434 UNIT_SIZE is the length in bytes of an addressable unit.
8435 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8436 should send data as binary ('X'), or hex-encoded ('M').
8437
8438 The function creates packet of the form
8439 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8440
8441 where encoding of <DATA> is terminated by PACKET_FORMAT.
8442
8443 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8444 are omitted.
8445
8446 Return the transferred status, error or OK (an
8447 'enum target_xfer_status' value). Save the number of addressable units
8448 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8449
8450 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8451 exchange between gdb and the stub could look like (?? in place of the
8452 checksum):
8453
8454 -> $m1000,4#??
8455 <- aaaabbbbccccdddd
8456
8457 -> $M1000,3:eeeeffffeeee#??
8458 <- OK
8459
8460 -> $m1000,4#??
8461 <- eeeeffffeeeedddd */
8462
8463 target_xfer_status
8464 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8465 const gdb_byte *myaddr,
8466 ULONGEST len_units,
8467 int unit_size,
8468 ULONGEST *xfered_len_units,
8469 char packet_format, int use_length)
8470 {
8471 struct remote_state *rs = get_remote_state ();
8472 char *p;
8473 char *plen = NULL;
8474 int plenlen = 0;
8475 int todo_units;
8476 int units_written;
8477 int payload_capacity_bytes;
8478 int payload_length_bytes;
8479
8480 if (packet_format != 'X' && packet_format != 'M')
8481 internal_error (__FILE__, __LINE__,
8482 _("remote_write_bytes_aux: bad packet format"));
8483
8484 if (len_units == 0)
8485 return TARGET_XFER_EOF;
8486
8487 payload_capacity_bytes = get_memory_write_packet_size ();
8488
8489 /* The packet buffer will be large enough for the payload;
8490 get_memory_packet_size ensures this. */
8491 rs->buf[0] = '\0';
8492
8493 /* Compute the size of the actual payload by subtracting out the
8494 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8495
8496 payload_capacity_bytes -= strlen ("$,:#NN");
8497 if (!use_length)
8498 /* The comma won't be used. */
8499 payload_capacity_bytes += 1;
8500 payload_capacity_bytes -= strlen (header);
8501 payload_capacity_bytes -= hexnumlen (memaddr);
8502
8503 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8504
8505 strcat (rs->buf.data (), header);
8506 p = rs->buf.data () + strlen (header);
8507
8508 /* Compute a best guess of the number of bytes actually transfered. */
8509 if (packet_format == 'X')
8510 {
8511 /* Best guess at number of bytes that will fit. */
8512 todo_units = std::min (len_units,
8513 (ULONGEST) payload_capacity_bytes / unit_size);
8514 if (use_length)
8515 payload_capacity_bytes -= hexnumlen (todo_units);
8516 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8517 }
8518 else
8519 {
8520 /* Number of bytes that will fit. */
8521 todo_units
8522 = std::min (len_units,
8523 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
8524 if (use_length)
8525 payload_capacity_bytes -= hexnumlen (todo_units);
8526 todo_units = std::min (todo_units,
8527 (payload_capacity_bytes / unit_size) / 2);
8528 }
8529
8530 if (todo_units <= 0)
8531 internal_error (__FILE__, __LINE__,
8532 _("minimum packet size too small to write data"));
8533
8534 /* If we already need another packet, then try to align the end
8535 of this packet to a useful boundary. */
8536 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8537 todo_units = align_for_efficient_write (todo_units, memaddr);
8538
8539 /* Append "<memaddr>". */
8540 memaddr = remote_address_masked (memaddr);
8541 p += hexnumstr (p, (ULONGEST) memaddr);
8542
8543 if (use_length)
8544 {
8545 /* Append ",". */
8546 *p++ = ',';
8547
8548 /* Append the length and retain its location and size. It may need to be
8549 adjusted once the packet body has been created. */
8550 plen = p;
8551 plenlen = hexnumstr (p, (ULONGEST) todo_units);
8552 p += plenlen;
8553 }
8554
8555 /* Append ":". */
8556 *p++ = ':';
8557 *p = '\0';
8558
8559 /* Append the packet body. */
8560 if (packet_format == 'X')
8561 {
8562 /* Binary mode. Send target system values byte by byte, in
8563 increasing byte addresses. Only escape certain critical
8564 characters. */
8565 payload_length_bytes =
8566 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8567 &units_written, payload_capacity_bytes);
8568
8569 /* If not all TODO units fit, then we'll need another packet. Make
8570 a second try to keep the end of the packet aligned. Don't do
8571 this if the packet is tiny. */
8572 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
8573 {
8574 int new_todo_units;
8575
8576 new_todo_units = align_for_efficient_write (units_written, memaddr);
8577
8578 if (new_todo_units != units_written)
8579 payload_length_bytes =
8580 remote_escape_output (myaddr, new_todo_units, unit_size,
8581 (gdb_byte *) p, &units_written,
8582 payload_capacity_bytes);
8583 }
8584
8585 p += payload_length_bytes;
8586 if (use_length && units_written < todo_units)
8587 {
8588 /* Escape chars have filled up the buffer prematurely,
8589 and we have actually sent fewer units than planned.
8590 Fix-up the length field of the packet. Use the same
8591 number of characters as before. */
8592 plen += hexnumnstr (plen, (ULONGEST) units_written,
8593 plenlen);
8594 *plen = ':'; /* overwrite \0 from hexnumnstr() */
8595 }
8596 }
8597 else
8598 {
8599 /* Normal mode: Send target system values byte by byte, in
8600 increasing byte addresses. Each byte is encoded as a two hex
8601 value. */
8602 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8603 units_written = todo_units;
8604 }
8605
8606 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8607 getpkt (&rs->buf, 0);
8608
8609 if (rs->buf[0] == 'E')
8610 return TARGET_XFER_E_IO;
8611
8612 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8613 send fewer units than we'd planned. */
8614 *xfered_len_units = (ULONGEST) units_written;
8615 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8616 }
8617
8618 /* Write memory data directly to the remote machine.
8619 This does not inform the data cache; the data cache uses this.
8620 MEMADDR is the address in the remote memory space.
8621 MYADDR is the address of the buffer in our space.
8622 LEN is the number of bytes.
8623
8624 Return the transferred status, error or OK (an
8625 'enum target_xfer_status' value). Save the number of bytes
8626 transferred in *XFERED_LEN. Only transfer a single packet. */
8627
8628 target_xfer_status
8629 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8630 ULONGEST len, int unit_size,
8631 ULONGEST *xfered_len)
8632 {
8633 const char *packet_format = NULL;
8634
8635 /* Check whether the target supports binary download. */
8636 check_binary_download (memaddr);
8637
8638 switch (packet_support (PACKET_X))
8639 {
8640 case PACKET_ENABLE:
8641 packet_format = "X";
8642 break;
8643 case PACKET_DISABLE:
8644 packet_format = "M";
8645 break;
8646 case PACKET_SUPPORT_UNKNOWN:
8647 internal_error (__FILE__, __LINE__,
8648 _("remote_write_bytes: bad internal state"));
8649 default:
8650 internal_error (__FILE__, __LINE__, _("bad switch"));
8651 }
8652
8653 return remote_write_bytes_aux (packet_format,
8654 memaddr, myaddr, len, unit_size, xfered_len,
8655 packet_format[0], 1);
8656 }
8657
8658 /* Read memory data directly from the remote machine.
8659 This does not use the data cache; the data cache uses this.
8660 MEMADDR is the address in the remote memory space.
8661 MYADDR is the address of the buffer in our space.
8662 LEN_UNITS is the number of addressable memory units to read..
8663 UNIT_SIZE is the length in bytes of an addressable unit.
8664
8665 Return the transferred status, error or OK (an
8666 'enum target_xfer_status' value). Save the number of bytes
8667 transferred in *XFERED_LEN_UNITS.
8668
8669 See the comment of remote_write_bytes_aux for an example of
8670 memory read/write exchange between gdb and the stub. */
8671
8672 target_xfer_status
8673 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8674 ULONGEST len_units,
8675 int unit_size, ULONGEST *xfered_len_units)
8676 {
8677 struct remote_state *rs = get_remote_state ();
8678 int buf_size_bytes; /* Max size of packet output buffer. */
8679 char *p;
8680 int todo_units;
8681 int decoded_bytes;
8682
8683 buf_size_bytes = get_memory_read_packet_size ();
8684 /* The packet buffer will be large enough for the payload;
8685 get_memory_packet_size ensures this. */
8686
8687 /* Number of units that will fit. */
8688 todo_units = std::min (len_units,
8689 (ULONGEST) (buf_size_bytes / unit_size) / 2);
8690
8691 /* Construct "m"<memaddr>","<len>". */
8692 memaddr = remote_address_masked (memaddr);
8693 p = rs->buf.data ();
8694 *p++ = 'm';
8695 p += hexnumstr (p, (ULONGEST) memaddr);
8696 *p++ = ',';
8697 p += hexnumstr (p, (ULONGEST) todo_units);
8698 *p = '\0';
8699 putpkt (rs->buf);
8700 getpkt (&rs->buf, 0);
8701 if (rs->buf[0] == 'E'
8702 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8703 && rs->buf[3] == '\0')
8704 return TARGET_XFER_E_IO;
8705 /* Reply describes memory byte by byte, each byte encoded as two hex
8706 characters. */
8707 p = rs->buf.data ();
8708 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
8709 /* Return what we have. Let higher layers handle partial reads. */
8710 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
8711 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8712 }
8713
8714 /* Using the set of read-only target sections of remote, read live
8715 read-only memory.
8716
8717 For interface/parameters/return description see target.h,
8718 to_xfer_partial. */
8719
8720 target_xfer_status
8721 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8722 ULONGEST memaddr,
8723 ULONGEST len,
8724 int unit_size,
8725 ULONGEST *xfered_len)
8726 {
8727 struct target_section *secp;
8728 struct target_section_table *table;
8729
8730 secp = target_section_by_addr (this, memaddr);
8731 if (secp != NULL
8732 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8733 {
8734 struct target_section *p;
8735 ULONGEST memend = memaddr + len;
8736
8737 table = target_get_section_table (this);
8738
8739 for (p = table->sections; p < table->sections_end; p++)
8740 {
8741 if (memaddr >= p->addr)
8742 {
8743 if (memend <= p->endaddr)
8744 {
8745 /* Entire transfer is within this section. */
8746 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8747 xfered_len);
8748 }
8749 else if (memaddr >= p->endaddr)
8750 {
8751 /* This section ends before the transfer starts. */
8752 continue;
8753 }
8754 else
8755 {
8756 /* This section overlaps the transfer. Just do half. */
8757 len = p->endaddr - memaddr;
8758 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8759 xfered_len);
8760 }
8761 }
8762 }
8763 }
8764
8765 return TARGET_XFER_EOF;
8766 }
8767
8768 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8769 first if the requested memory is unavailable in traceframe.
8770 Otherwise, fall back to remote_read_bytes_1. */
8771
8772 target_xfer_status
8773 remote_target::remote_read_bytes (CORE_ADDR memaddr,
8774 gdb_byte *myaddr, ULONGEST len, int unit_size,
8775 ULONGEST *xfered_len)
8776 {
8777 if (len == 0)
8778 return TARGET_XFER_EOF;
8779
8780 if (get_traceframe_number () != -1)
8781 {
8782 std::vector<mem_range> available;
8783
8784 /* If we fail to get the set of available memory, then the
8785 target does not support querying traceframe info, and so we
8786 attempt reading from the traceframe anyway (assuming the
8787 target implements the old QTro packet then). */
8788 if (traceframe_available_memory (&available, memaddr, len))
8789 {
8790 if (available.empty () || available[0].start != memaddr)
8791 {
8792 enum target_xfer_status res;
8793
8794 /* Don't read into the traceframe's available
8795 memory. */
8796 if (!available.empty ())
8797 {
8798 LONGEST oldlen = len;
8799
8800 len = available[0].start - memaddr;
8801 gdb_assert (len <= oldlen);
8802 }
8803
8804 /* This goes through the topmost target again. */
8805 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
8806 len, unit_size, xfered_len);
8807 if (res == TARGET_XFER_OK)
8808 return TARGET_XFER_OK;
8809 else
8810 {
8811 /* No use trying further, we know some memory starting
8812 at MEMADDR isn't available. */
8813 *xfered_len = len;
8814 return (*xfered_len != 0) ?
8815 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8816 }
8817 }
8818
8819 /* Don't try to read more than how much is available, in
8820 case the target implements the deprecated QTro packet to
8821 cater for older GDBs (the target's knowledge of read-only
8822 sections may be outdated by now). */
8823 len = available[0].length;
8824 }
8825 }
8826
8827 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
8828 }
8829
8830 \f
8831
8832 /* Sends a packet with content determined by the printf format string
8833 FORMAT and the remaining arguments, then gets the reply. Returns
8834 whether the packet was a success, a failure, or unknown. */
8835
8836 packet_result
8837 remote_target::remote_send_printf (const char *format, ...)
8838 {
8839 struct remote_state *rs = get_remote_state ();
8840 int max_size = get_remote_packet_size ();
8841 va_list ap;
8842
8843 va_start (ap, format);
8844
8845 rs->buf[0] = '\0';
8846 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
8847
8848 va_end (ap);
8849
8850 if (size >= max_size)
8851 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8852
8853 if (putpkt (rs->buf) < 0)
8854 error (_("Communication problem with target."));
8855
8856 rs->buf[0] = '\0';
8857 getpkt (&rs->buf, 0);
8858
8859 return packet_check_result (rs->buf);
8860 }
8861
8862 /* Flash writing can take quite some time. We'll set
8863 effectively infinite timeout for flash operations.
8864 In future, we'll need to decide on a better approach. */
8865 static const int remote_flash_timeout = 1000;
8866
8867 void
8868 remote_target::flash_erase (ULONGEST address, LONGEST length)
8869 {
8870 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8871 enum packet_result ret;
8872 scoped_restore restore_timeout
8873 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8874
8875 ret = remote_send_printf ("vFlashErase:%s,%s",
8876 phex (address, addr_size),
8877 phex (length, 4));
8878 switch (ret)
8879 {
8880 case PACKET_UNKNOWN:
8881 error (_("Remote target does not support flash erase"));
8882 case PACKET_ERROR:
8883 error (_("Error erasing flash with vFlashErase packet"));
8884 default:
8885 break;
8886 }
8887 }
8888
8889 target_xfer_status
8890 remote_target::remote_flash_write (ULONGEST address,
8891 ULONGEST length, ULONGEST *xfered_len,
8892 const gdb_byte *data)
8893 {
8894 scoped_restore restore_timeout
8895 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8896 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8897 xfered_len,'X', 0);
8898 }
8899
8900 void
8901 remote_target::flash_done ()
8902 {
8903 int ret;
8904
8905 scoped_restore restore_timeout
8906 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8907
8908 ret = remote_send_printf ("vFlashDone");
8909
8910 switch (ret)
8911 {
8912 case PACKET_UNKNOWN:
8913 error (_("Remote target does not support vFlashDone"));
8914 case PACKET_ERROR:
8915 error (_("Error finishing flash operation"));
8916 default:
8917 break;
8918 }
8919 }
8920
8921 void
8922 remote_target::files_info ()
8923 {
8924 puts_filtered ("Debugging a target over a serial line.\n");
8925 }
8926 \f
8927 /* Stuff for dealing with the packets which are part of this protocol.
8928 See comment at top of file for details. */
8929
8930 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8931 error to higher layers. Called when a serial error is detected.
8932 The exception message is STRING, followed by a colon and a blank,
8933 the system error message for errno at function entry and final dot
8934 for output compatibility with throw_perror_with_name. */
8935
8936 static void
8937 unpush_and_perror (const char *string)
8938 {
8939 int saved_errno = errno;
8940
8941 remote_unpush_target ();
8942 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8943 safe_strerror (saved_errno));
8944 }
8945
8946 /* Read a single character from the remote end. The current quit
8947 handler is overridden to avoid quitting in the middle of packet
8948 sequence, as that would break communication with the remote server.
8949 See remote_serial_quit_handler for more detail. */
8950
8951 int
8952 remote_target::readchar (int timeout)
8953 {
8954 int ch;
8955 struct remote_state *rs = get_remote_state ();
8956
8957 {
8958 scoped_restore restore_quit_target
8959 = make_scoped_restore (&curr_quit_handler_target, this);
8960 scoped_restore restore_quit
8961 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
8962
8963 rs->got_ctrlc_during_io = 0;
8964
8965 ch = serial_readchar (rs->remote_desc, timeout);
8966
8967 if (rs->got_ctrlc_during_io)
8968 set_quit_flag ();
8969 }
8970
8971 if (ch >= 0)
8972 return ch;
8973
8974 switch ((enum serial_rc) ch)
8975 {
8976 case SERIAL_EOF:
8977 remote_unpush_target ();
8978 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
8979 /* no return */
8980 case SERIAL_ERROR:
8981 unpush_and_perror (_("Remote communication error. "
8982 "Target disconnected."));
8983 /* no return */
8984 case SERIAL_TIMEOUT:
8985 break;
8986 }
8987 return ch;
8988 }
8989
8990 /* Wrapper for serial_write that closes the target and throws if
8991 writing fails. The current quit handler is overridden to avoid
8992 quitting in the middle of packet sequence, as that would break
8993 communication with the remote server. See
8994 remote_serial_quit_handler for more detail. */
8995
8996 void
8997 remote_target::remote_serial_write (const char *str, int len)
8998 {
8999 struct remote_state *rs = get_remote_state ();
9000
9001 scoped_restore restore_quit_target
9002 = make_scoped_restore (&curr_quit_handler_target, this);
9003 scoped_restore restore_quit
9004 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9005
9006 rs->got_ctrlc_during_io = 0;
9007
9008 if (serial_write (rs->remote_desc, str, len))
9009 {
9010 unpush_and_perror (_("Remote communication error. "
9011 "Target disconnected."));
9012 }
9013
9014 if (rs->got_ctrlc_during_io)
9015 set_quit_flag ();
9016 }
9017
9018 /* Return a string representing an escaped version of BUF, of len N.
9019 E.g. \n is converted to \\n, \t to \\t, etc. */
9020
9021 static std::string
9022 escape_buffer (const char *buf, int n)
9023 {
9024 string_file stb;
9025
9026 stb.putstrn (buf, n, '\\');
9027 return std::move (stb.string ());
9028 }
9029
9030 /* Display a null-terminated packet on stdout, for debugging, using C
9031 string notation. */
9032
9033 static void
9034 print_packet (const char *buf)
9035 {
9036 puts_filtered ("\"");
9037 fputstr_filtered (buf, '"', gdb_stdout);
9038 puts_filtered ("\"");
9039 }
9040
9041 int
9042 remote_target::putpkt (const char *buf)
9043 {
9044 return putpkt_binary (buf, strlen (buf));
9045 }
9046
9047 /* Wrapper around remote_target::putpkt to avoid exporting
9048 remote_target. */
9049
9050 int
9051 putpkt (remote_target *remote, const char *buf)
9052 {
9053 return remote->putpkt (buf);
9054 }
9055
9056 /* Send a packet to the remote machine, with error checking. The data
9057 of the packet is in BUF. The string in BUF can be at most
9058 get_remote_packet_size () - 5 to account for the $, # and checksum,
9059 and for a possible /0 if we are debugging (remote_debug) and want
9060 to print the sent packet as a string. */
9061
9062 int
9063 remote_target::putpkt_binary (const char *buf, int cnt)
9064 {
9065 struct remote_state *rs = get_remote_state ();
9066 int i;
9067 unsigned char csum = 0;
9068 gdb::def_vector<char> data (cnt + 6);
9069 char *buf2 = data.data ();
9070
9071 int ch;
9072 int tcount = 0;
9073 char *p;
9074
9075 /* Catch cases like trying to read memory or listing threads while
9076 we're waiting for a stop reply. The remote server wouldn't be
9077 ready to handle this request, so we'd hang and timeout. We don't
9078 have to worry about this in synchronous mode, because in that
9079 case it's not possible to issue a command while the target is
9080 running. This is not a problem in non-stop mode, because in that
9081 case, the stub is always ready to process serial input. */
9082 if (!target_is_non_stop_p ()
9083 && target_is_async_p ()
9084 && rs->waiting_for_stop_reply)
9085 {
9086 error (_("Cannot execute this command while the target is running.\n"
9087 "Use the \"interrupt\" command to stop the target\n"
9088 "and then try again."));
9089 }
9090
9091 /* We're sending out a new packet. Make sure we don't look at a
9092 stale cached response. */
9093 rs->cached_wait_status = 0;
9094
9095 /* Copy the packet into buffer BUF2, encapsulating it
9096 and giving it a checksum. */
9097
9098 p = buf2;
9099 *p++ = '$';
9100
9101 for (i = 0; i < cnt; i++)
9102 {
9103 csum += buf[i];
9104 *p++ = buf[i];
9105 }
9106 *p++ = '#';
9107 *p++ = tohex ((csum >> 4) & 0xf);
9108 *p++ = tohex (csum & 0xf);
9109
9110 /* Send it over and over until we get a positive ack. */
9111
9112 while (1)
9113 {
9114 int started_error_output = 0;
9115
9116 if (remote_debug)
9117 {
9118 *p = '\0';
9119
9120 int len = (int) (p - buf2);
9121
9122 std::string str
9123 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9124
9125 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9126
9127 if (len > REMOTE_DEBUG_MAX_CHAR)
9128 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9129 len - REMOTE_DEBUG_MAX_CHAR);
9130
9131 fprintf_unfiltered (gdb_stdlog, "...");
9132
9133 gdb_flush (gdb_stdlog);
9134 }
9135 remote_serial_write (buf2, p - buf2);
9136
9137 /* If this is a no acks version of the remote protocol, send the
9138 packet and move on. */
9139 if (rs->noack_mode)
9140 break;
9141
9142 /* Read until either a timeout occurs (-2) or '+' is read.
9143 Handle any notification that arrives in the mean time. */
9144 while (1)
9145 {
9146 ch = readchar (remote_timeout);
9147
9148 if (remote_debug)
9149 {
9150 switch (ch)
9151 {
9152 case '+':
9153 case '-':
9154 case SERIAL_TIMEOUT:
9155 case '$':
9156 case '%':
9157 if (started_error_output)
9158 {
9159 putchar_unfiltered ('\n');
9160 started_error_output = 0;
9161 }
9162 }
9163 }
9164
9165 switch (ch)
9166 {
9167 case '+':
9168 if (remote_debug)
9169 fprintf_unfiltered (gdb_stdlog, "Ack\n");
9170 return 1;
9171 case '-':
9172 if (remote_debug)
9173 fprintf_unfiltered (gdb_stdlog, "Nak\n");
9174 /* FALLTHROUGH */
9175 case SERIAL_TIMEOUT:
9176 tcount++;
9177 if (tcount > 3)
9178 return 0;
9179 break; /* Retransmit buffer. */
9180 case '$':
9181 {
9182 if (remote_debug)
9183 fprintf_unfiltered (gdb_stdlog,
9184 "Packet instead of Ack, ignoring it\n");
9185 /* It's probably an old response sent because an ACK
9186 was lost. Gobble up the packet and ack it so it
9187 doesn't get retransmitted when we resend this
9188 packet. */
9189 skip_frame ();
9190 remote_serial_write ("+", 1);
9191 continue; /* Now, go look for +. */
9192 }
9193
9194 case '%':
9195 {
9196 int val;
9197
9198 /* If we got a notification, handle it, and go back to looking
9199 for an ack. */
9200 /* We've found the start of a notification. Now
9201 collect the data. */
9202 val = read_frame (&rs->buf);
9203 if (val >= 0)
9204 {
9205 if (remote_debug)
9206 {
9207 std::string str = escape_buffer (rs->buf.data (), val);
9208
9209 fprintf_unfiltered (gdb_stdlog,
9210 " Notification received: %s\n",
9211 str.c_str ());
9212 }
9213 handle_notification (rs->notif_state, rs->buf.data ());
9214 /* We're in sync now, rewait for the ack. */
9215 tcount = 0;
9216 }
9217 else
9218 {
9219 if (remote_debug)
9220 {
9221 if (!started_error_output)
9222 {
9223 started_error_output = 1;
9224 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9225 }
9226 fputc_unfiltered (ch & 0177, gdb_stdlog);
9227 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
9228 }
9229 }
9230 continue;
9231 }
9232 /* fall-through */
9233 default:
9234 if (remote_debug)
9235 {
9236 if (!started_error_output)
9237 {
9238 started_error_output = 1;
9239 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9240 }
9241 fputc_unfiltered (ch & 0177, gdb_stdlog);
9242 }
9243 continue;
9244 }
9245 break; /* Here to retransmit. */
9246 }
9247
9248 #if 0
9249 /* This is wrong. If doing a long backtrace, the user should be
9250 able to get out next time we call QUIT, without anything as
9251 violent as interrupt_query. If we want to provide a way out of
9252 here without getting to the next QUIT, it should be based on
9253 hitting ^C twice as in remote_wait. */
9254 if (quit_flag)
9255 {
9256 quit_flag = 0;
9257 interrupt_query ();
9258 }
9259 #endif
9260 }
9261
9262 return 0;
9263 }
9264
9265 /* Come here after finding the start of a frame when we expected an
9266 ack. Do our best to discard the rest of this packet. */
9267
9268 void
9269 remote_target::skip_frame ()
9270 {
9271 int c;
9272
9273 while (1)
9274 {
9275 c = readchar (remote_timeout);
9276 switch (c)
9277 {
9278 case SERIAL_TIMEOUT:
9279 /* Nothing we can do. */
9280 return;
9281 case '#':
9282 /* Discard the two bytes of checksum and stop. */
9283 c = readchar (remote_timeout);
9284 if (c >= 0)
9285 c = readchar (remote_timeout);
9286
9287 return;
9288 case '*': /* Run length encoding. */
9289 /* Discard the repeat count. */
9290 c = readchar (remote_timeout);
9291 if (c < 0)
9292 return;
9293 break;
9294 default:
9295 /* A regular character. */
9296 break;
9297 }
9298 }
9299 }
9300
9301 /* Come here after finding the start of the frame. Collect the rest
9302 into *BUF, verifying the checksum, length, and handling run-length
9303 compression. NUL terminate the buffer. If there is not enough room,
9304 expand *BUF.
9305
9306 Returns -1 on error, number of characters in buffer (ignoring the
9307 trailing NULL) on success. (could be extended to return one of the
9308 SERIAL status indications). */
9309
9310 long
9311 remote_target::read_frame (gdb::char_vector *buf_p)
9312 {
9313 unsigned char csum;
9314 long bc;
9315 int c;
9316 char *buf = buf_p->data ();
9317 struct remote_state *rs = get_remote_state ();
9318
9319 csum = 0;
9320 bc = 0;
9321
9322 while (1)
9323 {
9324 c = readchar (remote_timeout);
9325 switch (c)
9326 {
9327 case SERIAL_TIMEOUT:
9328 if (remote_debug)
9329 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
9330 return -1;
9331 case '$':
9332 if (remote_debug)
9333 fputs_filtered ("Saw new packet start in middle of old one\n",
9334 gdb_stdlog);
9335 return -1; /* Start a new packet, count retries. */
9336 case '#':
9337 {
9338 unsigned char pktcsum;
9339 int check_0 = 0;
9340 int check_1 = 0;
9341
9342 buf[bc] = '\0';
9343
9344 check_0 = readchar (remote_timeout);
9345 if (check_0 >= 0)
9346 check_1 = readchar (remote_timeout);
9347
9348 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9349 {
9350 if (remote_debug)
9351 fputs_filtered ("Timeout in checksum, retrying\n",
9352 gdb_stdlog);
9353 return -1;
9354 }
9355 else if (check_0 < 0 || check_1 < 0)
9356 {
9357 if (remote_debug)
9358 fputs_filtered ("Communication error in checksum\n",
9359 gdb_stdlog);
9360 return -1;
9361 }
9362
9363 /* Don't recompute the checksum; with no ack packets we
9364 don't have any way to indicate a packet retransmission
9365 is necessary. */
9366 if (rs->noack_mode)
9367 return bc;
9368
9369 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9370 if (csum == pktcsum)
9371 return bc;
9372
9373 if (remote_debug)
9374 {
9375 std::string str = escape_buffer (buf, bc);
9376
9377 fprintf_unfiltered (gdb_stdlog,
9378 "Bad checksum, sentsum=0x%x, "
9379 "csum=0x%x, buf=%s\n",
9380 pktcsum, csum, str.c_str ());
9381 }
9382 /* Number of characters in buffer ignoring trailing
9383 NULL. */
9384 return -1;
9385 }
9386 case '*': /* Run length encoding. */
9387 {
9388 int repeat;
9389
9390 csum += c;
9391 c = readchar (remote_timeout);
9392 csum += c;
9393 repeat = c - ' ' + 3; /* Compute repeat count. */
9394
9395 /* The character before ``*'' is repeated. */
9396
9397 if (repeat > 0 && repeat <= 255 && bc > 0)
9398 {
9399 if (bc + repeat - 1 >= buf_p->size () - 1)
9400 {
9401 /* Make some more room in the buffer. */
9402 buf_p->resize (buf_p->size () + repeat);
9403 buf = buf_p->data ();
9404 }
9405
9406 memset (&buf[bc], buf[bc - 1], repeat);
9407 bc += repeat;
9408 continue;
9409 }
9410
9411 buf[bc] = '\0';
9412 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9413 return -1;
9414 }
9415 default:
9416 if (bc >= buf_p->size () - 1)
9417 {
9418 /* Make some more room in the buffer. */
9419 buf_p->resize (buf_p->size () * 2);
9420 buf = buf_p->data ();
9421 }
9422
9423 buf[bc++] = c;
9424 csum += c;
9425 continue;
9426 }
9427 }
9428 }
9429
9430 /* Set this to the maximum number of seconds to wait instead of waiting forever
9431 in target_wait(). If this timer times out, then it generates an error and
9432 the command is aborted. This replaces most of the need for timeouts in the
9433 GDB test suite, and makes it possible to distinguish between a hung target
9434 and one with slow communications. */
9435
9436 static int watchdog = 0;
9437 static void
9438 show_watchdog (struct ui_file *file, int from_tty,
9439 struct cmd_list_element *c, const char *value)
9440 {
9441 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9442 }
9443
9444 /* Read a packet from the remote machine, with error checking, and
9445 store it in *BUF. Resize *BUF if necessary to hold the result. If
9446 FOREVER, wait forever rather than timing out; this is used (in
9447 synchronous mode) to wait for a target that is is executing user
9448 code to stop. */
9449 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9450 don't have to change all the calls to getpkt to deal with the
9451 return value, because at the moment I don't know what the right
9452 thing to do it for those. */
9453
9454 void
9455 remote_target::getpkt (gdb::char_vector *buf, int forever)
9456 {
9457 getpkt_sane (buf, forever);
9458 }
9459
9460
9461 /* Read a packet from the remote machine, with error checking, and
9462 store it in *BUF. Resize *BUF if necessary to hold the result. If
9463 FOREVER, wait forever rather than timing out; this is used (in
9464 synchronous mode) to wait for a target that is is executing user
9465 code to stop. If FOREVER == 0, this function is allowed to time
9466 out gracefully and return an indication of this to the caller.
9467 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9468 consider receiving a notification enough reason to return to the
9469 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9470 holds a notification or not (a regular packet). */
9471
9472 int
9473 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9474 int forever, int expecting_notif,
9475 int *is_notif)
9476 {
9477 struct remote_state *rs = get_remote_state ();
9478 int c;
9479 int tries;
9480 int timeout;
9481 int val = -1;
9482
9483 /* We're reading a new response. Make sure we don't look at a
9484 previously cached response. */
9485 rs->cached_wait_status = 0;
9486
9487 strcpy (buf->data (), "timeout");
9488
9489 if (forever)
9490 timeout = watchdog > 0 ? watchdog : -1;
9491 else if (expecting_notif)
9492 timeout = 0; /* There should already be a char in the buffer. If
9493 not, bail out. */
9494 else
9495 timeout = remote_timeout;
9496
9497 #define MAX_TRIES 3
9498
9499 /* Process any number of notifications, and then return when
9500 we get a packet. */
9501 for (;;)
9502 {
9503 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9504 times. */
9505 for (tries = 1; tries <= MAX_TRIES; tries++)
9506 {
9507 /* This can loop forever if the remote side sends us
9508 characters continuously, but if it pauses, we'll get
9509 SERIAL_TIMEOUT from readchar because of timeout. Then
9510 we'll count that as a retry.
9511
9512 Note that even when forever is set, we will only wait
9513 forever prior to the start of a packet. After that, we
9514 expect characters to arrive at a brisk pace. They should
9515 show up within remote_timeout intervals. */
9516 do
9517 c = readchar (timeout);
9518 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9519
9520 if (c == SERIAL_TIMEOUT)
9521 {
9522 if (expecting_notif)
9523 return -1; /* Don't complain, it's normal to not get
9524 anything in this case. */
9525
9526 if (forever) /* Watchdog went off? Kill the target. */
9527 {
9528 remote_unpush_target ();
9529 throw_error (TARGET_CLOSE_ERROR,
9530 _("Watchdog timeout has expired. "
9531 "Target detached."));
9532 }
9533 if (remote_debug)
9534 fputs_filtered ("Timed out.\n", gdb_stdlog);
9535 }
9536 else
9537 {
9538 /* We've found the start of a packet or notification.
9539 Now collect the data. */
9540 val = read_frame (buf);
9541 if (val >= 0)
9542 break;
9543 }
9544
9545 remote_serial_write ("-", 1);
9546 }
9547
9548 if (tries > MAX_TRIES)
9549 {
9550 /* We have tried hard enough, and just can't receive the
9551 packet/notification. Give up. */
9552 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9553
9554 /* Skip the ack char if we're in no-ack mode. */
9555 if (!rs->noack_mode)
9556 remote_serial_write ("+", 1);
9557 return -1;
9558 }
9559
9560 /* If we got an ordinary packet, return that to our caller. */
9561 if (c == '$')
9562 {
9563 if (remote_debug)
9564 {
9565 std::string str
9566 = escape_buffer (buf->data (),
9567 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9568
9569 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9570 str.c_str ());
9571
9572 if (val > REMOTE_DEBUG_MAX_CHAR)
9573 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9574 val - REMOTE_DEBUG_MAX_CHAR);
9575
9576 fprintf_unfiltered (gdb_stdlog, "\n");
9577 }
9578
9579 /* Skip the ack char if we're in no-ack mode. */
9580 if (!rs->noack_mode)
9581 remote_serial_write ("+", 1);
9582 if (is_notif != NULL)
9583 *is_notif = 0;
9584 return val;
9585 }
9586
9587 /* If we got a notification, handle it, and go back to looking
9588 for a packet. */
9589 else
9590 {
9591 gdb_assert (c == '%');
9592
9593 if (remote_debug)
9594 {
9595 std::string str = escape_buffer (buf->data (), val);
9596
9597 fprintf_unfiltered (gdb_stdlog,
9598 " Notification received: %s\n",
9599 str.c_str ());
9600 }
9601 if (is_notif != NULL)
9602 *is_notif = 1;
9603
9604 handle_notification (rs->notif_state, buf->data ());
9605
9606 /* Notifications require no acknowledgement. */
9607
9608 if (expecting_notif)
9609 return val;
9610 }
9611 }
9612 }
9613
9614 int
9615 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
9616 {
9617 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
9618 }
9619
9620 int
9621 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
9622 int *is_notif)
9623 {
9624 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
9625 }
9626
9627 /* Kill any new fork children of process PID that haven't been
9628 processed by follow_fork. */
9629
9630 void
9631 remote_target::kill_new_fork_children (int pid)
9632 {
9633 remote_state *rs = get_remote_state ();
9634 struct notif_client *notif = &notif_client_stop;
9635
9636 /* Kill the fork child threads of any threads in process PID
9637 that are stopped at a fork event. */
9638 for (thread_info *thread : all_non_exited_threads ())
9639 {
9640 struct target_waitstatus *ws = &thread->pending_follow;
9641
9642 if (is_pending_fork_parent (ws, pid, thread->ptid))
9643 {
9644 int child_pid = ws->value.related_pid.pid ();
9645 int res;
9646
9647 res = remote_vkill (child_pid);
9648 if (res != 0)
9649 error (_("Can't kill fork child process %d"), child_pid);
9650 }
9651 }
9652
9653 /* Check for any pending fork events (not reported or processed yet)
9654 in process PID and kill those fork child threads as well. */
9655 remote_notif_get_pending_events (notif);
9656 for (auto &event : rs->stop_reply_queue)
9657 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9658 {
9659 int child_pid = event->ws.value.related_pid.pid ();
9660 int res;
9661
9662 res = remote_vkill (child_pid);
9663 if (res != 0)
9664 error (_("Can't kill fork child process %d"), child_pid);
9665 }
9666 }
9667
9668 \f
9669 /* Target hook to kill the current inferior. */
9670
9671 void
9672 remote_target::kill ()
9673 {
9674 int res = -1;
9675 int pid = inferior_ptid.pid ();
9676 struct remote_state *rs = get_remote_state ();
9677
9678 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
9679 {
9680 /* If we're stopped while forking and we haven't followed yet,
9681 kill the child task. We need to do this before killing the
9682 parent task because if this is a vfork then the parent will
9683 be sleeping. */
9684 kill_new_fork_children (pid);
9685
9686 res = remote_vkill (pid);
9687 if (res == 0)
9688 {
9689 target_mourn_inferior (inferior_ptid);
9690 return;
9691 }
9692 }
9693
9694 /* If we are in 'target remote' mode and we are killing the only
9695 inferior, then we will tell gdbserver to exit and unpush the
9696 target. */
9697 if (res == -1 && !remote_multi_process_p (rs)
9698 && number_of_live_inferiors () == 1)
9699 {
9700 remote_kill_k ();
9701
9702 /* We've killed the remote end, we get to mourn it. If we are
9703 not in extended mode, mourning the inferior also unpushes
9704 remote_ops from the target stack, which closes the remote
9705 connection. */
9706 target_mourn_inferior (inferior_ptid);
9707
9708 return;
9709 }
9710
9711 error (_("Can't kill process"));
9712 }
9713
9714 /* Send a kill request to the target using the 'vKill' packet. */
9715
9716 int
9717 remote_target::remote_vkill (int pid)
9718 {
9719 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
9720 return -1;
9721
9722 remote_state *rs = get_remote_state ();
9723
9724 /* Tell the remote target to detach. */
9725 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
9726 putpkt (rs->buf);
9727 getpkt (&rs->buf, 0);
9728
9729 switch (packet_ok (rs->buf,
9730 &remote_protocol_packets[PACKET_vKill]))
9731 {
9732 case PACKET_OK:
9733 return 0;
9734 case PACKET_ERROR:
9735 return 1;
9736 case PACKET_UNKNOWN:
9737 return -1;
9738 default:
9739 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9740 }
9741 }
9742
9743 /* Send a kill request to the target using the 'k' packet. */
9744
9745 void
9746 remote_target::remote_kill_k ()
9747 {
9748 /* Catch errors so the user can quit from gdb even when we
9749 aren't on speaking terms with the remote system. */
9750 try
9751 {
9752 putpkt ("k");
9753 }
9754 catch (const gdb_exception_error &ex)
9755 {
9756 if (ex.error == TARGET_CLOSE_ERROR)
9757 {
9758 /* If we got an (EOF) error that caused the target
9759 to go away, then we're done, that's what we wanted.
9760 "k" is susceptible to cause a premature EOF, given
9761 that the remote server isn't actually required to
9762 reply to "k", and it can happen that it doesn't
9763 even get to reply ACK to the "k". */
9764 return;
9765 }
9766
9767 /* Otherwise, something went wrong. We didn't actually kill
9768 the target. Just propagate the exception, and let the
9769 user or higher layers decide what to do. */
9770 throw;
9771 }
9772 }
9773
9774 void
9775 remote_target::mourn_inferior ()
9776 {
9777 struct remote_state *rs = get_remote_state ();
9778
9779 /* We're no longer interested in notification events of an inferior
9780 that exited or was killed/detached. */
9781 discard_pending_stop_replies (current_inferior ());
9782
9783 /* In 'target remote' mode with one inferior, we close the connection. */
9784 if (!rs->extended && number_of_live_inferiors () <= 1)
9785 {
9786 unpush_target (this);
9787
9788 /* remote_close takes care of doing most of the clean up. */
9789 generic_mourn_inferior ();
9790 return;
9791 }
9792
9793 /* In case we got here due to an error, but we're going to stay
9794 connected. */
9795 rs->waiting_for_stop_reply = 0;
9796
9797 /* If the current general thread belonged to the process we just
9798 detached from or has exited, the remote side current general
9799 thread becomes undefined. Considering a case like this:
9800
9801 - We just got here due to a detach.
9802 - The process that we're detaching from happens to immediately
9803 report a global breakpoint being hit in non-stop mode, in the
9804 same thread we had selected before.
9805 - GDB attaches to this process again.
9806 - This event happens to be the next event we handle.
9807
9808 GDB would consider that the current general thread didn't need to
9809 be set on the stub side (with Hg), since for all it knew,
9810 GENERAL_THREAD hadn't changed.
9811
9812 Notice that although in all-stop mode, the remote server always
9813 sets the current thread to the thread reporting the stop event,
9814 that doesn't happen in non-stop mode; in non-stop, the stub *must
9815 not* change the current thread when reporting a breakpoint hit,
9816 due to the decoupling of event reporting and event handling.
9817
9818 To keep things simple, we always invalidate our notion of the
9819 current thread. */
9820 record_currthread (rs, minus_one_ptid);
9821
9822 /* Call common code to mark the inferior as not running. */
9823 generic_mourn_inferior ();
9824
9825 if (!have_inferiors ())
9826 {
9827 if (!remote_multi_process_p (rs))
9828 {
9829 /* Check whether the target is running now - some remote stubs
9830 automatically restart after kill. */
9831 putpkt ("?");
9832 getpkt (&rs->buf, 0);
9833
9834 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9835 {
9836 /* Assume that the target has been restarted. Set
9837 inferior_ptid so that bits of core GDB realizes
9838 there's something here, e.g., so that the user can
9839 say "kill" again. */
9840 inferior_ptid = magic_null_ptid;
9841 }
9842 }
9843 }
9844 }
9845
9846 bool
9847 extended_remote_target::supports_disable_randomization ()
9848 {
9849 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9850 }
9851
9852 void
9853 remote_target::extended_remote_disable_randomization (int val)
9854 {
9855 struct remote_state *rs = get_remote_state ();
9856 char *reply;
9857
9858 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9859 "QDisableRandomization:%x", val);
9860 putpkt (rs->buf);
9861 reply = remote_get_noisy_reply ();
9862 if (*reply == '\0')
9863 error (_("Target does not support QDisableRandomization."));
9864 if (strcmp (reply, "OK") != 0)
9865 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9866 }
9867
9868 int
9869 remote_target::extended_remote_run (const std::string &args)
9870 {
9871 struct remote_state *rs = get_remote_state ();
9872 int len;
9873 const char *remote_exec_file = get_remote_exec_file ();
9874
9875 /* If the user has disabled vRun support, or we have detected that
9876 support is not available, do not try it. */
9877 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9878 return -1;
9879
9880 strcpy (rs->buf.data (), "vRun;");
9881 len = strlen (rs->buf.data ());
9882
9883 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9884 error (_("Remote file name too long for run packet"));
9885 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9886 strlen (remote_exec_file));
9887
9888 if (!args.empty ())
9889 {
9890 int i;
9891
9892 gdb_argv argv (args.c_str ());
9893 for (i = 0; argv[i] != NULL; i++)
9894 {
9895 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9896 error (_("Argument list too long for run packet"));
9897 rs->buf[len++] = ';';
9898 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9899 strlen (argv[i]));
9900 }
9901 }
9902
9903 rs->buf[len++] = '\0';
9904
9905 putpkt (rs->buf);
9906 getpkt (&rs->buf, 0);
9907
9908 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9909 {
9910 case PACKET_OK:
9911 /* We have a wait response. All is well. */
9912 return 0;
9913 case PACKET_UNKNOWN:
9914 return -1;
9915 case PACKET_ERROR:
9916 if (remote_exec_file[0] == '\0')
9917 error (_("Running the default executable on the remote target failed; "
9918 "try \"set remote exec-file\"?"));
9919 else
9920 error (_("Running \"%s\" on the remote target failed"),
9921 remote_exec_file);
9922 default:
9923 gdb_assert_not_reached (_("bad switch"));
9924 }
9925 }
9926
9927 /* Helper function to send set/unset environment packets. ACTION is
9928 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9929 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9930 sent. */
9931
9932 void
9933 remote_target::send_environment_packet (const char *action,
9934 const char *packet,
9935 const char *value)
9936 {
9937 remote_state *rs = get_remote_state ();
9938
9939 /* Convert the environment variable to an hex string, which
9940 is the best format to be transmitted over the wire. */
9941 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9942 strlen (value));
9943
9944 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9945 "%s:%s", packet, encoded_value.c_str ());
9946
9947 putpkt (rs->buf);
9948 getpkt (&rs->buf, 0);
9949 if (strcmp (rs->buf.data (), "OK") != 0)
9950 warning (_("Unable to %s environment variable '%s' on remote."),
9951 action, value);
9952 }
9953
9954 /* Helper function to handle the QEnvironment* packets. */
9955
9956 void
9957 remote_target::extended_remote_environment_support ()
9958 {
9959 remote_state *rs = get_remote_state ();
9960
9961 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9962 {
9963 putpkt ("QEnvironmentReset");
9964 getpkt (&rs->buf, 0);
9965 if (strcmp (rs->buf.data (), "OK") != 0)
9966 warning (_("Unable to reset environment on remote."));
9967 }
9968
9969 gdb_environ *e = &current_inferior ()->environment;
9970
9971 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9972 for (const std::string &el : e->user_set_env ())
9973 send_environment_packet ("set", "QEnvironmentHexEncoded",
9974 el.c_str ());
9975
9976 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9977 for (const std::string &el : e->user_unset_env ())
9978 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
9979 }
9980
9981 /* Helper function to set the current working directory for the
9982 inferior in the remote target. */
9983
9984 void
9985 remote_target::extended_remote_set_inferior_cwd ()
9986 {
9987 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9988 {
9989 const char *inferior_cwd = get_inferior_cwd ();
9990 remote_state *rs = get_remote_state ();
9991
9992 if (inferior_cwd != NULL)
9993 {
9994 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9995 strlen (inferior_cwd));
9996
9997 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9998 "QSetWorkingDir:%s", hexpath.c_str ());
9999 }
10000 else
10001 {
10002 /* An empty inferior_cwd means that the user wants us to
10003 reset the remote server's inferior's cwd. */
10004 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10005 "QSetWorkingDir:");
10006 }
10007
10008 putpkt (rs->buf);
10009 getpkt (&rs->buf, 0);
10010 if (packet_ok (rs->buf,
10011 &remote_protocol_packets[PACKET_QSetWorkingDir])
10012 != PACKET_OK)
10013 error (_("\
10014 Remote replied unexpectedly while setting the inferior's working\n\
10015 directory: %s"),
10016 rs->buf.data ());
10017
10018 }
10019 }
10020
10021 /* In the extended protocol we want to be able to do things like
10022 "run" and have them basically work as expected. So we need
10023 a special create_inferior function. We support changing the
10024 executable file and the command line arguments, but not the
10025 environment. */
10026
10027 void
10028 extended_remote_target::create_inferior (const char *exec_file,
10029 const std::string &args,
10030 char **env, int from_tty)
10031 {
10032 int run_worked;
10033 char *stop_reply;
10034 struct remote_state *rs = get_remote_state ();
10035 const char *remote_exec_file = get_remote_exec_file ();
10036
10037 /* If running asynchronously, register the target file descriptor
10038 with the event loop. */
10039 if (target_can_async_p ())
10040 target_async (1);
10041
10042 /* Disable address space randomization if requested (and supported). */
10043 if (supports_disable_randomization ())
10044 extended_remote_disable_randomization (disable_randomization);
10045
10046 /* If startup-with-shell is on, we inform gdbserver to start the
10047 remote inferior using a shell. */
10048 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10049 {
10050 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10051 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10052 putpkt (rs->buf);
10053 getpkt (&rs->buf, 0);
10054 if (strcmp (rs->buf.data (), "OK") != 0)
10055 error (_("\
10056 Remote replied unexpectedly while setting startup-with-shell: %s"),
10057 rs->buf.data ());
10058 }
10059
10060 extended_remote_environment_support ();
10061
10062 extended_remote_set_inferior_cwd ();
10063
10064 /* Now restart the remote server. */
10065 run_worked = extended_remote_run (args) != -1;
10066 if (!run_worked)
10067 {
10068 /* vRun was not supported. Fail if we need it to do what the
10069 user requested. */
10070 if (remote_exec_file[0])
10071 error (_("Remote target does not support \"set remote exec-file\""));
10072 if (!args.empty ())
10073 error (_("Remote target does not support \"set args\" or run ARGS"));
10074
10075 /* Fall back to "R". */
10076 extended_remote_restart ();
10077 }
10078
10079 /* vRun's success return is a stop reply. */
10080 stop_reply = run_worked ? rs->buf.data () : NULL;
10081 add_current_inferior_and_thread (stop_reply);
10082
10083 /* Get updated offsets, if the stub uses qOffsets. */
10084 get_offsets ();
10085 }
10086 \f
10087
10088 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10089 the list of conditions (in agent expression bytecode format), if any, the
10090 target needs to evaluate. The output is placed into the packet buffer
10091 started from BUF and ended at BUF_END. */
10092
10093 static int
10094 remote_add_target_side_condition (struct gdbarch *gdbarch,
10095 struct bp_target_info *bp_tgt, char *buf,
10096 char *buf_end)
10097 {
10098 if (bp_tgt->conditions.empty ())
10099 return 0;
10100
10101 buf += strlen (buf);
10102 xsnprintf (buf, buf_end - buf, "%s", ";");
10103 buf++;
10104
10105 /* Send conditions to the target. */
10106 for (agent_expr *aexpr : bp_tgt->conditions)
10107 {
10108 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10109 buf += strlen (buf);
10110 for (int i = 0; i < aexpr->len; ++i)
10111 buf = pack_hex_byte (buf, aexpr->buf[i]);
10112 *buf = '\0';
10113 }
10114 return 0;
10115 }
10116
10117 static void
10118 remote_add_target_side_commands (struct gdbarch *gdbarch,
10119 struct bp_target_info *bp_tgt, char *buf)
10120 {
10121 if (bp_tgt->tcommands.empty ())
10122 return;
10123
10124 buf += strlen (buf);
10125
10126 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10127 buf += strlen (buf);
10128
10129 /* Concatenate all the agent expressions that are commands into the
10130 cmds parameter. */
10131 for (agent_expr *aexpr : bp_tgt->tcommands)
10132 {
10133 sprintf (buf, "X%x,", aexpr->len);
10134 buf += strlen (buf);
10135 for (int i = 0; i < aexpr->len; ++i)
10136 buf = pack_hex_byte (buf, aexpr->buf[i]);
10137 *buf = '\0';
10138 }
10139 }
10140
10141 /* Insert a breakpoint. On targets that have software breakpoint
10142 support, we ask the remote target to do the work; on targets
10143 which don't, we insert a traditional memory breakpoint. */
10144
10145 int
10146 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10147 struct bp_target_info *bp_tgt)
10148 {
10149 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10150 If it succeeds, then set the support to PACKET_ENABLE. If it
10151 fails, and the user has explicitly requested the Z support then
10152 report an error, otherwise, mark it disabled and go on. */
10153
10154 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10155 {
10156 CORE_ADDR addr = bp_tgt->reqstd_address;
10157 struct remote_state *rs;
10158 char *p, *endbuf;
10159
10160 /* Make sure the remote is pointing at the right process, if
10161 necessary. */
10162 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10163 set_general_process ();
10164
10165 rs = get_remote_state ();
10166 p = rs->buf.data ();
10167 endbuf = p + get_remote_packet_size ();
10168
10169 *(p++) = 'Z';
10170 *(p++) = '0';
10171 *(p++) = ',';
10172 addr = (ULONGEST) remote_address_masked (addr);
10173 p += hexnumstr (p, addr);
10174 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10175
10176 if (supports_evaluation_of_breakpoint_conditions ())
10177 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10178
10179 if (can_run_breakpoint_commands ())
10180 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10181
10182 putpkt (rs->buf);
10183 getpkt (&rs->buf, 0);
10184
10185 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10186 {
10187 case PACKET_ERROR:
10188 return -1;
10189 case PACKET_OK:
10190 return 0;
10191 case PACKET_UNKNOWN:
10192 break;
10193 }
10194 }
10195
10196 /* If this breakpoint has target-side commands but this stub doesn't
10197 support Z0 packets, throw error. */
10198 if (!bp_tgt->tcommands.empty ())
10199 throw_error (NOT_SUPPORTED_ERROR, _("\
10200 Target doesn't support breakpoints that have target side commands."));
10201
10202 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10203 }
10204
10205 int
10206 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10207 struct bp_target_info *bp_tgt,
10208 enum remove_bp_reason reason)
10209 {
10210 CORE_ADDR addr = bp_tgt->placed_address;
10211 struct remote_state *rs = get_remote_state ();
10212
10213 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10214 {
10215 char *p = rs->buf.data ();
10216 char *endbuf = p + get_remote_packet_size ();
10217
10218 /* Make sure the remote is pointing at the right process, if
10219 necessary. */
10220 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10221 set_general_process ();
10222
10223 *(p++) = 'z';
10224 *(p++) = '0';
10225 *(p++) = ',';
10226
10227 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10228 p += hexnumstr (p, addr);
10229 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10230
10231 putpkt (rs->buf);
10232 getpkt (&rs->buf, 0);
10233
10234 return (rs->buf[0] == 'E');
10235 }
10236
10237 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10238 }
10239
10240 static enum Z_packet_type
10241 watchpoint_to_Z_packet (int type)
10242 {
10243 switch (type)
10244 {
10245 case hw_write:
10246 return Z_PACKET_WRITE_WP;
10247 break;
10248 case hw_read:
10249 return Z_PACKET_READ_WP;
10250 break;
10251 case hw_access:
10252 return Z_PACKET_ACCESS_WP;
10253 break;
10254 default:
10255 internal_error (__FILE__, __LINE__,
10256 _("hw_bp_to_z: bad watchpoint type %d"), type);
10257 }
10258 }
10259
10260 int
10261 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10262 enum target_hw_bp_type type, struct expression *cond)
10263 {
10264 struct remote_state *rs = get_remote_state ();
10265 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10266 char *p;
10267 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10268
10269 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10270 return 1;
10271
10272 /* Make sure the remote is pointing at the right process, if
10273 necessary. */
10274 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10275 set_general_process ();
10276
10277 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10278 p = strchr (rs->buf.data (), '\0');
10279 addr = remote_address_masked (addr);
10280 p += hexnumstr (p, (ULONGEST) addr);
10281 xsnprintf (p, endbuf - p, ",%x", len);
10282
10283 putpkt (rs->buf);
10284 getpkt (&rs->buf, 0);
10285
10286 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10287 {
10288 case PACKET_ERROR:
10289 return -1;
10290 case PACKET_UNKNOWN:
10291 return 1;
10292 case PACKET_OK:
10293 return 0;
10294 }
10295 internal_error (__FILE__, __LINE__,
10296 _("remote_insert_watchpoint: reached end of function"));
10297 }
10298
10299 bool
10300 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10301 CORE_ADDR start, int length)
10302 {
10303 CORE_ADDR diff = remote_address_masked (addr - start);
10304
10305 return diff < length;
10306 }
10307
10308
10309 int
10310 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10311 enum target_hw_bp_type type, struct expression *cond)
10312 {
10313 struct remote_state *rs = get_remote_state ();
10314 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10315 char *p;
10316 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10317
10318 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10319 return -1;
10320
10321 /* Make sure the remote is pointing at the right process, if
10322 necessary. */
10323 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10324 set_general_process ();
10325
10326 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10327 p = strchr (rs->buf.data (), '\0');
10328 addr = remote_address_masked (addr);
10329 p += hexnumstr (p, (ULONGEST) addr);
10330 xsnprintf (p, endbuf - p, ",%x", len);
10331 putpkt (rs->buf);
10332 getpkt (&rs->buf, 0);
10333
10334 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10335 {
10336 case PACKET_ERROR:
10337 case PACKET_UNKNOWN:
10338 return -1;
10339 case PACKET_OK:
10340 return 0;
10341 }
10342 internal_error (__FILE__, __LINE__,
10343 _("remote_remove_watchpoint: reached end of function"));
10344 }
10345
10346
10347 static int remote_hw_watchpoint_limit = -1;
10348 static int remote_hw_watchpoint_length_limit = -1;
10349 static int remote_hw_breakpoint_limit = -1;
10350
10351 int
10352 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10353 {
10354 if (remote_hw_watchpoint_length_limit == 0)
10355 return 0;
10356 else if (remote_hw_watchpoint_length_limit < 0)
10357 return 1;
10358 else if (len <= remote_hw_watchpoint_length_limit)
10359 return 1;
10360 else
10361 return 0;
10362 }
10363
10364 int
10365 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10366 {
10367 if (type == bp_hardware_breakpoint)
10368 {
10369 if (remote_hw_breakpoint_limit == 0)
10370 return 0;
10371 else if (remote_hw_breakpoint_limit < 0)
10372 return 1;
10373 else if (cnt <= remote_hw_breakpoint_limit)
10374 return 1;
10375 }
10376 else
10377 {
10378 if (remote_hw_watchpoint_limit == 0)
10379 return 0;
10380 else if (remote_hw_watchpoint_limit < 0)
10381 return 1;
10382 else if (ot)
10383 return -1;
10384 else if (cnt <= remote_hw_watchpoint_limit)
10385 return 1;
10386 }
10387 return -1;
10388 }
10389
10390 /* The to_stopped_by_sw_breakpoint method of target remote. */
10391
10392 bool
10393 remote_target::stopped_by_sw_breakpoint ()
10394 {
10395 struct thread_info *thread = inferior_thread ();
10396
10397 return (thread->priv != NULL
10398 && (get_remote_thread_info (thread)->stop_reason
10399 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10400 }
10401
10402 /* The to_supports_stopped_by_sw_breakpoint method of target
10403 remote. */
10404
10405 bool
10406 remote_target::supports_stopped_by_sw_breakpoint ()
10407 {
10408 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10409 }
10410
10411 /* The to_stopped_by_hw_breakpoint method of target remote. */
10412
10413 bool
10414 remote_target::stopped_by_hw_breakpoint ()
10415 {
10416 struct thread_info *thread = inferior_thread ();
10417
10418 return (thread->priv != NULL
10419 && (get_remote_thread_info (thread)->stop_reason
10420 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10421 }
10422
10423 /* The to_supports_stopped_by_hw_breakpoint method of target
10424 remote. */
10425
10426 bool
10427 remote_target::supports_stopped_by_hw_breakpoint ()
10428 {
10429 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10430 }
10431
10432 bool
10433 remote_target::stopped_by_watchpoint ()
10434 {
10435 struct thread_info *thread = inferior_thread ();
10436
10437 return (thread->priv != NULL
10438 && (get_remote_thread_info (thread)->stop_reason
10439 == TARGET_STOPPED_BY_WATCHPOINT));
10440 }
10441
10442 bool
10443 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10444 {
10445 struct thread_info *thread = inferior_thread ();
10446
10447 if (thread->priv != NULL
10448 && (get_remote_thread_info (thread)->stop_reason
10449 == TARGET_STOPPED_BY_WATCHPOINT))
10450 {
10451 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10452 return true;
10453 }
10454
10455 return false;
10456 }
10457
10458
10459 int
10460 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10461 struct bp_target_info *bp_tgt)
10462 {
10463 CORE_ADDR addr = bp_tgt->reqstd_address;
10464 struct remote_state *rs;
10465 char *p, *endbuf;
10466 char *message;
10467
10468 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10469 return -1;
10470
10471 /* Make sure the remote is pointing at the right process, if
10472 necessary. */
10473 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10474 set_general_process ();
10475
10476 rs = get_remote_state ();
10477 p = rs->buf.data ();
10478 endbuf = p + get_remote_packet_size ();
10479
10480 *(p++) = 'Z';
10481 *(p++) = '1';
10482 *(p++) = ',';
10483
10484 addr = remote_address_masked (addr);
10485 p += hexnumstr (p, (ULONGEST) addr);
10486 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10487
10488 if (supports_evaluation_of_breakpoint_conditions ())
10489 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10490
10491 if (can_run_breakpoint_commands ())
10492 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10493
10494 putpkt (rs->buf);
10495 getpkt (&rs->buf, 0);
10496
10497 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10498 {
10499 case PACKET_ERROR:
10500 if (rs->buf[1] == '.')
10501 {
10502 message = strchr (&rs->buf[2], '.');
10503 if (message)
10504 error (_("Remote failure reply: %s"), message + 1);
10505 }
10506 return -1;
10507 case PACKET_UNKNOWN:
10508 return -1;
10509 case PACKET_OK:
10510 return 0;
10511 }
10512 internal_error (__FILE__, __LINE__,
10513 _("remote_insert_hw_breakpoint: reached end of function"));
10514 }
10515
10516
10517 int
10518 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10519 struct bp_target_info *bp_tgt)
10520 {
10521 CORE_ADDR addr;
10522 struct remote_state *rs = get_remote_state ();
10523 char *p = rs->buf.data ();
10524 char *endbuf = p + get_remote_packet_size ();
10525
10526 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10527 return -1;
10528
10529 /* Make sure the remote is pointing at the right process, if
10530 necessary. */
10531 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10532 set_general_process ();
10533
10534 *(p++) = 'z';
10535 *(p++) = '1';
10536 *(p++) = ',';
10537
10538 addr = remote_address_masked (bp_tgt->placed_address);
10539 p += hexnumstr (p, (ULONGEST) addr);
10540 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10541
10542 putpkt (rs->buf);
10543 getpkt (&rs->buf, 0);
10544
10545 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10546 {
10547 case PACKET_ERROR:
10548 case PACKET_UNKNOWN:
10549 return -1;
10550 case PACKET_OK:
10551 return 0;
10552 }
10553 internal_error (__FILE__, __LINE__,
10554 _("remote_remove_hw_breakpoint: reached end of function"));
10555 }
10556
10557 /* Verify memory using the "qCRC:" request. */
10558
10559 int
10560 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10561 {
10562 struct remote_state *rs = get_remote_state ();
10563 unsigned long host_crc, target_crc;
10564 char *tmp;
10565
10566 /* It doesn't make sense to use qCRC if the remote target is
10567 connected but not running. */
10568 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10569 {
10570 enum packet_result result;
10571
10572 /* Make sure the remote is pointing at the right process. */
10573 set_general_process ();
10574
10575 /* FIXME: assumes lma can fit into long. */
10576 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10577 (long) lma, (long) size);
10578 putpkt (rs->buf);
10579
10580 /* Be clever; compute the host_crc before waiting for target
10581 reply. */
10582 host_crc = xcrc32 (data, size, 0xffffffff);
10583
10584 getpkt (&rs->buf, 0);
10585
10586 result = packet_ok (rs->buf,
10587 &remote_protocol_packets[PACKET_qCRC]);
10588 if (result == PACKET_ERROR)
10589 return -1;
10590 else if (result == PACKET_OK)
10591 {
10592 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10593 target_crc = target_crc * 16 + fromhex (*tmp);
10594
10595 return (host_crc == target_crc);
10596 }
10597 }
10598
10599 return simple_verify_memory (this, data, lma, size);
10600 }
10601
10602 /* compare-sections command
10603
10604 With no arguments, compares each loadable section in the exec bfd
10605 with the same memory range on the target, and reports mismatches.
10606 Useful for verifying the image on the target against the exec file. */
10607
10608 static void
10609 compare_sections_command (const char *args, int from_tty)
10610 {
10611 asection *s;
10612 const char *sectname;
10613 bfd_size_type size;
10614 bfd_vma lma;
10615 int matched = 0;
10616 int mismatched = 0;
10617 int res;
10618 int read_only = 0;
10619
10620 if (!exec_bfd)
10621 error (_("command cannot be used without an exec file"));
10622
10623 if (args != NULL && strcmp (args, "-r") == 0)
10624 {
10625 read_only = 1;
10626 args = NULL;
10627 }
10628
10629 for (s = exec_bfd->sections; s; s = s->next)
10630 {
10631 if (!(s->flags & SEC_LOAD))
10632 continue; /* Skip non-loadable section. */
10633
10634 if (read_only && (s->flags & SEC_READONLY) == 0)
10635 continue; /* Skip writeable sections */
10636
10637 size = bfd_section_size (s);
10638 if (size == 0)
10639 continue; /* Skip zero-length section. */
10640
10641 sectname = bfd_section_name (s);
10642 if (args && strcmp (args, sectname) != 0)
10643 continue; /* Not the section selected by user. */
10644
10645 matched = 1; /* Do this section. */
10646 lma = s->lma;
10647
10648 gdb::byte_vector sectdata (size);
10649 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
10650
10651 res = target_verify_memory (sectdata.data (), lma, size);
10652
10653 if (res == -1)
10654 error (_("target memory fault, section %s, range %s -- %s"), sectname,
10655 paddress (target_gdbarch (), lma),
10656 paddress (target_gdbarch (), lma + size));
10657
10658 printf_filtered ("Section %s, range %s -- %s: ", sectname,
10659 paddress (target_gdbarch (), lma),
10660 paddress (target_gdbarch (), lma + size));
10661 if (res)
10662 printf_filtered ("matched.\n");
10663 else
10664 {
10665 printf_filtered ("MIS-MATCHED!\n");
10666 mismatched++;
10667 }
10668 }
10669 if (mismatched > 0)
10670 warning (_("One or more sections of the target image does not match\n\
10671 the loaded file\n"));
10672 if (args && !matched)
10673 printf_filtered (_("No loaded section named '%s'.\n"), args);
10674 }
10675
10676 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10677 into remote target. The number of bytes written to the remote
10678 target is returned, or -1 for error. */
10679
10680 target_xfer_status
10681 remote_target::remote_write_qxfer (const char *object_name,
10682 const char *annex, const gdb_byte *writebuf,
10683 ULONGEST offset, LONGEST len,
10684 ULONGEST *xfered_len,
10685 struct packet_config *packet)
10686 {
10687 int i, buf_len;
10688 ULONGEST n;
10689 struct remote_state *rs = get_remote_state ();
10690 int max_size = get_memory_write_packet_size ();
10691
10692 if (packet_config_support (packet) == PACKET_DISABLE)
10693 return TARGET_XFER_E_IO;
10694
10695 /* Insert header. */
10696 i = snprintf (rs->buf.data (), max_size,
10697 "qXfer:%s:write:%s:%s:",
10698 object_name, annex ? annex : "",
10699 phex_nz (offset, sizeof offset));
10700 max_size -= (i + 1);
10701
10702 /* Escape as much data as fits into rs->buf. */
10703 buf_len = remote_escape_output
10704 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
10705
10706 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10707 || getpkt_sane (&rs->buf, 0) < 0
10708 || packet_ok (rs->buf, packet) != PACKET_OK)
10709 return TARGET_XFER_E_IO;
10710
10711 unpack_varlen_hex (rs->buf.data (), &n);
10712
10713 *xfered_len = n;
10714 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
10715 }
10716
10717 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10718 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10719 number of bytes read is returned, or 0 for EOF, or -1 for error.
10720 The number of bytes read may be less than LEN without indicating an
10721 EOF. PACKET is checked and updated to indicate whether the remote
10722 target supports this object. */
10723
10724 target_xfer_status
10725 remote_target::remote_read_qxfer (const char *object_name,
10726 const char *annex,
10727 gdb_byte *readbuf, ULONGEST offset,
10728 LONGEST len,
10729 ULONGEST *xfered_len,
10730 struct packet_config *packet)
10731 {
10732 struct remote_state *rs = get_remote_state ();
10733 LONGEST i, n, packet_len;
10734
10735 if (packet_config_support (packet) == PACKET_DISABLE)
10736 return TARGET_XFER_E_IO;
10737
10738 /* Check whether we've cached an end-of-object packet that matches
10739 this request. */
10740 if (rs->finished_object)
10741 {
10742 if (strcmp (object_name, rs->finished_object) == 0
10743 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10744 && offset == rs->finished_offset)
10745 return TARGET_XFER_EOF;
10746
10747
10748 /* Otherwise, we're now reading something different. Discard
10749 the cache. */
10750 xfree (rs->finished_object);
10751 xfree (rs->finished_annex);
10752 rs->finished_object = NULL;
10753 rs->finished_annex = NULL;
10754 }
10755
10756 /* Request only enough to fit in a single packet. The actual data
10757 may not, since we don't know how much of it will need to be escaped;
10758 the target is free to respond with slightly less data. We subtract
10759 five to account for the response type and the protocol frame. */
10760 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
10761 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10762 "qXfer:%s:read:%s:%s,%s",
10763 object_name, annex ? annex : "",
10764 phex_nz (offset, sizeof offset),
10765 phex_nz (n, sizeof n));
10766 i = putpkt (rs->buf);
10767 if (i < 0)
10768 return TARGET_XFER_E_IO;
10769
10770 rs->buf[0] = '\0';
10771 packet_len = getpkt_sane (&rs->buf, 0);
10772 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
10773 return TARGET_XFER_E_IO;
10774
10775 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10776 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
10777
10778 /* 'm' means there is (or at least might be) more data after this
10779 batch. That does not make sense unless there's at least one byte
10780 of data in this reply. */
10781 if (rs->buf[0] == 'm' && packet_len == 1)
10782 error (_("Remote qXfer reply contained no data."));
10783
10784 /* Got some data. */
10785 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
10786 packet_len - 1, readbuf, n);
10787
10788 /* 'l' is an EOF marker, possibly including a final block of data,
10789 or possibly empty. If we have the final block of a non-empty
10790 object, record this fact to bypass a subsequent partial read. */
10791 if (rs->buf[0] == 'l' && offset + i > 0)
10792 {
10793 rs->finished_object = xstrdup (object_name);
10794 rs->finished_annex = xstrdup (annex ? annex : "");
10795 rs->finished_offset = offset + i;
10796 }
10797
10798 if (i == 0)
10799 return TARGET_XFER_EOF;
10800 else
10801 {
10802 *xfered_len = i;
10803 return TARGET_XFER_OK;
10804 }
10805 }
10806
10807 enum target_xfer_status
10808 remote_target::xfer_partial (enum target_object object,
10809 const char *annex, gdb_byte *readbuf,
10810 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10811 ULONGEST *xfered_len)
10812 {
10813 struct remote_state *rs;
10814 int i;
10815 char *p2;
10816 char query_type;
10817 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
10818
10819 set_remote_traceframe ();
10820 set_general_thread (inferior_ptid);
10821
10822 rs = get_remote_state ();
10823
10824 /* Handle memory using the standard memory routines. */
10825 if (object == TARGET_OBJECT_MEMORY)
10826 {
10827 /* If the remote target is connected but not running, we should
10828 pass this request down to a lower stratum (e.g. the executable
10829 file). */
10830 if (!target_has_execution)
10831 return TARGET_XFER_EOF;
10832
10833 if (writebuf != NULL)
10834 return remote_write_bytes (offset, writebuf, len, unit_size,
10835 xfered_len);
10836 else
10837 return remote_read_bytes (offset, readbuf, len, unit_size,
10838 xfered_len);
10839 }
10840
10841 /* Handle extra signal info using qxfer packets. */
10842 if (object == TARGET_OBJECT_SIGNAL_INFO)
10843 {
10844 if (readbuf)
10845 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
10846 xfered_len, &remote_protocol_packets
10847 [PACKET_qXfer_siginfo_read]);
10848 else
10849 return remote_write_qxfer ("siginfo", annex,
10850 writebuf, offset, len, xfered_len,
10851 &remote_protocol_packets
10852 [PACKET_qXfer_siginfo_write]);
10853 }
10854
10855 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10856 {
10857 if (readbuf)
10858 return remote_read_qxfer ("statictrace", annex,
10859 readbuf, offset, len, xfered_len,
10860 &remote_protocol_packets
10861 [PACKET_qXfer_statictrace_read]);
10862 else
10863 return TARGET_XFER_E_IO;
10864 }
10865
10866 /* Only handle flash writes. */
10867 if (writebuf != NULL)
10868 {
10869 switch (object)
10870 {
10871 case TARGET_OBJECT_FLASH:
10872 return remote_flash_write (offset, len, xfered_len,
10873 writebuf);
10874
10875 default:
10876 return TARGET_XFER_E_IO;
10877 }
10878 }
10879
10880 /* Map pre-existing objects onto letters. DO NOT do this for new
10881 objects!!! Instead specify new query packets. */
10882 switch (object)
10883 {
10884 case TARGET_OBJECT_AVR:
10885 query_type = 'R';
10886 break;
10887
10888 case TARGET_OBJECT_AUXV:
10889 gdb_assert (annex == NULL);
10890 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
10891 xfered_len,
10892 &remote_protocol_packets[PACKET_qXfer_auxv]);
10893
10894 case TARGET_OBJECT_AVAILABLE_FEATURES:
10895 return remote_read_qxfer
10896 ("features", annex, readbuf, offset, len, xfered_len,
10897 &remote_protocol_packets[PACKET_qXfer_features]);
10898
10899 case TARGET_OBJECT_LIBRARIES:
10900 return remote_read_qxfer
10901 ("libraries", annex, readbuf, offset, len, xfered_len,
10902 &remote_protocol_packets[PACKET_qXfer_libraries]);
10903
10904 case TARGET_OBJECT_LIBRARIES_SVR4:
10905 return remote_read_qxfer
10906 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
10907 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10908
10909 case TARGET_OBJECT_MEMORY_MAP:
10910 gdb_assert (annex == NULL);
10911 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
10912 xfered_len,
10913 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10914
10915 case TARGET_OBJECT_OSDATA:
10916 /* Should only get here if we're connected. */
10917 gdb_assert (rs->remote_desc);
10918 return remote_read_qxfer
10919 ("osdata", annex, readbuf, offset, len, xfered_len,
10920 &remote_protocol_packets[PACKET_qXfer_osdata]);
10921
10922 case TARGET_OBJECT_THREADS:
10923 gdb_assert (annex == NULL);
10924 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
10925 xfered_len,
10926 &remote_protocol_packets[PACKET_qXfer_threads]);
10927
10928 case TARGET_OBJECT_TRACEFRAME_INFO:
10929 gdb_assert (annex == NULL);
10930 return remote_read_qxfer
10931 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
10932 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
10933
10934 case TARGET_OBJECT_FDPIC:
10935 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
10936 xfered_len,
10937 &remote_protocol_packets[PACKET_qXfer_fdpic]);
10938
10939 case TARGET_OBJECT_OPENVMS_UIB:
10940 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
10941 xfered_len,
10942 &remote_protocol_packets[PACKET_qXfer_uib]);
10943
10944 case TARGET_OBJECT_BTRACE:
10945 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
10946 xfered_len,
10947 &remote_protocol_packets[PACKET_qXfer_btrace]);
10948
10949 case TARGET_OBJECT_BTRACE_CONF:
10950 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
10951 len, xfered_len,
10952 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10953
10954 case TARGET_OBJECT_EXEC_FILE:
10955 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
10956 len, xfered_len,
10957 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10958
10959 default:
10960 return TARGET_XFER_E_IO;
10961 }
10962
10963 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10964 large enough let the caller deal with it. */
10965 if (len < get_remote_packet_size ())
10966 return TARGET_XFER_E_IO;
10967 len = get_remote_packet_size ();
10968
10969 /* Except for querying the minimum buffer size, target must be open. */
10970 if (!rs->remote_desc)
10971 error (_("remote query is only available after target open"));
10972
10973 gdb_assert (annex != NULL);
10974 gdb_assert (readbuf != NULL);
10975
10976 p2 = rs->buf.data ();
10977 *p2++ = 'q';
10978 *p2++ = query_type;
10979
10980 /* We used one buffer char for the remote protocol q command and
10981 another for the query type. As the remote protocol encapsulation
10982 uses 4 chars plus one extra in case we are debugging
10983 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10984 string. */
10985 i = 0;
10986 while (annex[i] && (i < (get_remote_packet_size () - 8)))
10987 {
10988 /* Bad caller may have sent forbidden characters. */
10989 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10990 *p2++ = annex[i];
10991 i++;
10992 }
10993 *p2 = '\0';
10994 gdb_assert (annex[i] == '\0');
10995
10996 i = putpkt (rs->buf);
10997 if (i < 0)
10998 return TARGET_XFER_E_IO;
10999
11000 getpkt (&rs->buf, 0);
11001 strcpy ((char *) readbuf, rs->buf.data ());
11002
11003 *xfered_len = strlen ((char *) readbuf);
11004 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11005 }
11006
11007 /* Implementation of to_get_memory_xfer_limit. */
11008
11009 ULONGEST
11010 remote_target::get_memory_xfer_limit ()
11011 {
11012 return get_memory_write_packet_size ();
11013 }
11014
11015 int
11016 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11017 const gdb_byte *pattern, ULONGEST pattern_len,
11018 CORE_ADDR *found_addrp)
11019 {
11020 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11021 struct remote_state *rs = get_remote_state ();
11022 int max_size = get_memory_write_packet_size ();
11023 struct packet_config *packet =
11024 &remote_protocol_packets[PACKET_qSearch_memory];
11025 /* Number of packet bytes used to encode the pattern;
11026 this could be more than PATTERN_LEN due to escape characters. */
11027 int escaped_pattern_len;
11028 /* Amount of pattern that was encodable in the packet. */
11029 int used_pattern_len;
11030 int i;
11031 int found;
11032 ULONGEST found_addr;
11033
11034 /* Don't go to the target if we don't have to. This is done before
11035 checking packet_config_support to avoid the possibility that a
11036 success for this edge case means the facility works in
11037 general. */
11038 if (pattern_len > search_space_len)
11039 return 0;
11040 if (pattern_len == 0)
11041 {
11042 *found_addrp = start_addr;
11043 return 1;
11044 }
11045
11046 /* If we already know the packet isn't supported, fall back to the simple
11047 way of searching memory. */
11048
11049 if (packet_config_support (packet) == PACKET_DISABLE)
11050 {
11051 /* Target doesn't provided special support, fall back and use the
11052 standard support (copy memory and do the search here). */
11053 return simple_search_memory (this, start_addr, search_space_len,
11054 pattern, pattern_len, found_addrp);
11055 }
11056
11057 /* Make sure the remote is pointing at the right process. */
11058 set_general_process ();
11059
11060 /* Insert header. */
11061 i = snprintf (rs->buf.data (), max_size,
11062 "qSearch:memory:%s;%s;",
11063 phex_nz (start_addr, addr_size),
11064 phex_nz (search_space_len, sizeof (search_space_len)));
11065 max_size -= (i + 1);
11066
11067 /* Escape as much data as fits into rs->buf. */
11068 escaped_pattern_len =
11069 remote_escape_output (pattern, pattern_len, 1,
11070 (gdb_byte *) rs->buf.data () + i,
11071 &used_pattern_len, max_size);
11072
11073 /* Bail if the pattern is too large. */
11074 if (used_pattern_len != pattern_len)
11075 error (_("Pattern is too large to transmit to remote target."));
11076
11077 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11078 || getpkt_sane (&rs->buf, 0) < 0
11079 || packet_ok (rs->buf, packet) != PACKET_OK)
11080 {
11081 /* The request may not have worked because the command is not
11082 supported. If so, fall back to the simple way. */
11083 if (packet_config_support (packet) == PACKET_DISABLE)
11084 {
11085 return simple_search_memory (this, start_addr, search_space_len,
11086 pattern, pattern_len, found_addrp);
11087 }
11088 return -1;
11089 }
11090
11091 if (rs->buf[0] == '0')
11092 found = 0;
11093 else if (rs->buf[0] == '1')
11094 {
11095 found = 1;
11096 if (rs->buf[1] != ',')
11097 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11098 unpack_varlen_hex (&rs->buf[2], &found_addr);
11099 *found_addrp = found_addr;
11100 }
11101 else
11102 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11103
11104 return found;
11105 }
11106
11107 void
11108 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11109 {
11110 struct remote_state *rs = get_remote_state ();
11111 char *p = rs->buf.data ();
11112
11113 if (!rs->remote_desc)
11114 error (_("remote rcmd is only available after target open"));
11115
11116 /* Send a NULL command across as an empty command. */
11117 if (command == NULL)
11118 command = "";
11119
11120 /* The query prefix. */
11121 strcpy (rs->buf.data (), "qRcmd,");
11122 p = strchr (rs->buf.data (), '\0');
11123
11124 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11125 > get_remote_packet_size ())
11126 error (_("\"monitor\" command ``%s'' is too long."), command);
11127
11128 /* Encode the actual command. */
11129 bin2hex ((const gdb_byte *) command, p, strlen (command));
11130
11131 if (putpkt (rs->buf) < 0)
11132 error (_("Communication problem with target."));
11133
11134 /* get/display the response */
11135 while (1)
11136 {
11137 char *buf;
11138
11139 /* XXX - see also remote_get_noisy_reply(). */
11140 QUIT; /* Allow user to bail out with ^C. */
11141 rs->buf[0] = '\0';
11142 if (getpkt_sane (&rs->buf, 0) == -1)
11143 {
11144 /* Timeout. Continue to (try to) read responses.
11145 This is better than stopping with an error, assuming the stub
11146 is still executing the (long) monitor command.
11147 If needed, the user can interrupt gdb using C-c, obtaining
11148 an effect similar to stop on timeout. */
11149 continue;
11150 }
11151 buf = rs->buf.data ();
11152 if (buf[0] == '\0')
11153 error (_("Target does not support this command."));
11154 if (buf[0] == 'O' && buf[1] != 'K')
11155 {
11156 remote_console_output (buf + 1); /* 'O' message from stub. */
11157 continue;
11158 }
11159 if (strcmp (buf, "OK") == 0)
11160 break;
11161 if (strlen (buf) == 3 && buf[0] == 'E'
11162 && isdigit (buf[1]) && isdigit (buf[2]))
11163 {
11164 error (_("Protocol error with Rcmd"));
11165 }
11166 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11167 {
11168 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11169
11170 fputc_unfiltered (c, outbuf);
11171 }
11172 break;
11173 }
11174 }
11175
11176 std::vector<mem_region>
11177 remote_target::memory_map ()
11178 {
11179 std::vector<mem_region> result;
11180 gdb::optional<gdb::char_vector> text
11181 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
11182
11183 if (text)
11184 result = parse_memory_map (text->data ());
11185
11186 return result;
11187 }
11188
11189 static void
11190 packet_command (const char *args, int from_tty)
11191 {
11192 remote_target *remote = get_current_remote_target ();
11193
11194 if (remote == nullptr)
11195 error (_("command can only be used with remote target"));
11196
11197 remote->packet_command (args, from_tty);
11198 }
11199
11200 void
11201 remote_target::packet_command (const char *args, int from_tty)
11202 {
11203 if (!args)
11204 error (_("remote-packet command requires packet text as argument"));
11205
11206 puts_filtered ("sending: ");
11207 print_packet (args);
11208 puts_filtered ("\n");
11209 putpkt (args);
11210
11211 remote_state *rs = get_remote_state ();
11212
11213 getpkt (&rs->buf, 0);
11214 puts_filtered ("received: ");
11215 print_packet (rs->buf.data ());
11216 puts_filtered ("\n");
11217 }
11218
11219 #if 0
11220 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11221
11222 static void display_thread_info (struct gdb_ext_thread_info *info);
11223
11224 static void threadset_test_cmd (char *cmd, int tty);
11225
11226 static void threadalive_test (char *cmd, int tty);
11227
11228 static void threadlist_test_cmd (char *cmd, int tty);
11229
11230 int get_and_display_threadinfo (threadref *ref);
11231
11232 static void threadinfo_test_cmd (char *cmd, int tty);
11233
11234 static int thread_display_step (threadref *ref, void *context);
11235
11236 static void threadlist_update_test_cmd (char *cmd, int tty);
11237
11238 static void init_remote_threadtests (void);
11239
11240 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11241
11242 static void
11243 threadset_test_cmd (const char *cmd, int tty)
11244 {
11245 int sample_thread = SAMPLE_THREAD;
11246
11247 printf_filtered (_("Remote threadset test\n"));
11248 set_general_thread (sample_thread);
11249 }
11250
11251
11252 static void
11253 threadalive_test (const char *cmd, int tty)
11254 {
11255 int sample_thread = SAMPLE_THREAD;
11256 int pid = inferior_ptid.pid ();
11257 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11258
11259 if (remote_thread_alive (ptid))
11260 printf_filtered ("PASS: Thread alive test\n");
11261 else
11262 printf_filtered ("FAIL: Thread alive test\n");
11263 }
11264
11265 void output_threadid (char *title, threadref *ref);
11266
11267 void
11268 output_threadid (char *title, threadref *ref)
11269 {
11270 char hexid[20];
11271
11272 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
11273 hexid[16] = 0;
11274 printf_filtered ("%s %s\n", title, (&hexid[0]));
11275 }
11276
11277 static void
11278 threadlist_test_cmd (const char *cmd, int tty)
11279 {
11280 int startflag = 1;
11281 threadref nextthread;
11282 int done, result_count;
11283 threadref threadlist[3];
11284
11285 printf_filtered ("Remote Threadlist test\n");
11286 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11287 &result_count, &threadlist[0]))
11288 printf_filtered ("FAIL: threadlist test\n");
11289 else
11290 {
11291 threadref *scan = threadlist;
11292 threadref *limit = scan + result_count;
11293
11294 while (scan < limit)
11295 output_threadid (" thread ", scan++);
11296 }
11297 }
11298
11299 void
11300 display_thread_info (struct gdb_ext_thread_info *info)
11301 {
11302 output_threadid ("Threadid: ", &info->threadid);
11303 printf_filtered ("Name: %s\n ", info->shortname);
11304 printf_filtered ("State: %s\n", info->display);
11305 printf_filtered ("other: %s\n\n", info->more_display);
11306 }
11307
11308 int
11309 get_and_display_threadinfo (threadref *ref)
11310 {
11311 int result;
11312 int set;
11313 struct gdb_ext_thread_info threadinfo;
11314
11315 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11316 | TAG_MOREDISPLAY | TAG_DISPLAY;
11317 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11318 display_thread_info (&threadinfo);
11319 return result;
11320 }
11321
11322 static void
11323 threadinfo_test_cmd (const char *cmd, int tty)
11324 {
11325 int athread = SAMPLE_THREAD;
11326 threadref thread;
11327 int set;
11328
11329 int_to_threadref (&thread, athread);
11330 printf_filtered ("Remote Threadinfo test\n");
11331 if (!get_and_display_threadinfo (&thread))
11332 printf_filtered ("FAIL cannot get thread info\n");
11333 }
11334
11335 static int
11336 thread_display_step (threadref *ref, void *context)
11337 {
11338 /* output_threadid(" threadstep ",ref); *//* simple test */
11339 return get_and_display_threadinfo (ref);
11340 }
11341
11342 static void
11343 threadlist_update_test_cmd (const char *cmd, int tty)
11344 {
11345 printf_filtered ("Remote Threadlist update test\n");
11346 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11347 }
11348
11349 static void
11350 init_remote_threadtests (void)
11351 {
11352 add_com ("tlist", class_obscure, threadlist_test_cmd,
11353 _("Fetch and print the remote list of "
11354 "thread identifiers, one pkt only."));
11355 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11356 _("Fetch and display info about one thread."));
11357 add_com ("tset", class_obscure, threadset_test_cmd,
11358 _("Test setting to a different thread."));
11359 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11360 _("Iterate through updating all remote thread info."));
11361 add_com ("talive", class_obscure, threadalive_test,
11362 _("Remote thread alive test."));
11363 }
11364
11365 #endif /* 0 */
11366
11367 /* Convert a thread ID to a string. */
11368
11369 std::string
11370 remote_target::pid_to_str (ptid_t ptid)
11371 {
11372 struct remote_state *rs = get_remote_state ();
11373
11374 if (ptid == null_ptid)
11375 return normal_pid_to_str (ptid);
11376 else if (ptid.is_pid ())
11377 {
11378 /* Printing an inferior target id. */
11379
11380 /* When multi-process extensions are off, there's no way in the
11381 remote protocol to know the remote process id, if there's any
11382 at all. There's one exception --- when we're connected with
11383 target extended-remote, and we manually attached to a process
11384 with "attach PID". We don't record anywhere a flag that
11385 allows us to distinguish that case from the case of
11386 connecting with extended-remote and the stub already being
11387 attached to a process, and reporting yes to qAttached, hence
11388 no smart special casing here. */
11389 if (!remote_multi_process_p (rs))
11390 return "Remote target";
11391
11392 return normal_pid_to_str (ptid);
11393 }
11394 else
11395 {
11396 if (magic_null_ptid == ptid)
11397 return "Thread <main>";
11398 else if (remote_multi_process_p (rs))
11399 if (ptid.lwp () == 0)
11400 return normal_pid_to_str (ptid);
11401 else
11402 return string_printf ("Thread %d.%ld",
11403 ptid.pid (), ptid.lwp ());
11404 else
11405 return string_printf ("Thread %ld", ptid.lwp ());
11406 }
11407 }
11408
11409 /* Get the address of the thread local variable in OBJFILE which is
11410 stored at OFFSET within the thread local storage for thread PTID. */
11411
11412 CORE_ADDR
11413 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11414 CORE_ADDR offset)
11415 {
11416 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11417 {
11418 struct remote_state *rs = get_remote_state ();
11419 char *p = rs->buf.data ();
11420 char *endp = p + get_remote_packet_size ();
11421 enum packet_result result;
11422
11423 strcpy (p, "qGetTLSAddr:");
11424 p += strlen (p);
11425 p = write_ptid (p, endp, ptid);
11426 *p++ = ',';
11427 p += hexnumstr (p, offset);
11428 *p++ = ',';
11429 p += hexnumstr (p, lm);
11430 *p++ = '\0';
11431
11432 putpkt (rs->buf);
11433 getpkt (&rs->buf, 0);
11434 result = packet_ok (rs->buf,
11435 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11436 if (result == PACKET_OK)
11437 {
11438 ULONGEST addr;
11439
11440 unpack_varlen_hex (rs->buf.data (), &addr);
11441 return addr;
11442 }
11443 else if (result == PACKET_UNKNOWN)
11444 throw_error (TLS_GENERIC_ERROR,
11445 _("Remote target doesn't support qGetTLSAddr packet"));
11446 else
11447 throw_error (TLS_GENERIC_ERROR,
11448 _("Remote target failed to process qGetTLSAddr request"));
11449 }
11450 else
11451 throw_error (TLS_GENERIC_ERROR,
11452 _("TLS not supported or disabled on this target"));
11453 /* Not reached. */
11454 return 0;
11455 }
11456
11457 /* Provide thread local base, i.e. Thread Information Block address.
11458 Returns 1 if ptid is found and thread_local_base is non zero. */
11459
11460 bool
11461 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11462 {
11463 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11464 {
11465 struct remote_state *rs = get_remote_state ();
11466 char *p = rs->buf.data ();
11467 char *endp = p + get_remote_packet_size ();
11468 enum packet_result result;
11469
11470 strcpy (p, "qGetTIBAddr:");
11471 p += strlen (p);
11472 p = write_ptid (p, endp, ptid);
11473 *p++ = '\0';
11474
11475 putpkt (rs->buf);
11476 getpkt (&rs->buf, 0);
11477 result = packet_ok (rs->buf,
11478 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11479 if (result == PACKET_OK)
11480 {
11481 ULONGEST val;
11482 unpack_varlen_hex (rs->buf.data (), &val);
11483 if (addr)
11484 *addr = (CORE_ADDR) val;
11485 return true;
11486 }
11487 else if (result == PACKET_UNKNOWN)
11488 error (_("Remote target doesn't support qGetTIBAddr packet"));
11489 else
11490 error (_("Remote target failed to process qGetTIBAddr request"));
11491 }
11492 else
11493 error (_("qGetTIBAddr not supported or disabled on this target"));
11494 /* Not reached. */
11495 return false;
11496 }
11497
11498 /* Support for inferring a target description based on the current
11499 architecture and the size of a 'g' packet. While the 'g' packet
11500 can have any size (since optional registers can be left off the
11501 end), some sizes are easily recognizable given knowledge of the
11502 approximate architecture. */
11503
11504 struct remote_g_packet_guess
11505 {
11506 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11507 : bytes (bytes_),
11508 tdesc (tdesc_)
11509 {
11510 }
11511
11512 int bytes;
11513 const struct target_desc *tdesc;
11514 };
11515
11516 struct remote_g_packet_data : public allocate_on_obstack
11517 {
11518 std::vector<remote_g_packet_guess> guesses;
11519 };
11520
11521 static struct gdbarch_data *remote_g_packet_data_handle;
11522
11523 static void *
11524 remote_g_packet_data_init (struct obstack *obstack)
11525 {
11526 return new (obstack) remote_g_packet_data;
11527 }
11528
11529 void
11530 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11531 const struct target_desc *tdesc)
11532 {
11533 struct remote_g_packet_data *data
11534 = ((struct remote_g_packet_data *)
11535 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11536
11537 gdb_assert (tdesc != NULL);
11538
11539 for (const remote_g_packet_guess &guess : data->guesses)
11540 if (guess.bytes == bytes)
11541 internal_error (__FILE__, __LINE__,
11542 _("Duplicate g packet description added for size %d"),
11543 bytes);
11544
11545 data->guesses.emplace_back (bytes, tdesc);
11546 }
11547
11548 /* Return true if remote_read_description would do anything on this target
11549 and architecture, false otherwise. */
11550
11551 static bool
11552 remote_read_description_p (struct target_ops *target)
11553 {
11554 struct remote_g_packet_data *data
11555 = ((struct remote_g_packet_data *)
11556 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11557
11558 return !data->guesses.empty ();
11559 }
11560
11561 const struct target_desc *
11562 remote_target::read_description ()
11563 {
11564 struct remote_g_packet_data *data
11565 = ((struct remote_g_packet_data *)
11566 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11567
11568 /* Do not try this during initial connection, when we do not know
11569 whether there is a running but stopped thread. */
11570 if (!target_has_execution || inferior_ptid == null_ptid)
11571 return beneath ()->read_description ();
11572
11573 if (!data->guesses.empty ())
11574 {
11575 int bytes = send_g_packet ();
11576
11577 for (const remote_g_packet_guess &guess : data->guesses)
11578 if (guess.bytes == bytes)
11579 return guess.tdesc;
11580
11581 /* We discard the g packet. A minor optimization would be to
11582 hold on to it, and fill the register cache once we have selected
11583 an architecture, but it's too tricky to do safely. */
11584 }
11585
11586 return beneath ()->read_description ();
11587 }
11588
11589 /* Remote file transfer support. This is host-initiated I/O, not
11590 target-initiated; for target-initiated, see remote-fileio.c. */
11591
11592 /* If *LEFT is at least the length of STRING, copy STRING to
11593 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11594 decrease *LEFT. Otherwise raise an error. */
11595
11596 static void
11597 remote_buffer_add_string (char **buffer, int *left, const char *string)
11598 {
11599 int len = strlen (string);
11600
11601 if (len > *left)
11602 error (_("Packet too long for target."));
11603
11604 memcpy (*buffer, string, len);
11605 *buffer += len;
11606 *left -= len;
11607
11608 /* NUL-terminate the buffer as a convenience, if there is
11609 room. */
11610 if (*left)
11611 **buffer = '\0';
11612 }
11613
11614 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11615 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11616 decrease *LEFT. Otherwise raise an error. */
11617
11618 static void
11619 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11620 int len)
11621 {
11622 if (2 * len > *left)
11623 error (_("Packet too long for target."));
11624
11625 bin2hex (bytes, *buffer, len);
11626 *buffer += 2 * len;
11627 *left -= 2 * len;
11628
11629 /* NUL-terminate the buffer as a convenience, if there is
11630 room. */
11631 if (*left)
11632 **buffer = '\0';
11633 }
11634
11635 /* If *LEFT is large enough, convert VALUE to hex and add it to
11636 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11637 decrease *LEFT. Otherwise raise an error. */
11638
11639 static void
11640 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11641 {
11642 int len = hexnumlen (value);
11643
11644 if (len > *left)
11645 error (_("Packet too long for target."));
11646
11647 hexnumstr (*buffer, value);
11648 *buffer += len;
11649 *left -= len;
11650
11651 /* NUL-terminate the buffer as a convenience, if there is
11652 room. */
11653 if (*left)
11654 **buffer = '\0';
11655 }
11656
11657 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11658 value, *REMOTE_ERRNO to the remote error number or zero if none
11659 was included, and *ATTACHMENT to point to the start of the annex
11660 if any. The length of the packet isn't needed here; there may
11661 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11662
11663 Return 0 if the packet could be parsed, -1 if it could not. If
11664 -1 is returned, the other variables may not be initialized. */
11665
11666 static int
11667 remote_hostio_parse_result (char *buffer, int *retcode,
11668 int *remote_errno, char **attachment)
11669 {
11670 char *p, *p2;
11671
11672 *remote_errno = 0;
11673 *attachment = NULL;
11674
11675 if (buffer[0] != 'F')
11676 return -1;
11677
11678 errno = 0;
11679 *retcode = strtol (&buffer[1], &p, 16);
11680 if (errno != 0 || p == &buffer[1])
11681 return -1;
11682
11683 /* Check for ",errno". */
11684 if (*p == ',')
11685 {
11686 errno = 0;
11687 *remote_errno = strtol (p + 1, &p2, 16);
11688 if (errno != 0 || p + 1 == p2)
11689 return -1;
11690 p = p2;
11691 }
11692
11693 /* Check for ";attachment". If there is no attachment, the
11694 packet should end here. */
11695 if (*p == ';')
11696 {
11697 *attachment = p + 1;
11698 return 0;
11699 }
11700 else if (*p == '\0')
11701 return 0;
11702 else
11703 return -1;
11704 }
11705
11706 /* Send a prepared I/O packet to the target and read its response.
11707 The prepared packet is in the global RS->BUF before this function
11708 is called, and the answer is there when we return.
11709
11710 COMMAND_BYTES is the length of the request to send, which may include
11711 binary data. WHICH_PACKET is the packet configuration to check
11712 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11713 is set to the error number and -1 is returned. Otherwise the value
11714 returned by the function is returned.
11715
11716 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11717 attachment is expected; an error will be reported if there's a
11718 mismatch. If one is found, *ATTACHMENT will be set to point into
11719 the packet buffer and *ATTACHMENT_LEN will be set to the
11720 attachment's length. */
11721
11722 int
11723 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11724 int *remote_errno, char **attachment,
11725 int *attachment_len)
11726 {
11727 struct remote_state *rs = get_remote_state ();
11728 int ret, bytes_read;
11729 char *attachment_tmp;
11730
11731 if (packet_support (which_packet) == PACKET_DISABLE)
11732 {
11733 *remote_errno = FILEIO_ENOSYS;
11734 return -1;
11735 }
11736
11737 putpkt_binary (rs->buf.data (), command_bytes);
11738 bytes_read = getpkt_sane (&rs->buf, 0);
11739
11740 /* If it timed out, something is wrong. Don't try to parse the
11741 buffer. */
11742 if (bytes_read < 0)
11743 {
11744 *remote_errno = FILEIO_EINVAL;
11745 return -1;
11746 }
11747
11748 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11749 {
11750 case PACKET_ERROR:
11751 *remote_errno = FILEIO_EINVAL;
11752 return -1;
11753 case PACKET_UNKNOWN:
11754 *remote_errno = FILEIO_ENOSYS;
11755 return -1;
11756 case PACKET_OK:
11757 break;
11758 }
11759
11760 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
11761 &attachment_tmp))
11762 {
11763 *remote_errno = FILEIO_EINVAL;
11764 return -1;
11765 }
11766
11767 /* Make sure we saw an attachment if and only if we expected one. */
11768 if ((attachment_tmp == NULL && attachment != NULL)
11769 || (attachment_tmp != NULL && attachment == NULL))
11770 {
11771 *remote_errno = FILEIO_EINVAL;
11772 return -1;
11773 }
11774
11775 /* If an attachment was found, it must point into the packet buffer;
11776 work out how many bytes there were. */
11777 if (attachment_tmp != NULL)
11778 {
11779 *attachment = attachment_tmp;
11780 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
11781 }
11782
11783 return ret;
11784 }
11785
11786 /* See declaration.h. */
11787
11788 void
11789 readahead_cache::invalidate ()
11790 {
11791 this->fd = -1;
11792 }
11793
11794 /* See declaration.h. */
11795
11796 void
11797 readahead_cache::invalidate_fd (int fd)
11798 {
11799 if (this->fd == fd)
11800 this->fd = -1;
11801 }
11802
11803 /* Set the filesystem remote_hostio functions that take FILENAME
11804 arguments will use. Return 0 on success, or -1 if an error
11805 occurs (and set *REMOTE_ERRNO). */
11806
11807 int
11808 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11809 int *remote_errno)
11810 {
11811 struct remote_state *rs = get_remote_state ();
11812 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11813 char *p = rs->buf.data ();
11814 int left = get_remote_packet_size () - 1;
11815 char arg[9];
11816 int ret;
11817
11818 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11819 return 0;
11820
11821 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11822 return 0;
11823
11824 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11825
11826 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11827 remote_buffer_add_string (&p, &left, arg);
11828
11829 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
11830 remote_errno, NULL, NULL);
11831
11832 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11833 return 0;
11834
11835 if (ret == 0)
11836 rs->fs_pid = required_pid;
11837
11838 return ret;
11839 }
11840
11841 /* Implementation of to_fileio_open. */
11842
11843 int
11844 remote_target::remote_hostio_open (inferior *inf, const char *filename,
11845 int flags, int mode, int warn_if_slow,
11846 int *remote_errno)
11847 {
11848 struct remote_state *rs = get_remote_state ();
11849 char *p = rs->buf.data ();
11850 int left = get_remote_packet_size () - 1;
11851
11852 if (warn_if_slow)
11853 {
11854 static int warning_issued = 0;
11855
11856 printf_unfiltered (_("Reading %s from remote target...\n"),
11857 filename);
11858
11859 if (!warning_issued)
11860 {
11861 warning (_("File transfers from remote targets can be slow."
11862 " Use \"set sysroot\" to access files locally"
11863 " instead."));
11864 warning_issued = 1;
11865 }
11866 }
11867
11868 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11869 return -1;
11870
11871 remote_buffer_add_string (&p, &left, "vFile:open:");
11872
11873 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11874 strlen (filename));
11875 remote_buffer_add_string (&p, &left, ",");
11876
11877 remote_buffer_add_int (&p, &left, flags);
11878 remote_buffer_add_string (&p, &left, ",");
11879
11880 remote_buffer_add_int (&p, &left, mode);
11881
11882 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
11883 remote_errno, NULL, NULL);
11884 }
11885
11886 int
11887 remote_target::fileio_open (struct inferior *inf, const char *filename,
11888 int flags, int mode, int warn_if_slow,
11889 int *remote_errno)
11890 {
11891 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
11892 remote_errno);
11893 }
11894
11895 /* Implementation of to_fileio_pwrite. */
11896
11897 int
11898 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11899 ULONGEST offset, int *remote_errno)
11900 {
11901 struct remote_state *rs = get_remote_state ();
11902 char *p = rs->buf.data ();
11903 int left = get_remote_packet_size ();
11904 int out_len;
11905
11906 rs->readahead_cache.invalidate_fd (fd);
11907
11908 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11909
11910 remote_buffer_add_int (&p, &left, fd);
11911 remote_buffer_add_string (&p, &left, ",");
11912
11913 remote_buffer_add_int (&p, &left, offset);
11914 remote_buffer_add_string (&p, &left, ",");
11915
11916 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11917 (get_remote_packet_size ()
11918 - (p - rs->buf.data ())));
11919
11920 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
11921 remote_errno, NULL, NULL);
11922 }
11923
11924 int
11925 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11926 ULONGEST offset, int *remote_errno)
11927 {
11928 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
11929 }
11930
11931 /* Helper for the implementation of to_fileio_pread. Read the file
11932 from the remote side with vFile:pread. */
11933
11934 int
11935 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11936 ULONGEST offset, int *remote_errno)
11937 {
11938 struct remote_state *rs = get_remote_state ();
11939 char *p = rs->buf.data ();
11940 char *attachment;
11941 int left = get_remote_packet_size ();
11942 int ret, attachment_len;
11943 int read_len;
11944
11945 remote_buffer_add_string (&p, &left, "vFile:pread:");
11946
11947 remote_buffer_add_int (&p, &left, fd);
11948 remote_buffer_add_string (&p, &left, ",");
11949
11950 remote_buffer_add_int (&p, &left, len);
11951 remote_buffer_add_string (&p, &left, ",");
11952
11953 remote_buffer_add_int (&p, &left, offset);
11954
11955 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
11956 remote_errno, &attachment,
11957 &attachment_len);
11958
11959 if (ret < 0)
11960 return ret;
11961
11962 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11963 read_buf, len);
11964 if (read_len != ret)
11965 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11966
11967 return ret;
11968 }
11969
11970 /* See declaration.h. */
11971
11972 int
11973 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
11974 ULONGEST offset)
11975 {
11976 if (this->fd == fd
11977 && this->offset <= offset
11978 && offset < this->offset + this->bufsize)
11979 {
11980 ULONGEST max = this->offset + this->bufsize;
11981
11982 if (offset + len > max)
11983 len = max - offset;
11984
11985 memcpy (read_buf, this->buf + offset - this->offset, len);
11986 return len;
11987 }
11988
11989 return 0;
11990 }
11991
11992 /* Implementation of to_fileio_pread. */
11993
11994 int
11995 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
11996 ULONGEST offset, int *remote_errno)
11997 {
11998 int ret;
11999 struct remote_state *rs = get_remote_state ();
12000 readahead_cache *cache = &rs->readahead_cache;
12001
12002 ret = cache->pread (fd, read_buf, len, offset);
12003 if (ret > 0)
12004 {
12005 cache->hit_count++;
12006
12007 if (remote_debug)
12008 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12009 pulongest (cache->hit_count));
12010 return ret;
12011 }
12012
12013 cache->miss_count++;
12014 if (remote_debug)
12015 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12016 pulongest (cache->miss_count));
12017
12018 cache->fd = fd;
12019 cache->offset = offset;
12020 cache->bufsize = get_remote_packet_size ();
12021 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12022
12023 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12024 cache->offset, remote_errno);
12025 if (ret <= 0)
12026 {
12027 cache->invalidate_fd (fd);
12028 return ret;
12029 }
12030
12031 cache->bufsize = ret;
12032 return cache->pread (fd, read_buf, len, offset);
12033 }
12034
12035 int
12036 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12037 ULONGEST offset, int *remote_errno)
12038 {
12039 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12040 }
12041
12042 /* Implementation of to_fileio_close. */
12043
12044 int
12045 remote_target::remote_hostio_close (int fd, int *remote_errno)
12046 {
12047 struct remote_state *rs = get_remote_state ();
12048 char *p = rs->buf.data ();
12049 int left = get_remote_packet_size () - 1;
12050
12051 rs->readahead_cache.invalidate_fd (fd);
12052
12053 remote_buffer_add_string (&p, &left, "vFile:close:");
12054
12055 remote_buffer_add_int (&p, &left, fd);
12056
12057 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12058 remote_errno, NULL, NULL);
12059 }
12060
12061 int
12062 remote_target::fileio_close (int fd, int *remote_errno)
12063 {
12064 return remote_hostio_close (fd, remote_errno);
12065 }
12066
12067 /* Implementation of to_fileio_unlink. */
12068
12069 int
12070 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12071 int *remote_errno)
12072 {
12073 struct remote_state *rs = get_remote_state ();
12074 char *p = rs->buf.data ();
12075 int left = get_remote_packet_size () - 1;
12076
12077 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12078 return -1;
12079
12080 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12081
12082 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12083 strlen (filename));
12084
12085 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12086 remote_errno, NULL, NULL);
12087 }
12088
12089 int
12090 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12091 int *remote_errno)
12092 {
12093 return remote_hostio_unlink (inf, filename, remote_errno);
12094 }
12095
12096 /* Implementation of to_fileio_readlink. */
12097
12098 gdb::optional<std::string>
12099 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12100 int *remote_errno)
12101 {
12102 struct remote_state *rs = get_remote_state ();
12103 char *p = rs->buf.data ();
12104 char *attachment;
12105 int left = get_remote_packet_size ();
12106 int len, attachment_len;
12107 int read_len;
12108
12109 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12110 return {};
12111
12112 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12113
12114 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12115 strlen (filename));
12116
12117 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12118 remote_errno, &attachment,
12119 &attachment_len);
12120
12121 if (len < 0)
12122 return {};
12123
12124 std::string ret (len, '\0');
12125
12126 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12127 (gdb_byte *) &ret[0], len);
12128 if (read_len != len)
12129 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12130
12131 return ret;
12132 }
12133
12134 /* Implementation of to_fileio_fstat. */
12135
12136 int
12137 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12138 {
12139 struct remote_state *rs = get_remote_state ();
12140 char *p = rs->buf.data ();
12141 int left = get_remote_packet_size ();
12142 int attachment_len, ret;
12143 char *attachment;
12144 struct fio_stat fst;
12145 int read_len;
12146
12147 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12148
12149 remote_buffer_add_int (&p, &left, fd);
12150
12151 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12152 remote_errno, &attachment,
12153 &attachment_len);
12154 if (ret < 0)
12155 {
12156 if (*remote_errno != FILEIO_ENOSYS)
12157 return ret;
12158
12159 /* Strictly we should return -1, ENOSYS here, but when
12160 "set sysroot remote:" was implemented in August 2008
12161 BFD's need for a stat function was sidestepped with
12162 this hack. This was not remedied until March 2015
12163 so we retain the previous behavior to avoid breaking
12164 compatibility.
12165
12166 Note that the memset is a March 2015 addition; older
12167 GDBs set st_size *and nothing else* so the structure
12168 would have garbage in all other fields. This might
12169 break something but retaining the previous behavior
12170 here would be just too wrong. */
12171
12172 memset (st, 0, sizeof (struct stat));
12173 st->st_size = INT_MAX;
12174 return 0;
12175 }
12176
12177 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12178 (gdb_byte *) &fst, sizeof (fst));
12179
12180 if (read_len != ret)
12181 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12182
12183 if (read_len != sizeof (fst))
12184 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12185 read_len, (int) sizeof (fst));
12186
12187 remote_fileio_to_host_stat (&fst, st);
12188
12189 return 0;
12190 }
12191
12192 /* Implementation of to_filesystem_is_local. */
12193
12194 bool
12195 remote_target::filesystem_is_local ()
12196 {
12197 /* Valgrind GDB presents itself as a remote target but works
12198 on the local filesystem: it does not implement remote get
12199 and users are not expected to set a sysroot. To handle
12200 this case we treat the remote filesystem as local if the
12201 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12202 does not support vFile:open. */
12203 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
12204 {
12205 enum packet_support ps = packet_support (PACKET_vFile_open);
12206
12207 if (ps == PACKET_SUPPORT_UNKNOWN)
12208 {
12209 int fd, remote_errno;
12210
12211 /* Try opening a file to probe support. The supplied
12212 filename is irrelevant, we only care about whether
12213 the stub recognizes the packet or not. */
12214 fd = remote_hostio_open (NULL, "just probing",
12215 FILEIO_O_RDONLY, 0700, 0,
12216 &remote_errno);
12217
12218 if (fd >= 0)
12219 remote_hostio_close (fd, &remote_errno);
12220
12221 ps = packet_support (PACKET_vFile_open);
12222 }
12223
12224 if (ps == PACKET_DISABLE)
12225 {
12226 static int warning_issued = 0;
12227
12228 if (!warning_issued)
12229 {
12230 warning (_("remote target does not support file"
12231 " transfer, attempting to access files"
12232 " from local filesystem."));
12233 warning_issued = 1;
12234 }
12235
12236 return true;
12237 }
12238 }
12239
12240 return false;
12241 }
12242
12243 static int
12244 remote_fileio_errno_to_host (int errnum)
12245 {
12246 switch (errnum)
12247 {
12248 case FILEIO_EPERM:
12249 return EPERM;
12250 case FILEIO_ENOENT:
12251 return ENOENT;
12252 case FILEIO_EINTR:
12253 return EINTR;
12254 case FILEIO_EIO:
12255 return EIO;
12256 case FILEIO_EBADF:
12257 return EBADF;
12258 case FILEIO_EACCES:
12259 return EACCES;
12260 case FILEIO_EFAULT:
12261 return EFAULT;
12262 case FILEIO_EBUSY:
12263 return EBUSY;
12264 case FILEIO_EEXIST:
12265 return EEXIST;
12266 case FILEIO_ENODEV:
12267 return ENODEV;
12268 case FILEIO_ENOTDIR:
12269 return ENOTDIR;
12270 case FILEIO_EISDIR:
12271 return EISDIR;
12272 case FILEIO_EINVAL:
12273 return EINVAL;
12274 case FILEIO_ENFILE:
12275 return ENFILE;
12276 case FILEIO_EMFILE:
12277 return EMFILE;
12278 case FILEIO_EFBIG:
12279 return EFBIG;
12280 case FILEIO_ENOSPC:
12281 return ENOSPC;
12282 case FILEIO_ESPIPE:
12283 return ESPIPE;
12284 case FILEIO_EROFS:
12285 return EROFS;
12286 case FILEIO_ENOSYS:
12287 return ENOSYS;
12288 case FILEIO_ENAMETOOLONG:
12289 return ENAMETOOLONG;
12290 }
12291 return -1;
12292 }
12293
12294 static char *
12295 remote_hostio_error (int errnum)
12296 {
12297 int host_error = remote_fileio_errno_to_host (errnum);
12298
12299 if (host_error == -1)
12300 error (_("Unknown remote I/O error %d"), errnum);
12301 else
12302 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12303 }
12304
12305 /* A RAII wrapper around a remote file descriptor. */
12306
12307 class scoped_remote_fd
12308 {
12309 public:
12310 scoped_remote_fd (remote_target *remote, int fd)
12311 : m_remote (remote), m_fd (fd)
12312 {
12313 }
12314
12315 ~scoped_remote_fd ()
12316 {
12317 if (m_fd != -1)
12318 {
12319 try
12320 {
12321 int remote_errno;
12322 m_remote->remote_hostio_close (m_fd, &remote_errno);
12323 }
12324 catch (...)
12325 {
12326 /* Swallow exception before it escapes the dtor. If
12327 something goes wrong, likely the connection is gone,
12328 and there's nothing else that can be done. */
12329 }
12330 }
12331 }
12332
12333 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12334
12335 /* Release ownership of the file descriptor, and return it. */
12336 ATTRIBUTE_UNUSED_RESULT int release () noexcept
12337 {
12338 int fd = m_fd;
12339 m_fd = -1;
12340 return fd;
12341 }
12342
12343 /* Return the owned file descriptor. */
12344 int get () const noexcept
12345 {
12346 return m_fd;
12347 }
12348
12349 private:
12350 /* The remote target. */
12351 remote_target *m_remote;
12352
12353 /* The owned remote I/O file descriptor. */
12354 int m_fd;
12355 };
12356
12357 void
12358 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12359 {
12360 remote_target *remote = get_current_remote_target ();
12361
12362 if (remote == nullptr)
12363 error (_("command can only be used with remote target"));
12364
12365 remote->remote_file_put (local_file, remote_file, from_tty);
12366 }
12367
12368 void
12369 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12370 int from_tty)
12371 {
12372 int retcode, remote_errno, bytes, io_size;
12373 int bytes_in_buffer;
12374 int saw_eof;
12375 ULONGEST offset;
12376
12377 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12378 if (file == NULL)
12379 perror_with_name (local_file);
12380
12381 scoped_remote_fd fd
12382 (this, remote_hostio_open (NULL,
12383 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12384 | FILEIO_O_TRUNC),
12385 0700, 0, &remote_errno));
12386 if (fd.get () == -1)
12387 remote_hostio_error (remote_errno);
12388
12389 /* Send up to this many bytes at once. They won't all fit in the
12390 remote packet limit, so we'll transfer slightly fewer. */
12391 io_size = get_remote_packet_size ();
12392 gdb::byte_vector buffer (io_size);
12393
12394 bytes_in_buffer = 0;
12395 saw_eof = 0;
12396 offset = 0;
12397 while (bytes_in_buffer || !saw_eof)
12398 {
12399 if (!saw_eof)
12400 {
12401 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12402 io_size - bytes_in_buffer,
12403 file.get ());
12404 if (bytes == 0)
12405 {
12406 if (ferror (file.get ()))
12407 error (_("Error reading %s."), local_file);
12408 else
12409 {
12410 /* EOF. Unless there is something still in the
12411 buffer from the last iteration, we are done. */
12412 saw_eof = 1;
12413 if (bytes_in_buffer == 0)
12414 break;
12415 }
12416 }
12417 }
12418 else
12419 bytes = 0;
12420
12421 bytes += bytes_in_buffer;
12422 bytes_in_buffer = 0;
12423
12424 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12425 offset, &remote_errno);
12426
12427 if (retcode < 0)
12428 remote_hostio_error (remote_errno);
12429 else if (retcode == 0)
12430 error (_("Remote write of %d bytes returned 0!"), bytes);
12431 else if (retcode < bytes)
12432 {
12433 /* Short write. Save the rest of the read data for the next
12434 write. */
12435 bytes_in_buffer = bytes - retcode;
12436 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12437 }
12438
12439 offset += retcode;
12440 }
12441
12442 if (remote_hostio_close (fd.release (), &remote_errno))
12443 remote_hostio_error (remote_errno);
12444
12445 if (from_tty)
12446 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12447 }
12448
12449 void
12450 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12451 {
12452 remote_target *remote = get_current_remote_target ();
12453
12454 if (remote == nullptr)
12455 error (_("command can only be used with remote target"));
12456
12457 remote->remote_file_get (remote_file, local_file, from_tty);
12458 }
12459
12460 void
12461 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12462 int from_tty)
12463 {
12464 int remote_errno, bytes, io_size;
12465 ULONGEST offset;
12466
12467 scoped_remote_fd fd
12468 (this, remote_hostio_open (NULL,
12469 remote_file, FILEIO_O_RDONLY, 0, 0,
12470 &remote_errno));
12471 if (fd.get () == -1)
12472 remote_hostio_error (remote_errno);
12473
12474 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12475 if (file == NULL)
12476 perror_with_name (local_file);
12477
12478 /* Send up to this many bytes at once. They won't all fit in the
12479 remote packet limit, so we'll transfer slightly fewer. */
12480 io_size = get_remote_packet_size ();
12481 gdb::byte_vector buffer (io_size);
12482
12483 offset = 0;
12484 while (1)
12485 {
12486 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12487 &remote_errno);
12488 if (bytes == 0)
12489 /* Success, but no bytes, means end-of-file. */
12490 break;
12491 if (bytes == -1)
12492 remote_hostio_error (remote_errno);
12493
12494 offset += bytes;
12495
12496 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12497 if (bytes == 0)
12498 perror_with_name (local_file);
12499 }
12500
12501 if (remote_hostio_close (fd.release (), &remote_errno))
12502 remote_hostio_error (remote_errno);
12503
12504 if (from_tty)
12505 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12506 }
12507
12508 void
12509 remote_file_delete (const char *remote_file, int from_tty)
12510 {
12511 remote_target *remote = get_current_remote_target ();
12512
12513 if (remote == nullptr)
12514 error (_("command can only be used with remote target"));
12515
12516 remote->remote_file_delete (remote_file, from_tty);
12517 }
12518
12519 void
12520 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12521 {
12522 int retcode, remote_errno;
12523
12524 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12525 if (retcode == -1)
12526 remote_hostio_error (remote_errno);
12527
12528 if (from_tty)
12529 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12530 }
12531
12532 static void
12533 remote_put_command (const char *args, int from_tty)
12534 {
12535 if (args == NULL)
12536 error_no_arg (_("file to put"));
12537
12538 gdb_argv argv (args);
12539 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12540 error (_("Invalid parameters to remote put"));
12541
12542 remote_file_put (argv[0], argv[1], from_tty);
12543 }
12544
12545 static void
12546 remote_get_command (const char *args, int from_tty)
12547 {
12548 if (args == NULL)
12549 error_no_arg (_("file to get"));
12550
12551 gdb_argv argv (args);
12552 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12553 error (_("Invalid parameters to remote get"));
12554
12555 remote_file_get (argv[0], argv[1], from_tty);
12556 }
12557
12558 static void
12559 remote_delete_command (const char *args, int from_tty)
12560 {
12561 if (args == NULL)
12562 error_no_arg (_("file to delete"));
12563
12564 gdb_argv argv (args);
12565 if (argv[0] == NULL || argv[1] != NULL)
12566 error (_("Invalid parameters to remote delete"));
12567
12568 remote_file_delete (argv[0], from_tty);
12569 }
12570
12571 static void
12572 remote_command (const char *args, int from_tty)
12573 {
12574 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
12575 }
12576
12577 bool
12578 remote_target::can_execute_reverse ()
12579 {
12580 if (packet_support (PACKET_bs) == PACKET_ENABLE
12581 || packet_support (PACKET_bc) == PACKET_ENABLE)
12582 return true;
12583 else
12584 return false;
12585 }
12586
12587 bool
12588 remote_target::supports_non_stop ()
12589 {
12590 return true;
12591 }
12592
12593 bool
12594 remote_target::supports_disable_randomization ()
12595 {
12596 /* Only supported in extended mode. */
12597 return false;
12598 }
12599
12600 bool
12601 remote_target::supports_multi_process ()
12602 {
12603 struct remote_state *rs = get_remote_state ();
12604
12605 return remote_multi_process_p (rs);
12606 }
12607
12608 static int
12609 remote_supports_cond_tracepoints ()
12610 {
12611 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
12612 }
12613
12614 bool
12615 remote_target::supports_evaluation_of_breakpoint_conditions ()
12616 {
12617 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
12618 }
12619
12620 static int
12621 remote_supports_fast_tracepoints ()
12622 {
12623 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
12624 }
12625
12626 static int
12627 remote_supports_static_tracepoints ()
12628 {
12629 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
12630 }
12631
12632 static int
12633 remote_supports_install_in_trace ()
12634 {
12635 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
12636 }
12637
12638 bool
12639 remote_target::supports_enable_disable_tracepoint ()
12640 {
12641 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12642 == PACKET_ENABLE);
12643 }
12644
12645 bool
12646 remote_target::supports_string_tracing ()
12647 {
12648 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
12649 }
12650
12651 bool
12652 remote_target::can_run_breakpoint_commands ()
12653 {
12654 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
12655 }
12656
12657 void
12658 remote_target::trace_init ()
12659 {
12660 struct remote_state *rs = get_remote_state ();
12661
12662 putpkt ("QTinit");
12663 remote_get_noisy_reply ();
12664 if (strcmp (rs->buf.data (), "OK") != 0)
12665 error (_("Target does not support this command."));
12666 }
12667
12668 /* Recursive routine to walk through command list including loops, and
12669 download packets for each command. */
12670
12671 void
12672 remote_target::remote_download_command_source (int num, ULONGEST addr,
12673 struct command_line *cmds)
12674 {
12675 struct remote_state *rs = get_remote_state ();
12676 struct command_line *cmd;
12677
12678 for (cmd = cmds; cmd; cmd = cmd->next)
12679 {
12680 QUIT; /* Allow user to bail out with ^C. */
12681 strcpy (rs->buf.data (), "QTDPsrc:");
12682 encode_source_string (num, addr, "cmd", cmd->line,
12683 rs->buf.data () + strlen (rs->buf.data ()),
12684 rs->buf.size () - strlen (rs->buf.data ()));
12685 putpkt (rs->buf);
12686 remote_get_noisy_reply ();
12687 if (strcmp (rs->buf.data (), "OK"))
12688 warning (_("Target does not support source download."));
12689
12690 if (cmd->control_type == while_control
12691 || cmd->control_type == while_stepping_control)
12692 {
12693 remote_download_command_source (num, addr, cmd->body_list_0.get ());
12694
12695 QUIT; /* Allow user to bail out with ^C. */
12696 strcpy (rs->buf.data (), "QTDPsrc:");
12697 encode_source_string (num, addr, "cmd", "end",
12698 rs->buf.data () + strlen (rs->buf.data ()),
12699 rs->buf.size () - strlen (rs->buf.data ()));
12700 putpkt (rs->buf);
12701 remote_get_noisy_reply ();
12702 if (strcmp (rs->buf.data (), "OK"))
12703 warning (_("Target does not support source download."));
12704 }
12705 }
12706 }
12707
12708 void
12709 remote_target::download_tracepoint (struct bp_location *loc)
12710 {
12711 CORE_ADDR tpaddr;
12712 char addrbuf[40];
12713 std::vector<std::string> tdp_actions;
12714 std::vector<std::string> stepping_actions;
12715 char *pkt;
12716 struct breakpoint *b = loc->owner;
12717 struct tracepoint *t = (struct tracepoint *) b;
12718 struct remote_state *rs = get_remote_state ();
12719 int ret;
12720 const char *err_msg = _("Tracepoint packet too large for target.");
12721 size_t size_left;
12722
12723 /* We use a buffer other than rs->buf because we'll build strings
12724 across multiple statements, and other statements in between could
12725 modify rs->buf. */
12726 gdb::char_vector buf (get_remote_packet_size ());
12727
12728 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
12729
12730 tpaddr = loc->address;
12731 sprintf_vma (addrbuf, tpaddr);
12732 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12733 b->number, addrbuf, /* address */
12734 (b->enable_state == bp_enabled ? 'E' : 'D'),
12735 t->step_count, t->pass_count);
12736
12737 if (ret < 0 || ret >= buf.size ())
12738 error ("%s", err_msg);
12739
12740 /* Fast tracepoints are mostly handled by the target, but we can
12741 tell the target how big of an instruction block should be moved
12742 around. */
12743 if (b->type == bp_fast_tracepoint)
12744 {
12745 /* Only test for support at download time; we may not know
12746 target capabilities at definition time. */
12747 if (remote_supports_fast_tracepoints ())
12748 {
12749 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12750 NULL))
12751 {
12752 size_left = buf.size () - strlen (buf.data ());
12753 ret = snprintf (buf.data () + strlen (buf.data ()),
12754 size_left, ":F%x",
12755 gdb_insn_length (loc->gdbarch, tpaddr));
12756
12757 if (ret < 0 || ret >= size_left)
12758 error ("%s", err_msg);
12759 }
12760 else
12761 /* If it passed validation at definition but fails now,
12762 something is very wrong. */
12763 internal_error (__FILE__, __LINE__,
12764 _("Fast tracepoint not "
12765 "valid during download"));
12766 }
12767 else
12768 /* Fast tracepoints are functionally identical to regular
12769 tracepoints, so don't take lack of support as a reason to
12770 give up on the trace run. */
12771 warning (_("Target does not support fast tracepoints, "
12772 "downloading %d as regular tracepoint"), b->number);
12773 }
12774 else if (b->type == bp_static_tracepoint)
12775 {
12776 /* Only test for support at download time; we may not know
12777 target capabilities at definition time. */
12778 if (remote_supports_static_tracepoints ())
12779 {
12780 struct static_tracepoint_marker marker;
12781
12782 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12783 {
12784 size_left = buf.size () - strlen (buf.data ());
12785 ret = snprintf (buf.data () + strlen (buf.data ()),
12786 size_left, ":S");
12787
12788 if (ret < 0 || ret >= size_left)
12789 error ("%s", err_msg);
12790 }
12791 else
12792 error (_("Static tracepoint not valid during download"));
12793 }
12794 else
12795 /* Fast tracepoints are functionally identical to regular
12796 tracepoints, so don't take lack of support as a reason
12797 to give up on the trace run. */
12798 error (_("Target does not support static tracepoints"));
12799 }
12800 /* If the tracepoint has a conditional, make it into an agent
12801 expression and append to the definition. */
12802 if (loc->cond)
12803 {
12804 /* Only test support at download time, we may not know target
12805 capabilities at definition time. */
12806 if (remote_supports_cond_tracepoints ())
12807 {
12808 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12809 loc->cond.get ());
12810
12811 size_left = buf.size () - strlen (buf.data ());
12812
12813 ret = snprintf (buf.data () + strlen (buf.data ()),
12814 size_left, ":X%x,", aexpr->len);
12815
12816 if (ret < 0 || ret >= size_left)
12817 error ("%s", err_msg);
12818
12819 size_left = buf.size () - strlen (buf.data ());
12820
12821 /* Two bytes to encode each aexpr byte, plus the terminating
12822 null byte. */
12823 if (aexpr->len * 2 + 1 > size_left)
12824 error ("%s", err_msg);
12825
12826 pkt = buf.data () + strlen (buf.data ());
12827
12828 for (int ndx = 0; ndx < aexpr->len; ++ndx)
12829 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12830 *pkt = '\0';
12831 }
12832 else
12833 warning (_("Target does not support conditional tracepoints, "
12834 "ignoring tp %d cond"), b->number);
12835 }
12836
12837 if (b->commands || *default_collect)
12838 {
12839 size_left = buf.size () - strlen (buf.data ());
12840
12841 ret = snprintf (buf.data () + strlen (buf.data ()),
12842 size_left, "-");
12843
12844 if (ret < 0 || ret >= size_left)
12845 error ("%s", err_msg);
12846 }
12847
12848 putpkt (buf.data ());
12849 remote_get_noisy_reply ();
12850 if (strcmp (rs->buf.data (), "OK"))
12851 error (_("Target does not support tracepoints."));
12852
12853 /* do_single_steps (t); */
12854 for (auto action_it = tdp_actions.begin ();
12855 action_it != tdp_actions.end (); action_it++)
12856 {
12857 QUIT; /* Allow user to bail out with ^C. */
12858
12859 bool has_more = ((action_it + 1) != tdp_actions.end ()
12860 || !stepping_actions.empty ());
12861
12862 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12863 b->number, addrbuf, /* address */
12864 action_it->c_str (),
12865 has_more ? '-' : 0);
12866
12867 if (ret < 0 || ret >= buf.size ())
12868 error ("%s", err_msg);
12869
12870 putpkt (buf.data ());
12871 remote_get_noisy_reply ();
12872 if (strcmp (rs->buf.data (), "OK"))
12873 error (_("Error on target while setting tracepoints."));
12874 }
12875
12876 for (auto action_it = stepping_actions.begin ();
12877 action_it != stepping_actions.end (); action_it++)
12878 {
12879 QUIT; /* Allow user to bail out with ^C. */
12880
12881 bool is_first = action_it == stepping_actions.begin ();
12882 bool has_more = (action_it + 1) != stepping_actions.end ();
12883
12884 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12885 b->number, addrbuf, /* address */
12886 is_first ? "S" : "",
12887 action_it->c_str (),
12888 has_more ? "-" : "");
12889
12890 if (ret < 0 || ret >= buf.size ())
12891 error ("%s", err_msg);
12892
12893 putpkt (buf.data ());
12894 remote_get_noisy_reply ();
12895 if (strcmp (rs->buf.data (), "OK"))
12896 error (_("Error on target while setting tracepoints."));
12897 }
12898
12899 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
12900 {
12901 if (b->location != NULL)
12902 {
12903 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12904
12905 if (ret < 0 || ret >= buf.size ())
12906 error ("%s", err_msg);
12907
12908 encode_source_string (b->number, loc->address, "at",
12909 event_location_to_string (b->location.get ()),
12910 buf.data () + strlen (buf.data ()),
12911 buf.size () - strlen (buf.data ()));
12912 putpkt (buf.data ());
12913 remote_get_noisy_reply ();
12914 if (strcmp (rs->buf.data (), "OK"))
12915 warning (_("Target does not support source download."));
12916 }
12917 if (b->cond_string)
12918 {
12919 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12920
12921 if (ret < 0 || ret >= buf.size ())
12922 error ("%s", err_msg);
12923
12924 encode_source_string (b->number, loc->address,
12925 "cond", b->cond_string,
12926 buf.data () + strlen (buf.data ()),
12927 buf.size () - strlen (buf.data ()));
12928 putpkt (buf.data ());
12929 remote_get_noisy_reply ();
12930 if (strcmp (rs->buf.data (), "OK"))
12931 warning (_("Target does not support source download."));
12932 }
12933 remote_download_command_source (b->number, loc->address,
12934 breakpoint_commands (b));
12935 }
12936 }
12937
12938 bool
12939 remote_target::can_download_tracepoint ()
12940 {
12941 struct remote_state *rs = get_remote_state ();
12942 struct trace_status *ts;
12943 int status;
12944
12945 /* Don't try to install tracepoints until we've relocated our
12946 symbols, and fetched and merged the target's tracepoint list with
12947 ours. */
12948 if (rs->starting_up)
12949 return false;
12950
12951 ts = current_trace_status ();
12952 status = get_trace_status (ts);
12953
12954 if (status == -1 || !ts->running_known || !ts->running)
12955 return false;
12956
12957 /* If we are in a tracing experiment, but remote stub doesn't support
12958 installing tracepoint in trace, we have to return. */
12959 if (!remote_supports_install_in_trace ())
12960 return false;
12961
12962 return true;
12963 }
12964
12965
12966 void
12967 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
12968 {
12969 struct remote_state *rs = get_remote_state ();
12970 char *p;
12971
12972 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
12973 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12974 tsv.builtin);
12975 p = rs->buf.data () + strlen (rs->buf.data ());
12976 if ((p - rs->buf.data ()) + tsv.name.length () * 2
12977 >= get_remote_packet_size ())
12978 error (_("Trace state variable name too long for tsv definition packet"));
12979 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
12980 *p++ = '\0';
12981 putpkt (rs->buf);
12982 remote_get_noisy_reply ();
12983 if (rs->buf[0] == '\0')
12984 error (_("Target does not support this command."));
12985 if (strcmp (rs->buf.data (), "OK") != 0)
12986 error (_("Error on target while downloading trace state variable."));
12987 }
12988
12989 void
12990 remote_target::enable_tracepoint (struct bp_location *location)
12991 {
12992 struct remote_state *rs = get_remote_state ();
12993 char addr_buf[40];
12994
12995 sprintf_vma (addr_buf, location->address);
12996 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
12997 location->owner->number, addr_buf);
12998 putpkt (rs->buf);
12999 remote_get_noisy_reply ();
13000 if (rs->buf[0] == '\0')
13001 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13002 if (strcmp (rs->buf.data (), "OK") != 0)
13003 error (_("Error on target while enabling tracepoint."));
13004 }
13005
13006 void
13007 remote_target::disable_tracepoint (struct bp_location *location)
13008 {
13009 struct remote_state *rs = get_remote_state ();
13010 char addr_buf[40];
13011
13012 sprintf_vma (addr_buf, location->address);
13013 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13014 location->owner->number, addr_buf);
13015 putpkt (rs->buf);
13016 remote_get_noisy_reply ();
13017 if (rs->buf[0] == '\0')
13018 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13019 if (strcmp (rs->buf.data (), "OK") != 0)
13020 error (_("Error on target while disabling tracepoint."));
13021 }
13022
13023 void
13024 remote_target::trace_set_readonly_regions ()
13025 {
13026 asection *s;
13027 bfd_size_type size;
13028 bfd_vma vma;
13029 int anysecs = 0;
13030 int offset = 0;
13031
13032 if (!exec_bfd)
13033 return; /* No information to give. */
13034
13035 struct remote_state *rs = get_remote_state ();
13036
13037 strcpy (rs->buf.data (), "QTro");
13038 offset = strlen (rs->buf.data ());
13039 for (s = exec_bfd->sections; s; s = s->next)
13040 {
13041 char tmp1[40], tmp2[40];
13042 int sec_length;
13043
13044 if ((s->flags & SEC_LOAD) == 0 ||
13045 /* (s->flags & SEC_CODE) == 0 || */
13046 (s->flags & SEC_READONLY) == 0)
13047 continue;
13048
13049 anysecs = 1;
13050 vma = bfd_section_vma (s);
13051 size = bfd_section_size (s);
13052 sprintf_vma (tmp1, vma);
13053 sprintf_vma (tmp2, vma + size);
13054 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13055 if (offset + sec_length + 1 > rs->buf.size ())
13056 {
13057 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13058 warning (_("\
13059 Too many sections for read-only sections definition packet."));
13060 break;
13061 }
13062 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13063 tmp1, tmp2);
13064 offset += sec_length;
13065 }
13066 if (anysecs)
13067 {
13068 putpkt (rs->buf);
13069 getpkt (&rs->buf, 0);
13070 }
13071 }
13072
13073 void
13074 remote_target::trace_start ()
13075 {
13076 struct remote_state *rs = get_remote_state ();
13077
13078 putpkt ("QTStart");
13079 remote_get_noisy_reply ();
13080 if (rs->buf[0] == '\0')
13081 error (_("Target does not support this command."));
13082 if (strcmp (rs->buf.data (), "OK") != 0)
13083 error (_("Bogus reply from target: %s"), rs->buf.data ());
13084 }
13085
13086 int
13087 remote_target::get_trace_status (struct trace_status *ts)
13088 {
13089 /* Initialize it just to avoid a GCC false warning. */
13090 char *p = NULL;
13091 enum packet_result result;
13092 struct remote_state *rs = get_remote_state ();
13093
13094 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13095 return -1;
13096
13097 /* FIXME we need to get register block size some other way. */
13098 trace_regblock_size
13099 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13100
13101 putpkt ("qTStatus");
13102
13103 try
13104 {
13105 p = remote_get_noisy_reply ();
13106 }
13107 catch (const gdb_exception_error &ex)
13108 {
13109 if (ex.error != TARGET_CLOSE_ERROR)
13110 {
13111 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13112 return -1;
13113 }
13114 throw;
13115 }
13116
13117 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13118
13119 /* If the remote target doesn't do tracing, flag it. */
13120 if (result == PACKET_UNKNOWN)
13121 return -1;
13122
13123 /* We're working with a live target. */
13124 ts->filename = NULL;
13125
13126 if (*p++ != 'T')
13127 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13128
13129 /* Function 'parse_trace_status' sets default value of each field of
13130 'ts' at first, so we don't have to do it here. */
13131 parse_trace_status (p, ts);
13132
13133 return ts->running;
13134 }
13135
13136 void
13137 remote_target::get_tracepoint_status (struct breakpoint *bp,
13138 struct uploaded_tp *utp)
13139 {
13140 struct remote_state *rs = get_remote_state ();
13141 char *reply;
13142 struct bp_location *loc;
13143 struct tracepoint *tp = (struct tracepoint *) bp;
13144 size_t size = get_remote_packet_size ();
13145
13146 if (tp)
13147 {
13148 tp->hit_count = 0;
13149 tp->traceframe_usage = 0;
13150 for (loc = tp->loc; loc; loc = loc->next)
13151 {
13152 /* If the tracepoint was never downloaded, don't go asking for
13153 any status. */
13154 if (tp->number_on_target == 0)
13155 continue;
13156 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13157 phex_nz (loc->address, 0));
13158 putpkt (rs->buf);
13159 reply = remote_get_noisy_reply ();
13160 if (reply && *reply)
13161 {
13162 if (*reply == 'V')
13163 parse_tracepoint_status (reply + 1, bp, utp);
13164 }
13165 }
13166 }
13167 else if (utp)
13168 {
13169 utp->hit_count = 0;
13170 utp->traceframe_usage = 0;
13171 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13172 phex_nz (utp->addr, 0));
13173 putpkt (rs->buf);
13174 reply = remote_get_noisy_reply ();
13175 if (reply && *reply)
13176 {
13177 if (*reply == 'V')
13178 parse_tracepoint_status (reply + 1, bp, utp);
13179 }
13180 }
13181 }
13182
13183 void
13184 remote_target::trace_stop ()
13185 {
13186 struct remote_state *rs = get_remote_state ();
13187
13188 putpkt ("QTStop");
13189 remote_get_noisy_reply ();
13190 if (rs->buf[0] == '\0')
13191 error (_("Target does not support this command."));
13192 if (strcmp (rs->buf.data (), "OK") != 0)
13193 error (_("Bogus reply from target: %s"), rs->buf.data ());
13194 }
13195
13196 int
13197 remote_target::trace_find (enum trace_find_type type, int num,
13198 CORE_ADDR addr1, CORE_ADDR addr2,
13199 int *tpp)
13200 {
13201 struct remote_state *rs = get_remote_state ();
13202 char *endbuf = rs->buf.data () + get_remote_packet_size ();
13203 char *p, *reply;
13204 int target_frameno = -1, target_tracept = -1;
13205
13206 /* Lookups other than by absolute frame number depend on the current
13207 trace selected, so make sure it is correct on the remote end
13208 first. */
13209 if (type != tfind_number)
13210 set_remote_traceframe ();
13211
13212 p = rs->buf.data ();
13213 strcpy (p, "QTFrame:");
13214 p = strchr (p, '\0');
13215 switch (type)
13216 {
13217 case tfind_number:
13218 xsnprintf (p, endbuf - p, "%x", num);
13219 break;
13220 case tfind_pc:
13221 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13222 break;
13223 case tfind_tp:
13224 xsnprintf (p, endbuf - p, "tdp:%x", num);
13225 break;
13226 case tfind_range:
13227 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13228 phex_nz (addr2, 0));
13229 break;
13230 case tfind_outside:
13231 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13232 phex_nz (addr2, 0));
13233 break;
13234 default:
13235 error (_("Unknown trace find type %d"), type);
13236 }
13237
13238 putpkt (rs->buf);
13239 reply = remote_get_noisy_reply ();
13240 if (*reply == '\0')
13241 error (_("Target does not support this command."));
13242
13243 while (reply && *reply)
13244 switch (*reply)
13245 {
13246 case 'F':
13247 p = ++reply;
13248 target_frameno = (int) strtol (p, &reply, 16);
13249 if (reply == p)
13250 error (_("Unable to parse trace frame number"));
13251 /* Don't update our remote traceframe number cache on failure
13252 to select a remote traceframe. */
13253 if (target_frameno == -1)
13254 return -1;
13255 break;
13256 case 'T':
13257 p = ++reply;
13258 target_tracept = (int) strtol (p, &reply, 16);
13259 if (reply == p)
13260 error (_("Unable to parse tracepoint number"));
13261 break;
13262 case 'O': /* "OK"? */
13263 if (reply[1] == 'K' && reply[2] == '\0')
13264 reply += 2;
13265 else
13266 error (_("Bogus reply from target: %s"), reply);
13267 break;
13268 default:
13269 error (_("Bogus reply from target: %s"), reply);
13270 }
13271 if (tpp)
13272 *tpp = target_tracept;
13273
13274 rs->remote_traceframe_number = target_frameno;
13275 return target_frameno;
13276 }
13277
13278 bool
13279 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13280 {
13281 struct remote_state *rs = get_remote_state ();
13282 char *reply;
13283 ULONGEST uval;
13284
13285 set_remote_traceframe ();
13286
13287 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13288 putpkt (rs->buf);
13289 reply = remote_get_noisy_reply ();
13290 if (reply && *reply)
13291 {
13292 if (*reply == 'V')
13293 {
13294 unpack_varlen_hex (reply + 1, &uval);
13295 *val = (LONGEST) uval;
13296 return true;
13297 }
13298 }
13299 return false;
13300 }
13301
13302 int
13303 remote_target::save_trace_data (const char *filename)
13304 {
13305 struct remote_state *rs = get_remote_state ();
13306 char *p, *reply;
13307
13308 p = rs->buf.data ();
13309 strcpy (p, "QTSave:");
13310 p += strlen (p);
13311 if ((p - rs->buf.data ()) + strlen (filename) * 2
13312 >= get_remote_packet_size ())
13313 error (_("Remote file name too long for trace save packet"));
13314 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13315 *p++ = '\0';
13316 putpkt (rs->buf);
13317 reply = remote_get_noisy_reply ();
13318 if (*reply == '\0')
13319 error (_("Target does not support this command."));
13320 if (strcmp (reply, "OK") != 0)
13321 error (_("Bogus reply from target: %s"), reply);
13322 return 0;
13323 }
13324
13325 /* This is basically a memory transfer, but needs to be its own packet
13326 because we don't know how the target actually organizes its trace
13327 memory, plus we want to be able to ask for as much as possible, but
13328 not be unhappy if we don't get as much as we ask for. */
13329
13330 LONGEST
13331 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13332 {
13333 struct remote_state *rs = get_remote_state ();
13334 char *reply;
13335 char *p;
13336 int rslt;
13337
13338 p = rs->buf.data ();
13339 strcpy (p, "qTBuffer:");
13340 p += strlen (p);
13341 p += hexnumstr (p, offset);
13342 *p++ = ',';
13343 p += hexnumstr (p, len);
13344 *p++ = '\0';
13345
13346 putpkt (rs->buf);
13347 reply = remote_get_noisy_reply ();
13348 if (reply && *reply)
13349 {
13350 /* 'l' by itself means we're at the end of the buffer and
13351 there is nothing more to get. */
13352 if (*reply == 'l')
13353 return 0;
13354
13355 /* Convert the reply into binary. Limit the number of bytes to
13356 convert according to our passed-in buffer size, rather than
13357 what was returned in the packet; if the target is
13358 unexpectedly generous and gives us a bigger reply than we
13359 asked for, we don't want to crash. */
13360 rslt = hex2bin (reply, buf, len);
13361 return rslt;
13362 }
13363
13364 /* Something went wrong, flag as an error. */
13365 return -1;
13366 }
13367
13368 void
13369 remote_target::set_disconnected_tracing (int val)
13370 {
13371 struct remote_state *rs = get_remote_state ();
13372
13373 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13374 {
13375 char *reply;
13376
13377 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13378 "QTDisconnected:%x", val);
13379 putpkt (rs->buf);
13380 reply = remote_get_noisy_reply ();
13381 if (*reply == '\0')
13382 error (_("Target does not support this command."));
13383 if (strcmp (reply, "OK") != 0)
13384 error (_("Bogus reply from target: %s"), reply);
13385 }
13386 else if (val)
13387 warning (_("Target does not support disconnected tracing."));
13388 }
13389
13390 int
13391 remote_target::core_of_thread (ptid_t ptid)
13392 {
13393 struct thread_info *info = find_thread_ptid (ptid);
13394
13395 if (info != NULL && info->priv != NULL)
13396 return get_remote_thread_info (info)->core;
13397
13398 return -1;
13399 }
13400
13401 void
13402 remote_target::set_circular_trace_buffer (int val)
13403 {
13404 struct remote_state *rs = get_remote_state ();
13405 char *reply;
13406
13407 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13408 "QTBuffer:circular:%x", val);
13409 putpkt (rs->buf);
13410 reply = remote_get_noisy_reply ();
13411 if (*reply == '\0')
13412 error (_("Target does not support this command."));
13413 if (strcmp (reply, "OK") != 0)
13414 error (_("Bogus reply from target: %s"), reply);
13415 }
13416
13417 traceframe_info_up
13418 remote_target::traceframe_info ()
13419 {
13420 gdb::optional<gdb::char_vector> text
13421 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
13422 NULL);
13423 if (text)
13424 return parse_traceframe_info (text->data ());
13425
13426 return NULL;
13427 }
13428
13429 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13430 instruction on which a fast tracepoint may be placed. Returns -1
13431 if the packet is not supported, and 0 if the minimum instruction
13432 length is unknown. */
13433
13434 int
13435 remote_target::get_min_fast_tracepoint_insn_len ()
13436 {
13437 struct remote_state *rs = get_remote_state ();
13438 char *reply;
13439
13440 /* If we're not debugging a process yet, the IPA can't be
13441 loaded. */
13442 if (!target_has_execution)
13443 return 0;
13444
13445 /* Make sure the remote is pointing at the right process. */
13446 set_general_process ();
13447
13448 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13449 putpkt (rs->buf);
13450 reply = remote_get_noisy_reply ();
13451 if (*reply == '\0')
13452 return -1;
13453 else
13454 {
13455 ULONGEST min_insn_len;
13456
13457 unpack_varlen_hex (reply, &min_insn_len);
13458
13459 return (int) min_insn_len;
13460 }
13461 }
13462
13463 void
13464 remote_target::set_trace_buffer_size (LONGEST val)
13465 {
13466 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13467 {
13468 struct remote_state *rs = get_remote_state ();
13469 char *buf = rs->buf.data ();
13470 char *endbuf = buf + get_remote_packet_size ();
13471 enum packet_result result;
13472
13473 gdb_assert (val >= 0 || val == -1);
13474 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13475 /* Send -1 as literal "-1" to avoid host size dependency. */
13476 if (val < 0)
13477 {
13478 *buf++ = '-';
13479 buf += hexnumstr (buf, (ULONGEST) -val);
13480 }
13481 else
13482 buf += hexnumstr (buf, (ULONGEST) val);
13483
13484 putpkt (rs->buf);
13485 remote_get_noisy_reply ();
13486 result = packet_ok (rs->buf,
13487 &remote_protocol_packets[PACKET_QTBuffer_size]);
13488
13489 if (result != PACKET_OK)
13490 warning (_("Bogus reply from target: %s"), rs->buf.data ());
13491 }
13492 }
13493
13494 bool
13495 remote_target::set_trace_notes (const char *user, const char *notes,
13496 const char *stop_notes)
13497 {
13498 struct remote_state *rs = get_remote_state ();
13499 char *reply;
13500 char *buf = rs->buf.data ();
13501 char *endbuf = buf + get_remote_packet_size ();
13502 int nbytes;
13503
13504 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13505 if (user)
13506 {
13507 buf += xsnprintf (buf, endbuf - buf, "user:");
13508 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13509 buf += 2 * nbytes;
13510 *buf++ = ';';
13511 }
13512 if (notes)
13513 {
13514 buf += xsnprintf (buf, endbuf - buf, "notes:");
13515 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13516 buf += 2 * nbytes;
13517 *buf++ = ';';
13518 }
13519 if (stop_notes)
13520 {
13521 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13522 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13523 buf += 2 * nbytes;
13524 *buf++ = ';';
13525 }
13526 /* Ensure the buffer is terminated. */
13527 *buf = '\0';
13528
13529 putpkt (rs->buf);
13530 reply = remote_get_noisy_reply ();
13531 if (*reply == '\0')
13532 return false;
13533
13534 if (strcmp (reply, "OK") != 0)
13535 error (_("Bogus reply from target: %s"), reply);
13536
13537 return true;
13538 }
13539
13540 bool
13541 remote_target::use_agent (bool use)
13542 {
13543 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13544 {
13545 struct remote_state *rs = get_remote_state ();
13546
13547 /* If the stub supports QAgent. */
13548 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13549 putpkt (rs->buf);
13550 getpkt (&rs->buf, 0);
13551
13552 if (strcmp (rs->buf.data (), "OK") == 0)
13553 {
13554 ::use_agent = use;
13555 return true;
13556 }
13557 }
13558
13559 return false;
13560 }
13561
13562 bool
13563 remote_target::can_use_agent ()
13564 {
13565 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13566 }
13567
13568 struct btrace_target_info
13569 {
13570 /* The ptid of the traced thread. */
13571 ptid_t ptid;
13572
13573 /* The obtained branch trace configuration. */
13574 struct btrace_config conf;
13575 };
13576
13577 /* Reset our idea of our target's btrace configuration. */
13578
13579 static void
13580 remote_btrace_reset (remote_state *rs)
13581 {
13582 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13583 }
13584
13585 /* Synchronize the configuration with the target. */
13586
13587 void
13588 remote_target::btrace_sync_conf (const btrace_config *conf)
13589 {
13590 struct packet_config *packet;
13591 struct remote_state *rs;
13592 char *buf, *pos, *endbuf;
13593
13594 rs = get_remote_state ();
13595 buf = rs->buf.data ();
13596 endbuf = buf + get_remote_packet_size ();
13597
13598 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13599 if (packet_config_support (packet) == PACKET_ENABLE
13600 && conf->bts.size != rs->btrace_config.bts.size)
13601 {
13602 pos = buf;
13603 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13604 conf->bts.size);
13605
13606 putpkt (buf);
13607 getpkt (&rs->buf, 0);
13608
13609 if (packet_ok (buf, packet) == PACKET_ERROR)
13610 {
13611 if (buf[0] == 'E' && buf[1] == '.')
13612 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13613 else
13614 error (_("Failed to configure the BTS buffer size."));
13615 }
13616
13617 rs->btrace_config.bts.size = conf->bts.size;
13618 }
13619
13620 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13621 if (packet_config_support (packet) == PACKET_ENABLE
13622 && conf->pt.size != rs->btrace_config.pt.size)
13623 {
13624 pos = buf;
13625 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13626 conf->pt.size);
13627
13628 putpkt (buf);
13629 getpkt (&rs->buf, 0);
13630
13631 if (packet_ok (buf, packet) == PACKET_ERROR)
13632 {
13633 if (buf[0] == 'E' && buf[1] == '.')
13634 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13635 else
13636 error (_("Failed to configure the trace buffer size."));
13637 }
13638
13639 rs->btrace_config.pt.size = conf->pt.size;
13640 }
13641 }
13642
13643 /* Read the current thread's btrace configuration from the target and
13644 store it into CONF. */
13645
13646 static void
13647 btrace_read_config (struct btrace_config *conf)
13648 {
13649 gdb::optional<gdb::char_vector> xml
13650 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
13651 if (xml)
13652 parse_xml_btrace_conf (conf, xml->data ());
13653 }
13654
13655 /* Maybe reopen target btrace. */
13656
13657 void
13658 remote_target::remote_btrace_maybe_reopen ()
13659 {
13660 struct remote_state *rs = get_remote_state ();
13661 int btrace_target_pushed = 0;
13662 #if !defined (HAVE_LIBIPT)
13663 int warned = 0;
13664 #endif
13665
13666 /* Don't bother walking the entirety of the remote thread list when
13667 we know the feature isn't supported by the remote. */
13668 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13669 return;
13670
13671 scoped_restore_current_thread restore_thread;
13672
13673 for (thread_info *tp : all_non_exited_threads ())
13674 {
13675 set_general_thread (tp->ptid);
13676
13677 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13678 btrace_read_config (&rs->btrace_config);
13679
13680 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13681 continue;
13682
13683 #if !defined (HAVE_LIBIPT)
13684 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13685 {
13686 if (!warned)
13687 {
13688 warned = 1;
13689 warning (_("Target is recording using Intel Processor Trace "
13690 "but support was disabled at compile time."));
13691 }
13692
13693 continue;
13694 }
13695 #endif /* !defined (HAVE_LIBIPT) */
13696
13697 /* Push target, once, but before anything else happens. This way our
13698 changes to the threads will be cleaned up by unpushing the target
13699 in case btrace_read_config () throws. */
13700 if (!btrace_target_pushed)
13701 {
13702 btrace_target_pushed = 1;
13703 record_btrace_push_target ();
13704 printf_filtered (_("Target is recording using %s.\n"),
13705 btrace_format_string (rs->btrace_config.format));
13706 }
13707
13708 tp->btrace.target = XCNEW (struct btrace_target_info);
13709 tp->btrace.target->ptid = tp->ptid;
13710 tp->btrace.target->conf = rs->btrace_config;
13711 }
13712 }
13713
13714 /* Enable branch tracing. */
13715
13716 struct btrace_target_info *
13717 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
13718 {
13719 struct btrace_target_info *tinfo = NULL;
13720 struct packet_config *packet = NULL;
13721 struct remote_state *rs = get_remote_state ();
13722 char *buf = rs->buf.data ();
13723 char *endbuf = buf + get_remote_packet_size ();
13724
13725 switch (conf->format)
13726 {
13727 case BTRACE_FORMAT_BTS:
13728 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13729 break;
13730
13731 case BTRACE_FORMAT_PT:
13732 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13733 break;
13734 }
13735
13736 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
13737 error (_("Target does not support branch tracing."));
13738
13739 btrace_sync_conf (conf);
13740
13741 set_general_thread (ptid);
13742
13743 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13744 putpkt (rs->buf);
13745 getpkt (&rs->buf, 0);
13746
13747 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13748 {
13749 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13750 error (_("Could not enable branch tracing for %s: %s"),
13751 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
13752 else
13753 error (_("Could not enable branch tracing for %s."),
13754 target_pid_to_str (ptid).c_str ());
13755 }
13756
13757 tinfo = XCNEW (struct btrace_target_info);
13758 tinfo->ptid = ptid;
13759
13760 /* If we fail to read the configuration, we lose some information, but the
13761 tracing itself is not impacted. */
13762 try
13763 {
13764 btrace_read_config (&tinfo->conf);
13765 }
13766 catch (const gdb_exception_error &err)
13767 {
13768 if (err.message != NULL)
13769 warning ("%s", err.what ());
13770 }
13771
13772 return tinfo;
13773 }
13774
13775 /* Disable branch tracing. */
13776
13777 void
13778 remote_target::disable_btrace (struct btrace_target_info *tinfo)
13779 {
13780 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13781 struct remote_state *rs = get_remote_state ();
13782 char *buf = rs->buf.data ();
13783 char *endbuf = buf + get_remote_packet_size ();
13784
13785 if (packet_config_support (packet) != PACKET_ENABLE)
13786 error (_("Target does not support branch tracing."));
13787
13788 set_general_thread (tinfo->ptid);
13789
13790 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13791 putpkt (rs->buf);
13792 getpkt (&rs->buf, 0);
13793
13794 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13795 {
13796 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13797 error (_("Could not disable branch tracing for %s: %s"),
13798 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
13799 else
13800 error (_("Could not disable branch tracing for %s."),
13801 target_pid_to_str (tinfo->ptid).c_str ());
13802 }
13803
13804 xfree (tinfo);
13805 }
13806
13807 /* Teardown branch tracing. */
13808
13809 void
13810 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
13811 {
13812 /* We must not talk to the target during teardown. */
13813 xfree (tinfo);
13814 }
13815
13816 /* Read the branch trace. */
13817
13818 enum btrace_error
13819 remote_target::read_btrace (struct btrace_data *btrace,
13820 struct btrace_target_info *tinfo,
13821 enum btrace_read_type type)
13822 {
13823 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
13824 const char *annex;
13825
13826 if (packet_config_support (packet) != PACKET_ENABLE)
13827 error (_("Target does not support branch tracing."));
13828
13829 #if !defined(HAVE_LIBEXPAT)
13830 error (_("Cannot process branch tracing result. XML parsing not supported."));
13831 #endif
13832
13833 switch (type)
13834 {
13835 case BTRACE_READ_ALL:
13836 annex = "all";
13837 break;
13838 case BTRACE_READ_NEW:
13839 annex = "new";
13840 break;
13841 case BTRACE_READ_DELTA:
13842 annex = "delta";
13843 break;
13844 default:
13845 internal_error (__FILE__, __LINE__,
13846 _("Bad branch tracing read type: %u."),
13847 (unsigned int) type);
13848 }
13849
13850 gdb::optional<gdb::char_vector> xml
13851 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
13852 if (!xml)
13853 return BTRACE_ERR_UNKNOWN;
13854
13855 parse_xml_btrace (btrace, xml->data ());
13856
13857 return BTRACE_ERR_NONE;
13858 }
13859
13860 const struct btrace_config *
13861 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
13862 {
13863 return &tinfo->conf;
13864 }
13865
13866 bool
13867 remote_target::augmented_libraries_svr4_read ()
13868 {
13869 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13870 == PACKET_ENABLE);
13871 }
13872
13873 /* Implementation of to_load. */
13874
13875 void
13876 remote_target::load (const char *name, int from_tty)
13877 {
13878 generic_load (name, from_tty);
13879 }
13880
13881 /* Accepts an integer PID; returns a string representing a file that
13882 can be opened on the remote side to get the symbols for the child
13883 process. Returns NULL if the operation is not supported. */
13884
13885 char *
13886 remote_target::pid_to_exec_file (int pid)
13887 {
13888 static gdb::optional<gdb::char_vector> filename;
13889 struct inferior *inf;
13890 char *annex = NULL;
13891
13892 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13893 return NULL;
13894
13895 inf = find_inferior_pid (pid);
13896 if (inf == NULL)
13897 internal_error (__FILE__, __LINE__,
13898 _("not currently attached to process %d"), pid);
13899
13900 if (!inf->fake_pid_p)
13901 {
13902 const int annex_size = 9;
13903
13904 annex = (char *) alloca (annex_size);
13905 xsnprintf (annex, annex_size, "%x", pid);
13906 }
13907
13908 filename = target_read_stralloc (current_top_target (),
13909 TARGET_OBJECT_EXEC_FILE, annex);
13910
13911 return filename ? filename->data () : nullptr;
13912 }
13913
13914 /* Implement the to_can_do_single_step target_ops method. */
13915
13916 int
13917 remote_target::can_do_single_step ()
13918 {
13919 /* We can only tell whether target supports single step or not by
13920 supported s and S vCont actions if the stub supports vContSupported
13921 feature. If the stub doesn't support vContSupported feature,
13922 we have conservatively to think target doesn't supports single
13923 step. */
13924 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13925 {
13926 struct remote_state *rs = get_remote_state ();
13927
13928 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13929 remote_vcont_probe ();
13930
13931 return rs->supports_vCont.s && rs->supports_vCont.S;
13932 }
13933 else
13934 return 0;
13935 }
13936
13937 /* Implementation of the to_execution_direction method for the remote
13938 target. */
13939
13940 enum exec_direction_kind
13941 remote_target::execution_direction ()
13942 {
13943 struct remote_state *rs = get_remote_state ();
13944
13945 return rs->last_resume_exec_dir;
13946 }
13947
13948 /* Return pointer to the thread_info struct which corresponds to
13949 THREAD_HANDLE (having length HANDLE_LEN). */
13950
13951 thread_info *
13952 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13953 int handle_len,
13954 inferior *inf)
13955 {
13956 for (thread_info *tp : all_non_exited_threads ())
13957 {
13958 remote_thread_info *priv = get_remote_thread_info (tp);
13959
13960 if (tp->inf == inf && priv != NULL)
13961 {
13962 if (handle_len != priv->thread_handle.size ())
13963 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
13964 handle_len, priv->thread_handle.size ());
13965 if (memcmp (thread_handle, priv->thread_handle.data (),
13966 handle_len) == 0)
13967 return tp;
13968 }
13969 }
13970
13971 return NULL;
13972 }
13973
13974 gdb::byte_vector
13975 remote_target::thread_info_to_thread_handle (struct thread_info *tp)
13976 {
13977 remote_thread_info *priv = get_remote_thread_info (tp);
13978 return priv->thread_handle;
13979 }
13980
13981 bool
13982 remote_target::can_async_p ()
13983 {
13984 struct remote_state *rs = get_remote_state ();
13985
13986 /* We don't go async if the user has explicitly prevented it with the
13987 "maint set target-async" command. */
13988 if (!target_async_permitted)
13989 return false;
13990
13991 /* We're async whenever the serial device is. */
13992 return serial_can_async_p (rs->remote_desc);
13993 }
13994
13995 bool
13996 remote_target::is_async_p ()
13997 {
13998 struct remote_state *rs = get_remote_state ();
13999
14000 if (!target_async_permitted)
14001 /* We only enable async when the user specifically asks for it. */
14002 return false;
14003
14004 /* We're async whenever the serial device is. */
14005 return serial_is_async_p (rs->remote_desc);
14006 }
14007
14008 /* Pass the SERIAL event on and up to the client. One day this code
14009 will be able to delay notifying the client of an event until the
14010 point where an entire packet has been received. */
14011
14012 static serial_event_ftype remote_async_serial_handler;
14013
14014 static void
14015 remote_async_serial_handler (struct serial *scb, void *context)
14016 {
14017 /* Don't propogate error information up to the client. Instead let
14018 the client find out about the error by querying the target. */
14019 inferior_event_handler (INF_REG_EVENT, NULL);
14020 }
14021
14022 static void
14023 remote_async_inferior_event_handler (gdb_client_data data)
14024 {
14025 inferior_event_handler (INF_REG_EVENT, data);
14026 }
14027
14028 void
14029 remote_target::async (int enable)
14030 {
14031 struct remote_state *rs = get_remote_state ();
14032
14033 if (enable)
14034 {
14035 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14036
14037 /* If there are pending events in the stop reply queue tell the
14038 event loop to process them. */
14039 if (!rs->stop_reply_queue.empty ())
14040 mark_async_event_handler (rs->remote_async_inferior_event_token);
14041 /* For simplicity, below we clear the pending events token
14042 without remembering whether it is marked, so here we always
14043 mark it. If there's actually no pending notification to
14044 process, this ends up being a no-op (other than a spurious
14045 event-loop wakeup). */
14046 if (target_is_non_stop_p ())
14047 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14048 }
14049 else
14050 {
14051 serial_async (rs->remote_desc, NULL, NULL);
14052 /* If the core is disabling async, it doesn't want to be
14053 disturbed with target events. Clear all async event sources
14054 too. */
14055 clear_async_event_handler (rs->remote_async_inferior_event_token);
14056 if (target_is_non_stop_p ())
14057 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14058 }
14059 }
14060
14061 /* Implementation of the to_thread_events method. */
14062
14063 void
14064 remote_target::thread_events (int enable)
14065 {
14066 struct remote_state *rs = get_remote_state ();
14067 size_t size = get_remote_packet_size ();
14068
14069 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14070 return;
14071
14072 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14073 putpkt (rs->buf);
14074 getpkt (&rs->buf, 0);
14075
14076 switch (packet_ok (rs->buf,
14077 &remote_protocol_packets[PACKET_QThreadEvents]))
14078 {
14079 case PACKET_OK:
14080 if (strcmp (rs->buf.data (), "OK") != 0)
14081 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14082 break;
14083 case PACKET_ERROR:
14084 warning (_("Remote failure reply: %s"), rs->buf.data ());
14085 break;
14086 case PACKET_UNKNOWN:
14087 break;
14088 }
14089 }
14090
14091 static void
14092 set_remote_cmd (const char *args, int from_tty)
14093 {
14094 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
14095 }
14096
14097 static void
14098 show_remote_cmd (const char *args, int from_tty)
14099 {
14100 /* We can't just use cmd_show_list here, because we want to skip
14101 the redundant "show remote Z-packet" and the legacy aliases. */
14102 struct cmd_list_element *list = remote_show_cmdlist;
14103 struct ui_out *uiout = current_uiout;
14104
14105 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14106 for (; list != NULL; list = list->next)
14107 if (strcmp (list->name, "Z-packet") == 0)
14108 continue;
14109 else if (list->type == not_set_cmd)
14110 /* Alias commands are exactly like the original, except they
14111 don't have the normal type. */
14112 continue;
14113 else
14114 {
14115 ui_out_emit_tuple option_emitter (uiout, "option");
14116
14117 uiout->field_string ("name", list->name);
14118 uiout->text (": ");
14119 if (list->type == show_cmd)
14120 do_show_command (NULL, from_tty, list);
14121 else
14122 cmd_func (list, NULL, from_tty);
14123 }
14124 }
14125
14126
14127 /* Function to be called whenever a new objfile (shlib) is detected. */
14128 static void
14129 remote_new_objfile (struct objfile *objfile)
14130 {
14131 remote_target *remote = get_current_remote_target ();
14132
14133 if (remote != NULL) /* Have a remote connection. */
14134 remote->remote_check_symbols ();
14135 }
14136
14137 /* Pull all the tracepoints defined on the target and create local
14138 data structures representing them. We don't want to create real
14139 tracepoints yet, we don't want to mess up the user's existing
14140 collection. */
14141
14142 int
14143 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14144 {
14145 struct remote_state *rs = get_remote_state ();
14146 char *p;
14147
14148 /* Ask for a first packet of tracepoint definition. */
14149 putpkt ("qTfP");
14150 getpkt (&rs->buf, 0);
14151 p = rs->buf.data ();
14152 while (*p && *p != 'l')
14153 {
14154 parse_tracepoint_definition (p, utpp);
14155 /* Ask for another packet of tracepoint definition. */
14156 putpkt ("qTsP");
14157 getpkt (&rs->buf, 0);
14158 p = rs->buf.data ();
14159 }
14160 return 0;
14161 }
14162
14163 int
14164 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14165 {
14166 struct remote_state *rs = get_remote_state ();
14167 char *p;
14168
14169 /* Ask for a first packet of variable definition. */
14170 putpkt ("qTfV");
14171 getpkt (&rs->buf, 0);
14172 p = rs->buf.data ();
14173 while (*p && *p != 'l')
14174 {
14175 parse_tsv_definition (p, utsvp);
14176 /* Ask for another packet of variable definition. */
14177 putpkt ("qTsV");
14178 getpkt (&rs->buf, 0);
14179 p = rs->buf.data ();
14180 }
14181 return 0;
14182 }
14183
14184 /* The "set/show range-stepping" show hook. */
14185
14186 static void
14187 show_range_stepping (struct ui_file *file, int from_tty,
14188 struct cmd_list_element *c,
14189 const char *value)
14190 {
14191 fprintf_filtered (file,
14192 _("Debugger's willingness to use range stepping "
14193 "is %s.\n"), value);
14194 }
14195
14196 /* Return true if the vCont;r action is supported by the remote
14197 stub. */
14198
14199 bool
14200 remote_target::vcont_r_supported ()
14201 {
14202 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14203 remote_vcont_probe ();
14204
14205 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14206 && get_remote_state ()->supports_vCont.r);
14207 }
14208
14209 /* The "set/show range-stepping" set hook. */
14210
14211 static void
14212 set_range_stepping (const char *ignore_args, int from_tty,
14213 struct cmd_list_element *c)
14214 {
14215 /* When enabling, check whether range stepping is actually supported
14216 by the target, and warn if not. */
14217 if (use_range_stepping)
14218 {
14219 remote_target *remote = get_current_remote_target ();
14220 if (remote == NULL
14221 || !remote->vcont_r_supported ())
14222 warning (_("Range stepping is not supported by the current target"));
14223 }
14224 }
14225
14226 void
14227 _initialize_remote (void)
14228 {
14229 struct cmd_list_element *cmd;
14230 const char *cmd_name;
14231
14232 /* architecture specific data */
14233 remote_g_packet_data_handle =
14234 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14235
14236 add_target (remote_target_info, remote_target::open);
14237 add_target (extended_remote_target_info, extended_remote_target::open);
14238
14239 /* Hook into new objfile notification. */
14240 gdb::observers::new_objfile.attach (remote_new_objfile);
14241
14242 #if 0
14243 init_remote_threadtests ();
14244 #endif
14245
14246 /* set/show remote ... */
14247
14248 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
14249 Remote protocol specific variables.\n\
14250 Configure various remote-protocol specific variables such as\n\
14251 the packets being used."),
14252 &remote_set_cmdlist, "set remote ",
14253 0 /* allow-unknown */, &setlist);
14254 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14255 Remote protocol specific variables.\n\
14256 Configure various remote-protocol specific variables such as\n\
14257 the packets being used."),
14258 &remote_show_cmdlist, "show remote ",
14259 0 /* allow-unknown */, &showlist);
14260
14261 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14262 Compare section data on target to the exec file.\n\
14263 Argument is a single section name (default: all loaded sections).\n\
14264 To compare only read-only loaded sections, specify the -r option."),
14265 &cmdlist);
14266
14267 add_cmd ("packet", class_maintenance, packet_command, _("\
14268 Send an arbitrary packet to a remote target.\n\
14269 maintenance packet TEXT\n\
14270 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14271 this command sends the string TEXT to the inferior, and displays the\n\
14272 response packet. GDB supplies the initial `$' character, and the\n\
14273 terminating `#' character and checksum."),
14274 &maintenancelist);
14275
14276 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14277 Set whether to send break if interrupted."), _("\
14278 Show whether to send break if interrupted."), _("\
14279 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14280 set_remotebreak, show_remotebreak,
14281 &setlist, &showlist);
14282 cmd_name = "remotebreak";
14283 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14284 deprecate_cmd (cmd, "set remote interrupt-sequence");
14285 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14286 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14287 deprecate_cmd (cmd, "show remote interrupt-sequence");
14288
14289 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14290 interrupt_sequence_modes, &interrupt_sequence_mode,
14291 _("\
14292 Set interrupt sequence to remote target."), _("\
14293 Show interrupt sequence to remote target."), _("\
14294 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14295 NULL, show_interrupt_sequence,
14296 &remote_set_cmdlist,
14297 &remote_show_cmdlist);
14298
14299 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14300 &interrupt_on_connect, _("\
14301 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14302 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14303 If set, interrupt sequence is sent to remote target."),
14304 NULL, NULL,
14305 &remote_set_cmdlist, &remote_show_cmdlist);
14306
14307 /* Install commands for configuring memory read/write packets. */
14308
14309 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14310 Set the maximum number of bytes per memory write packet (deprecated)."),
14311 &setlist);
14312 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14313 Show the maximum number of bytes per memory write packet (deprecated)."),
14314 &showlist);
14315 add_cmd ("memory-write-packet-size", no_class,
14316 set_memory_write_packet_size, _("\
14317 Set the maximum number of bytes per memory-write packet.\n\
14318 Specify the number of bytes in a packet or 0 (zero) for the\n\
14319 default packet size. The actual limit is further reduced\n\
14320 dependent on the target. Specify ``fixed'' to disable the\n\
14321 further restriction and ``limit'' to enable that restriction."),
14322 &remote_set_cmdlist);
14323 add_cmd ("memory-read-packet-size", no_class,
14324 set_memory_read_packet_size, _("\
14325 Set the maximum number of bytes per memory-read packet.\n\
14326 Specify the number of bytes in a packet or 0 (zero) for the\n\
14327 default packet size. The actual limit is further reduced\n\
14328 dependent on the target. Specify ``fixed'' to disable the\n\
14329 further restriction and ``limit'' to enable that restriction."),
14330 &remote_set_cmdlist);
14331 add_cmd ("memory-write-packet-size", no_class,
14332 show_memory_write_packet_size,
14333 _("Show the maximum number of bytes per memory-write packet."),
14334 &remote_show_cmdlist);
14335 add_cmd ("memory-read-packet-size", no_class,
14336 show_memory_read_packet_size,
14337 _("Show the maximum number of bytes per memory-read packet."),
14338 &remote_show_cmdlist);
14339
14340 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14341 &remote_hw_watchpoint_limit, _("\
14342 Set the maximum number of target hardware watchpoints."), _("\
14343 Show the maximum number of target hardware watchpoints."), _("\
14344 Specify \"unlimited\" for unlimited hardware watchpoints."),
14345 NULL, show_hardware_watchpoint_limit,
14346 &remote_set_cmdlist,
14347 &remote_show_cmdlist);
14348 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14349 no_class,
14350 &remote_hw_watchpoint_length_limit, _("\
14351 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14352 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14353 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14354 NULL, show_hardware_watchpoint_length_limit,
14355 &remote_set_cmdlist, &remote_show_cmdlist);
14356 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
14357 &remote_hw_breakpoint_limit, _("\
14358 Set the maximum number of target hardware breakpoints."), _("\
14359 Show the maximum number of target hardware breakpoints."), _("\
14360 Specify \"unlimited\" for unlimited hardware breakpoints."),
14361 NULL, show_hardware_breakpoint_limit,
14362 &remote_set_cmdlist, &remote_show_cmdlist);
14363
14364 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14365 &remote_address_size, _("\
14366 Set the maximum size of the address (in bits) in a memory packet."), _("\
14367 Show the maximum size of the address (in bits) in a memory packet."), NULL,
14368 NULL,
14369 NULL, /* FIXME: i18n: */
14370 &setlist, &showlist);
14371
14372 init_all_packet_configs ();
14373
14374 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
14375 "X", "binary-download", 1);
14376
14377 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
14378 "vCont", "verbose-resume", 0);
14379
14380 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14381 "QPassSignals", "pass-signals", 0);
14382
14383 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14384 "QCatchSyscalls", "catch-syscalls", 0);
14385
14386 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14387 "QProgramSignals", "program-signals", 0);
14388
14389 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14390 "QSetWorkingDir", "set-working-dir", 0);
14391
14392 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14393 "QStartupWithShell", "startup-with-shell", 0);
14394
14395 add_packet_config_cmd (&remote_protocol_packets
14396 [PACKET_QEnvironmentHexEncoded],
14397 "QEnvironmentHexEncoded", "environment-hex-encoded",
14398 0);
14399
14400 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14401 "QEnvironmentReset", "environment-reset",
14402 0);
14403
14404 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14405 "QEnvironmentUnset", "environment-unset",
14406 0);
14407
14408 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
14409 "qSymbol", "symbol-lookup", 0);
14410
14411 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
14412 "P", "set-register", 1);
14413
14414 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
14415 "p", "fetch-register", 1);
14416
14417 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
14418 "Z0", "software-breakpoint", 0);
14419
14420 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
14421 "Z1", "hardware-breakpoint", 0);
14422
14423 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
14424 "Z2", "write-watchpoint", 0);
14425
14426 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
14427 "Z3", "read-watchpoint", 0);
14428
14429 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
14430 "Z4", "access-watchpoint", 0);
14431
14432 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14433 "qXfer:auxv:read", "read-aux-vector", 0);
14434
14435 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14436 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14437
14438 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14439 "qXfer:features:read", "target-features", 0);
14440
14441 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14442 "qXfer:libraries:read", "library-info", 0);
14443
14444 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14445 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14446
14447 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14448 "qXfer:memory-map:read", "memory-map", 0);
14449
14450 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14451 "qXfer:osdata:read", "osdata", 0);
14452
14453 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14454 "qXfer:threads:read", "threads", 0);
14455
14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14457 "qXfer:siginfo:read", "read-siginfo-object", 0);
14458
14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14460 "qXfer:siginfo:write", "write-siginfo-object", 0);
14461
14462 add_packet_config_cmd
14463 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
14464 "qXfer:traceframe-info:read", "traceframe-info", 0);
14465
14466 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14467 "qXfer:uib:read", "unwind-info-block", 0);
14468
14469 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
14470 "qGetTLSAddr", "get-thread-local-storage-address",
14471 0);
14472
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14474 "qGetTIBAddr", "get-thread-information-block-address",
14475 0);
14476
14477 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14478 "bc", "reverse-continue", 0);
14479
14480 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14481 "bs", "reverse-step", 0);
14482
14483 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14484 "qSupported", "supported-packets", 0);
14485
14486 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14487 "qSearch:memory", "search-memory", 0);
14488
14489 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14490 "qTStatus", "trace-status", 0);
14491
14492 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14493 "vFile:setfs", "hostio-setfs", 0);
14494
14495 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14496 "vFile:open", "hostio-open", 0);
14497
14498 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14499 "vFile:pread", "hostio-pread", 0);
14500
14501 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14502 "vFile:pwrite", "hostio-pwrite", 0);
14503
14504 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14505 "vFile:close", "hostio-close", 0);
14506
14507 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14508 "vFile:unlink", "hostio-unlink", 0);
14509
14510 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14511 "vFile:readlink", "hostio-readlink", 0);
14512
14513 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14514 "vFile:fstat", "hostio-fstat", 0);
14515
14516 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14517 "vAttach", "attach", 0);
14518
14519 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14520 "vRun", "run", 0);
14521
14522 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14523 "QStartNoAckMode", "noack", 0);
14524
14525 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14526 "vKill", "kill", 0);
14527
14528 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14529 "qAttached", "query-attached", 0);
14530
14531 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
14532 "ConditionalTracepoints",
14533 "conditional-tracepoints", 0);
14534
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14536 "ConditionalBreakpoints",
14537 "conditional-breakpoints", 0);
14538
14539 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14540 "BreakpointCommands",
14541 "breakpoint-commands", 0);
14542
14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14544 "FastTracepoints", "fast-tracepoints", 0);
14545
14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14547 "TracepointSource", "TracepointSource", 0);
14548
14549 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14550 "QAllow", "allow", 0);
14551
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14553 "StaticTracepoints", "static-tracepoints", 0);
14554
14555 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14556 "InstallInTrace", "install-in-trace", 0);
14557
14558 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14559 "qXfer:statictrace:read", "read-sdata-object", 0);
14560
14561 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14562 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14563
14564 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14565 "QDisableRandomization", "disable-randomization", 0);
14566
14567 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14568 "QAgent", "agent", 0);
14569
14570 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14571 "QTBuffer:size", "trace-buffer-size", 0);
14572
14573 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14574 "Qbtrace:off", "disable-btrace", 0);
14575
14576 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
14577 "Qbtrace:bts", "enable-btrace-bts", 0);
14578
14579 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14580 "Qbtrace:pt", "enable-btrace-pt", 0);
14581
14582 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14583 "qXfer:btrace", "read-btrace", 0);
14584
14585 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14586 "qXfer:btrace-conf", "read-btrace-conf", 0);
14587
14588 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14589 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14590
14591 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14592 "multiprocess-feature", "multiprocess-feature", 0);
14593
14594 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14595 "swbreak-feature", "swbreak-feature", 0);
14596
14597 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14598 "hwbreak-feature", "hwbreak-feature", 0);
14599
14600 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14601 "fork-event-feature", "fork-event-feature", 0);
14602
14603 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14604 "vfork-event-feature", "vfork-event-feature", 0);
14605
14606 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14607 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14608
14609 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14610 "vContSupported", "verbose-resume-supported", 0);
14611
14612 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14613 "exec-event-feature", "exec-event-feature", 0);
14614
14615 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14616 "vCtrlC", "ctrl-c", 0);
14617
14618 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14619 "QThreadEvents", "thread-events", 0);
14620
14621 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14622 "N stop reply", "no-resumed-stop-reply", 0);
14623
14624 /* Assert that we've registered "set remote foo-packet" commands
14625 for all packet configs. */
14626 {
14627 int i;
14628
14629 for (i = 0; i < PACKET_MAX; i++)
14630 {
14631 /* Ideally all configs would have a command associated. Some
14632 still don't though. */
14633 int excepted;
14634
14635 switch (i)
14636 {
14637 case PACKET_QNonStop:
14638 case PACKET_EnableDisableTracepoints_feature:
14639 case PACKET_tracenz_feature:
14640 case PACKET_DisconnectedTracing_feature:
14641 case PACKET_augmented_libraries_svr4_read_feature:
14642 case PACKET_qCRC:
14643 /* Additions to this list need to be well justified:
14644 pre-existing packets are OK; new packets are not. */
14645 excepted = 1;
14646 break;
14647 default:
14648 excepted = 0;
14649 break;
14650 }
14651
14652 /* This catches both forgetting to add a config command, and
14653 forgetting to remove a packet from the exception list. */
14654 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14655 }
14656 }
14657
14658 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14659 Z sub-packet has its own set and show commands, but users may
14660 have sets to this variable in their .gdbinit files (or in their
14661 documentation). */
14662 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
14663 &remote_Z_packet_detect, _("\
14664 Set use of remote protocol `Z' packets."), _("\
14665 Show use of remote protocol `Z' packets."), _("\
14666 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14667 packets."),
14668 set_remote_protocol_Z_packet_cmd,
14669 show_remote_protocol_Z_packet_cmd,
14670 /* FIXME: i18n: Use of remote protocol
14671 `Z' packets is %s. */
14672 &remote_set_cmdlist, &remote_show_cmdlist);
14673
14674 add_prefix_cmd ("remote", class_files, remote_command, _("\
14675 Manipulate files on the remote system.\n\
14676 Transfer files to and from the remote target system."),
14677 &remote_cmdlist, "remote ",
14678 0 /* allow-unknown */, &cmdlist);
14679
14680 add_cmd ("put", class_files, remote_put_command,
14681 _("Copy a local file to the remote system."),
14682 &remote_cmdlist);
14683
14684 add_cmd ("get", class_files, remote_get_command,
14685 _("Copy a remote file to the local system."),
14686 &remote_cmdlist);
14687
14688 add_cmd ("delete", class_files, remote_delete_command,
14689 _("Delete a remote file."),
14690 &remote_cmdlist);
14691
14692 add_setshow_string_noescape_cmd ("exec-file", class_files,
14693 &remote_exec_file_var, _("\
14694 Set the remote pathname for \"run\"."), _("\
14695 Show the remote pathname for \"run\"."), NULL,
14696 set_remote_exec_file,
14697 show_remote_exec_file,
14698 &remote_set_cmdlist,
14699 &remote_show_cmdlist);
14700
14701 add_setshow_boolean_cmd ("range-stepping", class_run,
14702 &use_range_stepping, _("\
14703 Enable or disable range stepping."), _("\
14704 Show whether target-assisted range stepping is enabled."), _("\
14705 If on, and the target supports it, when stepping a source line, GDB\n\
14706 tells the target to step the corresponding range of addresses itself instead\n\
14707 of issuing multiple single-steps. This speeds up source level\n\
14708 stepping. If off, GDB always issues single-steps, even if range\n\
14709 stepping is supported by the target. The default is on."),
14710 set_range_stepping,
14711 show_range_stepping,
14712 &setlist,
14713 &showlist);
14714
14715 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14716 Set watchdog timer."), _("\
14717 Show watchdog timer."), _("\
14718 When non-zero, this timeout is used instead of waiting forever for a target\n\
14719 to finish a low-level step or continue operation. If the specified amount\n\
14720 of time passes without a response from the target, an error occurs."),
14721 NULL,
14722 show_watchdog,
14723 &setlist, &showlist);
14724
14725 /* Eventually initialize fileio. See fileio.c */
14726 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
14727 }
This page took 0.348635 seconds and 5 git commands to generate.