Introduce process_stratum_target
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2018 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 "terminal.h" */
32 #include "gdbcmd.h"
33 #include "objfiles.h"
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
36 #include "remote.h"
37 #include "remote-notif.h"
38 #include "regcache.h"
39 #include "value.h"
40 #include "observable.h"
41 #include "solib.h"
42 #include "cli/cli-decode.h"
43 #include "cli/cli-setshow.h"
44 #include "target-descriptions.h"
45 #include "gdb_bfd.h"
46 #include "filestuff.h"
47 #include "rsp-low.h"
48 #include "disasm.h"
49 #include "location.h"
50
51 #include "gdb_sys_time.h"
52
53 #include "event-loop.h"
54 #include "event-top.h"
55 #include "inf-loop.h"
56
57 #include <signal.h>
58 #include "serial.h"
59
60 #include "gdbcore.h" /* for exec_bfd */
61
62 #include "remote-fileio.h"
63 #include "gdb/fileio.h"
64 #include <sys/stat.h>
65 #include "xml-support.h"
66
67 #include "memory-map.h"
68
69 #include "tracepoint.h"
70 #include "ax.h"
71 #include "ax-gdb.h"
72 #include "agent.h"
73 #include "btrace.h"
74 #include "record-btrace.h"
75 #include <algorithm>
76 #include "common/scoped_restore.h"
77 #include "environ.h"
78 #include "common/byte-vector.h"
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 static void stop_reply_xfree (struct stop_reply *);
101
102 struct stop_reply_deleter
103 {
104 void operator() (stop_reply *r) const
105 {
106 stop_reply_xfree (r);
107 }
108 };
109
110 typedef std::unique_ptr<stop_reply, stop_reply_deleter> stop_reply_up;
111
112 /* Generic configuration support for packets the stub optionally
113 supports. Allows the user to specify the use of the packet as well
114 as allowing GDB to auto-detect support in the remote stub. */
115
116 enum packet_support
117 {
118 PACKET_SUPPORT_UNKNOWN = 0,
119 PACKET_ENABLE,
120 PACKET_DISABLE
121 };
122
123 /* Analyze a packet's return value and update the packet config
124 accordingly. */
125
126 enum packet_result
127 {
128 PACKET_ERROR,
129 PACKET_OK,
130 PACKET_UNKNOWN
131 };
132
133 struct threads_listing_context;
134
135 /* Stub vCont actions support.
136
137 Each field is a boolean flag indicating whether the stub reports
138 support for the corresponding action. */
139
140 struct vCont_action_support
141 {
142 /* vCont;t */
143 bool t = false;
144
145 /* vCont;r */
146 bool r = false;
147
148 /* vCont;s */
149 bool s = false;
150
151 /* vCont;S */
152 bool S = false;
153 };
154
155 /* About this many threadisds fit in a packet. */
156
157 #define MAXTHREADLISTRESULTS 32
158
159 /* Data for the vFile:pread readahead cache. */
160
161 struct readahead_cache
162 {
163 /* Invalidate the readahead cache. */
164 void invalidate ();
165
166 /* Invalidate the readahead cache if it is holding data for FD. */
167 void invalidate_fd (int fd);
168
169 /* Serve pread from the readahead cache. Returns number of bytes
170 read, or 0 if the request can't be served from the cache. */
171 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
172
173 /* The file descriptor for the file that is being cached. -1 if the
174 cache is invalid. */
175 int fd = -1;
176
177 /* The offset into the file that the cache buffer corresponds
178 to. */
179 ULONGEST offset = 0;
180
181 /* The buffer holding the cache contents. */
182 gdb_byte *buf = nullptr;
183 /* The buffer's size. We try to read as much as fits into a packet
184 at a time. */
185 size_t bufsize = 0;
186
187 /* Cache hit and miss counters. */
188 ULONGEST hit_count = 0;
189 ULONGEST miss_count = 0;
190 };
191
192 /* Description of the remote protocol for a given architecture. */
193
194 struct packet_reg
195 {
196 long offset; /* Offset into G packet. */
197 long regnum; /* GDB's internal register number. */
198 LONGEST pnum; /* Remote protocol register number. */
199 int in_g_packet; /* Always part of G packet. */
200 /* long size in bytes; == register_size (target_gdbarch (), regnum);
201 at present. */
202 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
203 at present. */
204 };
205
206 struct remote_arch_state
207 {
208 explicit remote_arch_state (struct gdbarch *gdbarch);
209
210 /* Description of the remote protocol registers. */
211 long sizeof_g_packet;
212
213 /* Description of the remote protocol registers indexed by REGNUM
214 (making an array gdbarch_num_regs in size). */
215 std::unique_ptr<packet_reg[]> regs;
216
217 /* This is the size (in chars) of the first response to the ``g''
218 packet. It is used as a heuristic when determining the maximum
219 size of memory-read and memory-write packets. A target will
220 typically only reserve a buffer large enough to hold the ``g''
221 packet. The size does not include packet overhead (headers and
222 trailers). */
223 long actual_register_packet_size;
224
225 /* This is the maximum size (in chars) of a non read/write packet.
226 It is also used as a cap on the size of read/write packets. */
227 long remote_packet_size;
228 };
229
230 /* Description of the remote protocol state for the currently
231 connected target. This is per-target state, and independent of the
232 selected architecture. */
233
234 class remote_state
235 {
236 public:
237
238 remote_state ();
239 ~remote_state ();
240
241 /* Get the remote arch state for GDBARCH. */
242 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
243
244 public: /* data */
245
246 /* A buffer to use for incoming packets, and its current size. The
247 buffer is grown dynamically for larger incoming packets.
248 Outgoing packets may also be constructed in this buffer.
249 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
250 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
251 packets. */
252 char *buf;
253 long buf_size;
254
255 /* True if we're going through initial connection setup (finding out
256 about the remote side's threads, relocating symbols, etc.). */
257 bool starting_up = false;
258
259 /* If we negotiated packet size explicitly (and thus can bypass
260 heuristics for the largest packet size that will not overflow
261 a buffer in the stub), this will be set to that packet size.
262 Otherwise zero, meaning to use the guessed size. */
263 long explicit_packet_size = 0;
264
265 /* remote_wait is normally called when the target is running and
266 waits for a stop reply packet. But sometimes we need to call it
267 when the target is already stopped. We can send a "?" packet
268 and have remote_wait read the response. Or, if we already have
269 the response, we can stash it in BUF and tell remote_wait to
270 skip calling getpkt. This flag is set when BUF contains a
271 stop reply packet and the target is not waiting. */
272 int cached_wait_status = 0;
273
274 /* True, if in no ack mode. That is, neither GDB nor the stub will
275 expect acks from each other. The connection is assumed to be
276 reliable. */
277 bool noack_mode = false;
278
279 /* True if we're connected in extended remote mode. */
280 bool extended = false;
281
282 /* True if we resumed the target and we're waiting for the target to
283 stop. In the mean time, we can't start another command/query.
284 The remote server wouldn't be ready to process it, so we'd
285 timeout waiting for a reply that would never come and eventually
286 we'd close the connection. This can happen in asynchronous mode
287 because we allow GDB commands while the target is running. */
288 bool waiting_for_stop_reply = false;
289
290 /* The status of the stub support for the various vCont actions. */
291 vCont_action_support supports_vCont;
292
293 /* True if the user has pressed Ctrl-C, but the target hasn't
294 responded to that. */
295 bool ctrlc_pending_p = false;
296
297 /* True if we saw a Ctrl-C while reading or writing from/to the
298 remote descriptor. At that point it is not safe to send a remote
299 interrupt packet, so we instead remember we saw the Ctrl-C and
300 process it once we're done with sending/receiving the current
301 packet, which should be shortly. If however that takes too long,
302 and the user presses Ctrl-C again, we offer to disconnect. */
303 bool got_ctrlc_during_io = false;
304
305 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
306 remote_open knows that we don't have a file open when the program
307 starts. */
308 struct serial *remote_desc = nullptr;
309
310 /* These are the threads which we last sent to the remote system. The
311 TID member will be -1 for all or -2 for not sent yet. */
312 ptid_t general_thread = null_ptid;
313 ptid_t continue_thread = null_ptid;
314
315 /* This is the traceframe which we last selected on the remote system.
316 It will be -1 if no traceframe is selected. */
317 int remote_traceframe_number = -1;
318
319 char *last_pass_packet = nullptr;
320
321 /* The last QProgramSignals packet sent to the target. We bypass
322 sending a new program signals list down to the target if the new
323 packet is exactly the same as the last we sent. IOW, we only let
324 the target know about program signals list changes. */
325 char *last_program_signals_packet = nullptr;
326
327 gdb_signal last_sent_signal = GDB_SIGNAL_0;
328
329 bool last_sent_step = false;
330
331 /* The execution direction of the last resume we got. */
332 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
333
334 char *finished_object = nullptr;
335 char *finished_annex = nullptr;
336 ULONGEST finished_offset = 0;
337
338 /* Should we try the 'ThreadInfo' query packet?
339
340 This variable (NOT available to the user: auto-detect only!)
341 determines whether GDB will use the new, simpler "ThreadInfo"
342 query or the older, more complex syntax for thread queries.
343 This is an auto-detect variable (set to true at each connect,
344 and set to false when the target fails to recognize it). */
345 bool use_threadinfo_query = false;
346 bool use_threadextra_query = false;
347
348 threadref echo_nextthread {};
349 threadref nextthread {};
350 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
351
352 /* The state of remote notification. */
353 struct remote_notif_state *notif_state = nullptr;
354
355 /* The branch trace configuration. */
356 struct btrace_config btrace_config {};
357
358 /* The argument to the last "vFile:setfs:" packet we sent, used
359 to avoid sending repeated unnecessary "vFile:setfs:" packets.
360 Initialized to -1 to indicate that no "vFile:setfs:" packet
361 has yet been sent. */
362 int fs_pid = -1;
363
364 /* A readahead cache for vFile:pread. Often, reading a binary
365 involves a sequence of small reads. E.g., when parsing an ELF
366 file. A readahead cache helps mostly the case of remote
367 debugging on a connection with higher latency, due to the
368 request/reply nature of the RSP. We only cache data for a single
369 file descriptor at a time. */
370 struct readahead_cache readahead_cache;
371
372 /* The list of already fetched and acknowledged stop events. This
373 queue is used for notification Stop, and other notifications
374 don't need queue for their events, because the notification
375 events of Stop can't be consumed immediately, so that events
376 should be queued first, and be consumed by remote_wait_{ns,as}
377 one per time. Other notifications can consume their events
378 immediately, so queue is not needed for them. */
379 std::vector<stop_reply_up> stop_reply_queue;
380
381 /* Asynchronous signal handle registered as event loop source for
382 when we have pending events ready to be passed to the core. */
383 struct async_event_handler *remote_async_inferior_event_token = nullptr;
384
385 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
386 ``forever'' still use the normal timeout mechanism. This is
387 currently used by the ASYNC code to guarentee that target reads
388 during the initial connect always time-out. Once getpkt has been
389 modified to return a timeout indication and, in turn
390 remote_wait()/wait_for_inferior() have gained a timeout parameter
391 this can go away. */
392 int wait_forever_enabled_p = 1;
393
394 private:
395 /* Mapping of remote protocol data for each gdbarch. Usually there
396 is only one entry here, though we may see more with stubs that
397 support multi-process. */
398 std::unordered_map<struct gdbarch *, remote_arch_state>
399 m_arch_states;
400 };
401
402 static const target_info remote_target_info = {
403 "remote",
404 N_("Remote serial target in gdb-specific protocol"),
405 remote_doc
406 };
407
408 class remote_target : public process_stratum_target
409 {
410 public:
411 remote_target () = default;
412 ~remote_target () override;
413
414 const target_info &info () const override
415 { return remote_target_info; }
416
417 thread_control_capabilities get_thread_control_capabilities () override
418 { return tc_schedlock; }
419
420 /* Open a remote connection. */
421 static void open (const char *, int);
422
423 void close () override;
424
425 void detach (inferior *, int) override;
426 void disconnect (const char *, int) override;
427
428 void commit_resume () override;
429 void resume (ptid_t, int, enum gdb_signal) override;
430 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
431
432 void fetch_registers (struct regcache *, int) override;
433 void store_registers (struct regcache *, int) override;
434 void prepare_to_store (struct regcache *) override;
435
436 void files_info () override;
437
438 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
439
440 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
441 enum remove_bp_reason) override;
442
443
444 bool stopped_by_sw_breakpoint () override;
445 bool supports_stopped_by_sw_breakpoint () override;
446
447 bool stopped_by_hw_breakpoint () override;
448
449 bool supports_stopped_by_hw_breakpoint () override;
450
451 bool stopped_by_watchpoint () override;
452
453 bool stopped_data_address (CORE_ADDR *) override;
454
455 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
456
457 int can_use_hw_breakpoint (enum bptype, int, int) override;
458
459 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
460
461 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
462
463 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
464
465 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
466 struct expression *) override;
467
468 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
469 struct expression *) override;
470
471 void kill () override;
472
473 void load (const char *, int) override;
474
475 void mourn_inferior () override;
476
477 void pass_signals (int, unsigned char *) override;
478
479 int set_syscall_catchpoint (int, bool, int,
480 gdb::array_view<const int>) override;
481
482 void program_signals (int, unsigned char *) override;
483
484 bool thread_alive (ptid_t ptid) override;
485
486 const char *thread_name (struct thread_info *) override;
487
488 void update_thread_list () override;
489
490 const char *pid_to_str (ptid_t) override;
491
492 const char *extra_thread_info (struct thread_info *) override;
493
494 ptid_t get_ada_task_ptid (long lwp, long thread) override;
495
496 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
497 int handle_len,
498 inferior *inf) override;
499
500 void stop (ptid_t) override;
501
502 void interrupt () override;
503
504 void pass_ctrlc () override;
505
506 enum target_xfer_status xfer_partial (enum target_object object,
507 const char *annex,
508 gdb_byte *readbuf,
509 const gdb_byte *writebuf,
510 ULONGEST offset, ULONGEST len,
511 ULONGEST *xfered_len) override;
512
513 ULONGEST get_memory_xfer_limit () override;
514
515 void rcmd (const char *command, struct ui_file *output) override;
516
517 char *pid_to_exec_file (int pid) override;
518
519 void log_command (const char *cmd) override
520 {
521 serial_log_command (this, cmd);
522 }
523
524 CORE_ADDR get_thread_local_address (ptid_t ptid,
525 CORE_ADDR load_module_addr,
526 CORE_ADDR offset) override;
527
528 bool has_all_memory () override { return default_child_has_all_memory (); }
529 bool has_memory () override { return default_child_has_memory (); }
530 bool has_stack () override { return default_child_has_stack (); }
531 bool has_registers () override { return default_child_has_registers (); }
532 bool has_execution (ptid_t ptid) override { return default_child_has_execution (ptid); }
533
534 bool can_execute_reverse () override;
535
536 std::vector<mem_region> memory_map () override;
537
538 void flash_erase (ULONGEST address, LONGEST length) override;
539
540 void flash_done () override;
541
542 const struct target_desc *read_description () override;
543
544 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
545 const gdb_byte *pattern, ULONGEST pattern_len,
546 CORE_ADDR *found_addrp) override;
547
548 bool can_async_p () override;
549
550 bool is_async_p () override;
551
552 void async (int) override;
553
554 void thread_events (int) override;
555
556 int can_do_single_step () override;
557
558 void terminal_inferior () override;
559
560 void terminal_ours () override;
561
562 bool supports_non_stop () override;
563
564 bool supports_multi_process () override;
565
566 bool supports_disable_randomization () override;
567
568 bool filesystem_is_local () override;
569
570
571 int fileio_open (struct inferior *inf, const char *filename,
572 int flags, int mode, int warn_if_slow,
573 int *target_errno) override;
574
575 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
576 ULONGEST offset, int *target_errno) override;
577
578 int fileio_pread (int fd, gdb_byte *read_buf, int len,
579 ULONGEST offset, int *target_errno) override;
580
581 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
582
583 int fileio_close (int fd, int *target_errno) override;
584
585 int fileio_unlink (struct inferior *inf,
586 const char *filename,
587 int *target_errno) override;
588
589 gdb::optional<std::string>
590 fileio_readlink (struct inferior *inf,
591 const char *filename,
592 int *target_errno) override;
593
594 bool supports_enable_disable_tracepoint () override;
595
596 bool supports_string_tracing () override;
597
598 bool supports_evaluation_of_breakpoint_conditions () override;
599
600 bool can_run_breakpoint_commands () override;
601
602 void trace_init () override;
603
604 void download_tracepoint (struct bp_location *location) override;
605
606 bool can_download_tracepoint () override;
607
608 void download_trace_state_variable (const trace_state_variable &tsv) override;
609
610 void enable_tracepoint (struct bp_location *location) override;
611
612 void disable_tracepoint (struct bp_location *location) override;
613
614 void trace_set_readonly_regions () override;
615
616 void trace_start () override;
617
618 int get_trace_status (struct trace_status *ts) override;
619
620 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
621 override;
622
623 void trace_stop () override;
624
625 int trace_find (enum trace_find_type type, int num,
626 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
627
628 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
629
630 int save_trace_data (const char *filename) override;
631
632 int upload_tracepoints (struct uploaded_tp **utpp) override;
633
634 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
635
636 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
637
638 int get_min_fast_tracepoint_insn_len () override;
639
640 void set_disconnected_tracing (int val) override;
641
642 void set_circular_trace_buffer (int val) override;
643
644 void set_trace_buffer_size (LONGEST val) override;
645
646 bool set_trace_notes (const char *user, const char *notes,
647 const char *stopnotes) override;
648
649 int core_of_thread (ptid_t ptid) override;
650
651 int verify_memory (const gdb_byte *data,
652 CORE_ADDR memaddr, ULONGEST size) override;
653
654
655 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
656
657 void set_permissions () override;
658
659 bool static_tracepoint_marker_at (CORE_ADDR,
660 struct static_tracepoint_marker *marker)
661 override;
662
663 std::vector<static_tracepoint_marker>
664 static_tracepoint_markers_by_strid (const char *id) override;
665
666 traceframe_info_up traceframe_info () override;
667
668 bool use_agent (bool use) override;
669 bool can_use_agent () override;
670
671 struct btrace_target_info *enable_btrace (ptid_t ptid,
672 const struct btrace_config *conf) override;
673
674 void disable_btrace (struct btrace_target_info *tinfo) override;
675
676 void teardown_btrace (struct btrace_target_info *tinfo) override;
677
678 enum btrace_error read_btrace (struct btrace_data *data,
679 struct btrace_target_info *btinfo,
680 enum btrace_read_type type) override;
681
682 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
683 bool augmented_libraries_svr4_read () override;
684 int follow_fork (int, int) override;
685 void follow_exec (struct inferior *, char *) override;
686 int insert_fork_catchpoint (int) override;
687 int remove_fork_catchpoint (int) override;
688 int insert_vfork_catchpoint (int) override;
689 int remove_vfork_catchpoint (int) override;
690 int insert_exec_catchpoint (int) override;
691 int remove_exec_catchpoint (int) override;
692 enum exec_direction_kind execution_direction () override;
693
694 public: /* Remote specific methods. */
695
696 void remote_download_command_source (int num, ULONGEST addr,
697 struct command_line *cmds);
698
699 void remote_file_put (const char *local_file, const char *remote_file,
700 int from_tty);
701 void remote_file_get (const char *remote_file, const char *local_file,
702 int from_tty);
703 void remote_file_delete (const char *remote_file, int from_tty);
704
705 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
706 ULONGEST offset, int *remote_errno);
707 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
708 ULONGEST offset, int *remote_errno);
709 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
710 ULONGEST offset, int *remote_errno);
711
712 int remote_hostio_send_command (int command_bytes, int which_packet,
713 int *remote_errno, char **attachment,
714 int *attachment_len);
715 int remote_hostio_set_filesystem (struct inferior *inf,
716 int *remote_errno);
717 /* We should get rid of this and use fileio_open directly. */
718 int remote_hostio_open (struct inferior *inf, const char *filename,
719 int flags, int mode, int warn_if_slow,
720 int *remote_errno);
721 int remote_hostio_close (int fd, int *remote_errno);
722
723 int remote_hostio_unlink (inferior *inf, const char *filename,
724 int *remote_errno);
725
726 struct remote_state *get_remote_state ();
727
728 long get_remote_packet_size (void);
729 long get_memory_packet_size (struct memory_packet_config *config);
730
731 long get_memory_write_packet_size ();
732 long get_memory_read_packet_size ();
733
734 char *append_pending_thread_resumptions (char *p, char *endp,
735 ptid_t ptid);
736 static void open_1 (const char *name, int from_tty, int extended_p);
737 void start_remote (int from_tty, int extended_p);
738 void remote_detach_1 (struct inferior *inf, int from_tty);
739
740 char *append_resumption (char *p, char *endp,
741 ptid_t ptid, int step, gdb_signal siggnal);
742 int remote_resume_with_vcont (ptid_t ptid, int step,
743 gdb_signal siggnal);
744
745 void add_current_inferior_and_thread (char *wait_status);
746
747 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
748 int options);
749 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
750 int options);
751
752 ptid_t process_stop_reply (struct stop_reply *stop_reply,
753 target_waitstatus *status);
754
755 void remote_notice_new_inferior (ptid_t currthread, int executing);
756
757 void process_initial_stop_replies (int from_tty);
758
759 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
760
761 void btrace_sync_conf (const btrace_config *conf);
762
763 void remote_btrace_maybe_reopen ();
764
765 void remove_new_fork_children (threads_listing_context *context);
766 void kill_new_fork_children (int pid);
767 void discard_pending_stop_replies (struct inferior *inf);
768 int stop_reply_queue_length ();
769
770 void check_pending_events_prevent_wildcard_vcont
771 (int *may_global_wildcard_vcont);
772
773 void discard_pending_stop_replies_in_queue ();
774 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
775 struct stop_reply *queued_stop_reply (ptid_t ptid);
776 int peek_stop_reply (ptid_t ptid);
777 void remote_parse_stop_reply (char *buf, stop_reply *event);
778
779 void remote_stop_ns (ptid_t ptid);
780 void remote_interrupt_as ();
781 void remote_interrupt_ns ();
782
783 char *remote_get_noisy_reply ();
784 int remote_query_attached (int pid);
785 inferior *remote_add_inferior (int fake_pid_p, int pid, int attached,
786 int try_open_exec);
787
788 ptid_t remote_current_thread (ptid_t oldpid);
789 ptid_t get_current_thread (char *wait_status);
790
791 void set_thread (ptid_t ptid, int gen);
792 void set_general_thread (ptid_t ptid);
793 void set_continue_thread (ptid_t ptid);
794 void set_general_process ();
795
796 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
797
798 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
799 gdb_ext_thread_info *info);
800 int remote_get_threadinfo (threadref *threadid, int fieldset,
801 gdb_ext_thread_info *info);
802
803 int parse_threadlist_response (char *pkt, int result_limit,
804 threadref *original_echo,
805 threadref *resultlist,
806 int *doneflag);
807 int remote_get_threadlist (int startflag, threadref *nextthread,
808 int result_limit, int *done, int *result_count,
809 threadref *threadlist);
810
811 int remote_threadlist_iterator (rmt_thread_action stepfunction,
812 void *context, int looplimit);
813
814 int remote_get_threads_with_ql (threads_listing_context *context);
815 int remote_get_threads_with_qxfer (threads_listing_context *context);
816 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
817
818 void extended_remote_restart ();
819
820 void get_offsets ();
821
822 void remote_check_symbols ();
823
824 void remote_supported_packet (const struct protocol_feature *feature,
825 enum packet_support support,
826 const char *argument);
827
828 void remote_query_supported ();
829
830 void remote_packet_size (const protocol_feature *feature,
831 packet_support support, const char *value);
832
833 void remote_serial_quit_handler ();
834
835 void remote_detach_pid (int pid);
836
837 void remote_vcont_probe ();
838
839 void remote_resume_with_hc (ptid_t ptid, int step,
840 gdb_signal siggnal);
841
842 void send_interrupt_sequence ();
843 void interrupt_query ();
844
845 void remote_notif_get_pending_events (notif_client *nc);
846
847 int fetch_register_using_p (struct regcache *regcache,
848 packet_reg *reg);
849 int send_g_packet ();
850 void process_g_packet (struct regcache *regcache);
851 void fetch_registers_using_g (struct regcache *regcache);
852 int store_register_using_P (const struct regcache *regcache,
853 packet_reg *reg);
854 void store_registers_using_G (const struct regcache *regcache);
855
856 void set_remote_traceframe ();
857
858 void check_binary_download (CORE_ADDR addr);
859
860 target_xfer_status remote_write_bytes_aux (const char *header,
861 CORE_ADDR memaddr,
862 const gdb_byte *myaddr,
863 ULONGEST len_units,
864 int unit_size,
865 ULONGEST *xfered_len_units,
866 char packet_format,
867 int use_length);
868
869 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
870 const gdb_byte *myaddr, ULONGEST len,
871 int unit_size, ULONGEST *xfered_len);
872
873 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
874 ULONGEST len_units,
875 int unit_size, ULONGEST *xfered_len_units);
876
877 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
878 ULONGEST memaddr,
879 ULONGEST len,
880 int unit_size,
881 ULONGEST *xfered_len);
882
883 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
884 gdb_byte *myaddr, ULONGEST len,
885 int unit_size,
886 ULONGEST *xfered_len);
887
888 packet_result remote_send_printf (const char *format, ...)
889 ATTRIBUTE_PRINTF (2, 3);
890
891 target_xfer_status remote_flash_write (ULONGEST address,
892 ULONGEST length, ULONGEST *xfered_len,
893 const gdb_byte *data);
894
895 int readchar (int timeout);
896
897 void remote_serial_write (const char *str, int len);
898
899 int putpkt (const char *buf);
900 int putpkt_binary (const char *buf, int cnt);
901
902 void skip_frame ();
903 long read_frame (char **buf_p, long *sizeof_buf);
904 void getpkt (char **buf, long *sizeof_buf, int forever);
905 int getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
906 int expecting_notif, int *is_notif);
907 int getpkt_sane (char **buf, long *sizeof_buf, int forever);
908 int getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
909 int *is_notif);
910 int remote_vkill (int pid);
911 void remote_kill_k ();
912
913 void extended_remote_disable_randomization (int val);
914 int extended_remote_run (const std::string &args);
915
916 void send_environment_packet (const char *action,
917 const char *packet,
918 const char *value);
919
920 void extended_remote_environment_support ();
921 void extended_remote_set_inferior_cwd ();
922
923 target_xfer_status remote_write_qxfer (const char *object_name,
924 const char *annex,
925 const gdb_byte *writebuf,
926 ULONGEST offset, LONGEST len,
927 ULONGEST *xfered_len,
928 struct packet_config *packet);
929
930 target_xfer_status remote_read_qxfer (const char *object_name,
931 const char *annex,
932 gdb_byte *readbuf, ULONGEST offset,
933 LONGEST len,
934 ULONGEST *xfered_len,
935 struct packet_config *packet);
936
937 void push_stop_reply (struct stop_reply *new_event);
938
939 bool vcont_r_supported ();
940
941 void packet_command (const char *args, int from_tty);
942
943 private: /* data fields */
944
945 /* The remote state. Don't reference this directly. Use the
946 get_remote_state method instead. */
947 remote_state m_remote_state;
948 };
949
950 static const target_info extended_remote_target_info = {
951 "extended-remote",
952 N_("Extended remote serial target in gdb-specific protocol"),
953 remote_doc
954 };
955
956 /* Set up the extended remote target by extending the standard remote
957 target and adding to it. */
958
959 class extended_remote_target final : public remote_target
960 {
961 public:
962 const target_info &info () const override
963 { return extended_remote_target_info; }
964
965 /* Open an extended-remote connection. */
966 static void open (const char *, int);
967
968 bool can_create_inferior () override { return true; }
969 void create_inferior (const char *, const std::string &,
970 char **, int) override;
971
972 void detach (inferior *, int) override;
973
974 bool can_attach () override { return true; }
975 void attach (const char *, int) override;
976
977 void post_attach (int) override;
978 bool supports_disable_randomization () override;
979 };
980
981 /* Per-program-space data key. */
982 static const struct program_space_data *remote_pspace_data;
983
984 /* The variable registered as the control variable used by the
985 remote exec-file commands. While the remote exec-file setting is
986 per-program-space, the set/show machinery uses this as the
987 location of the remote exec-file value. */
988 static char *remote_exec_file_var;
989
990 /* The size to align memory write packets, when practical. The protocol
991 does not guarantee any alignment, and gdb will generate short
992 writes and unaligned writes, but even as a best-effort attempt this
993 can improve bulk transfers. For instance, if a write is misaligned
994 relative to the target's data bus, the stub may need to make an extra
995 round trip fetching data from the target. This doesn't make a
996 huge difference, but it's easy to do, so we try to be helpful.
997
998 The alignment chosen is arbitrary; usually data bus width is
999 important here, not the possibly larger cache line size. */
1000 enum { REMOTE_ALIGN_WRITES = 16 };
1001
1002 /* Prototypes for local functions. */
1003
1004 static int hexnumlen (ULONGEST num);
1005
1006 static int stubhex (int ch);
1007
1008 static int hexnumstr (char *, ULONGEST);
1009
1010 static int hexnumnstr (char *, ULONGEST, int);
1011
1012 static CORE_ADDR remote_address_masked (CORE_ADDR);
1013
1014 static void print_packet (const char *);
1015
1016 static int stub_unpack_int (char *buff, int fieldlength);
1017
1018 struct packet_config;
1019
1020 static void show_packet_config_cmd (struct packet_config *config);
1021
1022 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1023 int from_tty,
1024 struct cmd_list_element *c,
1025 const char *value);
1026
1027 static ptid_t read_ptid (const char *buf, const char **obuf);
1028
1029 static void remote_async_inferior_event_handler (gdb_client_data);
1030
1031 static bool remote_read_description_p (struct target_ops *target);
1032
1033 static void remote_console_output (char *msg);
1034
1035 static void remote_btrace_reset (remote_state *rs);
1036
1037 static void remote_unpush_and_throw (void);
1038
1039 /* For "remote". */
1040
1041 static struct cmd_list_element *remote_cmdlist;
1042
1043 /* For "set remote" and "show remote". */
1044
1045 static struct cmd_list_element *remote_set_cmdlist;
1046 static struct cmd_list_element *remote_show_cmdlist;
1047
1048 /* Controls whether GDB is willing to use range stepping. */
1049
1050 static int use_range_stepping = 1;
1051
1052 /* The max number of chars in debug output. The rest of chars are
1053 omitted. */
1054
1055 #define REMOTE_DEBUG_MAX_CHAR 512
1056
1057 /* Private data that we'll store in (struct thread_info)->priv. */
1058 struct remote_thread_info : public private_thread_info
1059 {
1060 std::string extra;
1061 std::string name;
1062 int core = -1;
1063
1064 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1065 sequence of bytes. */
1066 gdb::byte_vector thread_handle;
1067
1068 /* Whether the target stopped for a breakpoint/watchpoint. */
1069 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1070
1071 /* This is set to the data address of the access causing the target
1072 to stop for a watchpoint. */
1073 CORE_ADDR watch_data_address = 0;
1074
1075 /* Fields used by the vCont action coalescing implemented in
1076 remote_resume / remote_commit_resume. remote_resume stores each
1077 thread's last resume request in these fields, so that a later
1078 remote_commit_resume knows which is the proper action for this
1079 thread to include in the vCont packet. */
1080
1081 /* True if the last target_resume call for this thread was a step
1082 request, false if a continue request. */
1083 int last_resume_step = 0;
1084
1085 /* The signal specified in the last target_resume call for this
1086 thread. */
1087 gdb_signal last_resume_sig = GDB_SIGNAL_0;
1088
1089 /* Whether this thread was already vCont-resumed on the remote
1090 side. */
1091 int vcont_resumed = 0;
1092 };
1093
1094 remote_state::remote_state ()
1095 {
1096 /* The default buffer size is unimportant; it will be expanded
1097 whenever a larger buffer is needed. */
1098 this->buf_size = 400;
1099 this->buf = (char *) xmalloc (this->buf_size);
1100 }
1101
1102 remote_state::~remote_state ()
1103 {
1104 xfree (this->last_pass_packet);
1105 xfree (this->last_program_signals_packet);
1106 xfree (this->buf);
1107 xfree (this->finished_object);
1108 xfree (this->finished_annex);
1109 }
1110
1111 /* Utility: generate error from an incoming stub packet. */
1112 static void
1113 trace_error (char *buf)
1114 {
1115 if (*buf++ != 'E')
1116 return; /* not an error msg */
1117 switch (*buf)
1118 {
1119 case '1': /* malformed packet error */
1120 if (*++buf == '0') /* general case: */
1121 error (_("remote.c: error in outgoing packet."));
1122 else
1123 error (_("remote.c: error in outgoing packet at field #%ld."),
1124 strtol (buf, NULL, 16));
1125 default:
1126 error (_("Target returns error code '%s'."), buf);
1127 }
1128 }
1129
1130 /* Utility: wait for reply from stub, while accepting "O" packets. */
1131
1132 char *
1133 remote_target::remote_get_noisy_reply ()
1134 {
1135 struct remote_state *rs = get_remote_state ();
1136
1137 do /* Loop on reply from remote stub. */
1138 {
1139 char *buf;
1140
1141 QUIT; /* Allow user to bail out with ^C. */
1142 getpkt (&rs->buf, &rs->buf_size, 0);
1143 buf = rs->buf;
1144 if (buf[0] == 'E')
1145 trace_error (buf);
1146 else if (startswith (buf, "qRelocInsn:"))
1147 {
1148 ULONGEST ul;
1149 CORE_ADDR from, to, org_to;
1150 const char *p, *pp;
1151 int adjusted_size = 0;
1152 int relocated = 0;
1153
1154 p = buf + strlen ("qRelocInsn:");
1155 pp = unpack_varlen_hex (p, &ul);
1156 if (*pp != ';')
1157 error (_("invalid qRelocInsn packet: %s"), buf);
1158 from = ul;
1159
1160 p = pp + 1;
1161 unpack_varlen_hex (p, &ul);
1162 to = ul;
1163
1164 org_to = to;
1165
1166 TRY
1167 {
1168 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1169 relocated = 1;
1170 }
1171 CATCH (ex, RETURN_MASK_ALL)
1172 {
1173 if (ex.error == MEMORY_ERROR)
1174 {
1175 /* Propagate memory errors silently back to the
1176 target. The stub may have limited the range of
1177 addresses we can write to, for example. */
1178 }
1179 else
1180 {
1181 /* Something unexpectedly bad happened. Be verbose
1182 so we can tell what, and propagate the error back
1183 to the stub, so it doesn't get stuck waiting for
1184 a response. */
1185 exception_fprintf (gdb_stderr, ex,
1186 _("warning: relocating instruction: "));
1187 }
1188 putpkt ("E01");
1189 }
1190 END_CATCH
1191
1192 if (relocated)
1193 {
1194 adjusted_size = to - org_to;
1195
1196 xsnprintf (buf, rs->buf_size, "qRelocInsn:%x", adjusted_size);
1197 putpkt (buf);
1198 }
1199 }
1200 else if (buf[0] == 'O' && buf[1] != 'K')
1201 remote_console_output (buf + 1); /* 'O' message from stub */
1202 else
1203 return buf; /* Here's the actual reply. */
1204 }
1205 while (1);
1206 }
1207
1208 struct remote_arch_state *
1209 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1210 {
1211 remote_arch_state *rsa;
1212
1213 auto it = this->m_arch_states.find (gdbarch);
1214 if (it == this->m_arch_states.end ())
1215 {
1216 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1217 std::forward_as_tuple (gdbarch),
1218 std::forward_as_tuple (gdbarch));
1219 rsa = &p.first->second;
1220
1221 /* Make sure that the packet buffer is plenty big enough for
1222 this architecture. */
1223 if (this->buf_size < rsa->remote_packet_size)
1224 {
1225 this->buf_size = 2 * rsa->remote_packet_size;
1226 this->buf = (char *) xrealloc (this->buf, this->buf_size);
1227 }
1228 }
1229 else
1230 rsa = &it->second;
1231
1232 return rsa;
1233 }
1234
1235 /* Fetch the global remote target state. */
1236
1237 remote_state *
1238 remote_target::get_remote_state ()
1239 {
1240 /* Make sure that the remote architecture state has been
1241 initialized, because doing so might reallocate rs->buf. Any
1242 function which calls getpkt also needs to be mindful of changes
1243 to rs->buf, but this call limits the number of places which run
1244 into trouble. */
1245 m_remote_state.get_remote_arch_state (target_gdbarch ());
1246
1247 return &m_remote_state;
1248 }
1249
1250 /* Cleanup routine for the remote module's pspace data. */
1251
1252 static void
1253 remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1254 {
1255 char *remote_exec_file = (char *) arg;
1256
1257 xfree (remote_exec_file);
1258 }
1259
1260 /* Fetch the remote exec-file from the current program space. */
1261
1262 static const char *
1263 get_remote_exec_file (void)
1264 {
1265 char *remote_exec_file;
1266
1267 remote_exec_file
1268 = (char *) program_space_data (current_program_space,
1269 remote_pspace_data);
1270 if (remote_exec_file == NULL)
1271 return "";
1272
1273 return remote_exec_file;
1274 }
1275
1276 /* Set the remote exec file for PSPACE. */
1277
1278 static void
1279 set_pspace_remote_exec_file (struct program_space *pspace,
1280 char *remote_exec_file)
1281 {
1282 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
1283
1284 xfree (old_file);
1285 set_program_space_data (pspace, remote_pspace_data,
1286 xstrdup (remote_exec_file));
1287 }
1288
1289 /* The "set/show remote exec-file" set command hook. */
1290
1291 static void
1292 set_remote_exec_file (const char *ignored, int from_tty,
1293 struct cmd_list_element *c)
1294 {
1295 gdb_assert (remote_exec_file_var != NULL);
1296 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1297 }
1298
1299 /* The "set/show remote exec-file" show command hook. */
1300
1301 static void
1302 show_remote_exec_file (struct ui_file *file, int from_tty,
1303 struct cmd_list_element *cmd, const char *value)
1304 {
1305 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1306 }
1307
1308 static int
1309 compare_pnums (const void *lhs_, const void *rhs_)
1310 {
1311 const struct packet_reg * const *lhs
1312 = (const struct packet_reg * const *) lhs_;
1313 const struct packet_reg * const *rhs
1314 = (const struct packet_reg * const *) rhs_;
1315
1316 if ((*lhs)->pnum < (*rhs)->pnum)
1317 return -1;
1318 else if ((*lhs)->pnum == (*rhs)->pnum)
1319 return 0;
1320 else
1321 return 1;
1322 }
1323
1324 static int
1325 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1326 {
1327 int regnum, num_remote_regs, offset;
1328 struct packet_reg **remote_regs;
1329
1330 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1331 {
1332 struct packet_reg *r = &regs[regnum];
1333
1334 if (register_size (gdbarch, regnum) == 0)
1335 /* Do not try to fetch zero-sized (placeholder) registers. */
1336 r->pnum = -1;
1337 else
1338 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1339
1340 r->regnum = regnum;
1341 }
1342
1343 /* Define the g/G packet format as the contents of each register
1344 with a remote protocol number, in order of ascending protocol
1345 number. */
1346
1347 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1348 for (num_remote_regs = 0, regnum = 0;
1349 regnum < gdbarch_num_regs (gdbarch);
1350 regnum++)
1351 if (regs[regnum].pnum != -1)
1352 remote_regs[num_remote_regs++] = &regs[regnum];
1353
1354 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1355 compare_pnums);
1356
1357 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1358 {
1359 remote_regs[regnum]->in_g_packet = 1;
1360 remote_regs[regnum]->offset = offset;
1361 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1362 }
1363
1364 return offset;
1365 }
1366
1367 /* Given the architecture described by GDBARCH, return the remote
1368 protocol register's number and the register's offset in the g/G
1369 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1370 If the target does not have a mapping for REGNUM, return false,
1371 otherwise, return true. */
1372
1373 int
1374 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1375 int *pnum, int *poffset)
1376 {
1377 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1378
1379 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1380
1381 map_regcache_remote_table (gdbarch, regs.data ());
1382
1383 *pnum = regs[regnum].pnum;
1384 *poffset = regs[regnum].offset;
1385
1386 return *pnum != -1;
1387 }
1388
1389 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1390 {
1391 /* Use the architecture to build a regnum<->pnum table, which will be
1392 1:1 unless a feature set specifies otherwise. */
1393 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1394
1395 /* Record the maximum possible size of the g packet - it may turn out
1396 to be smaller. */
1397 this->sizeof_g_packet
1398 = map_regcache_remote_table (gdbarch, this->regs.get ());
1399
1400 /* Default maximum number of characters in a packet body. Many
1401 remote stubs have a hardwired buffer size of 400 bytes
1402 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1403 as the maximum packet-size to ensure that the packet and an extra
1404 NUL character can always fit in the buffer. This stops GDB
1405 trashing stubs that try to squeeze an extra NUL into what is
1406 already a full buffer (As of 1999-12-04 that was most stubs). */
1407 this->remote_packet_size = 400 - 1;
1408
1409 /* This one is filled in when a ``g'' packet is received. */
1410 this->actual_register_packet_size = 0;
1411
1412 /* Should rsa->sizeof_g_packet needs more space than the
1413 default, adjust the size accordingly. Remember that each byte is
1414 encoded as two characters. 32 is the overhead for the packet
1415 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1416 (``$NN:G...#NN'') is a better guess, the below has been padded a
1417 little. */
1418 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1419 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1420 }
1421
1422 /* Get a pointer to the current remote target. If not connected to a
1423 remote target, return NULL. */
1424
1425 static remote_target *
1426 get_current_remote_target ()
1427 {
1428 target_ops *proc_target = find_target_at (process_stratum);
1429 return dynamic_cast<remote_target *> (proc_target);
1430 }
1431
1432 /* Return the current allowed size of a remote packet. This is
1433 inferred from the current architecture, and should be used to
1434 limit the length of outgoing packets. */
1435 long
1436 remote_target::get_remote_packet_size ()
1437 {
1438 struct remote_state *rs = get_remote_state ();
1439 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1440
1441 if (rs->explicit_packet_size)
1442 return rs->explicit_packet_size;
1443
1444 return rsa->remote_packet_size;
1445 }
1446
1447 static struct packet_reg *
1448 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1449 long regnum)
1450 {
1451 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1452 return NULL;
1453 else
1454 {
1455 struct packet_reg *r = &rsa->regs[regnum];
1456
1457 gdb_assert (r->regnum == regnum);
1458 return r;
1459 }
1460 }
1461
1462 static struct packet_reg *
1463 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1464 LONGEST pnum)
1465 {
1466 int i;
1467
1468 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1469 {
1470 struct packet_reg *r = &rsa->regs[i];
1471
1472 if (r->pnum == pnum)
1473 return r;
1474 }
1475 return NULL;
1476 }
1477
1478 /* Allow the user to specify what sequence to send to the remote
1479 when he requests a program interruption: Although ^C is usually
1480 what remote systems expect (this is the default, here), it is
1481 sometimes preferable to send a break. On other systems such
1482 as the Linux kernel, a break followed by g, which is Magic SysRq g
1483 is required in order to interrupt the execution. */
1484 const char interrupt_sequence_control_c[] = "Ctrl-C";
1485 const char interrupt_sequence_break[] = "BREAK";
1486 const char interrupt_sequence_break_g[] = "BREAK-g";
1487 static const char *const interrupt_sequence_modes[] =
1488 {
1489 interrupt_sequence_control_c,
1490 interrupt_sequence_break,
1491 interrupt_sequence_break_g,
1492 NULL
1493 };
1494 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1495
1496 static void
1497 show_interrupt_sequence (struct ui_file *file, int from_tty,
1498 struct cmd_list_element *c,
1499 const char *value)
1500 {
1501 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1502 fprintf_filtered (file,
1503 _("Send the ASCII ETX character (Ctrl-c) "
1504 "to the remote target to interrupt the "
1505 "execution of the program.\n"));
1506 else if (interrupt_sequence_mode == interrupt_sequence_break)
1507 fprintf_filtered (file,
1508 _("send a break signal to the remote target "
1509 "to interrupt the execution of the program.\n"));
1510 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1511 fprintf_filtered (file,
1512 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1513 "the remote target to interrupt the execution "
1514 "of Linux kernel.\n"));
1515 else
1516 internal_error (__FILE__, __LINE__,
1517 _("Invalid value for interrupt_sequence_mode: %s."),
1518 interrupt_sequence_mode);
1519 }
1520
1521 /* This boolean variable specifies whether interrupt_sequence is sent
1522 to the remote target when gdb connects to it.
1523 This is mostly needed when you debug the Linux kernel: The Linux kernel
1524 expects BREAK g which is Magic SysRq g for connecting gdb. */
1525 static int interrupt_on_connect = 0;
1526
1527 /* This variable is used to implement the "set/show remotebreak" commands.
1528 Since these commands are now deprecated in favor of "set/show remote
1529 interrupt-sequence", it no longer has any effect on the code. */
1530 static int remote_break;
1531
1532 static void
1533 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1534 {
1535 if (remote_break)
1536 interrupt_sequence_mode = interrupt_sequence_break;
1537 else
1538 interrupt_sequence_mode = interrupt_sequence_control_c;
1539 }
1540
1541 static void
1542 show_remotebreak (struct ui_file *file, int from_tty,
1543 struct cmd_list_element *c,
1544 const char *value)
1545 {
1546 }
1547
1548 /* This variable sets the number of bits in an address that are to be
1549 sent in a memory ("M" or "m") packet. Normally, after stripping
1550 leading zeros, the entire address would be sent. This variable
1551 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1552 initial implementation of remote.c restricted the address sent in
1553 memory packets to ``host::sizeof long'' bytes - (typically 32
1554 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1555 address was never sent. Since fixing this bug may cause a break in
1556 some remote targets this variable is principly provided to
1557 facilitate backward compatibility. */
1558
1559 static unsigned int remote_address_size;
1560
1561 \f
1562 /* User configurable variables for the number of characters in a
1563 memory read/write packet. MIN (rsa->remote_packet_size,
1564 rsa->sizeof_g_packet) is the default. Some targets need smaller
1565 values (fifo overruns, et.al.) and some users need larger values
1566 (speed up transfers). The variables ``preferred_*'' (the user
1567 request), ``current_*'' (what was actually set) and ``forced_*''
1568 (Positive - a soft limit, negative - a hard limit). */
1569
1570 struct memory_packet_config
1571 {
1572 const char *name;
1573 long size;
1574 int fixed_p;
1575 };
1576
1577 /* The default max memory-write-packet-size, when the setting is
1578 "fixed". The 16k is historical. (It came from older GDB's using
1579 alloca for buffers and the knowledge (folklore?) that some hosts
1580 don't cope very well with large alloca calls.) */
1581 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1582
1583 /* The minimum remote packet size for memory transfers. Ensures we
1584 can write at least one byte. */
1585 #define MIN_MEMORY_PACKET_SIZE 20
1586
1587 /* Get the memory packet size, assuming it is fixed. */
1588
1589 static long
1590 get_fixed_memory_packet_size (struct memory_packet_config *config)
1591 {
1592 gdb_assert (config->fixed_p);
1593
1594 if (config->size <= 0)
1595 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1596 else
1597 return config->size;
1598 }
1599
1600 /* Compute the current size of a read/write packet. Since this makes
1601 use of ``actual_register_packet_size'' the computation is dynamic. */
1602
1603 long
1604 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1605 {
1606 struct remote_state *rs = get_remote_state ();
1607 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1608
1609 long what_they_get;
1610 if (config->fixed_p)
1611 what_they_get = get_fixed_memory_packet_size (config);
1612 else
1613 {
1614 what_they_get = get_remote_packet_size ();
1615 /* Limit the packet to the size specified by the user. */
1616 if (config->size > 0
1617 && what_they_get > config->size)
1618 what_they_get = config->size;
1619
1620 /* Limit it to the size of the targets ``g'' response unless we have
1621 permission from the stub to use a larger packet size. */
1622 if (rs->explicit_packet_size == 0
1623 && rsa->actual_register_packet_size > 0
1624 && what_they_get > rsa->actual_register_packet_size)
1625 what_they_get = rsa->actual_register_packet_size;
1626 }
1627 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1628 what_they_get = MIN_MEMORY_PACKET_SIZE;
1629
1630 /* Make sure there is room in the global buffer for this packet
1631 (including its trailing NUL byte). */
1632 if (rs->buf_size < what_they_get + 1)
1633 {
1634 rs->buf_size = 2 * what_they_get;
1635 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
1636 }
1637
1638 return what_they_get;
1639 }
1640
1641 /* Update the size of a read/write packet. If they user wants
1642 something really big then do a sanity check. */
1643
1644 static void
1645 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1646 {
1647 int fixed_p = config->fixed_p;
1648 long size = config->size;
1649
1650 if (args == NULL)
1651 error (_("Argument required (integer, `fixed' or `limited')."));
1652 else if (strcmp (args, "hard") == 0
1653 || strcmp (args, "fixed") == 0)
1654 fixed_p = 1;
1655 else if (strcmp (args, "soft") == 0
1656 || strcmp (args, "limit") == 0)
1657 fixed_p = 0;
1658 else
1659 {
1660 char *end;
1661
1662 size = strtoul (args, &end, 0);
1663 if (args == end)
1664 error (_("Invalid %s (bad syntax)."), config->name);
1665
1666 /* Instead of explicitly capping the size of a packet to or
1667 disallowing it, the user is allowed to set the size to
1668 something arbitrarily large. */
1669 }
1670
1671 /* Extra checks? */
1672 if (fixed_p && !config->fixed_p)
1673 {
1674 /* So that the query shows the correct value. */
1675 long query_size = (size <= 0
1676 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1677 : size);
1678
1679 if (! query (_("The target may not be able to correctly handle a %s\n"
1680 "of %ld bytes. Change the packet size? "),
1681 config->name, query_size))
1682 error (_("Packet size not changed."));
1683 }
1684 /* Update the config. */
1685 config->fixed_p = fixed_p;
1686 config->size = size;
1687 }
1688
1689 static void
1690 show_memory_packet_size (struct memory_packet_config *config)
1691 {
1692 if (config->size == 0)
1693 printf_filtered (_("The %s is 0 (default). "), config->name);
1694 else
1695 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1696 if (config->fixed_p)
1697 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1698 get_fixed_memory_packet_size (config));
1699 else
1700 {
1701 remote_target *remote = get_current_remote_target ();
1702
1703 if (remote != NULL)
1704 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1705 remote->get_memory_packet_size (config));
1706 else
1707 puts_filtered ("The actual limit will be further reduced "
1708 "dependent on the target.\n");
1709 }
1710 }
1711
1712 static struct memory_packet_config memory_write_packet_config =
1713 {
1714 "memory-write-packet-size",
1715 };
1716
1717 static void
1718 set_memory_write_packet_size (const char *args, int from_tty)
1719 {
1720 set_memory_packet_size (args, &memory_write_packet_config);
1721 }
1722
1723 static void
1724 show_memory_write_packet_size (const char *args, int from_tty)
1725 {
1726 show_memory_packet_size (&memory_write_packet_config);
1727 }
1728
1729 /* Show the number of hardware watchpoints that can be used. */
1730
1731 static void
1732 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1733 struct cmd_list_element *c,
1734 const char *value)
1735 {
1736 fprintf_filtered (file, _("The maximum number of target hardware "
1737 "watchpoints is %s.\n"), value);
1738 }
1739
1740 /* Show the length limit (in bytes) for hardware watchpoints. */
1741
1742 static void
1743 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1744 struct cmd_list_element *c,
1745 const char *value)
1746 {
1747 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1748 "hardware watchpoint is %s.\n"), value);
1749 }
1750
1751 /* Show the number of hardware breakpoints that can be used. */
1752
1753 static void
1754 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1755 struct cmd_list_element *c,
1756 const char *value)
1757 {
1758 fprintf_filtered (file, _("The maximum number of target hardware "
1759 "breakpoints is %s.\n"), value);
1760 }
1761
1762 long
1763 remote_target::get_memory_write_packet_size ()
1764 {
1765 return get_memory_packet_size (&memory_write_packet_config);
1766 }
1767
1768 static struct memory_packet_config memory_read_packet_config =
1769 {
1770 "memory-read-packet-size",
1771 };
1772
1773 static void
1774 set_memory_read_packet_size (const char *args, int from_tty)
1775 {
1776 set_memory_packet_size (args, &memory_read_packet_config);
1777 }
1778
1779 static void
1780 show_memory_read_packet_size (const char *args, int from_tty)
1781 {
1782 show_memory_packet_size (&memory_read_packet_config);
1783 }
1784
1785 long
1786 remote_target::get_memory_read_packet_size ()
1787 {
1788 long size = get_memory_packet_size (&memory_read_packet_config);
1789
1790 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1791 extra buffer size argument before the memory read size can be
1792 increased beyond this. */
1793 if (size > get_remote_packet_size ())
1794 size = get_remote_packet_size ();
1795 return size;
1796 }
1797
1798 \f
1799
1800 struct packet_config
1801 {
1802 const char *name;
1803 const char *title;
1804
1805 /* If auto, GDB auto-detects support for this packet or feature,
1806 either through qSupported, or by trying the packet and looking
1807 at the response. If true, GDB assumes the target supports this
1808 packet. If false, the packet is disabled. Configs that don't
1809 have an associated command always have this set to auto. */
1810 enum auto_boolean detect;
1811
1812 /* Does the target support this packet? */
1813 enum packet_support support;
1814 };
1815
1816 static enum packet_support packet_config_support (struct packet_config *config);
1817 static enum packet_support packet_support (int packet);
1818
1819 static void
1820 show_packet_config_cmd (struct packet_config *config)
1821 {
1822 const char *support = "internal-error";
1823
1824 switch (packet_config_support (config))
1825 {
1826 case PACKET_ENABLE:
1827 support = "enabled";
1828 break;
1829 case PACKET_DISABLE:
1830 support = "disabled";
1831 break;
1832 case PACKET_SUPPORT_UNKNOWN:
1833 support = "unknown";
1834 break;
1835 }
1836 switch (config->detect)
1837 {
1838 case AUTO_BOOLEAN_AUTO:
1839 printf_filtered (_("Support for the `%s' packet "
1840 "is auto-detected, currently %s.\n"),
1841 config->name, support);
1842 break;
1843 case AUTO_BOOLEAN_TRUE:
1844 case AUTO_BOOLEAN_FALSE:
1845 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1846 config->name, support);
1847 break;
1848 }
1849 }
1850
1851 static void
1852 add_packet_config_cmd (struct packet_config *config, const char *name,
1853 const char *title, int legacy)
1854 {
1855 char *set_doc;
1856 char *show_doc;
1857 char *cmd_name;
1858
1859 config->name = name;
1860 config->title = title;
1861 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1862 name, title);
1863 show_doc = xstrprintf ("Show current use of remote "
1864 "protocol `%s' (%s) packet",
1865 name, title);
1866 /* set/show TITLE-packet {auto,on,off} */
1867 cmd_name = xstrprintf ("%s-packet", title);
1868 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1869 &config->detect, set_doc,
1870 show_doc, NULL, /* help_doc */
1871 NULL,
1872 show_remote_protocol_packet_cmd,
1873 &remote_set_cmdlist, &remote_show_cmdlist);
1874 /* The command code copies the documentation strings. */
1875 xfree (set_doc);
1876 xfree (show_doc);
1877 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1878 if (legacy)
1879 {
1880 char *legacy_name;
1881
1882 legacy_name = xstrprintf ("%s-packet", name);
1883 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1884 &remote_set_cmdlist);
1885 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1886 &remote_show_cmdlist);
1887 }
1888 }
1889
1890 static enum packet_result
1891 packet_check_result (const char *buf)
1892 {
1893 if (buf[0] != '\0')
1894 {
1895 /* The stub recognized the packet request. Check that the
1896 operation succeeded. */
1897 if (buf[0] == 'E'
1898 && isxdigit (buf[1]) && isxdigit (buf[2])
1899 && buf[3] == '\0')
1900 /* "Enn" - definitly an error. */
1901 return PACKET_ERROR;
1902
1903 /* Always treat "E." as an error. This will be used for
1904 more verbose error messages, such as E.memtypes. */
1905 if (buf[0] == 'E' && buf[1] == '.')
1906 return PACKET_ERROR;
1907
1908 /* The packet may or may not be OK. Just assume it is. */
1909 return PACKET_OK;
1910 }
1911 else
1912 /* The stub does not support the packet. */
1913 return PACKET_UNKNOWN;
1914 }
1915
1916 static enum packet_result
1917 packet_ok (const char *buf, struct packet_config *config)
1918 {
1919 enum packet_result result;
1920
1921 if (config->detect != AUTO_BOOLEAN_TRUE
1922 && config->support == PACKET_DISABLE)
1923 internal_error (__FILE__, __LINE__,
1924 _("packet_ok: attempt to use a disabled packet"));
1925
1926 result = packet_check_result (buf);
1927 switch (result)
1928 {
1929 case PACKET_OK:
1930 case PACKET_ERROR:
1931 /* The stub recognized the packet request. */
1932 if (config->support == PACKET_SUPPORT_UNKNOWN)
1933 {
1934 if (remote_debug)
1935 fprintf_unfiltered (gdb_stdlog,
1936 "Packet %s (%s) is supported\n",
1937 config->name, config->title);
1938 config->support = PACKET_ENABLE;
1939 }
1940 break;
1941 case PACKET_UNKNOWN:
1942 /* The stub does not support the packet. */
1943 if (config->detect == AUTO_BOOLEAN_AUTO
1944 && config->support == PACKET_ENABLE)
1945 {
1946 /* If the stub previously indicated that the packet was
1947 supported then there is a protocol error. */
1948 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1949 config->name, config->title);
1950 }
1951 else if (config->detect == AUTO_BOOLEAN_TRUE)
1952 {
1953 /* The user set it wrong. */
1954 error (_("Enabled packet %s (%s) not recognized by stub"),
1955 config->name, config->title);
1956 }
1957
1958 if (remote_debug)
1959 fprintf_unfiltered (gdb_stdlog,
1960 "Packet %s (%s) is NOT supported\n",
1961 config->name, config->title);
1962 config->support = PACKET_DISABLE;
1963 break;
1964 }
1965
1966 return result;
1967 }
1968
1969 enum {
1970 PACKET_vCont = 0,
1971 PACKET_X,
1972 PACKET_qSymbol,
1973 PACKET_P,
1974 PACKET_p,
1975 PACKET_Z0,
1976 PACKET_Z1,
1977 PACKET_Z2,
1978 PACKET_Z3,
1979 PACKET_Z4,
1980 PACKET_vFile_setfs,
1981 PACKET_vFile_open,
1982 PACKET_vFile_pread,
1983 PACKET_vFile_pwrite,
1984 PACKET_vFile_close,
1985 PACKET_vFile_unlink,
1986 PACKET_vFile_readlink,
1987 PACKET_vFile_fstat,
1988 PACKET_qXfer_auxv,
1989 PACKET_qXfer_features,
1990 PACKET_qXfer_exec_file,
1991 PACKET_qXfer_libraries,
1992 PACKET_qXfer_libraries_svr4,
1993 PACKET_qXfer_memory_map,
1994 PACKET_qXfer_spu_read,
1995 PACKET_qXfer_spu_write,
1996 PACKET_qXfer_osdata,
1997 PACKET_qXfer_threads,
1998 PACKET_qXfer_statictrace_read,
1999 PACKET_qXfer_traceframe_info,
2000 PACKET_qXfer_uib,
2001 PACKET_qGetTIBAddr,
2002 PACKET_qGetTLSAddr,
2003 PACKET_qSupported,
2004 PACKET_qTStatus,
2005 PACKET_QPassSignals,
2006 PACKET_QCatchSyscalls,
2007 PACKET_QProgramSignals,
2008 PACKET_QSetWorkingDir,
2009 PACKET_QStartupWithShell,
2010 PACKET_QEnvironmentHexEncoded,
2011 PACKET_QEnvironmentReset,
2012 PACKET_QEnvironmentUnset,
2013 PACKET_qCRC,
2014 PACKET_qSearch_memory,
2015 PACKET_vAttach,
2016 PACKET_vRun,
2017 PACKET_QStartNoAckMode,
2018 PACKET_vKill,
2019 PACKET_qXfer_siginfo_read,
2020 PACKET_qXfer_siginfo_write,
2021 PACKET_qAttached,
2022
2023 /* Support for conditional tracepoints. */
2024 PACKET_ConditionalTracepoints,
2025
2026 /* Support for target-side breakpoint conditions. */
2027 PACKET_ConditionalBreakpoints,
2028
2029 /* Support for target-side breakpoint commands. */
2030 PACKET_BreakpointCommands,
2031
2032 /* Support for fast tracepoints. */
2033 PACKET_FastTracepoints,
2034
2035 /* Support for static tracepoints. */
2036 PACKET_StaticTracepoints,
2037
2038 /* Support for installing tracepoints while a trace experiment is
2039 running. */
2040 PACKET_InstallInTrace,
2041
2042 PACKET_bc,
2043 PACKET_bs,
2044 PACKET_TracepointSource,
2045 PACKET_QAllow,
2046 PACKET_qXfer_fdpic,
2047 PACKET_QDisableRandomization,
2048 PACKET_QAgent,
2049 PACKET_QTBuffer_size,
2050 PACKET_Qbtrace_off,
2051 PACKET_Qbtrace_bts,
2052 PACKET_Qbtrace_pt,
2053 PACKET_qXfer_btrace,
2054
2055 /* Support for the QNonStop packet. */
2056 PACKET_QNonStop,
2057
2058 /* Support for the QThreadEvents packet. */
2059 PACKET_QThreadEvents,
2060
2061 /* Support for multi-process extensions. */
2062 PACKET_multiprocess_feature,
2063
2064 /* Support for enabling and disabling tracepoints while a trace
2065 experiment is running. */
2066 PACKET_EnableDisableTracepoints_feature,
2067
2068 /* Support for collecting strings using the tracenz bytecode. */
2069 PACKET_tracenz_feature,
2070
2071 /* Support for continuing to run a trace experiment while GDB is
2072 disconnected. */
2073 PACKET_DisconnectedTracing_feature,
2074
2075 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2076 PACKET_augmented_libraries_svr4_read_feature,
2077
2078 /* Support for the qXfer:btrace-conf:read packet. */
2079 PACKET_qXfer_btrace_conf,
2080
2081 /* Support for the Qbtrace-conf:bts:size packet. */
2082 PACKET_Qbtrace_conf_bts_size,
2083
2084 /* Support for swbreak+ feature. */
2085 PACKET_swbreak_feature,
2086
2087 /* Support for hwbreak+ feature. */
2088 PACKET_hwbreak_feature,
2089
2090 /* Support for fork events. */
2091 PACKET_fork_event_feature,
2092
2093 /* Support for vfork events. */
2094 PACKET_vfork_event_feature,
2095
2096 /* Support for the Qbtrace-conf:pt:size packet. */
2097 PACKET_Qbtrace_conf_pt_size,
2098
2099 /* Support for exec events. */
2100 PACKET_exec_event_feature,
2101
2102 /* Support for query supported vCont actions. */
2103 PACKET_vContSupported,
2104
2105 /* Support remote CTRL-C. */
2106 PACKET_vCtrlC,
2107
2108 /* Support TARGET_WAITKIND_NO_RESUMED. */
2109 PACKET_no_resumed,
2110
2111 PACKET_MAX
2112 };
2113
2114 static struct packet_config remote_protocol_packets[PACKET_MAX];
2115
2116 /* Returns the packet's corresponding "set remote foo-packet" command
2117 state. See struct packet_config for more details. */
2118
2119 static enum auto_boolean
2120 packet_set_cmd_state (int packet)
2121 {
2122 return remote_protocol_packets[packet].detect;
2123 }
2124
2125 /* Returns whether a given packet or feature is supported. This takes
2126 into account the state of the corresponding "set remote foo-packet"
2127 command, which may be used to bypass auto-detection. */
2128
2129 static enum packet_support
2130 packet_config_support (struct packet_config *config)
2131 {
2132 switch (config->detect)
2133 {
2134 case AUTO_BOOLEAN_TRUE:
2135 return PACKET_ENABLE;
2136 case AUTO_BOOLEAN_FALSE:
2137 return PACKET_DISABLE;
2138 case AUTO_BOOLEAN_AUTO:
2139 return config->support;
2140 default:
2141 gdb_assert_not_reached (_("bad switch"));
2142 }
2143 }
2144
2145 /* Same as packet_config_support, but takes the packet's enum value as
2146 argument. */
2147
2148 static enum packet_support
2149 packet_support (int packet)
2150 {
2151 struct packet_config *config = &remote_protocol_packets[packet];
2152
2153 return packet_config_support (config);
2154 }
2155
2156 static void
2157 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2158 struct cmd_list_element *c,
2159 const char *value)
2160 {
2161 struct packet_config *packet;
2162
2163 for (packet = remote_protocol_packets;
2164 packet < &remote_protocol_packets[PACKET_MAX];
2165 packet++)
2166 {
2167 if (&packet->detect == c->var)
2168 {
2169 show_packet_config_cmd (packet);
2170 return;
2171 }
2172 }
2173 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2174 c->name);
2175 }
2176
2177 /* Should we try one of the 'Z' requests? */
2178
2179 enum Z_packet_type
2180 {
2181 Z_PACKET_SOFTWARE_BP,
2182 Z_PACKET_HARDWARE_BP,
2183 Z_PACKET_WRITE_WP,
2184 Z_PACKET_READ_WP,
2185 Z_PACKET_ACCESS_WP,
2186 NR_Z_PACKET_TYPES
2187 };
2188
2189 /* For compatibility with older distributions. Provide a ``set remote
2190 Z-packet ...'' command that updates all the Z packet types. */
2191
2192 static enum auto_boolean remote_Z_packet_detect;
2193
2194 static void
2195 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2196 struct cmd_list_element *c)
2197 {
2198 int i;
2199
2200 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2201 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2202 }
2203
2204 static void
2205 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2206 struct cmd_list_element *c,
2207 const char *value)
2208 {
2209 int i;
2210
2211 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2212 {
2213 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2214 }
2215 }
2216
2217 /* Returns true if the multi-process extensions are in effect. */
2218
2219 static int
2220 remote_multi_process_p (struct remote_state *rs)
2221 {
2222 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2223 }
2224
2225 /* Returns true if fork events are supported. */
2226
2227 static int
2228 remote_fork_event_p (struct remote_state *rs)
2229 {
2230 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2231 }
2232
2233 /* Returns true if vfork events are supported. */
2234
2235 static int
2236 remote_vfork_event_p (struct remote_state *rs)
2237 {
2238 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2239 }
2240
2241 /* Returns true if exec events are supported. */
2242
2243 static int
2244 remote_exec_event_p (struct remote_state *rs)
2245 {
2246 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2247 }
2248
2249 /* Insert fork catchpoint target routine. If fork events are enabled
2250 then return success, nothing more to do. */
2251
2252 int
2253 remote_target::insert_fork_catchpoint (int pid)
2254 {
2255 struct remote_state *rs = get_remote_state ();
2256
2257 return !remote_fork_event_p (rs);
2258 }
2259
2260 /* Remove fork catchpoint target routine. Nothing to do, just
2261 return success. */
2262
2263 int
2264 remote_target::remove_fork_catchpoint (int pid)
2265 {
2266 return 0;
2267 }
2268
2269 /* Insert vfork catchpoint target routine. If vfork events are enabled
2270 then return success, nothing more to do. */
2271
2272 int
2273 remote_target::insert_vfork_catchpoint (int pid)
2274 {
2275 struct remote_state *rs = get_remote_state ();
2276
2277 return !remote_vfork_event_p (rs);
2278 }
2279
2280 /* Remove vfork catchpoint target routine. Nothing to do, just
2281 return success. */
2282
2283 int
2284 remote_target::remove_vfork_catchpoint (int pid)
2285 {
2286 return 0;
2287 }
2288
2289 /* Insert exec catchpoint target routine. If exec events are
2290 enabled, just return success. */
2291
2292 int
2293 remote_target::insert_exec_catchpoint (int pid)
2294 {
2295 struct remote_state *rs = get_remote_state ();
2296
2297 return !remote_exec_event_p (rs);
2298 }
2299
2300 /* Remove exec catchpoint target routine. Nothing to do, just
2301 return success. */
2302
2303 int
2304 remote_target::remove_exec_catchpoint (int pid)
2305 {
2306 return 0;
2307 }
2308
2309 \f
2310
2311 static ptid_t magic_null_ptid;
2312 static ptid_t not_sent_ptid;
2313 static ptid_t any_thread_ptid;
2314
2315 /* Find out if the stub attached to PID (and hence GDB should offer to
2316 detach instead of killing it when bailing out). */
2317
2318 int
2319 remote_target::remote_query_attached (int pid)
2320 {
2321 struct remote_state *rs = get_remote_state ();
2322 size_t size = get_remote_packet_size ();
2323
2324 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2325 return 0;
2326
2327 if (remote_multi_process_p (rs))
2328 xsnprintf (rs->buf, size, "qAttached:%x", pid);
2329 else
2330 xsnprintf (rs->buf, size, "qAttached");
2331
2332 putpkt (rs->buf);
2333 getpkt (&rs->buf, &rs->buf_size, 0);
2334
2335 switch (packet_ok (rs->buf,
2336 &remote_protocol_packets[PACKET_qAttached]))
2337 {
2338 case PACKET_OK:
2339 if (strcmp (rs->buf, "1") == 0)
2340 return 1;
2341 break;
2342 case PACKET_ERROR:
2343 warning (_("Remote failure reply: %s"), rs->buf);
2344 break;
2345 case PACKET_UNKNOWN:
2346 break;
2347 }
2348
2349 return 0;
2350 }
2351
2352 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2353 has been invented by GDB, instead of reported by the target. Since
2354 we can be connected to a remote system before before knowing about
2355 any inferior, mark the target with execution when we find the first
2356 inferior. If ATTACHED is 1, then we had just attached to this
2357 inferior. If it is 0, then we just created this inferior. If it
2358 is -1, then try querying the remote stub to find out if it had
2359 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2360 attempt to open this inferior's executable as the main executable
2361 if no main executable is open already. */
2362
2363 inferior *
2364 remote_target::remote_add_inferior (int fake_pid_p, int pid, int attached,
2365 int try_open_exec)
2366 {
2367 struct inferior *inf;
2368
2369 /* Check whether this process we're learning about is to be
2370 considered attached, or if is to be considered to have been
2371 spawned by the stub. */
2372 if (attached == -1)
2373 attached = remote_query_attached (pid);
2374
2375 if (gdbarch_has_global_solist (target_gdbarch ()))
2376 {
2377 /* If the target shares code across all inferiors, then every
2378 attach adds a new inferior. */
2379 inf = add_inferior (pid);
2380
2381 /* ... and every inferior is bound to the same program space.
2382 However, each inferior may still have its own address
2383 space. */
2384 inf->aspace = maybe_new_address_space ();
2385 inf->pspace = current_program_space;
2386 }
2387 else
2388 {
2389 /* In the traditional debugging scenario, there's a 1-1 match
2390 between program/address spaces. We simply bind the inferior
2391 to the program space's address space. */
2392 inf = current_inferior ();
2393 inferior_appeared (inf, pid);
2394 }
2395
2396 inf->attach_flag = attached;
2397 inf->fake_pid_p = fake_pid_p;
2398
2399 /* If no main executable is currently open then attempt to
2400 open the file that was executed to create this inferior. */
2401 if (try_open_exec && get_exec_file (0) == NULL)
2402 exec_file_locate_attach (pid, 0, 1);
2403
2404 return inf;
2405 }
2406
2407 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2408 static remote_thread_info *get_remote_thread_info (ptid_t ptid);
2409
2410 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2411 according to RUNNING. */
2412
2413 thread_info *
2414 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2415 {
2416 struct remote_state *rs = get_remote_state ();
2417 struct thread_info *thread;
2418
2419 /* GDB historically didn't pull threads in the initial connection
2420 setup. If the remote target doesn't even have a concept of
2421 threads (e.g., a bare-metal target), even if internally we
2422 consider that a single-threaded target, mentioning a new thread
2423 might be confusing to the user. Be silent then, preserving the
2424 age old behavior. */
2425 if (rs->starting_up)
2426 thread = add_thread_silent (ptid);
2427 else
2428 thread = add_thread (ptid);
2429
2430 get_remote_thread_info (thread)->vcont_resumed = executing;
2431 set_executing (ptid, executing);
2432 set_running (ptid, running);
2433
2434 return thread;
2435 }
2436
2437 /* Come here when we learn about a thread id from the remote target.
2438 It may be the first time we hear about such thread, so take the
2439 opportunity to add it to GDB's thread list. In case this is the
2440 first time we're noticing its corresponding inferior, add it to
2441 GDB's inferior list as well. EXECUTING indicates whether the
2442 thread is (internally) executing or stopped. */
2443
2444 void
2445 remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
2446 {
2447 /* In non-stop mode, we assume new found threads are (externally)
2448 running until proven otherwise with a stop reply. In all-stop,
2449 we can only get here if all threads are stopped. */
2450 int running = target_is_non_stop_p () ? 1 : 0;
2451
2452 /* If this is a new thread, add it to GDB's thread list.
2453 If we leave it up to WFI to do this, bad things will happen. */
2454
2455 thread_info *tp = find_thread_ptid (currthread);
2456 if (tp != NULL && tp->state == THREAD_EXITED)
2457 {
2458 /* We're seeing an event on a thread id we knew had exited.
2459 This has to be a new thread reusing the old id. Add it. */
2460 remote_add_thread (currthread, running, executing);
2461 return;
2462 }
2463
2464 if (!in_thread_list (currthread))
2465 {
2466 struct inferior *inf = NULL;
2467 int pid = currthread.pid ();
2468
2469 if (inferior_ptid.is_pid ()
2470 && pid == inferior_ptid.pid ())
2471 {
2472 /* inferior_ptid has no thread member yet. This can happen
2473 with the vAttach -> remote_wait,"TAAthread:" path if the
2474 stub doesn't support qC. This is the first stop reported
2475 after an attach, so this is the main thread. Update the
2476 ptid in the thread list. */
2477 if (in_thread_list (ptid_t (pid)))
2478 thread_change_ptid (inferior_ptid, currthread);
2479 else
2480 {
2481 remote_add_thread (currthread, running, executing);
2482 inferior_ptid = currthread;
2483 }
2484 return;
2485 }
2486
2487 if (magic_null_ptid == inferior_ptid)
2488 {
2489 /* inferior_ptid is not set yet. This can happen with the
2490 vRun -> remote_wait,"TAAthread:" path if the stub
2491 doesn't support qC. This is the first stop reported
2492 after an attach, so this is the main thread. Update the
2493 ptid in the thread list. */
2494 thread_change_ptid (inferior_ptid, currthread);
2495 return;
2496 }
2497
2498 /* When connecting to a target remote, or to a target
2499 extended-remote which already was debugging an inferior, we
2500 may not know about it yet. Add it before adding its child
2501 thread, so notifications are emitted in a sensible order. */
2502 if (find_inferior_pid (currthread.pid ()) == NULL)
2503 {
2504 struct remote_state *rs = get_remote_state ();
2505 int fake_pid_p = !remote_multi_process_p (rs);
2506
2507 inf = remote_add_inferior (fake_pid_p,
2508 currthread.pid (), -1, 1);
2509 }
2510
2511 /* This is really a new thread. Add it. */
2512 thread_info *new_thr
2513 = remote_add_thread (currthread, running, executing);
2514
2515 /* If we found a new inferior, let the common code do whatever
2516 it needs to with it (e.g., read shared libraries, insert
2517 breakpoints), unless we're just setting up an all-stop
2518 connection. */
2519 if (inf != NULL)
2520 {
2521 struct remote_state *rs = get_remote_state ();
2522
2523 if (!rs->starting_up)
2524 notice_new_inferior (new_thr, executing, 0);
2525 }
2526 }
2527 }
2528
2529 /* Return THREAD's private thread data, creating it if necessary. */
2530
2531 static remote_thread_info *
2532 get_remote_thread_info (thread_info *thread)
2533 {
2534 gdb_assert (thread != NULL);
2535
2536 if (thread->priv == NULL)
2537 thread->priv.reset (new remote_thread_info);
2538
2539 return static_cast<remote_thread_info *> (thread->priv.get ());
2540 }
2541
2542 static remote_thread_info *
2543 get_remote_thread_info (ptid_t ptid)
2544 {
2545 thread_info *thr = find_thread_ptid (ptid);
2546 return get_remote_thread_info (thr);
2547 }
2548
2549 /* Call this function as a result of
2550 1) A halt indication (T packet) containing a thread id
2551 2) A direct query of currthread
2552 3) Successful execution of set thread */
2553
2554 static void
2555 record_currthread (struct remote_state *rs, ptid_t currthread)
2556 {
2557 rs->general_thread = currthread;
2558 }
2559
2560 /* If 'QPassSignals' is supported, tell the remote stub what signals
2561 it can simply pass through to the inferior without reporting. */
2562
2563 void
2564 remote_target::pass_signals (int numsigs, unsigned char *pass_signals)
2565 {
2566 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2567 {
2568 char *pass_packet, *p;
2569 int count = 0, i;
2570 struct remote_state *rs = get_remote_state ();
2571
2572 gdb_assert (numsigs < 256);
2573 for (i = 0; i < numsigs; i++)
2574 {
2575 if (pass_signals[i])
2576 count++;
2577 }
2578 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2579 strcpy (pass_packet, "QPassSignals:");
2580 p = pass_packet + strlen (pass_packet);
2581 for (i = 0; i < numsigs; i++)
2582 {
2583 if (pass_signals[i])
2584 {
2585 if (i >= 16)
2586 *p++ = tohex (i >> 4);
2587 *p++ = tohex (i & 15);
2588 if (count)
2589 *p++ = ';';
2590 else
2591 break;
2592 count--;
2593 }
2594 }
2595 *p = 0;
2596 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2597 {
2598 putpkt (pass_packet);
2599 getpkt (&rs->buf, &rs->buf_size, 0);
2600 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2601 if (rs->last_pass_packet)
2602 xfree (rs->last_pass_packet);
2603 rs->last_pass_packet = pass_packet;
2604 }
2605 else
2606 xfree (pass_packet);
2607 }
2608 }
2609
2610 /* If 'QCatchSyscalls' is supported, tell the remote stub
2611 to report syscalls to GDB. */
2612
2613 int
2614 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2615 gdb::array_view<const int> syscall_counts)
2616 {
2617 const char *catch_packet;
2618 enum packet_result result;
2619 int n_sysno = 0;
2620
2621 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2622 {
2623 /* Not supported. */
2624 return 1;
2625 }
2626
2627 if (needed && any_count == 0)
2628 {
2629 /* Count how many syscalls are to be caught. */
2630 for (size_t i = 0; i < syscall_counts.size (); i++)
2631 {
2632 if (syscall_counts[i] != 0)
2633 n_sysno++;
2634 }
2635 }
2636
2637 if (remote_debug)
2638 {
2639 fprintf_unfiltered (gdb_stdlog,
2640 "remote_set_syscall_catchpoint "
2641 "pid %d needed %d any_count %d n_sysno %d\n",
2642 pid, needed, any_count, n_sysno);
2643 }
2644
2645 std::string built_packet;
2646 if (needed)
2647 {
2648 /* Prepare a packet with the sysno list, assuming max 8+1
2649 characters for a sysno. If the resulting packet size is too
2650 big, fallback on the non-selective packet. */
2651 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2652 built_packet.reserve (maxpktsz);
2653 built_packet = "QCatchSyscalls:1";
2654 if (any_count == 0)
2655 {
2656 /* Add in each syscall to be caught. */
2657 for (size_t i = 0; i < syscall_counts.size (); i++)
2658 {
2659 if (syscall_counts[i] != 0)
2660 string_appendf (built_packet, ";%zx", i);
2661 }
2662 }
2663 if (built_packet.size () > get_remote_packet_size ())
2664 {
2665 /* catch_packet too big. Fallback to less efficient
2666 non selective mode, with GDB doing the filtering. */
2667 catch_packet = "QCatchSyscalls:1";
2668 }
2669 else
2670 catch_packet = built_packet.c_str ();
2671 }
2672 else
2673 catch_packet = "QCatchSyscalls:0";
2674
2675 struct remote_state *rs = get_remote_state ();
2676
2677 putpkt (catch_packet);
2678 getpkt (&rs->buf, &rs->buf_size, 0);
2679 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2680 if (result == PACKET_OK)
2681 return 0;
2682 else
2683 return -1;
2684 }
2685
2686 /* If 'QProgramSignals' is supported, tell the remote stub what
2687 signals it should pass through to the inferior when detaching. */
2688
2689 void
2690 remote_target::program_signals (int numsigs, unsigned char *signals)
2691 {
2692 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2693 {
2694 char *packet, *p;
2695 int count = 0, i;
2696 struct remote_state *rs = get_remote_state ();
2697
2698 gdb_assert (numsigs < 256);
2699 for (i = 0; i < numsigs; i++)
2700 {
2701 if (signals[i])
2702 count++;
2703 }
2704 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2705 strcpy (packet, "QProgramSignals:");
2706 p = packet + strlen (packet);
2707 for (i = 0; i < numsigs; i++)
2708 {
2709 if (signal_pass_state (i))
2710 {
2711 if (i >= 16)
2712 *p++ = tohex (i >> 4);
2713 *p++ = tohex (i & 15);
2714 if (count)
2715 *p++ = ';';
2716 else
2717 break;
2718 count--;
2719 }
2720 }
2721 *p = 0;
2722 if (!rs->last_program_signals_packet
2723 || strcmp (rs->last_program_signals_packet, packet) != 0)
2724 {
2725 putpkt (packet);
2726 getpkt (&rs->buf, &rs->buf_size, 0);
2727 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2728 xfree (rs->last_program_signals_packet);
2729 rs->last_program_signals_packet = packet;
2730 }
2731 else
2732 xfree (packet);
2733 }
2734 }
2735
2736 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2737 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2738 thread. If GEN is set, set the general thread, if not, then set
2739 the step/continue thread. */
2740 void
2741 remote_target::set_thread (ptid_t ptid, int gen)
2742 {
2743 struct remote_state *rs = get_remote_state ();
2744 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2745 char *buf = rs->buf;
2746 char *endbuf = rs->buf + get_remote_packet_size ();
2747
2748 if (state == ptid)
2749 return;
2750
2751 *buf++ = 'H';
2752 *buf++ = gen ? 'g' : 'c';
2753 if (ptid == magic_null_ptid)
2754 xsnprintf (buf, endbuf - buf, "0");
2755 else if (ptid == any_thread_ptid)
2756 xsnprintf (buf, endbuf - buf, "0");
2757 else if (ptid == minus_one_ptid)
2758 xsnprintf (buf, endbuf - buf, "-1");
2759 else
2760 write_ptid (buf, endbuf, ptid);
2761 putpkt (rs->buf);
2762 getpkt (&rs->buf, &rs->buf_size, 0);
2763 if (gen)
2764 rs->general_thread = ptid;
2765 else
2766 rs->continue_thread = ptid;
2767 }
2768
2769 void
2770 remote_target::set_general_thread (ptid_t ptid)
2771 {
2772 set_thread (ptid, 1);
2773 }
2774
2775 void
2776 remote_target::set_continue_thread (ptid_t ptid)
2777 {
2778 set_thread (ptid, 0);
2779 }
2780
2781 /* Change the remote current process. Which thread within the process
2782 ends up selected isn't important, as long as it is the same process
2783 as what INFERIOR_PTID points to.
2784
2785 This comes from that fact that there is no explicit notion of
2786 "selected process" in the protocol. The selected process for
2787 general operations is the process the selected general thread
2788 belongs to. */
2789
2790 void
2791 remote_target::set_general_process ()
2792 {
2793 struct remote_state *rs = get_remote_state ();
2794
2795 /* If the remote can't handle multiple processes, don't bother. */
2796 if (!remote_multi_process_p (rs))
2797 return;
2798
2799 /* We only need to change the remote current thread if it's pointing
2800 at some other process. */
2801 if (rs->general_thread.pid () != inferior_ptid.pid ())
2802 set_general_thread (inferior_ptid);
2803 }
2804
2805 \f
2806 /* Return nonzero if this is the main thread that we made up ourselves
2807 to model non-threaded targets as single-threaded. */
2808
2809 static int
2810 remote_thread_always_alive (ptid_t ptid)
2811 {
2812 if (ptid == magic_null_ptid)
2813 /* The main thread is always alive. */
2814 return 1;
2815
2816 if (ptid.pid () != 0 && ptid.lwp () == 0)
2817 /* The main thread is always alive. This can happen after a
2818 vAttach, if the remote side doesn't support
2819 multi-threading. */
2820 return 1;
2821
2822 return 0;
2823 }
2824
2825 /* Return nonzero if the thread PTID is still alive on the remote
2826 system. */
2827
2828 bool
2829 remote_target::thread_alive (ptid_t ptid)
2830 {
2831 struct remote_state *rs = get_remote_state ();
2832 char *p, *endp;
2833
2834 /* Check if this is a thread that we made up ourselves to model
2835 non-threaded targets as single-threaded. */
2836 if (remote_thread_always_alive (ptid))
2837 return 1;
2838
2839 p = rs->buf;
2840 endp = rs->buf + get_remote_packet_size ();
2841
2842 *p++ = 'T';
2843 write_ptid (p, endp, ptid);
2844
2845 putpkt (rs->buf);
2846 getpkt (&rs->buf, &rs->buf_size, 0);
2847 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2848 }
2849
2850 /* Return a pointer to a thread name if we know it and NULL otherwise.
2851 The thread_info object owns the memory for the name. */
2852
2853 const char *
2854 remote_target::thread_name (struct thread_info *info)
2855 {
2856 if (info->priv != NULL)
2857 {
2858 const std::string &name = get_remote_thread_info (info)->name;
2859 return !name.empty () ? name.c_str () : NULL;
2860 }
2861
2862 return NULL;
2863 }
2864
2865 /* About these extended threadlist and threadinfo packets. They are
2866 variable length packets but, the fields within them are often fixed
2867 length. They are redundent enough to send over UDP as is the
2868 remote protocol in general. There is a matching unit test module
2869 in libstub. */
2870
2871 /* WARNING: This threadref data structure comes from the remote O.S.,
2872 libstub protocol encoding, and remote.c. It is not particularly
2873 changable. */
2874
2875 /* Right now, the internal structure is int. We want it to be bigger.
2876 Plan to fix this. */
2877
2878 typedef int gdb_threadref; /* Internal GDB thread reference. */
2879
2880 /* gdb_ext_thread_info is an internal GDB data structure which is
2881 equivalent to the reply of the remote threadinfo packet. */
2882
2883 struct gdb_ext_thread_info
2884 {
2885 threadref threadid; /* External form of thread reference. */
2886 int active; /* Has state interesting to GDB?
2887 regs, stack. */
2888 char display[256]; /* Brief state display, name,
2889 blocked/suspended. */
2890 char shortname[32]; /* To be used to name threads. */
2891 char more_display[256]; /* Long info, statistics, queue depth,
2892 whatever. */
2893 };
2894
2895 /* The volume of remote transfers can be limited by submitting
2896 a mask containing bits specifying the desired information.
2897 Use a union of these values as the 'selection' parameter to
2898 get_thread_info. FIXME: Make these TAG names more thread specific. */
2899
2900 #define TAG_THREADID 1
2901 #define TAG_EXISTS 2
2902 #define TAG_DISPLAY 4
2903 #define TAG_THREADNAME 8
2904 #define TAG_MOREDISPLAY 16
2905
2906 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2907
2908 static char *unpack_nibble (char *buf, int *val);
2909
2910 static char *unpack_byte (char *buf, int *value);
2911
2912 static char *pack_int (char *buf, int value);
2913
2914 static char *unpack_int (char *buf, int *value);
2915
2916 static char *unpack_string (char *src, char *dest, int length);
2917
2918 static char *pack_threadid (char *pkt, threadref *id);
2919
2920 static char *unpack_threadid (char *inbuf, threadref *id);
2921
2922 void int_to_threadref (threadref *id, int value);
2923
2924 static int threadref_to_int (threadref *ref);
2925
2926 static void copy_threadref (threadref *dest, threadref *src);
2927
2928 static int threadmatch (threadref *dest, threadref *src);
2929
2930 static char *pack_threadinfo_request (char *pkt, int mode,
2931 threadref *id);
2932
2933 static char *pack_threadlist_request (char *pkt, int startflag,
2934 int threadcount,
2935 threadref *nextthread);
2936
2937 static int remote_newthread_step (threadref *ref, void *context);
2938
2939
2940 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2941 buffer we're allowed to write to. Returns
2942 BUF+CHARACTERS_WRITTEN. */
2943
2944 char *
2945 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2946 {
2947 int pid, tid;
2948 struct remote_state *rs = get_remote_state ();
2949
2950 if (remote_multi_process_p (rs))
2951 {
2952 pid = ptid.pid ();
2953 if (pid < 0)
2954 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2955 else
2956 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2957 }
2958 tid = ptid.lwp ();
2959 if (tid < 0)
2960 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2961 else
2962 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2963
2964 return buf;
2965 }
2966
2967 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2968 last parsed char. Returns null_ptid if no thread id is found, and
2969 throws an error if the thread id has an invalid format. */
2970
2971 static ptid_t
2972 read_ptid (const char *buf, const char **obuf)
2973 {
2974 const char *p = buf;
2975 const char *pp;
2976 ULONGEST pid = 0, tid = 0;
2977
2978 if (*p == 'p')
2979 {
2980 /* Multi-process ptid. */
2981 pp = unpack_varlen_hex (p + 1, &pid);
2982 if (*pp != '.')
2983 error (_("invalid remote ptid: %s"), p);
2984
2985 p = pp;
2986 pp = unpack_varlen_hex (p + 1, &tid);
2987 if (obuf)
2988 *obuf = pp;
2989 return ptid_t (pid, tid, 0);
2990 }
2991
2992 /* No multi-process. Just a tid. */
2993 pp = unpack_varlen_hex (p, &tid);
2994
2995 /* Return null_ptid when no thread id is found. */
2996 if (p == pp)
2997 {
2998 if (obuf)
2999 *obuf = pp;
3000 return null_ptid;
3001 }
3002
3003 /* Since the stub is not sending a process id, then default to
3004 what's in inferior_ptid, unless it's null at this point. If so,
3005 then since there's no way to know the pid of the reported
3006 threads, use the magic number. */
3007 if (inferior_ptid == null_ptid)
3008 pid = magic_null_ptid.pid ();
3009 else
3010 pid = inferior_ptid.pid ();
3011
3012 if (obuf)
3013 *obuf = pp;
3014 return ptid_t (pid, tid, 0);
3015 }
3016
3017 static int
3018 stubhex (int ch)
3019 {
3020 if (ch >= 'a' && ch <= 'f')
3021 return ch - 'a' + 10;
3022 if (ch >= '0' && ch <= '9')
3023 return ch - '0';
3024 if (ch >= 'A' && ch <= 'F')
3025 return ch - 'A' + 10;
3026 return -1;
3027 }
3028
3029 static int
3030 stub_unpack_int (char *buff, int fieldlength)
3031 {
3032 int nibble;
3033 int retval = 0;
3034
3035 while (fieldlength)
3036 {
3037 nibble = stubhex (*buff++);
3038 retval |= nibble;
3039 fieldlength--;
3040 if (fieldlength)
3041 retval = retval << 4;
3042 }
3043 return retval;
3044 }
3045
3046 static char *
3047 unpack_nibble (char *buf, int *val)
3048 {
3049 *val = fromhex (*buf++);
3050 return buf;
3051 }
3052
3053 static char *
3054 unpack_byte (char *buf, int *value)
3055 {
3056 *value = stub_unpack_int (buf, 2);
3057 return buf + 2;
3058 }
3059
3060 static char *
3061 pack_int (char *buf, int value)
3062 {
3063 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3064 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3065 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3066 buf = pack_hex_byte (buf, (value & 0xff));
3067 return buf;
3068 }
3069
3070 static char *
3071 unpack_int (char *buf, int *value)
3072 {
3073 *value = stub_unpack_int (buf, 8);
3074 return buf + 8;
3075 }
3076
3077 #if 0 /* Currently unused, uncomment when needed. */
3078 static char *pack_string (char *pkt, char *string);
3079
3080 static char *
3081 pack_string (char *pkt, char *string)
3082 {
3083 char ch;
3084 int len;
3085
3086 len = strlen (string);
3087 if (len > 200)
3088 len = 200; /* Bigger than most GDB packets, junk??? */
3089 pkt = pack_hex_byte (pkt, len);
3090 while (len-- > 0)
3091 {
3092 ch = *string++;
3093 if ((ch == '\0') || (ch == '#'))
3094 ch = '*'; /* Protect encapsulation. */
3095 *pkt++ = ch;
3096 }
3097 return pkt;
3098 }
3099 #endif /* 0 (unused) */
3100
3101 static char *
3102 unpack_string (char *src, char *dest, int length)
3103 {
3104 while (length--)
3105 *dest++ = *src++;
3106 *dest = '\0';
3107 return src;
3108 }
3109
3110 static char *
3111 pack_threadid (char *pkt, threadref *id)
3112 {
3113 char *limit;
3114 unsigned char *altid;
3115
3116 altid = (unsigned char *) id;
3117 limit = pkt + BUF_THREAD_ID_SIZE;
3118 while (pkt < limit)
3119 pkt = pack_hex_byte (pkt, *altid++);
3120 return pkt;
3121 }
3122
3123
3124 static char *
3125 unpack_threadid (char *inbuf, threadref *id)
3126 {
3127 char *altref;
3128 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3129 int x, y;
3130
3131 altref = (char *) id;
3132
3133 while (inbuf < limit)
3134 {
3135 x = stubhex (*inbuf++);
3136 y = stubhex (*inbuf++);
3137 *altref++ = (x << 4) | y;
3138 }
3139 return inbuf;
3140 }
3141
3142 /* Externally, threadrefs are 64 bits but internally, they are still
3143 ints. This is due to a mismatch of specifications. We would like
3144 to use 64bit thread references internally. This is an adapter
3145 function. */
3146
3147 void
3148 int_to_threadref (threadref *id, int value)
3149 {
3150 unsigned char *scan;
3151
3152 scan = (unsigned char *) id;
3153 {
3154 int i = 4;
3155 while (i--)
3156 *scan++ = 0;
3157 }
3158 *scan++ = (value >> 24) & 0xff;
3159 *scan++ = (value >> 16) & 0xff;
3160 *scan++ = (value >> 8) & 0xff;
3161 *scan++ = (value & 0xff);
3162 }
3163
3164 static int
3165 threadref_to_int (threadref *ref)
3166 {
3167 int i, value = 0;
3168 unsigned char *scan;
3169
3170 scan = *ref;
3171 scan += 4;
3172 i = 4;
3173 while (i-- > 0)
3174 value = (value << 8) | ((*scan++) & 0xff);
3175 return value;
3176 }
3177
3178 static void
3179 copy_threadref (threadref *dest, threadref *src)
3180 {
3181 int i;
3182 unsigned char *csrc, *cdest;
3183
3184 csrc = (unsigned char *) src;
3185 cdest = (unsigned char *) dest;
3186 i = 8;
3187 while (i--)
3188 *cdest++ = *csrc++;
3189 }
3190
3191 static int
3192 threadmatch (threadref *dest, threadref *src)
3193 {
3194 /* Things are broken right now, so just assume we got a match. */
3195 #if 0
3196 unsigned char *srcp, *destp;
3197 int i, result;
3198 srcp = (char *) src;
3199 destp = (char *) dest;
3200
3201 result = 1;
3202 while (i-- > 0)
3203 result &= (*srcp++ == *destp++) ? 1 : 0;
3204 return result;
3205 #endif
3206 return 1;
3207 }
3208
3209 /*
3210 threadid:1, # always request threadid
3211 context_exists:2,
3212 display:4,
3213 unique_name:8,
3214 more_display:16
3215 */
3216
3217 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3218
3219 static char *
3220 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3221 {
3222 *pkt++ = 'q'; /* Info Query */
3223 *pkt++ = 'P'; /* process or thread info */
3224 pkt = pack_int (pkt, mode); /* mode */
3225 pkt = pack_threadid (pkt, id); /* threadid */
3226 *pkt = '\0'; /* terminate */
3227 return pkt;
3228 }
3229
3230 /* These values tag the fields in a thread info response packet. */
3231 /* Tagging the fields allows us to request specific fields and to
3232 add more fields as time goes by. */
3233
3234 #define TAG_THREADID 1 /* Echo the thread identifier. */
3235 #define TAG_EXISTS 2 /* Is this process defined enough to
3236 fetch registers and its stack? */
3237 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3238 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3239 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3240 the process. */
3241
3242 int
3243 remote_target::remote_unpack_thread_info_response (char *pkt,
3244 threadref *expectedref,
3245 gdb_ext_thread_info *info)
3246 {
3247 struct remote_state *rs = get_remote_state ();
3248 int mask, length;
3249 int tag;
3250 threadref ref;
3251 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
3252 int retval = 1;
3253
3254 /* info->threadid = 0; FIXME: implement zero_threadref. */
3255 info->active = 0;
3256 info->display[0] = '\0';
3257 info->shortname[0] = '\0';
3258 info->more_display[0] = '\0';
3259
3260 /* Assume the characters indicating the packet type have been
3261 stripped. */
3262 pkt = unpack_int (pkt, &mask); /* arg mask */
3263 pkt = unpack_threadid (pkt, &ref);
3264
3265 if (mask == 0)
3266 warning (_("Incomplete response to threadinfo request."));
3267 if (!threadmatch (&ref, expectedref))
3268 { /* This is an answer to a different request. */
3269 warning (_("ERROR RMT Thread info mismatch."));
3270 return 0;
3271 }
3272 copy_threadref (&info->threadid, &ref);
3273
3274 /* Loop on tagged fields , try to bail if somthing goes wrong. */
3275
3276 /* Packets are terminated with nulls. */
3277 while ((pkt < limit) && mask && *pkt)
3278 {
3279 pkt = unpack_int (pkt, &tag); /* tag */
3280 pkt = unpack_byte (pkt, &length); /* length */
3281 if (!(tag & mask)) /* Tags out of synch with mask. */
3282 {
3283 warning (_("ERROR RMT: threadinfo tag mismatch."));
3284 retval = 0;
3285 break;
3286 }
3287 if (tag == TAG_THREADID)
3288 {
3289 if (length != 16)
3290 {
3291 warning (_("ERROR RMT: length of threadid is not 16."));
3292 retval = 0;
3293 break;
3294 }
3295 pkt = unpack_threadid (pkt, &ref);
3296 mask = mask & ~TAG_THREADID;
3297 continue;
3298 }
3299 if (tag == TAG_EXISTS)
3300 {
3301 info->active = stub_unpack_int (pkt, length);
3302 pkt += length;
3303 mask = mask & ~(TAG_EXISTS);
3304 if (length > 8)
3305 {
3306 warning (_("ERROR RMT: 'exists' length too long."));
3307 retval = 0;
3308 break;
3309 }
3310 continue;
3311 }
3312 if (tag == TAG_THREADNAME)
3313 {
3314 pkt = unpack_string (pkt, &info->shortname[0], length);
3315 mask = mask & ~TAG_THREADNAME;
3316 continue;
3317 }
3318 if (tag == TAG_DISPLAY)
3319 {
3320 pkt = unpack_string (pkt, &info->display[0], length);
3321 mask = mask & ~TAG_DISPLAY;
3322 continue;
3323 }
3324 if (tag == TAG_MOREDISPLAY)
3325 {
3326 pkt = unpack_string (pkt, &info->more_display[0], length);
3327 mask = mask & ~TAG_MOREDISPLAY;
3328 continue;
3329 }
3330 warning (_("ERROR RMT: unknown thread info tag."));
3331 break; /* Not a tag we know about. */
3332 }
3333 return retval;
3334 }
3335
3336 int
3337 remote_target::remote_get_threadinfo (threadref *threadid,
3338 int fieldset,
3339 gdb_ext_thread_info *info)
3340 {
3341 struct remote_state *rs = get_remote_state ();
3342 int result;
3343
3344 pack_threadinfo_request (rs->buf, fieldset, threadid);
3345 putpkt (rs->buf);
3346 getpkt (&rs->buf, &rs->buf_size, 0);
3347
3348 if (rs->buf[0] == '\0')
3349 return 0;
3350
3351 result = remote_unpack_thread_info_response (rs->buf + 2,
3352 threadid, info);
3353 return result;
3354 }
3355
3356 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3357
3358 static char *
3359 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3360 threadref *nextthread)
3361 {
3362 *pkt++ = 'q'; /* info query packet */
3363 *pkt++ = 'L'; /* Process LIST or threadLIST request */
3364 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
3365 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3366 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3367 *pkt = '\0';
3368 return pkt;
3369 }
3370
3371 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3372
3373 int
3374 remote_target::parse_threadlist_response (char *pkt, int result_limit,
3375 threadref *original_echo,
3376 threadref *resultlist,
3377 int *doneflag)
3378 {
3379 struct remote_state *rs = get_remote_state ();
3380 char *limit;
3381 int count, resultcount, done;
3382
3383 resultcount = 0;
3384 /* Assume the 'q' and 'M chars have been stripped. */
3385 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
3386 /* done parse past here */
3387 pkt = unpack_byte (pkt, &count); /* count field */
3388 pkt = unpack_nibble (pkt, &done);
3389 /* The first threadid is the argument threadid. */
3390 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3391 while ((count-- > 0) && (pkt < limit))
3392 {
3393 pkt = unpack_threadid (pkt, resultlist++);
3394 if (resultcount++ >= result_limit)
3395 break;
3396 }
3397 if (doneflag)
3398 *doneflag = done;
3399 return resultcount;
3400 }
3401
3402 /* Fetch the next batch of threads from the remote. Returns -1 if the
3403 qL packet is not supported, 0 on error and 1 on success. */
3404
3405 int
3406 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3407 int result_limit, int *done, int *result_count,
3408 threadref *threadlist)
3409 {
3410 struct remote_state *rs = get_remote_state ();
3411 int result = 1;
3412
3413 /* Trancate result limit to be smaller than the packet size. */
3414 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3415 >= get_remote_packet_size ())
3416 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3417
3418 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
3419 putpkt (rs->buf);
3420 getpkt (&rs->buf, &rs->buf_size, 0);
3421 if (*rs->buf == '\0')
3422 {
3423 /* Packet not supported. */
3424 return -1;
3425 }
3426
3427 *result_count =
3428 parse_threadlist_response (rs->buf + 2, result_limit,
3429 &rs->echo_nextthread, threadlist, done);
3430
3431 if (!threadmatch (&rs->echo_nextthread, nextthread))
3432 {
3433 /* FIXME: This is a good reason to drop the packet. */
3434 /* Possably, there is a duplicate response. */
3435 /* Possabilities :
3436 retransmit immediatly - race conditions
3437 retransmit after timeout - yes
3438 exit
3439 wait for packet, then exit
3440 */
3441 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3442 return 0; /* I choose simply exiting. */
3443 }
3444 if (*result_count <= 0)
3445 {
3446 if (*done != 1)
3447 {
3448 warning (_("RMT ERROR : failed to get remote thread list."));
3449 result = 0;
3450 }
3451 return result; /* break; */
3452 }
3453 if (*result_count > result_limit)
3454 {
3455 *result_count = 0;
3456 warning (_("RMT ERROR: threadlist response longer than requested."));
3457 return 0;
3458 }
3459 return result;
3460 }
3461
3462 /* Fetch the list of remote threads, with the qL packet, and call
3463 STEPFUNCTION for each thread found. Stops iterating and returns 1
3464 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3465 STEPFUNCTION returns false. If the packet is not supported,
3466 returns -1. */
3467
3468 int
3469 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3470 void *context, int looplimit)
3471 {
3472 struct remote_state *rs = get_remote_state ();
3473 int done, i, result_count;
3474 int startflag = 1;
3475 int result = 1;
3476 int loopcount = 0;
3477
3478 done = 0;
3479 while (!done)
3480 {
3481 if (loopcount++ > looplimit)
3482 {
3483 result = 0;
3484 warning (_("Remote fetch threadlist -infinite loop-."));
3485 break;
3486 }
3487 result = remote_get_threadlist (startflag, &rs->nextthread,
3488 MAXTHREADLISTRESULTS,
3489 &done, &result_count,
3490 rs->resultthreadlist);
3491 if (result <= 0)
3492 break;
3493 /* Clear for later iterations. */
3494 startflag = 0;
3495 /* Setup to resume next batch of thread references, set nextthread. */
3496 if (result_count >= 1)
3497 copy_threadref (&rs->nextthread,
3498 &rs->resultthreadlist[result_count - 1]);
3499 i = 0;
3500 while (result_count--)
3501 {
3502 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3503 {
3504 result = 0;
3505 break;
3506 }
3507 }
3508 }
3509 return result;
3510 }
3511
3512 /* A thread found on the remote target. */
3513
3514 struct thread_item
3515 {
3516 explicit thread_item (ptid_t ptid_)
3517 : ptid (ptid_)
3518 {}
3519
3520 thread_item (thread_item &&other) = default;
3521 thread_item &operator= (thread_item &&other) = default;
3522
3523 DISABLE_COPY_AND_ASSIGN (thread_item);
3524
3525 /* The thread's PTID. */
3526 ptid_t ptid;
3527
3528 /* The thread's extra info. */
3529 std::string extra;
3530
3531 /* The thread's name. */
3532 std::string name;
3533
3534 /* The core the thread was running on. -1 if not known. */
3535 int core = -1;
3536
3537 /* The thread handle associated with the thread. */
3538 gdb::byte_vector thread_handle;
3539 };
3540
3541 /* Context passed around to the various methods listing remote
3542 threads. As new threads are found, they're added to the ITEMS
3543 vector. */
3544
3545 struct threads_listing_context
3546 {
3547 /* Return true if this object contains an entry for a thread with ptid
3548 PTID. */
3549
3550 bool contains_thread (ptid_t ptid) const
3551 {
3552 auto match_ptid = [&] (const thread_item &item)
3553 {
3554 return item.ptid == ptid;
3555 };
3556
3557 auto it = std::find_if (this->items.begin (),
3558 this->items.end (),
3559 match_ptid);
3560
3561 return it != this->items.end ();
3562 }
3563
3564 /* Remove the thread with ptid PTID. */
3565
3566 void remove_thread (ptid_t ptid)
3567 {
3568 auto match_ptid = [&] (const thread_item &item)
3569 {
3570 return item.ptid == ptid;
3571 };
3572
3573 auto it = std::remove_if (this->items.begin (),
3574 this->items.end (),
3575 match_ptid);
3576
3577 if (it != this->items.end ())
3578 this->items.erase (it);
3579 }
3580
3581 /* The threads found on the remote target. */
3582 std::vector<thread_item> items;
3583 };
3584
3585 static int
3586 remote_newthread_step (threadref *ref, void *data)
3587 {
3588 struct threads_listing_context *context
3589 = (struct threads_listing_context *) data;
3590 int pid = inferior_ptid.pid ();
3591 int lwp = threadref_to_int (ref);
3592 ptid_t ptid (pid, lwp);
3593
3594 context->items.emplace_back (ptid);
3595
3596 return 1; /* continue iterator */
3597 }
3598
3599 #define CRAZY_MAX_THREADS 1000
3600
3601 ptid_t
3602 remote_target::remote_current_thread (ptid_t oldpid)
3603 {
3604 struct remote_state *rs = get_remote_state ();
3605
3606 putpkt ("qC");
3607 getpkt (&rs->buf, &rs->buf_size, 0);
3608 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3609 {
3610 const char *obuf;
3611 ptid_t result;
3612
3613 result = read_ptid (&rs->buf[2], &obuf);
3614 if (*obuf != '\0' && remote_debug)
3615 fprintf_unfiltered (gdb_stdlog,
3616 "warning: garbage in qC reply\n");
3617
3618 return result;
3619 }
3620 else
3621 return oldpid;
3622 }
3623
3624 /* List remote threads using the deprecated qL packet. */
3625
3626 int
3627 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3628 {
3629 if (remote_threadlist_iterator (remote_newthread_step, context,
3630 CRAZY_MAX_THREADS) >= 0)
3631 return 1;
3632
3633 return 0;
3634 }
3635
3636 #if defined(HAVE_LIBEXPAT)
3637
3638 static void
3639 start_thread (struct gdb_xml_parser *parser,
3640 const struct gdb_xml_element *element,
3641 void *user_data,
3642 std::vector<gdb_xml_value> &attributes)
3643 {
3644 struct threads_listing_context *data
3645 = (struct threads_listing_context *) user_data;
3646 struct gdb_xml_value *attr;
3647
3648 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3649 ptid_t ptid = read_ptid (id, NULL);
3650
3651 data->items.emplace_back (ptid);
3652 thread_item &item = data->items.back ();
3653
3654 attr = xml_find_attribute (attributes, "core");
3655 if (attr != NULL)
3656 item.core = *(ULONGEST *) attr->value.get ();
3657
3658 attr = xml_find_attribute (attributes, "name");
3659 if (attr != NULL)
3660 item.name = (const char *) attr->value.get ();
3661
3662 attr = xml_find_attribute (attributes, "handle");
3663 if (attr != NULL)
3664 item.thread_handle = hex2bin ((const char *) attr->value.get ());
3665 }
3666
3667 static void
3668 end_thread (struct gdb_xml_parser *parser,
3669 const struct gdb_xml_element *element,
3670 void *user_data, const char *body_text)
3671 {
3672 struct threads_listing_context *data
3673 = (struct threads_listing_context *) user_data;
3674
3675 if (body_text != NULL && *body_text != '\0')
3676 data->items.back ().extra = body_text;
3677 }
3678
3679 const struct gdb_xml_attribute thread_attributes[] = {
3680 { "id", GDB_XML_AF_NONE, NULL, NULL },
3681 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3682 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3683 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3684 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3685 };
3686
3687 const struct gdb_xml_element thread_children[] = {
3688 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3689 };
3690
3691 const struct gdb_xml_element threads_children[] = {
3692 { "thread", thread_attributes, thread_children,
3693 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3694 start_thread, end_thread },
3695 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3696 };
3697
3698 const struct gdb_xml_element threads_elements[] = {
3699 { "threads", NULL, threads_children,
3700 GDB_XML_EF_NONE, NULL, NULL },
3701 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3702 };
3703
3704 #endif
3705
3706 /* List remote threads using qXfer:threads:read. */
3707
3708 int
3709 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3710 {
3711 #if defined(HAVE_LIBEXPAT)
3712 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3713 {
3714 gdb::optional<gdb::char_vector> xml
3715 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3716
3717 if (xml && (*xml)[0] != '\0')
3718 {
3719 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3720 threads_elements, xml->data (), context);
3721 }
3722
3723 return 1;
3724 }
3725 #endif
3726
3727 return 0;
3728 }
3729
3730 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3731
3732 int
3733 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3734 {
3735 struct remote_state *rs = get_remote_state ();
3736
3737 if (rs->use_threadinfo_query)
3738 {
3739 const char *bufp;
3740
3741 putpkt ("qfThreadInfo");
3742 getpkt (&rs->buf, &rs->buf_size, 0);
3743 bufp = rs->buf;
3744 if (bufp[0] != '\0') /* q packet recognized */
3745 {
3746 while (*bufp++ == 'm') /* reply contains one or more TID */
3747 {
3748 do
3749 {
3750 ptid_t ptid = read_ptid (bufp, &bufp);
3751 context->items.emplace_back (ptid);
3752 }
3753 while (*bufp++ == ','); /* comma-separated list */
3754 putpkt ("qsThreadInfo");
3755 getpkt (&rs->buf, &rs->buf_size, 0);
3756 bufp = rs->buf;
3757 }
3758 return 1;
3759 }
3760 else
3761 {
3762 /* Packet not recognized. */
3763 rs->use_threadinfo_query = 0;
3764 }
3765 }
3766
3767 return 0;
3768 }
3769
3770 /* Implement the to_update_thread_list function for the remote
3771 targets. */
3772
3773 void
3774 remote_target::update_thread_list ()
3775 {
3776 struct threads_listing_context context;
3777 int got_list = 0;
3778
3779 /* We have a few different mechanisms to fetch the thread list. Try
3780 them all, starting with the most preferred one first, falling
3781 back to older methods. */
3782 if (remote_get_threads_with_qxfer (&context)
3783 || remote_get_threads_with_qthreadinfo (&context)
3784 || remote_get_threads_with_ql (&context))
3785 {
3786 got_list = 1;
3787
3788 if (context.items.empty ()
3789 && remote_thread_always_alive (inferior_ptid))
3790 {
3791 /* Some targets don't really support threads, but still
3792 reply an (empty) thread list in response to the thread
3793 listing packets, instead of replying "packet not
3794 supported". Exit early so we don't delete the main
3795 thread. */
3796 return;
3797 }
3798
3799 /* CONTEXT now holds the current thread list on the remote
3800 target end. Delete GDB-side threads no longer found on the
3801 target. */
3802 for (thread_info *tp : all_threads_safe ())
3803 {
3804 if (!context.contains_thread (tp->ptid))
3805 {
3806 /* Not found. */
3807 delete_thread (tp);
3808 }
3809 }
3810
3811 /* Remove any unreported fork child threads from CONTEXT so
3812 that we don't interfere with follow fork, which is where
3813 creation of such threads is handled. */
3814 remove_new_fork_children (&context);
3815
3816 /* And now add threads we don't know about yet to our list. */
3817 for (thread_item &item : context.items)
3818 {
3819 if (item.ptid != null_ptid)
3820 {
3821 /* In non-stop mode, we assume new found threads are
3822 executing until proven otherwise with a stop reply.
3823 In all-stop, we can only get here if all threads are
3824 stopped. */
3825 int executing = target_is_non_stop_p () ? 1 : 0;
3826
3827 remote_notice_new_inferior (item.ptid, executing);
3828
3829 thread_info *tp = find_thread_ptid (item.ptid);
3830 remote_thread_info *info = get_remote_thread_info (tp);
3831 info->core = item.core;
3832 info->extra = std::move (item.extra);
3833 info->name = std::move (item.name);
3834 info->thread_handle = std::move (item.thread_handle);
3835 }
3836 }
3837 }
3838
3839 if (!got_list)
3840 {
3841 /* If no thread listing method is supported, then query whether
3842 each known thread is alive, one by one, with the T packet.
3843 If the target doesn't support threads at all, then this is a
3844 no-op. See remote_thread_alive. */
3845 prune_threads ();
3846 }
3847 }
3848
3849 /*
3850 * Collect a descriptive string about the given thread.
3851 * The target may say anything it wants to about the thread
3852 * (typically info about its blocked / runnable state, name, etc.).
3853 * This string will appear in the info threads display.
3854 *
3855 * Optional: targets are not required to implement this function.
3856 */
3857
3858 const char *
3859 remote_target::extra_thread_info (thread_info *tp)
3860 {
3861 struct remote_state *rs = get_remote_state ();
3862 int set;
3863 threadref id;
3864 struct gdb_ext_thread_info threadinfo;
3865
3866 if (rs->remote_desc == 0) /* paranoia */
3867 internal_error (__FILE__, __LINE__,
3868 _("remote_threads_extra_info"));
3869
3870 if (tp->ptid == magic_null_ptid
3871 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
3872 /* This is the main thread which was added by GDB. The remote
3873 server doesn't know about it. */
3874 return NULL;
3875
3876 std::string &extra = get_remote_thread_info (tp)->extra;
3877
3878 /* If already have cached info, use it. */
3879 if (!extra.empty ())
3880 return extra.c_str ();
3881
3882 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3883 {
3884 /* If we're using qXfer:threads:read, then the extra info is
3885 included in the XML. So if we didn't have anything cached,
3886 it's because there's really no extra info. */
3887 return NULL;
3888 }
3889
3890 if (rs->use_threadextra_query)
3891 {
3892 char *b = rs->buf;
3893 char *endb = rs->buf + get_remote_packet_size ();
3894
3895 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3896 b += strlen (b);
3897 write_ptid (b, endb, tp->ptid);
3898
3899 putpkt (rs->buf);
3900 getpkt (&rs->buf, &rs->buf_size, 0);
3901 if (rs->buf[0] != 0)
3902 {
3903 extra.resize (strlen (rs->buf) / 2);
3904 hex2bin (rs->buf, (gdb_byte *) &extra[0], extra.size ());
3905 return extra.c_str ();
3906 }
3907 }
3908
3909 /* If the above query fails, fall back to the old method. */
3910 rs->use_threadextra_query = 0;
3911 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3912 | TAG_MOREDISPLAY | TAG_DISPLAY;
3913 int_to_threadref (&id, tp->ptid.lwp ());
3914 if (remote_get_threadinfo (&id, set, &threadinfo))
3915 if (threadinfo.active)
3916 {
3917 if (*threadinfo.shortname)
3918 string_appendf (extra, " Name: %s", threadinfo.shortname);
3919 if (*threadinfo.display)
3920 {
3921 if (!extra.empty ())
3922 extra += ',';
3923 string_appendf (extra, " State: %s", threadinfo.display);
3924 }
3925 if (*threadinfo.more_display)
3926 {
3927 if (!extra.empty ())
3928 extra += ',';
3929 string_appendf (extra, " Priority: %s", threadinfo.more_display);
3930 }
3931 return extra.c_str ();
3932 }
3933 return NULL;
3934 }
3935 \f
3936
3937 bool
3938 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3939 struct static_tracepoint_marker *marker)
3940 {
3941 struct remote_state *rs = get_remote_state ();
3942 char *p = rs->buf;
3943
3944 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3945 p += strlen (p);
3946 p += hexnumstr (p, addr);
3947 putpkt (rs->buf);
3948 getpkt (&rs->buf, &rs->buf_size, 0);
3949 p = rs->buf;
3950
3951 if (*p == 'E')
3952 error (_("Remote failure reply: %s"), p);
3953
3954 if (*p++ == 'm')
3955 {
3956 parse_static_tracepoint_marker_definition (p, NULL, marker);
3957 return true;
3958 }
3959
3960 return false;
3961 }
3962
3963 std::vector<static_tracepoint_marker>
3964 remote_target::static_tracepoint_markers_by_strid (const char *strid)
3965 {
3966 struct remote_state *rs = get_remote_state ();
3967 std::vector<static_tracepoint_marker> markers;
3968 const char *p;
3969 static_tracepoint_marker marker;
3970
3971 /* Ask for a first packet of static tracepoint marker
3972 definition. */
3973 putpkt ("qTfSTM");
3974 getpkt (&rs->buf, &rs->buf_size, 0);
3975 p = rs->buf;
3976 if (*p == 'E')
3977 error (_("Remote failure reply: %s"), p);
3978
3979 while (*p++ == 'm')
3980 {
3981 do
3982 {
3983 parse_static_tracepoint_marker_definition (p, &p, &marker);
3984
3985 if (strid == NULL || marker.str_id == strid)
3986 markers.push_back (std::move (marker));
3987 }
3988 while (*p++ == ','); /* comma-separated list */
3989 /* Ask for another packet of static tracepoint definition. */
3990 putpkt ("qTsSTM");
3991 getpkt (&rs->buf, &rs->buf_size, 0);
3992 p = rs->buf;
3993 }
3994
3995 return markers;
3996 }
3997
3998 \f
3999 /* Implement the to_get_ada_task_ptid function for the remote targets. */
4000
4001 ptid_t
4002 remote_target::get_ada_task_ptid (long lwp, long thread)
4003 {
4004 return ptid_t (inferior_ptid.pid (), lwp, 0);
4005 }
4006 \f
4007
4008 /* Restart the remote side; this is an extended protocol operation. */
4009
4010 void
4011 remote_target::extended_remote_restart ()
4012 {
4013 struct remote_state *rs = get_remote_state ();
4014
4015 /* Send the restart command; for reasons I don't understand the
4016 remote side really expects a number after the "R". */
4017 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
4018 putpkt (rs->buf);
4019
4020 remote_fileio_reset ();
4021 }
4022 \f
4023 /* Clean up connection to a remote debugger. */
4024
4025 void
4026 remote_target::close ()
4027 {
4028 /* Make sure we leave stdin registered in the event loop. */
4029 terminal_ours ();
4030
4031 /* We don't have a connection to the remote stub anymore. Get rid
4032 of all the inferiors and their threads we were controlling.
4033 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4034 will be unable to find the thread corresponding to (pid, 0, 0). */
4035 inferior_ptid = null_ptid;
4036 discard_all_inferiors ();
4037
4038 trace_reset_local_state ();
4039
4040 delete this;
4041 }
4042
4043 remote_target::~remote_target ()
4044 {
4045 struct remote_state *rs = get_remote_state ();
4046
4047 /* Check for NULL because we may get here with a partially
4048 constructed target/connection. */
4049 if (rs->remote_desc == nullptr)
4050 return;
4051
4052 serial_close (rs->remote_desc);
4053
4054 /* We are destroying the remote target, so we should discard
4055 everything of this target. */
4056 discard_pending_stop_replies_in_queue ();
4057
4058 if (rs->remote_async_inferior_event_token)
4059 delete_async_event_handler (&rs->remote_async_inferior_event_token);
4060
4061 remote_notif_state_xfree (rs->notif_state);
4062 }
4063
4064 /* Query the remote side for the text, data and bss offsets. */
4065
4066 void
4067 remote_target::get_offsets ()
4068 {
4069 struct remote_state *rs = get_remote_state ();
4070 char *buf;
4071 char *ptr;
4072 int lose, num_segments = 0, do_sections, do_segments;
4073 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4074 struct section_offsets *offs;
4075 struct symfile_segment_data *data;
4076
4077 if (symfile_objfile == NULL)
4078 return;
4079
4080 putpkt ("qOffsets");
4081 getpkt (&rs->buf, &rs->buf_size, 0);
4082 buf = rs->buf;
4083
4084 if (buf[0] == '\000')
4085 return; /* Return silently. Stub doesn't support
4086 this command. */
4087 if (buf[0] == 'E')
4088 {
4089 warning (_("Remote failure reply: %s"), buf);
4090 return;
4091 }
4092
4093 /* Pick up each field in turn. This used to be done with scanf, but
4094 scanf will make trouble if CORE_ADDR size doesn't match
4095 conversion directives correctly. The following code will work
4096 with any size of CORE_ADDR. */
4097 text_addr = data_addr = bss_addr = 0;
4098 ptr = buf;
4099 lose = 0;
4100
4101 if (startswith (ptr, "Text="))
4102 {
4103 ptr += 5;
4104 /* Don't use strtol, could lose on big values. */
4105 while (*ptr && *ptr != ';')
4106 text_addr = (text_addr << 4) + fromhex (*ptr++);
4107
4108 if (startswith (ptr, ";Data="))
4109 {
4110 ptr += 6;
4111 while (*ptr && *ptr != ';')
4112 data_addr = (data_addr << 4) + fromhex (*ptr++);
4113 }
4114 else
4115 lose = 1;
4116
4117 if (!lose && startswith (ptr, ";Bss="))
4118 {
4119 ptr += 5;
4120 while (*ptr && *ptr != ';')
4121 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4122
4123 if (bss_addr != data_addr)
4124 warning (_("Target reported unsupported offsets: %s"), buf);
4125 }
4126 else
4127 lose = 1;
4128 }
4129 else if (startswith (ptr, "TextSeg="))
4130 {
4131 ptr += 8;
4132 /* Don't use strtol, could lose on big values. */
4133 while (*ptr && *ptr != ';')
4134 text_addr = (text_addr << 4) + fromhex (*ptr++);
4135 num_segments = 1;
4136
4137 if (startswith (ptr, ";DataSeg="))
4138 {
4139 ptr += 9;
4140 while (*ptr && *ptr != ';')
4141 data_addr = (data_addr << 4) + fromhex (*ptr++);
4142 num_segments++;
4143 }
4144 }
4145 else
4146 lose = 1;
4147
4148 if (lose)
4149 error (_("Malformed response to offset query, %s"), buf);
4150 else if (*ptr != '\0')
4151 warning (_("Target reported unsupported offsets: %s"), buf);
4152
4153 offs = ((struct section_offsets *)
4154 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
4155 memcpy (offs, symfile_objfile->section_offsets,
4156 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
4157
4158 data = get_symfile_segment_data (symfile_objfile->obfd);
4159 do_segments = (data != NULL);
4160 do_sections = num_segments == 0;
4161
4162 if (num_segments > 0)
4163 {
4164 segments[0] = text_addr;
4165 segments[1] = data_addr;
4166 }
4167 /* If we have two segments, we can still try to relocate everything
4168 by assuming that the .text and .data offsets apply to the whole
4169 text and data segments. Convert the offsets given in the packet
4170 to base addresses for symfile_map_offsets_to_segments. */
4171 else if (data && data->num_segments == 2)
4172 {
4173 segments[0] = data->segment_bases[0] + text_addr;
4174 segments[1] = data->segment_bases[1] + data_addr;
4175 num_segments = 2;
4176 }
4177 /* If the object file has only one segment, assume that it is text
4178 rather than data; main programs with no writable data are rare,
4179 but programs with no code are useless. Of course the code might
4180 have ended up in the data segment... to detect that we would need
4181 the permissions here. */
4182 else if (data && data->num_segments == 1)
4183 {
4184 segments[0] = data->segment_bases[0] + text_addr;
4185 num_segments = 1;
4186 }
4187 /* There's no way to relocate by segment. */
4188 else
4189 do_segments = 0;
4190
4191 if (do_segments)
4192 {
4193 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4194 offs, num_segments, segments);
4195
4196 if (ret == 0 && !do_sections)
4197 error (_("Can not handle qOffsets TextSeg "
4198 "response with this symbol file"));
4199
4200 if (ret > 0)
4201 do_sections = 0;
4202 }
4203
4204 if (data)
4205 free_symfile_segment_data (data);
4206
4207 if (do_sections)
4208 {
4209 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4210
4211 /* This is a temporary kludge to force data and bss to use the
4212 same offsets because that's what nlmconv does now. The real
4213 solution requires changes to the stub and remote.c that I
4214 don't have time to do right now. */
4215
4216 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4217 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4218 }
4219
4220 objfile_relocate (symfile_objfile, offs);
4221 }
4222
4223 /* Send interrupt_sequence to remote target. */
4224
4225 void
4226 remote_target::send_interrupt_sequence ()
4227 {
4228 struct remote_state *rs = get_remote_state ();
4229
4230 if (interrupt_sequence_mode == interrupt_sequence_control_c)
4231 remote_serial_write ("\x03", 1);
4232 else if (interrupt_sequence_mode == interrupt_sequence_break)
4233 serial_send_break (rs->remote_desc);
4234 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4235 {
4236 serial_send_break (rs->remote_desc);
4237 remote_serial_write ("g", 1);
4238 }
4239 else
4240 internal_error (__FILE__, __LINE__,
4241 _("Invalid value for interrupt_sequence_mode: %s."),
4242 interrupt_sequence_mode);
4243 }
4244
4245
4246 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4247 and extract the PTID. Returns NULL_PTID if not found. */
4248
4249 static ptid_t
4250 stop_reply_extract_thread (char *stop_reply)
4251 {
4252 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4253 {
4254 const char *p;
4255
4256 /* Txx r:val ; r:val (...) */
4257 p = &stop_reply[3];
4258
4259 /* Look for "register" named "thread". */
4260 while (*p != '\0')
4261 {
4262 const char *p1;
4263
4264 p1 = strchr (p, ':');
4265 if (p1 == NULL)
4266 return null_ptid;
4267
4268 if (strncmp (p, "thread", p1 - p) == 0)
4269 return read_ptid (++p1, &p);
4270
4271 p1 = strchr (p, ';');
4272 if (p1 == NULL)
4273 return null_ptid;
4274 p1++;
4275
4276 p = p1;
4277 }
4278 }
4279
4280 return null_ptid;
4281 }
4282
4283 /* Determine the remote side's current thread. If we have a stop
4284 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4285 "thread" register we can extract the current thread from. If not,
4286 ask the remote which is the current thread with qC. The former
4287 method avoids a roundtrip. */
4288
4289 ptid_t
4290 remote_target::get_current_thread (char *wait_status)
4291 {
4292 ptid_t ptid = null_ptid;
4293
4294 /* Note we don't use remote_parse_stop_reply as that makes use of
4295 the target architecture, which we haven't yet fully determined at
4296 this point. */
4297 if (wait_status != NULL)
4298 ptid = stop_reply_extract_thread (wait_status);
4299 if (ptid == null_ptid)
4300 ptid = remote_current_thread (inferior_ptid);
4301
4302 return ptid;
4303 }
4304
4305 /* Query the remote target for which is the current thread/process,
4306 add it to our tables, and update INFERIOR_PTID. The caller is
4307 responsible for setting the state such that the remote end is ready
4308 to return the current thread.
4309
4310 This function is called after handling the '?' or 'vRun' packets,
4311 whose response is a stop reply from which we can also try
4312 extracting the thread. If the target doesn't support the explicit
4313 qC query, we infer the current thread from that stop reply, passed
4314 in in WAIT_STATUS, which may be NULL. */
4315
4316 void
4317 remote_target::add_current_inferior_and_thread (char *wait_status)
4318 {
4319 struct remote_state *rs = get_remote_state ();
4320 int fake_pid_p = 0;
4321
4322 inferior_ptid = null_ptid;
4323
4324 /* Now, if we have thread information, update inferior_ptid. */
4325 ptid_t curr_ptid = get_current_thread (wait_status);
4326
4327 if (curr_ptid != null_ptid)
4328 {
4329 if (!remote_multi_process_p (rs))
4330 fake_pid_p = 1;
4331 }
4332 else
4333 {
4334 /* Without this, some commands which require an active target
4335 (such as kill) won't work. This variable serves (at least)
4336 double duty as both the pid of the target process (if it has
4337 such), and as a flag indicating that a target is active. */
4338 curr_ptid = magic_null_ptid;
4339 fake_pid_p = 1;
4340 }
4341
4342 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4343
4344 /* Add the main thread and switch to it. Don't try reading
4345 registers yet, since we haven't fetched the target description
4346 yet. */
4347 thread_info *tp = add_thread_silent (curr_ptid);
4348 switch_to_thread_no_regs (tp);
4349 }
4350
4351 /* Print info about a thread that was found already stopped on
4352 connection. */
4353
4354 static void
4355 print_one_stopped_thread (struct thread_info *thread)
4356 {
4357 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4358
4359 switch_to_thread (thread);
4360 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
4361 set_current_sal_from_frame (get_current_frame ());
4362
4363 thread->suspend.waitstatus_pending_p = 0;
4364
4365 if (ws->kind == TARGET_WAITKIND_STOPPED)
4366 {
4367 enum gdb_signal sig = ws->value.sig;
4368
4369 if (signal_print_state (sig))
4370 gdb::observers::signal_received.notify (sig);
4371 }
4372 gdb::observers::normal_stop.notify (NULL, 1);
4373 }
4374
4375 /* Process all initial stop replies the remote side sent in response
4376 to the ? packet. These indicate threads that were already stopped
4377 on initial connection. We mark these threads as stopped and print
4378 their current frame before giving the user the prompt. */
4379
4380 void
4381 remote_target::process_initial_stop_replies (int from_tty)
4382 {
4383 int pending_stop_replies = stop_reply_queue_length ();
4384 struct thread_info *selected = NULL;
4385 struct thread_info *lowest_stopped = NULL;
4386 struct thread_info *first = NULL;
4387
4388 /* Consume the initial pending events. */
4389 while (pending_stop_replies-- > 0)
4390 {
4391 ptid_t waiton_ptid = minus_one_ptid;
4392 ptid_t event_ptid;
4393 struct target_waitstatus ws;
4394 int ignore_event = 0;
4395
4396 memset (&ws, 0, sizeof (ws));
4397 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4398 if (remote_debug)
4399 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4400
4401 switch (ws.kind)
4402 {
4403 case TARGET_WAITKIND_IGNORE:
4404 case TARGET_WAITKIND_NO_RESUMED:
4405 case TARGET_WAITKIND_SIGNALLED:
4406 case TARGET_WAITKIND_EXITED:
4407 /* We shouldn't see these, but if we do, just ignore. */
4408 if (remote_debug)
4409 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4410 ignore_event = 1;
4411 break;
4412
4413 case TARGET_WAITKIND_EXECD:
4414 xfree (ws.value.execd_pathname);
4415 break;
4416 default:
4417 break;
4418 }
4419
4420 if (ignore_event)
4421 continue;
4422
4423 struct thread_info *evthread = find_thread_ptid (event_ptid);
4424
4425 if (ws.kind == TARGET_WAITKIND_STOPPED)
4426 {
4427 enum gdb_signal sig = ws.value.sig;
4428
4429 /* Stubs traditionally report SIGTRAP as initial signal,
4430 instead of signal 0. Suppress it. */
4431 if (sig == GDB_SIGNAL_TRAP)
4432 sig = GDB_SIGNAL_0;
4433 evthread->suspend.stop_signal = sig;
4434 ws.value.sig = sig;
4435 }
4436
4437 evthread->suspend.waitstatus = ws;
4438
4439 if (ws.kind != TARGET_WAITKIND_STOPPED
4440 || ws.value.sig != GDB_SIGNAL_0)
4441 evthread->suspend.waitstatus_pending_p = 1;
4442
4443 set_executing (event_ptid, 0);
4444 set_running (event_ptid, 0);
4445 get_remote_thread_info (evthread)->vcont_resumed = 0;
4446 }
4447
4448 /* "Notice" the new inferiors before anything related to
4449 registers/memory. */
4450 for (inferior *inf : all_non_exited_inferiors ())
4451 {
4452 inf->needs_setup = 1;
4453
4454 if (non_stop)
4455 {
4456 thread_info *thread = any_live_thread_of_inferior (inf);
4457 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
4458 from_tty);
4459 }
4460 }
4461
4462 /* If all-stop on top of non-stop, pause all threads. Note this
4463 records the threads' stop pc, so must be done after "noticing"
4464 the inferiors. */
4465 if (!non_stop)
4466 {
4467 stop_all_threads ();
4468
4469 /* If all threads of an inferior were already stopped, we
4470 haven't setup the inferior yet. */
4471 for (inferior *inf : all_non_exited_inferiors ())
4472 {
4473 if (inf->needs_setup)
4474 {
4475 thread_info *thread = any_live_thread_of_inferior (inf);
4476 switch_to_thread_no_regs (thread);
4477 setup_inferior (0);
4478 }
4479 }
4480 }
4481
4482 /* Now go over all threads that are stopped, and print their current
4483 frame. If all-stop, then if there's a signalled thread, pick
4484 that as current. */
4485 for (thread_info *thread : all_non_exited_threads ())
4486 {
4487 if (first == NULL)
4488 first = thread;
4489
4490 if (!non_stop)
4491 thread->set_running (false);
4492 else if (thread->state != THREAD_STOPPED)
4493 continue;
4494
4495 if (selected == NULL
4496 && thread->suspend.waitstatus_pending_p)
4497 selected = thread;
4498
4499 if (lowest_stopped == NULL
4500 || thread->inf->num < lowest_stopped->inf->num
4501 || thread->per_inf_num < lowest_stopped->per_inf_num)
4502 lowest_stopped = thread;
4503
4504 if (non_stop)
4505 print_one_stopped_thread (thread);
4506 }
4507
4508 /* In all-stop, we only print the status of one thread, and leave
4509 others with their status pending. */
4510 if (!non_stop)
4511 {
4512 thread_info *thread = selected;
4513 if (thread == NULL)
4514 thread = lowest_stopped;
4515 if (thread == NULL)
4516 thread = first;
4517
4518 print_one_stopped_thread (thread);
4519 }
4520
4521 /* For "info program". */
4522 thread_info *thread = inferior_thread ();
4523 if (thread->state == THREAD_STOPPED)
4524 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
4525 }
4526
4527 /* Start the remote connection and sync state. */
4528
4529 void
4530 remote_target::start_remote (int from_tty, int extended_p)
4531 {
4532 struct remote_state *rs = get_remote_state ();
4533 struct packet_config *noack_config;
4534 char *wait_status = NULL;
4535
4536 /* Signal other parts that we're going through the initial setup,
4537 and so things may not be stable yet. E.g., we don't try to
4538 install tracepoints until we've relocated symbols. Also, a
4539 Ctrl-C before we're connected and synced up can't interrupt the
4540 target. Instead, it offers to drop the (potentially wedged)
4541 connection. */
4542 rs->starting_up = 1;
4543
4544 QUIT;
4545
4546 if (interrupt_on_connect)
4547 send_interrupt_sequence ();
4548
4549 /* Ack any packet which the remote side has already sent. */
4550 remote_serial_write ("+", 1);
4551
4552 /* The first packet we send to the target is the optional "supported
4553 packets" request. If the target can answer this, it will tell us
4554 which later probes to skip. */
4555 remote_query_supported ();
4556
4557 /* If the stub wants to get a QAllow, compose one and send it. */
4558 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4559 set_permissions ();
4560
4561 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4562 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4563 as a reply to known packet. For packet "vFile:setfs:" it is an
4564 invalid reply and GDB would return error in
4565 remote_hostio_set_filesystem, making remote files access impossible.
4566 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4567 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4568 {
4569 const char v_mustreplyempty[] = "vMustReplyEmpty";
4570
4571 putpkt (v_mustreplyempty);
4572 getpkt (&rs->buf, &rs->buf_size, 0);
4573 if (strcmp (rs->buf, "OK") == 0)
4574 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4575 else if (strcmp (rs->buf, "") != 0)
4576 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4577 rs->buf);
4578 }
4579
4580 /* Next, we possibly activate noack mode.
4581
4582 If the QStartNoAckMode packet configuration is set to AUTO,
4583 enable noack mode if the stub reported a wish for it with
4584 qSupported.
4585
4586 If set to TRUE, then enable noack mode even if the stub didn't
4587 report it in qSupported. If the stub doesn't reply OK, the
4588 session ends with an error.
4589
4590 If FALSE, then don't activate noack mode, regardless of what the
4591 stub claimed should be the default with qSupported. */
4592
4593 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4594 if (packet_config_support (noack_config) != PACKET_DISABLE)
4595 {
4596 putpkt ("QStartNoAckMode");
4597 getpkt (&rs->buf, &rs->buf_size, 0);
4598 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4599 rs->noack_mode = 1;
4600 }
4601
4602 if (extended_p)
4603 {
4604 /* Tell the remote that we are using the extended protocol. */
4605 putpkt ("!");
4606 getpkt (&rs->buf, &rs->buf_size, 0);
4607 }
4608
4609 /* Let the target know which signals it is allowed to pass down to
4610 the program. */
4611 update_signals_program_target ();
4612
4613 /* Next, if the target can specify a description, read it. We do
4614 this before anything involving memory or registers. */
4615 target_find_description ();
4616
4617 /* Next, now that we know something about the target, update the
4618 address spaces in the program spaces. */
4619 update_address_spaces ();
4620
4621 /* On OSs where the list of libraries is global to all
4622 processes, we fetch them early. */
4623 if (gdbarch_has_global_solist (target_gdbarch ()))
4624 solib_add (NULL, from_tty, auto_solib_add);
4625
4626 if (target_is_non_stop_p ())
4627 {
4628 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4629 error (_("Non-stop mode requested, but remote "
4630 "does not support non-stop"));
4631
4632 putpkt ("QNonStop:1");
4633 getpkt (&rs->buf, &rs->buf_size, 0);
4634
4635 if (strcmp (rs->buf, "OK") != 0)
4636 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
4637
4638 /* Find about threads and processes the stub is already
4639 controlling. We default to adding them in the running state.
4640 The '?' query below will then tell us about which threads are
4641 stopped. */
4642 this->update_thread_list ();
4643 }
4644 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4645 {
4646 /* Don't assume that the stub can operate in all-stop mode.
4647 Request it explicitly. */
4648 putpkt ("QNonStop:0");
4649 getpkt (&rs->buf, &rs->buf_size, 0);
4650
4651 if (strcmp (rs->buf, "OK") != 0)
4652 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
4653 }
4654
4655 /* Upload TSVs regardless of whether the target is running or not. The
4656 remote stub, such as GDBserver, may have some predefined or builtin
4657 TSVs, even if the target is not running. */
4658 if (get_trace_status (current_trace_status ()) != -1)
4659 {
4660 struct uploaded_tsv *uploaded_tsvs = NULL;
4661
4662 upload_trace_state_variables (&uploaded_tsvs);
4663 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4664 }
4665
4666 /* Check whether the target is running now. */
4667 putpkt ("?");
4668 getpkt (&rs->buf, &rs->buf_size, 0);
4669
4670 if (!target_is_non_stop_p ())
4671 {
4672 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4673 {
4674 if (!extended_p)
4675 error (_("The target is not running (try extended-remote?)"));
4676
4677 /* We're connected, but not running. Drop out before we
4678 call start_remote. */
4679 rs->starting_up = 0;
4680 return;
4681 }
4682 else
4683 {
4684 /* Save the reply for later. */
4685 wait_status = (char *) alloca (strlen (rs->buf) + 1);
4686 strcpy (wait_status, rs->buf);
4687 }
4688
4689 /* Fetch thread list. */
4690 target_update_thread_list ();
4691
4692 /* Let the stub know that we want it to return the thread. */
4693 set_continue_thread (minus_one_ptid);
4694
4695 if (thread_count () == 0)
4696 {
4697 /* Target has no concept of threads at all. GDB treats
4698 non-threaded target as single-threaded; add a main
4699 thread. */
4700 add_current_inferior_and_thread (wait_status);
4701 }
4702 else
4703 {
4704 /* We have thread information; select the thread the target
4705 says should be current. If we're reconnecting to a
4706 multi-threaded program, this will ideally be the thread
4707 that last reported an event before GDB disconnected. */
4708 inferior_ptid = get_current_thread (wait_status);
4709 if (inferior_ptid == null_ptid)
4710 {
4711 /* Odd... The target was able to list threads, but not
4712 tell us which thread was current (no "thread"
4713 register in T stop reply?). Just pick the first
4714 thread in the thread list then. */
4715
4716 if (remote_debug)
4717 fprintf_unfiltered (gdb_stdlog,
4718 "warning: couldn't determine remote "
4719 "current thread; picking first in list.\n");
4720
4721 inferior_ptid = inferior_list->thread_list->ptid;
4722 }
4723 }
4724
4725 /* init_wait_for_inferior should be called before get_offsets in order
4726 to manage `inserted' flag in bp loc in a correct state.
4727 breakpoint_init_inferior, called from init_wait_for_inferior, set
4728 `inserted' flag to 0, while before breakpoint_re_set, called from
4729 start_remote, set `inserted' flag to 1. In the initialization of
4730 inferior, breakpoint_init_inferior should be called first, and then
4731 breakpoint_re_set can be called. If this order is broken, state of
4732 `inserted' flag is wrong, and cause some problems on breakpoint
4733 manipulation. */
4734 init_wait_for_inferior ();
4735
4736 get_offsets (); /* Get text, data & bss offsets. */
4737
4738 /* If we could not find a description using qXfer, and we know
4739 how to do it some other way, try again. This is not
4740 supported for non-stop; it could be, but it is tricky if
4741 there are no stopped threads when we connect. */
4742 if (remote_read_description_p (this)
4743 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4744 {
4745 target_clear_description ();
4746 target_find_description ();
4747 }
4748
4749 /* Use the previously fetched status. */
4750 gdb_assert (wait_status != NULL);
4751 strcpy (rs->buf, wait_status);
4752 rs->cached_wait_status = 1;
4753
4754 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
4755 }
4756 else
4757 {
4758 /* Clear WFI global state. Do this before finding about new
4759 threads and inferiors, and setting the current inferior.
4760 Otherwise we would clear the proceed status of the current
4761 inferior when we want its stop_soon state to be preserved
4762 (see notice_new_inferior). */
4763 init_wait_for_inferior ();
4764
4765 /* In non-stop, we will either get an "OK", meaning that there
4766 are no stopped threads at this time; or, a regular stop
4767 reply. In the latter case, there may be more than one thread
4768 stopped --- we pull them all out using the vStopped
4769 mechanism. */
4770 if (strcmp (rs->buf, "OK") != 0)
4771 {
4772 struct notif_client *notif = &notif_client_stop;
4773
4774 /* remote_notif_get_pending_replies acks this one, and gets
4775 the rest out. */
4776 rs->notif_state->pending_event[notif_client_stop.id]
4777 = remote_notif_parse (this, notif, rs->buf);
4778 remote_notif_get_pending_events (notif);
4779 }
4780
4781 if (thread_count () == 0)
4782 {
4783 if (!extended_p)
4784 error (_("The target is not running (try extended-remote?)"));
4785
4786 /* We're connected, but not running. Drop out before we
4787 call start_remote. */
4788 rs->starting_up = 0;
4789 return;
4790 }
4791
4792 /* In non-stop mode, any cached wait status will be stored in
4793 the stop reply queue. */
4794 gdb_assert (wait_status == NULL);
4795
4796 /* Report all signals during attach/startup. */
4797 pass_signals (0, NULL);
4798
4799 /* If there are already stopped threads, mark them stopped and
4800 report their stops before giving the prompt to the user. */
4801 process_initial_stop_replies (from_tty);
4802
4803 if (target_can_async_p ())
4804 target_async (1);
4805 }
4806
4807 /* If we connected to a live target, do some additional setup. */
4808 if (target_has_execution)
4809 {
4810 if (symfile_objfile) /* No use without a symbol-file. */
4811 remote_check_symbols ();
4812 }
4813
4814 /* Possibly the target has been engaged in a trace run started
4815 previously; find out where things are at. */
4816 if (get_trace_status (current_trace_status ()) != -1)
4817 {
4818 struct uploaded_tp *uploaded_tps = NULL;
4819
4820 if (current_trace_status ()->running)
4821 printf_filtered (_("Trace is already running on the target.\n"));
4822
4823 upload_tracepoints (&uploaded_tps);
4824
4825 merge_uploaded_tracepoints (&uploaded_tps);
4826 }
4827
4828 /* Possibly the target has been engaged in a btrace record started
4829 previously; find out where things are at. */
4830 remote_btrace_maybe_reopen ();
4831
4832 /* The thread and inferior lists are now synchronized with the
4833 target, our symbols have been relocated, and we're merged the
4834 target's tracepoints with ours. We're done with basic start
4835 up. */
4836 rs->starting_up = 0;
4837
4838 /* Maybe breakpoints are global and need to be inserted now. */
4839 if (breakpoints_should_be_inserted_now ())
4840 insert_breakpoints ();
4841 }
4842
4843 /* Open a connection to a remote debugger.
4844 NAME is the filename used for communication. */
4845
4846 void
4847 remote_target::open (const char *name, int from_tty)
4848 {
4849 open_1 (name, from_tty, 0);
4850 }
4851
4852 /* Open a connection to a remote debugger using the extended
4853 remote gdb protocol. NAME is the filename used for communication. */
4854
4855 void
4856 extended_remote_target::open (const char *name, int from_tty)
4857 {
4858 open_1 (name, from_tty, 1 /*extended_p */);
4859 }
4860
4861 /* Reset all packets back to "unknown support". Called when opening a
4862 new connection to a remote target. */
4863
4864 static void
4865 reset_all_packet_configs_support (void)
4866 {
4867 int i;
4868
4869 for (i = 0; i < PACKET_MAX; i++)
4870 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4871 }
4872
4873 /* Initialize all packet configs. */
4874
4875 static void
4876 init_all_packet_configs (void)
4877 {
4878 int i;
4879
4880 for (i = 0; i < PACKET_MAX; i++)
4881 {
4882 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4883 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4884 }
4885 }
4886
4887 /* Symbol look-up. */
4888
4889 void
4890 remote_target::remote_check_symbols ()
4891 {
4892 char *msg, *reply, *tmp;
4893 int end;
4894 long reply_size;
4895 struct cleanup *old_chain;
4896
4897 /* The remote side has no concept of inferiors that aren't running
4898 yet, it only knows about running processes. If we're connected
4899 but our current inferior is not running, we should not invite the
4900 remote target to request symbol lookups related to its
4901 (unrelated) current process. */
4902 if (!target_has_execution)
4903 return;
4904
4905 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4906 return;
4907
4908 /* Make sure the remote is pointing at the right process. Note
4909 there's no way to select "no process". */
4910 set_general_process ();
4911
4912 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4913 because we need both at the same time. */
4914 msg = (char *) xmalloc (get_remote_packet_size ());
4915 old_chain = make_cleanup (xfree, msg);
4916 reply = (char *) xmalloc (get_remote_packet_size ());
4917 make_cleanup (free_current_contents, &reply);
4918 reply_size = get_remote_packet_size ();
4919
4920 /* Invite target to request symbol lookups. */
4921
4922 putpkt ("qSymbol::");
4923 getpkt (&reply, &reply_size, 0);
4924 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
4925
4926 while (startswith (reply, "qSymbol:"))
4927 {
4928 struct bound_minimal_symbol sym;
4929
4930 tmp = &reply[8];
4931 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
4932 msg[end] = '\0';
4933 sym = lookup_minimal_symbol (msg, NULL, NULL);
4934 if (sym.minsym == NULL)
4935 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
4936 else
4937 {
4938 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4939 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4940
4941 /* If this is a function address, return the start of code
4942 instead of any data function descriptor. */
4943 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4944 sym_addr,
4945 current_top_target ());
4946
4947 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
4948 phex_nz (sym_addr, addr_size), &reply[8]);
4949 }
4950
4951 putpkt (msg);
4952 getpkt (&reply, &reply_size, 0);
4953 }
4954
4955 do_cleanups (old_chain);
4956 }
4957
4958 static struct serial *
4959 remote_serial_open (const char *name)
4960 {
4961 static int udp_warning = 0;
4962
4963 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4964 of in ser-tcp.c, because it is the remote protocol assuming that the
4965 serial connection is reliable and not the serial connection promising
4966 to be. */
4967 if (!udp_warning && startswith (name, "udp:"))
4968 {
4969 warning (_("The remote protocol may be unreliable over UDP.\n"
4970 "Some events may be lost, rendering further debugging "
4971 "impossible."));
4972 udp_warning = 1;
4973 }
4974
4975 return serial_open (name);
4976 }
4977
4978 /* Inform the target of our permission settings. The permission flags
4979 work without this, but if the target knows the settings, it can do
4980 a couple things. First, it can add its own check, to catch cases
4981 that somehow manage to get by the permissions checks in target
4982 methods. Second, if the target is wired to disallow particular
4983 settings (for instance, a system in the field that is not set up to
4984 be able to stop at a breakpoint), it can object to any unavailable
4985 permissions. */
4986
4987 void
4988 remote_target::set_permissions ()
4989 {
4990 struct remote_state *rs = get_remote_state ();
4991
4992 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4993 "WriteReg:%x;WriteMem:%x;"
4994 "InsertBreak:%x;InsertTrace:%x;"
4995 "InsertFastTrace:%x;Stop:%x",
4996 may_write_registers, may_write_memory,
4997 may_insert_breakpoints, may_insert_tracepoints,
4998 may_insert_fast_tracepoints, may_stop);
4999 putpkt (rs->buf);
5000 getpkt (&rs->buf, &rs->buf_size, 0);
5001
5002 /* If the target didn't like the packet, warn the user. Do not try
5003 to undo the user's settings, that would just be maddening. */
5004 if (strcmp (rs->buf, "OK") != 0)
5005 warning (_("Remote refused setting permissions with: %s"), rs->buf);
5006 }
5007
5008 /* This type describes each known response to the qSupported
5009 packet. */
5010 struct protocol_feature
5011 {
5012 /* The name of this protocol feature. */
5013 const char *name;
5014
5015 /* The default for this protocol feature. */
5016 enum packet_support default_support;
5017
5018 /* The function to call when this feature is reported, or after
5019 qSupported processing if the feature is not supported.
5020 The first argument points to this structure. The second
5021 argument indicates whether the packet requested support be
5022 enabled, disabled, or probed (or the default, if this function
5023 is being called at the end of processing and this feature was
5024 not reported). The third argument may be NULL; if not NULL, it
5025 is a NUL-terminated string taken from the packet following
5026 this feature's name and an equals sign. */
5027 void (*func) (remote_target *remote, const struct protocol_feature *,
5028 enum packet_support, const char *);
5029
5030 /* The corresponding packet for this feature. Only used if
5031 FUNC is remote_supported_packet. */
5032 int packet;
5033 };
5034
5035 static void
5036 remote_supported_packet (remote_target *remote,
5037 const struct protocol_feature *feature,
5038 enum packet_support support,
5039 const char *argument)
5040 {
5041 if (argument)
5042 {
5043 warning (_("Remote qSupported response supplied an unexpected value for"
5044 " \"%s\"."), feature->name);
5045 return;
5046 }
5047
5048 remote_protocol_packets[feature->packet].support = support;
5049 }
5050
5051 void
5052 remote_target::remote_packet_size (const protocol_feature *feature,
5053 enum packet_support support, const char *value)
5054 {
5055 struct remote_state *rs = get_remote_state ();
5056
5057 int packet_size;
5058 char *value_end;
5059
5060 if (support != PACKET_ENABLE)
5061 return;
5062
5063 if (value == NULL || *value == '\0')
5064 {
5065 warning (_("Remote target reported \"%s\" without a size."),
5066 feature->name);
5067 return;
5068 }
5069
5070 errno = 0;
5071 packet_size = strtol (value, &value_end, 16);
5072 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5073 {
5074 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5075 feature->name, value);
5076 return;
5077 }
5078
5079 /* Record the new maximum packet size. */
5080 rs->explicit_packet_size = packet_size;
5081 }
5082
5083 void
5084 remote_packet_size (remote_target *remote, const protocol_feature *feature,
5085 enum packet_support support, const char *value)
5086 {
5087 remote->remote_packet_size (feature, support, value);
5088 }
5089
5090 static const struct protocol_feature remote_protocol_features[] = {
5091 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
5092 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_qXfer_auxv },
5094 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_qXfer_exec_file },
5096 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_qXfer_features },
5098 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_qXfer_libraries },
5100 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5101 PACKET_qXfer_libraries_svr4 },
5102 { "augmented-libraries-svr4-read", PACKET_DISABLE,
5103 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
5104 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_qXfer_memory_map },
5106 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_qXfer_spu_read },
5108 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_qXfer_spu_write },
5110 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_qXfer_osdata },
5112 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_qXfer_threads },
5114 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_qXfer_traceframe_info },
5116 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5117 PACKET_QPassSignals },
5118 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5119 PACKET_QCatchSyscalls },
5120 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5121 PACKET_QProgramSignals },
5122 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5123 PACKET_QSetWorkingDir },
5124 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5125 PACKET_QStartupWithShell },
5126 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5127 PACKET_QEnvironmentHexEncoded },
5128 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5129 PACKET_QEnvironmentReset },
5130 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5131 PACKET_QEnvironmentUnset },
5132 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5133 PACKET_QStartNoAckMode },
5134 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5135 PACKET_multiprocess_feature },
5136 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
5137 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_qXfer_siginfo_read },
5139 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5140 PACKET_qXfer_siginfo_write },
5141 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
5142 PACKET_ConditionalTracepoints },
5143 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
5144 PACKET_ConditionalBreakpoints },
5145 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
5146 PACKET_BreakpointCommands },
5147 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
5148 PACKET_FastTracepoints },
5149 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_StaticTracepoints },
5151 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_InstallInTrace},
5153 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_DisconnectedTracing_feature },
5155 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_bc },
5157 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_bs },
5159 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_TracepointSource },
5161 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_QAllow },
5163 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5164 PACKET_EnableDisableTracepoints_feature },
5165 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5166 PACKET_qXfer_fdpic },
5167 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5168 PACKET_qXfer_uib },
5169 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5170 PACKET_QDisableRandomization },
5171 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
5172 { "QTBuffer:size", PACKET_DISABLE,
5173 remote_supported_packet, PACKET_QTBuffer_size},
5174 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
5175 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5176 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
5177 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
5178 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
5179 PACKET_qXfer_btrace },
5180 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
5181 PACKET_qXfer_btrace_conf },
5182 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
5183 PACKET_Qbtrace_conf_bts_size },
5184 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
5185 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
5186 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5187 PACKET_fork_event_feature },
5188 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5189 PACKET_vfork_event_feature },
5190 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5191 PACKET_exec_event_feature },
5192 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
5193 PACKET_Qbtrace_conf_pt_size },
5194 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5195 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
5196 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
5197 };
5198
5199 static char *remote_support_xml;
5200
5201 /* Register string appended to "xmlRegisters=" in qSupported query. */
5202
5203 void
5204 register_remote_support_xml (const char *xml)
5205 {
5206 #if defined(HAVE_LIBEXPAT)
5207 if (remote_support_xml == NULL)
5208 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
5209 else
5210 {
5211 char *copy = xstrdup (remote_support_xml + 13);
5212 char *p = strtok (copy, ",");
5213
5214 do
5215 {
5216 if (strcmp (p, xml) == 0)
5217 {
5218 /* already there */
5219 xfree (copy);
5220 return;
5221 }
5222 }
5223 while ((p = strtok (NULL, ",")) != NULL);
5224 xfree (copy);
5225
5226 remote_support_xml = reconcat (remote_support_xml,
5227 remote_support_xml, ",", xml,
5228 (char *) NULL);
5229 }
5230 #endif
5231 }
5232
5233 static void
5234 remote_query_supported_append (std::string *msg, const char *append)
5235 {
5236 if (!msg->empty ())
5237 msg->append (";");
5238 msg->append (append);
5239 }
5240
5241 void
5242 remote_target::remote_query_supported ()
5243 {
5244 struct remote_state *rs = get_remote_state ();
5245 char *next;
5246 int i;
5247 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5248
5249 /* The packet support flags are handled differently for this packet
5250 than for most others. We treat an error, a disabled packet, and
5251 an empty response identically: any features which must be reported
5252 to be used will be automatically disabled. An empty buffer
5253 accomplishes this, since that is also the representation for a list
5254 containing no features. */
5255
5256 rs->buf[0] = 0;
5257 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
5258 {
5259 std::string q;
5260
5261 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
5262 remote_query_supported_append (&q, "multiprocess+");
5263
5264 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
5265 remote_query_supported_append (&q, "swbreak+");
5266 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
5267 remote_query_supported_append (&q, "hwbreak+");
5268
5269 remote_query_supported_append (&q, "qRelocInsn+");
5270
5271 if (packet_set_cmd_state (PACKET_fork_event_feature)
5272 != AUTO_BOOLEAN_FALSE)
5273 remote_query_supported_append (&q, "fork-events+");
5274 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5275 != AUTO_BOOLEAN_FALSE)
5276 remote_query_supported_append (&q, "vfork-events+");
5277 if (packet_set_cmd_state (PACKET_exec_event_feature)
5278 != AUTO_BOOLEAN_FALSE)
5279 remote_query_supported_append (&q, "exec-events+");
5280
5281 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
5282 remote_query_supported_append (&q, "vContSupported+");
5283
5284 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
5285 remote_query_supported_append (&q, "QThreadEvents+");
5286
5287 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
5288 remote_query_supported_append (&q, "no-resumed+");
5289
5290 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5291 the qSupported:xmlRegisters=i386 handling. */
5292 if (remote_support_xml != NULL
5293 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
5294 remote_query_supported_append (&q, remote_support_xml);
5295
5296 q = "qSupported:" + q;
5297 putpkt (q.c_str ());
5298
5299 getpkt (&rs->buf, &rs->buf_size, 0);
5300
5301 /* If an error occured, warn, but do not return - just reset the
5302 buffer to empty and go on to disable features. */
5303 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5304 == PACKET_ERROR)
5305 {
5306 warning (_("Remote failure reply: %s"), rs->buf);
5307 rs->buf[0] = 0;
5308 }
5309 }
5310
5311 memset (seen, 0, sizeof (seen));
5312
5313 next = rs->buf;
5314 while (*next)
5315 {
5316 enum packet_support is_supported;
5317 char *p, *end, *name_end, *value;
5318
5319 /* First separate out this item from the rest of the packet. If
5320 there's another item after this, we overwrite the separator
5321 (terminated strings are much easier to work with). */
5322 p = next;
5323 end = strchr (p, ';');
5324 if (end == NULL)
5325 {
5326 end = p + strlen (p);
5327 next = end;
5328 }
5329 else
5330 {
5331 *end = '\0';
5332 next = end + 1;
5333
5334 if (end == p)
5335 {
5336 warning (_("empty item in \"qSupported\" response"));
5337 continue;
5338 }
5339 }
5340
5341 name_end = strchr (p, '=');
5342 if (name_end)
5343 {
5344 /* This is a name=value entry. */
5345 is_supported = PACKET_ENABLE;
5346 value = name_end + 1;
5347 *name_end = '\0';
5348 }
5349 else
5350 {
5351 value = NULL;
5352 switch (end[-1])
5353 {
5354 case '+':
5355 is_supported = PACKET_ENABLE;
5356 break;
5357
5358 case '-':
5359 is_supported = PACKET_DISABLE;
5360 break;
5361
5362 case '?':
5363 is_supported = PACKET_SUPPORT_UNKNOWN;
5364 break;
5365
5366 default:
5367 warning (_("unrecognized item \"%s\" "
5368 "in \"qSupported\" response"), p);
5369 continue;
5370 }
5371 end[-1] = '\0';
5372 }
5373
5374 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5375 if (strcmp (remote_protocol_features[i].name, p) == 0)
5376 {
5377 const struct protocol_feature *feature;
5378
5379 seen[i] = 1;
5380 feature = &remote_protocol_features[i];
5381 feature->func (this, feature, is_supported, value);
5382 break;
5383 }
5384 }
5385
5386 /* If we increased the packet size, make sure to increase the global
5387 buffer size also. We delay this until after parsing the entire
5388 qSupported packet, because this is the same buffer we were
5389 parsing. */
5390 if (rs->buf_size < rs->explicit_packet_size)
5391 {
5392 rs->buf_size = rs->explicit_packet_size;
5393 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
5394 }
5395
5396 /* Handle the defaults for unmentioned features. */
5397 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5398 if (!seen[i])
5399 {
5400 const struct protocol_feature *feature;
5401
5402 feature = &remote_protocol_features[i];
5403 feature->func (this, feature, feature->default_support, NULL);
5404 }
5405 }
5406
5407 /* Serial QUIT handler for the remote serial descriptor.
5408
5409 Defers handling a Ctrl-C until we're done with the current
5410 command/response packet sequence, unless:
5411
5412 - We're setting up the connection. Don't send a remote interrupt
5413 request, as we're not fully synced yet. Quit immediately
5414 instead.
5415
5416 - The target has been resumed in the foreground
5417 (target_terminal::is_ours is false) with a synchronous resume
5418 packet, and we're blocked waiting for the stop reply, thus a
5419 Ctrl-C should be immediately sent to the target.
5420
5421 - We get a second Ctrl-C while still within the same serial read or
5422 write. In that case the serial is seemingly wedged --- offer to
5423 quit/disconnect.
5424
5425 - We see a second Ctrl-C without target response, after having
5426 previously interrupted the target. In that case the target/stub
5427 is probably wedged --- offer to quit/disconnect.
5428 */
5429
5430 void
5431 remote_target::remote_serial_quit_handler ()
5432 {
5433 struct remote_state *rs = get_remote_state ();
5434
5435 if (check_quit_flag ())
5436 {
5437 /* If we're starting up, we're not fully synced yet. Quit
5438 immediately. */
5439 if (rs->starting_up)
5440 quit ();
5441 else if (rs->got_ctrlc_during_io)
5442 {
5443 if (query (_("The target is not responding to GDB commands.\n"
5444 "Stop debugging it? ")))
5445 remote_unpush_and_throw ();
5446 }
5447 /* If ^C has already been sent once, offer to disconnect. */
5448 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
5449 interrupt_query ();
5450 /* All-stop protocol, and blocked waiting for stop reply. Send
5451 an interrupt request. */
5452 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
5453 target_interrupt ();
5454 else
5455 rs->got_ctrlc_during_io = 1;
5456 }
5457 }
5458
5459 /* The remote_target that is current while the quit handler is
5460 overridden with remote_serial_quit_handler. */
5461 static remote_target *curr_quit_handler_target;
5462
5463 static void
5464 remote_serial_quit_handler ()
5465 {
5466 curr_quit_handler_target->remote_serial_quit_handler ();
5467 }
5468
5469 /* Remove any of the remote.c targets from target stack. Upper targets depend
5470 on it so remove them first. */
5471
5472 static void
5473 remote_unpush_target (void)
5474 {
5475 pop_all_targets_at_and_above (process_stratum);
5476 }
5477
5478 static void
5479 remote_unpush_and_throw (void)
5480 {
5481 remote_unpush_target ();
5482 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5483 }
5484
5485 void
5486 remote_target::open_1 (const char *name, int from_tty, int extended_p)
5487 {
5488 remote_target *curr_remote = get_current_remote_target ();
5489
5490 if (name == 0)
5491 error (_("To open a remote debug connection, you need to specify what\n"
5492 "serial device is attached to the remote system\n"
5493 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5494
5495 /* If we're connected to a running target, target_preopen will kill it.
5496 Ask this question first, before target_preopen has a chance to kill
5497 anything. */
5498 if (curr_remote != NULL && !have_inferiors ())
5499 {
5500 if (from_tty
5501 && !query (_("Already connected to a remote target. Disconnect? ")))
5502 error (_("Still connected."));
5503 }
5504
5505 /* Here the possibly existing remote target gets unpushed. */
5506 target_preopen (from_tty);
5507
5508 remote_fileio_reset ();
5509 reopen_exec_file ();
5510 reread_symbols ();
5511
5512 remote_target *remote
5513 = (extended_p ? new extended_remote_target () : new remote_target ());
5514 target_ops_up target_holder (remote);
5515
5516 remote_state *rs = remote->get_remote_state ();
5517
5518 /* See FIXME above. */
5519 if (!target_async_permitted)
5520 rs->wait_forever_enabled_p = 1;
5521
5522 rs->remote_desc = remote_serial_open (name);
5523 if (!rs->remote_desc)
5524 perror_with_name (name);
5525
5526 if (baud_rate != -1)
5527 {
5528 if (serial_setbaudrate (rs->remote_desc, baud_rate))
5529 {
5530 /* The requested speed could not be set. Error out to
5531 top level after closing remote_desc. Take care to
5532 set remote_desc to NULL to avoid closing remote_desc
5533 more than once. */
5534 serial_close (rs->remote_desc);
5535 rs->remote_desc = NULL;
5536 perror_with_name (name);
5537 }
5538 }
5539
5540 serial_setparity (rs->remote_desc, serial_parity);
5541 serial_raw (rs->remote_desc);
5542
5543 /* If there is something sitting in the buffer we might take it as a
5544 response to a command, which would be bad. */
5545 serial_flush_input (rs->remote_desc);
5546
5547 if (from_tty)
5548 {
5549 puts_filtered ("Remote debugging using ");
5550 puts_filtered (name);
5551 puts_filtered ("\n");
5552 }
5553
5554 /* Switch to using the remote target now. */
5555 push_target (remote);
5556 /* The target stack owns the target now. */
5557 target_holder.release ();
5558
5559 /* Register extra event sources in the event loop. */
5560 rs->remote_async_inferior_event_token
5561 = create_async_event_handler (remote_async_inferior_event_handler,
5562 remote);
5563 rs->notif_state = remote_notif_state_allocate (remote);
5564
5565 /* Reset the target state; these things will be queried either by
5566 remote_query_supported or as they are needed. */
5567 reset_all_packet_configs_support ();
5568 rs->cached_wait_status = 0;
5569 rs->explicit_packet_size = 0;
5570 rs->noack_mode = 0;
5571 rs->extended = extended_p;
5572 rs->waiting_for_stop_reply = 0;
5573 rs->ctrlc_pending_p = 0;
5574 rs->got_ctrlc_during_io = 0;
5575
5576 rs->general_thread = not_sent_ptid;
5577 rs->continue_thread = not_sent_ptid;
5578 rs->remote_traceframe_number = -1;
5579
5580 rs->last_resume_exec_dir = EXEC_FORWARD;
5581
5582 /* Probe for ability to use "ThreadInfo" query, as required. */
5583 rs->use_threadinfo_query = 1;
5584 rs->use_threadextra_query = 1;
5585
5586 rs->readahead_cache.invalidate ();
5587
5588 if (target_async_permitted)
5589 {
5590 /* FIXME: cagney/1999-09-23: During the initial connection it is
5591 assumed that the target is already ready and able to respond to
5592 requests. Unfortunately remote_start_remote() eventually calls
5593 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5594 around this. Eventually a mechanism that allows
5595 wait_for_inferior() to expect/get timeouts will be
5596 implemented. */
5597 rs->wait_forever_enabled_p = 0;
5598 }
5599
5600 /* First delete any symbols previously loaded from shared libraries. */
5601 no_shared_libraries (NULL, 0);
5602
5603 /* Start the remote connection. If error() or QUIT, discard this
5604 target (we'd otherwise be in an inconsistent state) and then
5605 propogate the error on up the exception chain. This ensures that
5606 the caller doesn't stumble along blindly assuming that the
5607 function succeeded. The CLI doesn't have this problem but other
5608 UI's, such as MI do.
5609
5610 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5611 this function should return an error indication letting the
5612 caller restore the previous state. Unfortunately the command
5613 ``target remote'' is directly wired to this function making that
5614 impossible. On a positive note, the CLI side of this problem has
5615 been fixed - the function set_cmd_context() makes it possible for
5616 all the ``target ....'' commands to share a common callback
5617 function. See cli-dump.c. */
5618 {
5619
5620 TRY
5621 {
5622 remote->start_remote (from_tty, extended_p);
5623 }
5624 CATCH (ex, RETURN_MASK_ALL)
5625 {
5626 /* Pop the partially set up target - unless something else did
5627 already before throwing the exception. */
5628 if (ex.error != TARGET_CLOSE_ERROR)
5629 remote_unpush_target ();
5630 throw_exception (ex);
5631 }
5632 END_CATCH
5633 }
5634
5635 remote_btrace_reset (rs);
5636
5637 if (target_async_permitted)
5638 rs->wait_forever_enabled_p = 1;
5639 }
5640
5641 /* Detach the specified process. */
5642
5643 void
5644 remote_target::remote_detach_pid (int pid)
5645 {
5646 struct remote_state *rs = get_remote_state ();
5647
5648 /* This should not be necessary, but the handling for D;PID in
5649 GDBserver versions prior to 8.2 incorrectly assumes that the
5650 selected process points to the same process we're detaching,
5651 leading to misbehavior (and possibly GDBserver crashing) when it
5652 does not. Since it's easy and cheap, work around it by forcing
5653 GDBserver to select GDB's current process. */
5654 set_general_process ();
5655
5656 if (remote_multi_process_p (rs))
5657 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5658 else
5659 strcpy (rs->buf, "D");
5660
5661 putpkt (rs->buf);
5662 getpkt (&rs->buf, &rs->buf_size, 0);
5663
5664 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5665 ;
5666 else if (rs->buf[0] == '\0')
5667 error (_("Remote doesn't know how to detach"));
5668 else
5669 error (_("Can't detach process."));
5670 }
5671
5672 /* This detaches a program to which we previously attached, using
5673 inferior_ptid to identify the process. After this is done, GDB
5674 can be used to debug some other program. We better not have left
5675 any breakpoints in the target program or it'll die when it hits
5676 one. */
5677
5678 void
5679 remote_target::remote_detach_1 (inferior *inf, int from_tty)
5680 {
5681 int pid = inferior_ptid.pid ();
5682 struct remote_state *rs = get_remote_state ();
5683 int is_fork_parent;
5684
5685 if (!target_has_execution)
5686 error (_("No process to detach from."));
5687
5688 target_announce_detach (from_tty);
5689
5690 /* Tell the remote target to detach. */
5691 remote_detach_pid (pid);
5692
5693 /* Exit only if this is the only active inferior. */
5694 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5695 puts_filtered (_("Ending remote debugging.\n"));
5696
5697 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5698
5699 /* Check to see if we are detaching a fork parent. Note that if we
5700 are detaching a fork child, tp == NULL. */
5701 is_fork_parent = (tp != NULL
5702 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5703
5704 /* If doing detach-on-fork, we don't mourn, because that will delete
5705 breakpoints that should be available for the followed inferior. */
5706 if (!is_fork_parent)
5707 {
5708 /* Save the pid as a string before mourning, since that will
5709 unpush the remote target, and we need the string after. */
5710 std::string infpid = target_pid_to_str (ptid_t (pid));
5711
5712 target_mourn_inferior (inferior_ptid);
5713 if (print_inferior_events)
5714 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5715 inf->num, infpid.c_str ());
5716 }
5717 else
5718 {
5719 inferior_ptid = null_ptid;
5720 detach_inferior (current_inferior ());
5721 }
5722 }
5723
5724 void
5725 remote_target::detach (inferior *inf, int from_tty)
5726 {
5727 remote_detach_1 (inf, from_tty);
5728 }
5729
5730 void
5731 extended_remote_target::detach (inferior *inf, int from_tty)
5732 {
5733 remote_detach_1 (inf, from_tty);
5734 }
5735
5736 /* Target follow-fork function for remote targets. On entry, and
5737 at return, the current inferior is the fork parent.
5738
5739 Note that although this is currently only used for extended-remote,
5740 it is named remote_follow_fork in anticipation of using it for the
5741 remote target as well. */
5742
5743 int
5744 remote_target::follow_fork (int follow_child, int detach_fork)
5745 {
5746 struct remote_state *rs = get_remote_state ();
5747 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5748
5749 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5750 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5751 {
5752 /* When following the parent and detaching the child, we detach
5753 the child here. For the case of following the child and
5754 detaching the parent, the detach is done in the target-
5755 independent follow fork code in infrun.c. We can't use
5756 target_detach when detaching an unfollowed child because
5757 the client side doesn't know anything about the child. */
5758 if (detach_fork && !follow_child)
5759 {
5760 /* Detach the fork child. */
5761 ptid_t child_ptid;
5762 pid_t child_pid;
5763
5764 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5765 child_pid = child_ptid.pid ();
5766
5767 remote_detach_pid (child_pid);
5768 }
5769 }
5770 return 0;
5771 }
5772
5773 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5774 in the program space of the new inferior. On entry and at return the
5775 current inferior is the exec'ing inferior. INF is the new exec'd
5776 inferior, which may be the same as the exec'ing inferior unless
5777 follow-exec-mode is "new". */
5778
5779 void
5780 remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
5781 {
5782 /* We know that this is a target file name, so if it has the "target:"
5783 prefix we strip it off before saving it in the program space. */
5784 if (is_target_filename (execd_pathname))
5785 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5786
5787 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5788 }
5789
5790 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5791
5792 void
5793 remote_target::disconnect (const char *args, int from_tty)
5794 {
5795 if (args)
5796 error (_("Argument given to \"disconnect\" when remotely debugging."));
5797
5798 /* Make sure we unpush even the extended remote targets. Calling
5799 target_mourn_inferior won't unpush, and remote_mourn won't
5800 unpush if there is more than one inferior left. */
5801 unpush_target (this);
5802 generic_mourn_inferior ();
5803
5804 if (from_tty)
5805 puts_filtered ("Ending remote debugging.\n");
5806 }
5807
5808 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5809 be chatty about it. */
5810
5811 void
5812 extended_remote_target::attach (const char *args, int from_tty)
5813 {
5814 struct remote_state *rs = get_remote_state ();
5815 int pid;
5816 char *wait_status = NULL;
5817
5818 pid = parse_pid_to_attach (args);
5819
5820 /* Remote PID can be freely equal to getpid, do not check it here the same
5821 way as in other targets. */
5822
5823 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5824 error (_("This target does not support attaching to a process"));
5825
5826 if (from_tty)
5827 {
5828 char *exec_file = get_exec_file (0);
5829
5830 if (exec_file)
5831 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5832 target_pid_to_str (ptid_t (pid)));
5833 else
5834 printf_unfiltered (_("Attaching to %s\n"),
5835 target_pid_to_str (ptid_t (pid)));
5836
5837 gdb_flush (gdb_stdout);
5838 }
5839
5840 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
5841 putpkt (rs->buf);
5842 getpkt (&rs->buf, &rs->buf_size, 0);
5843
5844 switch (packet_ok (rs->buf,
5845 &remote_protocol_packets[PACKET_vAttach]))
5846 {
5847 case PACKET_OK:
5848 if (!target_is_non_stop_p ())
5849 {
5850 /* Save the reply for later. */
5851 wait_status = (char *) alloca (strlen (rs->buf) + 1);
5852 strcpy (wait_status, rs->buf);
5853 }
5854 else if (strcmp (rs->buf, "OK") != 0)
5855 error (_("Attaching to %s failed with: %s"),
5856 target_pid_to_str (ptid_t (pid)),
5857 rs->buf);
5858 break;
5859 case PACKET_UNKNOWN:
5860 error (_("This target does not support attaching to a process"));
5861 default:
5862 error (_("Attaching to %s failed"),
5863 target_pid_to_str (ptid_t (pid)));
5864 }
5865
5866 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
5867
5868 inferior_ptid = ptid_t (pid);
5869
5870 if (target_is_non_stop_p ())
5871 {
5872 struct thread_info *thread;
5873
5874 /* Get list of threads. */
5875 update_thread_list ();
5876
5877 thread = first_thread_of_inferior (current_inferior ());
5878 if (thread)
5879 inferior_ptid = thread->ptid;
5880 else
5881 inferior_ptid = ptid_t (pid);
5882
5883 /* Invalidate our notion of the remote current thread. */
5884 record_currthread (rs, minus_one_ptid);
5885 }
5886 else
5887 {
5888 /* Now, if we have thread information, update inferior_ptid. */
5889 inferior_ptid = remote_current_thread (inferior_ptid);
5890
5891 /* Add the main thread to the thread list. */
5892 thread_info *thr = add_thread_silent (inferior_ptid);
5893 /* Don't consider the thread stopped until we've processed the
5894 saved stop reply. */
5895 set_executing (thr->ptid, true);
5896 }
5897
5898 /* Next, if the target can specify a description, read it. We do
5899 this before anything involving memory or registers. */
5900 target_find_description ();
5901
5902 if (!target_is_non_stop_p ())
5903 {
5904 /* Use the previously fetched status. */
5905 gdb_assert (wait_status != NULL);
5906
5907 if (target_can_async_p ())
5908 {
5909 struct notif_event *reply
5910 = remote_notif_parse (this, &notif_client_stop, wait_status);
5911
5912 push_stop_reply ((struct stop_reply *) reply);
5913
5914 target_async (1);
5915 }
5916 else
5917 {
5918 gdb_assert (wait_status != NULL);
5919 strcpy (rs->buf, wait_status);
5920 rs->cached_wait_status = 1;
5921 }
5922 }
5923 else
5924 gdb_assert (wait_status == NULL);
5925 }
5926
5927 /* Implementation of the to_post_attach method. */
5928
5929 void
5930 extended_remote_target::post_attach (int pid)
5931 {
5932 /* Get text, data & bss offsets. */
5933 get_offsets ();
5934
5935 /* In certain cases GDB might not have had the chance to start
5936 symbol lookup up until now. This could happen if the debugged
5937 binary is not using shared libraries, the vsyscall page is not
5938 present (on Linux) and the binary itself hadn't changed since the
5939 debugging process was started. */
5940 if (symfile_objfile != NULL)
5941 remote_check_symbols();
5942 }
5943
5944 \f
5945 /* Check for the availability of vCont. This function should also check
5946 the response. */
5947
5948 void
5949 remote_target::remote_vcont_probe ()
5950 {
5951 remote_state *rs = get_remote_state ();
5952 char *buf;
5953
5954 strcpy (rs->buf, "vCont?");
5955 putpkt (rs->buf);
5956 getpkt (&rs->buf, &rs->buf_size, 0);
5957 buf = rs->buf;
5958
5959 /* Make sure that the features we assume are supported. */
5960 if (startswith (buf, "vCont"))
5961 {
5962 char *p = &buf[5];
5963 int support_c, support_C;
5964
5965 rs->supports_vCont.s = 0;
5966 rs->supports_vCont.S = 0;
5967 support_c = 0;
5968 support_C = 0;
5969 rs->supports_vCont.t = 0;
5970 rs->supports_vCont.r = 0;
5971 while (p && *p == ';')
5972 {
5973 p++;
5974 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5975 rs->supports_vCont.s = 1;
5976 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5977 rs->supports_vCont.S = 1;
5978 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5979 support_c = 1;
5980 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5981 support_C = 1;
5982 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5983 rs->supports_vCont.t = 1;
5984 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5985 rs->supports_vCont.r = 1;
5986
5987 p = strchr (p, ';');
5988 }
5989
5990 /* If c, and C are not all supported, we can't use vCont. Clearing
5991 BUF will make packet_ok disable the packet. */
5992 if (!support_c || !support_C)
5993 buf[0] = 0;
5994 }
5995
5996 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
5997 }
5998
5999 /* Helper function for building "vCont" resumptions. Write a
6000 resumption to P. ENDP points to one-passed-the-end of the buffer
6001 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6002 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6003 resumed thread should be single-stepped and/or signalled. If PTID
6004 equals minus_one_ptid, then all threads are resumed; if PTID
6005 represents a process, then all threads of the process are resumed;
6006 the thread to be stepped and/or signalled is given in the global
6007 INFERIOR_PTID. */
6008
6009 char *
6010 remote_target::append_resumption (char *p, char *endp,
6011 ptid_t ptid, int step, gdb_signal siggnal)
6012 {
6013 struct remote_state *rs = get_remote_state ();
6014
6015 if (step && siggnal != GDB_SIGNAL_0)
6016 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
6017 else if (step
6018 /* GDB is willing to range step. */
6019 && use_range_stepping
6020 /* Target supports range stepping. */
6021 && rs->supports_vCont.r
6022 /* We don't currently support range stepping multiple
6023 threads with a wildcard (though the protocol allows it,
6024 so stubs shouldn't make an active effort to forbid
6025 it). */
6026 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
6027 {
6028 struct thread_info *tp;
6029
6030 if (ptid == minus_one_ptid)
6031 {
6032 /* If we don't know about the target thread's tid, then
6033 we're resuming magic_null_ptid (see caller). */
6034 tp = find_thread_ptid (magic_null_ptid);
6035 }
6036 else
6037 tp = find_thread_ptid (ptid);
6038 gdb_assert (tp != NULL);
6039
6040 if (tp->control.may_range_step)
6041 {
6042 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6043
6044 p += xsnprintf (p, endp - p, ";r%s,%s",
6045 phex_nz (tp->control.step_range_start,
6046 addr_size),
6047 phex_nz (tp->control.step_range_end,
6048 addr_size));
6049 }
6050 else
6051 p += xsnprintf (p, endp - p, ";s");
6052 }
6053 else if (step)
6054 p += xsnprintf (p, endp - p, ";s");
6055 else if (siggnal != GDB_SIGNAL_0)
6056 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6057 else
6058 p += xsnprintf (p, endp - p, ";c");
6059
6060 if (remote_multi_process_p (rs) && ptid.is_pid ())
6061 {
6062 ptid_t nptid;
6063
6064 /* All (-1) threads of process. */
6065 nptid = ptid_t (ptid.pid (), -1, 0);
6066
6067 p += xsnprintf (p, endp - p, ":");
6068 p = write_ptid (p, endp, nptid);
6069 }
6070 else if (ptid != minus_one_ptid)
6071 {
6072 p += xsnprintf (p, endp - p, ":");
6073 p = write_ptid (p, endp, ptid);
6074 }
6075
6076 return p;
6077 }
6078
6079 /* Clear the thread's private info on resume. */
6080
6081 static void
6082 resume_clear_thread_private_info (struct thread_info *thread)
6083 {
6084 if (thread->priv != NULL)
6085 {
6086 remote_thread_info *priv = get_remote_thread_info (thread);
6087
6088 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6089 priv->watch_data_address = 0;
6090 }
6091 }
6092
6093 /* Append a vCont continue-with-signal action for threads that have a
6094 non-zero stop signal. */
6095
6096 char *
6097 remote_target::append_pending_thread_resumptions (char *p, char *endp,
6098 ptid_t ptid)
6099 {
6100 for (thread_info *thread : all_non_exited_threads (ptid))
6101 if (inferior_ptid != thread->ptid
6102 && thread->suspend.stop_signal != GDB_SIGNAL_0)
6103 {
6104 p = append_resumption (p, endp, thread->ptid,
6105 0, thread->suspend.stop_signal);
6106 thread->suspend.stop_signal = GDB_SIGNAL_0;
6107 resume_clear_thread_private_info (thread);
6108 }
6109
6110 return p;
6111 }
6112
6113 /* Set the target running, using the packets that use Hc
6114 (c/s/C/S). */
6115
6116 void
6117 remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6118 gdb_signal siggnal)
6119 {
6120 struct remote_state *rs = get_remote_state ();
6121 char *buf;
6122
6123 rs->last_sent_signal = siggnal;
6124 rs->last_sent_step = step;
6125
6126 /* The c/s/C/S resume packets use Hc, so set the continue
6127 thread. */
6128 if (ptid == minus_one_ptid)
6129 set_continue_thread (any_thread_ptid);
6130 else
6131 set_continue_thread (ptid);
6132
6133 for (thread_info *thread : all_non_exited_threads ())
6134 resume_clear_thread_private_info (thread);
6135
6136 buf = rs->buf;
6137 if (::execution_direction == EXEC_REVERSE)
6138 {
6139 /* We don't pass signals to the target in reverse exec mode. */
6140 if (info_verbose && siggnal != GDB_SIGNAL_0)
6141 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6142 siggnal);
6143
6144 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6145 error (_("Remote reverse-step not supported."));
6146 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6147 error (_("Remote reverse-continue not supported."));
6148
6149 strcpy (buf, step ? "bs" : "bc");
6150 }
6151 else if (siggnal != GDB_SIGNAL_0)
6152 {
6153 buf[0] = step ? 'S' : 'C';
6154 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6155 buf[2] = tohex (((int) siggnal) & 0xf);
6156 buf[3] = '\0';
6157 }
6158 else
6159 strcpy (buf, step ? "s" : "c");
6160
6161 putpkt (buf);
6162 }
6163
6164 /* Resume the remote inferior by using a "vCont" packet. The thread
6165 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6166 resumed thread should be single-stepped and/or signalled. If PTID
6167 equals minus_one_ptid, then all threads are resumed; the thread to
6168 be stepped and/or signalled is given in the global INFERIOR_PTID.
6169 This function returns non-zero iff it resumes the inferior.
6170
6171 This function issues a strict subset of all possible vCont commands
6172 at the moment. */
6173
6174 int
6175 remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6176 enum gdb_signal siggnal)
6177 {
6178 struct remote_state *rs = get_remote_state ();
6179 char *p;
6180 char *endp;
6181
6182 /* No reverse execution actions defined for vCont. */
6183 if (::execution_direction == EXEC_REVERSE)
6184 return 0;
6185
6186 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6187 remote_vcont_probe ();
6188
6189 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6190 return 0;
6191
6192 p = rs->buf;
6193 endp = rs->buf + get_remote_packet_size ();
6194
6195 /* If we could generate a wider range of packets, we'd have to worry
6196 about overflowing BUF. Should there be a generic
6197 "multi-part-packet" packet? */
6198
6199 p += xsnprintf (p, endp - p, "vCont");
6200
6201 if (ptid == magic_null_ptid)
6202 {
6203 /* MAGIC_NULL_PTID means that we don't have any active threads,
6204 so we don't have any TID numbers the inferior will
6205 understand. Make sure to only send forms that do not specify
6206 a TID. */
6207 append_resumption (p, endp, minus_one_ptid, step, siggnal);
6208 }
6209 else if (ptid == minus_one_ptid || ptid.is_pid ())
6210 {
6211 /* Resume all threads (of all processes, or of a single
6212 process), with preference for INFERIOR_PTID. This assumes
6213 inferior_ptid belongs to the set of all threads we are about
6214 to resume. */
6215 if (step || siggnal != GDB_SIGNAL_0)
6216 {
6217 /* Step inferior_ptid, with or without signal. */
6218 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
6219 }
6220
6221 /* Also pass down any pending signaled resumption for other
6222 threads not the current. */
6223 p = append_pending_thread_resumptions (p, endp, ptid);
6224
6225 /* And continue others without a signal. */
6226 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
6227 }
6228 else
6229 {
6230 /* Scheduler locking; resume only PTID. */
6231 append_resumption (p, endp, ptid, step, siggnal);
6232 }
6233
6234 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
6235 putpkt (rs->buf);
6236
6237 if (target_is_non_stop_p ())
6238 {
6239 /* In non-stop, the stub replies to vCont with "OK". The stop
6240 reply will be reported asynchronously by means of a `%Stop'
6241 notification. */
6242 getpkt (&rs->buf, &rs->buf_size, 0);
6243 if (strcmp (rs->buf, "OK") != 0)
6244 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6245 }
6246
6247 return 1;
6248 }
6249
6250 /* Tell the remote machine to resume. */
6251
6252 void
6253 remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
6254 {
6255 struct remote_state *rs = get_remote_state ();
6256
6257 /* When connected in non-stop mode, the core resumes threads
6258 individually. Resuming remote threads directly in target_resume
6259 would thus result in sending one packet per thread. Instead, to
6260 minimize roundtrip latency, here we just store the resume
6261 request; the actual remote resumption will be done in
6262 target_commit_resume / remote_commit_resume, where we'll be able
6263 to do vCont action coalescing. */
6264 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
6265 {
6266 remote_thread_info *remote_thr;
6267
6268 if (minus_one_ptid == ptid || ptid.is_pid ())
6269 remote_thr = get_remote_thread_info (inferior_ptid);
6270 else
6271 remote_thr = get_remote_thread_info (ptid);
6272
6273 remote_thr->last_resume_step = step;
6274 remote_thr->last_resume_sig = siggnal;
6275 return;
6276 }
6277
6278 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6279 (explained in remote-notif.c:handle_notification) so
6280 remote_notif_process is not called. We need find a place where
6281 it is safe to start a 'vNotif' sequence. It is good to do it
6282 before resuming inferior, because inferior was stopped and no RSP
6283 traffic at that moment. */
6284 if (!target_is_non_stop_p ())
6285 remote_notif_process (rs->notif_state, &notif_client_stop);
6286
6287 rs->last_resume_exec_dir = ::execution_direction;
6288
6289 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6290 if (!remote_resume_with_vcont (ptid, step, siggnal))
6291 remote_resume_with_hc (ptid, step, siggnal);
6292
6293 /* We are about to start executing the inferior, let's register it
6294 with the event loop. NOTE: this is the one place where all the
6295 execution commands end up. We could alternatively do this in each
6296 of the execution commands in infcmd.c. */
6297 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6298 into infcmd.c in order to allow inferior function calls to work
6299 NOT asynchronously. */
6300 if (target_can_async_p ())
6301 target_async (1);
6302
6303 /* We've just told the target to resume. The remote server will
6304 wait for the inferior to stop, and then send a stop reply. In
6305 the mean time, we can't start another command/query ourselves
6306 because the stub wouldn't be ready to process it. This applies
6307 only to the base all-stop protocol, however. In non-stop (which
6308 only supports vCont), the stub replies with an "OK", and is
6309 immediate able to process further serial input. */
6310 if (!target_is_non_stop_p ())
6311 rs->waiting_for_stop_reply = 1;
6312 }
6313
6314 static int is_pending_fork_parent_thread (struct thread_info *thread);
6315
6316 /* Private per-inferior info for target remote processes. */
6317
6318 struct remote_inferior : public private_inferior
6319 {
6320 /* Whether we can send a wildcard vCont for this process. */
6321 bool may_wildcard_vcont = true;
6322 };
6323
6324 /* Get the remote private inferior data associated to INF. */
6325
6326 static remote_inferior *
6327 get_remote_inferior (inferior *inf)
6328 {
6329 if (inf->priv == NULL)
6330 inf->priv.reset (new remote_inferior);
6331
6332 return static_cast<remote_inferior *> (inf->priv.get ());
6333 }
6334
6335 /* Class used to track the construction of a vCont packet in the
6336 outgoing packet buffer. This is used to send multiple vCont
6337 packets if we have more actions than would fit a single packet. */
6338
6339 class vcont_builder
6340 {
6341 public:
6342 explicit vcont_builder (remote_target *remote)
6343 : m_remote (remote)
6344 {
6345 restart ();
6346 }
6347
6348 void flush ();
6349 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6350
6351 private:
6352 void restart ();
6353
6354 /* The remote target. */
6355 remote_target *m_remote;
6356
6357 /* Pointer to the first action. P points here if no action has been
6358 appended yet. */
6359 char *m_first_action;
6360
6361 /* Where the next action will be appended. */
6362 char *m_p;
6363
6364 /* The end of the buffer. Must never write past this. */
6365 char *m_endp;
6366 };
6367
6368 /* Prepare the outgoing buffer for a new vCont packet. */
6369
6370 void
6371 vcont_builder::restart ()
6372 {
6373 struct remote_state *rs = m_remote->get_remote_state ();
6374
6375 m_p = rs->buf;
6376 m_endp = rs->buf + m_remote->get_remote_packet_size ();
6377 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6378 m_first_action = m_p;
6379 }
6380
6381 /* If the vCont packet being built has any action, send it to the
6382 remote end. */
6383
6384 void
6385 vcont_builder::flush ()
6386 {
6387 struct remote_state *rs;
6388
6389 if (m_p == m_first_action)
6390 return;
6391
6392 rs = m_remote->get_remote_state ();
6393 m_remote->putpkt (rs->buf);
6394 m_remote->getpkt (&rs->buf, &rs->buf_size, 0);
6395 if (strcmp (rs->buf, "OK") != 0)
6396 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6397 }
6398
6399 /* The largest action is range-stepping, with its two addresses. This
6400 is more than sufficient. If a new, bigger action is created, it'll
6401 quickly trigger a failed assertion in append_resumption (and we'll
6402 just bump this). */
6403 #define MAX_ACTION_SIZE 200
6404
6405 /* Append a new vCont action in the outgoing packet being built. If
6406 the action doesn't fit the packet along with previous actions, push
6407 what we've got so far to the remote end and start over a new vCont
6408 packet (with the new action). */
6409
6410 void
6411 vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
6412 {
6413 char buf[MAX_ACTION_SIZE + 1];
6414
6415 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6416 ptid, step, siggnal);
6417
6418 /* Check whether this new action would fit in the vCont packet along
6419 with previous actions. If not, send what we've got so far and
6420 start a new vCont packet. */
6421 size_t rsize = endp - buf;
6422 if (rsize > m_endp - m_p)
6423 {
6424 flush ();
6425 restart ();
6426
6427 /* Should now fit. */
6428 gdb_assert (rsize <= m_endp - m_p);
6429 }
6430
6431 memcpy (m_p, buf, rsize);
6432 m_p += rsize;
6433 *m_p = '\0';
6434 }
6435
6436 /* to_commit_resume implementation. */
6437
6438 void
6439 remote_target::commit_resume ()
6440 {
6441 int any_process_wildcard;
6442 int may_global_wildcard_vcont;
6443
6444 /* If connected in all-stop mode, we'd send the remote resume
6445 request directly from remote_resume. Likewise if
6446 reverse-debugging, as there are no defined vCont actions for
6447 reverse execution. */
6448 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
6449 return;
6450
6451 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6452 instead of resuming all threads of each process individually.
6453 However, if any thread of a process must remain halted, we can't
6454 send wildcard resumes and must send one action per thread.
6455
6456 Care must be taken to not resume threads/processes the server
6457 side already told us are stopped, but the core doesn't know about
6458 yet, because the events are still in the vStopped notification
6459 queue. For example:
6460
6461 #1 => vCont s:p1.1;c
6462 #2 <= OK
6463 #3 <= %Stopped T05 p1.1
6464 #4 => vStopped
6465 #5 <= T05 p1.2
6466 #6 => vStopped
6467 #7 <= OK
6468 #8 (infrun handles the stop for p1.1 and continues stepping)
6469 #9 => vCont s:p1.1;c
6470
6471 The last vCont above would resume thread p1.2 by mistake, because
6472 the server has no idea that the event for p1.2 had not been
6473 handled yet.
6474
6475 The server side must similarly ignore resume actions for the
6476 thread that has a pending %Stopped notification (and any other
6477 threads with events pending), until GDB acks the notification
6478 with vStopped. Otherwise, e.g., the following case is
6479 mishandled:
6480
6481 #1 => g (or any other packet)
6482 #2 <= [registers]
6483 #3 <= %Stopped T05 p1.2
6484 #4 => vCont s:p1.1;c
6485 #5 <= OK
6486
6487 Above, the server must not resume thread p1.2. GDB can't know
6488 that p1.2 stopped until it acks the %Stopped notification, and
6489 since from GDB's perspective all threads should be running, it
6490 sends a "c" action.
6491
6492 Finally, special care must also be given to handling fork/vfork
6493 events. A (v)fork event actually tells us that two processes
6494 stopped -- the parent and the child. Until we follow the fork,
6495 we must not resume the child. Therefore, if we have a pending
6496 fork follow, we must not send a global wildcard resume action
6497 (vCont;c). We can still send process-wide wildcards though. */
6498
6499 /* Start by assuming a global wildcard (vCont;c) is possible. */
6500 may_global_wildcard_vcont = 1;
6501
6502 /* And assume every process is individually wildcard-able too. */
6503 for (inferior *inf : all_non_exited_inferiors ())
6504 {
6505 remote_inferior *priv = get_remote_inferior (inf);
6506
6507 priv->may_wildcard_vcont = true;
6508 }
6509
6510 /* Check for any pending events (not reported or processed yet) and
6511 disable process and global wildcard resumes appropriately. */
6512 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6513
6514 for (thread_info *tp : all_non_exited_threads ())
6515 {
6516 /* If a thread of a process is not meant to be resumed, then we
6517 can't wildcard that process. */
6518 if (!tp->executing)
6519 {
6520 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
6521
6522 /* And if we can't wildcard a process, we can't wildcard
6523 everything either. */
6524 may_global_wildcard_vcont = 0;
6525 continue;
6526 }
6527
6528 /* If a thread is the parent of an unfollowed fork, then we
6529 can't do a global wildcard, as that would resume the fork
6530 child. */
6531 if (is_pending_fork_parent_thread (tp))
6532 may_global_wildcard_vcont = 0;
6533 }
6534
6535 /* Now let's build the vCont packet(s). Actions must be appended
6536 from narrower to wider scopes (thread -> process -> global). If
6537 we end up with too many actions for a single packet vcont_builder
6538 flushes the current vCont packet to the remote side and starts a
6539 new one. */
6540 struct vcont_builder vcont_builder (this);
6541
6542 /* Threads first. */
6543 for (thread_info *tp : all_non_exited_threads ())
6544 {
6545 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6546
6547 if (!tp->executing || remote_thr->vcont_resumed)
6548 continue;
6549
6550 gdb_assert (!thread_is_in_step_over_chain (tp));
6551
6552 if (!remote_thr->last_resume_step
6553 && remote_thr->last_resume_sig == GDB_SIGNAL_0
6554 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
6555 {
6556 /* We'll send a wildcard resume instead. */
6557 remote_thr->vcont_resumed = 1;
6558 continue;
6559 }
6560
6561 vcont_builder.push_action (tp->ptid,
6562 remote_thr->last_resume_step,
6563 remote_thr->last_resume_sig);
6564 remote_thr->vcont_resumed = 1;
6565 }
6566
6567 /* Now check whether we can send any process-wide wildcard. This is
6568 to avoid sending a global wildcard in the case nothing is
6569 supposed to be resumed. */
6570 any_process_wildcard = 0;
6571
6572 for (inferior *inf : all_non_exited_inferiors ())
6573 {
6574 if (get_remote_inferior (inf)->may_wildcard_vcont)
6575 {
6576 any_process_wildcard = 1;
6577 break;
6578 }
6579 }
6580
6581 if (any_process_wildcard)
6582 {
6583 /* If all processes are wildcard-able, then send a single "c"
6584 action, otherwise, send an "all (-1) threads of process"
6585 continue action for each running process, if any. */
6586 if (may_global_wildcard_vcont)
6587 {
6588 vcont_builder.push_action (minus_one_ptid,
6589 false, GDB_SIGNAL_0);
6590 }
6591 else
6592 {
6593 for (inferior *inf : all_non_exited_inferiors ())
6594 {
6595 if (get_remote_inferior (inf)->may_wildcard_vcont)
6596 {
6597 vcont_builder.push_action (ptid_t (inf->pid),
6598 false, GDB_SIGNAL_0);
6599 }
6600 }
6601 }
6602 }
6603
6604 vcont_builder.flush ();
6605 }
6606
6607 \f
6608
6609 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6610 thread, all threads of a remote process, or all threads of all
6611 processes. */
6612
6613 void
6614 remote_target::remote_stop_ns (ptid_t ptid)
6615 {
6616 struct remote_state *rs = get_remote_state ();
6617 char *p = rs->buf;
6618 char *endp = rs->buf + get_remote_packet_size ();
6619
6620 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6621 remote_vcont_probe ();
6622
6623 if (!rs->supports_vCont.t)
6624 error (_("Remote server does not support stopping threads"));
6625
6626 if (ptid == minus_one_ptid
6627 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6628 p += xsnprintf (p, endp - p, "vCont;t");
6629 else
6630 {
6631 ptid_t nptid;
6632
6633 p += xsnprintf (p, endp - p, "vCont;t:");
6634
6635 if (ptid.is_pid ())
6636 /* All (-1) threads of process. */
6637 nptid = ptid_t (ptid.pid (), -1, 0);
6638 else
6639 {
6640 /* Small optimization: if we already have a stop reply for
6641 this thread, no use in telling the stub we want this
6642 stopped. */
6643 if (peek_stop_reply (ptid))
6644 return;
6645
6646 nptid = ptid;
6647 }
6648
6649 write_ptid (p, endp, nptid);
6650 }
6651
6652 /* In non-stop, we get an immediate OK reply. The stop reply will
6653 come in asynchronously by notification. */
6654 putpkt (rs->buf);
6655 getpkt (&rs->buf, &rs->buf_size, 0);
6656 if (strcmp (rs->buf, "OK") != 0)
6657 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6658 }
6659
6660 /* All-stop version of target_interrupt. Sends a break or a ^C to
6661 interrupt the remote target. It is undefined which thread of which
6662 process reports the interrupt. */
6663
6664 void
6665 remote_target::remote_interrupt_as ()
6666 {
6667 struct remote_state *rs = get_remote_state ();
6668
6669 rs->ctrlc_pending_p = 1;
6670
6671 /* If the inferior is stopped already, but the core didn't know
6672 about it yet, just ignore the request. The cached wait status
6673 will be collected in remote_wait. */
6674 if (rs->cached_wait_status)
6675 return;
6676
6677 /* Send interrupt_sequence to remote target. */
6678 send_interrupt_sequence ();
6679 }
6680
6681 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6682 the remote target. It is undefined which thread of which process
6683 reports the interrupt. Throws an error if the packet is not
6684 supported by the server. */
6685
6686 void
6687 remote_target::remote_interrupt_ns ()
6688 {
6689 struct remote_state *rs = get_remote_state ();
6690 char *p = rs->buf;
6691 char *endp = rs->buf + get_remote_packet_size ();
6692
6693 xsnprintf (p, endp - p, "vCtrlC");
6694
6695 /* In non-stop, we get an immediate OK reply. The stop reply will
6696 come in asynchronously by notification. */
6697 putpkt (rs->buf);
6698 getpkt (&rs->buf, &rs->buf_size, 0);
6699
6700 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6701 {
6702 case PACKET_OK:
6703 break;
6704 case PACKET_UNKNOWN:
6705 error (_("No support for interrupting the remote target."));
6706 case PACKET_ERROR:
6707 error (_("Interrupting target failed: %s"), rs->buf);
6708 }
6709 }
6710
6711 /* Implement the to_stop function for the remote targets. */
6712
6713 void
6714 remote_target::stop (ptid_t ptid)
6715 {
6716 if (remote_debug)
6717 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
6718
6719 if (target_is_non_stop_p ())
6720 remote_stop_ns (ptid);
6721 else
6722 {
6723 /* We don't currently have a way to transparently pause the
6724 remote target in all-stop mode. Interrupt it instead. */
6725 remote_interrupt_as ();
6726 }
6727 }
6728
6729 /* Implement the to_interrupt function for the remote targets. */
6730
6731 void
6732 remote_target::interrupt ()
6733 {
6734 if (remote_debug)
6735 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6736
6737 if (target_is_non_stop_p ())
6738 remote_interrupt_ns ();
6739 else
6740 remote_interrupt_as ();
6741 }
6742
6743 /* Implement the to_pass_ctrlc function for the remote targets. */
6744
6745 void
6746 remote_target::pass_ctrlc ()
6747 {
6748 struct remote_state *rs = get_remote_state ();
6749
6750 if (remote_debug)
6751 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6752
6753 /* If we're starting up, we're not fully synced yet. Quit
6754 immediately. */
6755 if (rs->starting_up)
6756 quit ();
6757 /* If ^C has already been sent once, offer to disconnect. */
6758 else if (rs->ctrlc_pending_p)
6759 interrupt_query ();
6760 else
6761 target_interrupt ();
6762 }
6763
6764 /* Ask the user what to do when an interrupt is received. */
6765
6766 void
6767 remote_target::interrupt_query ()
6768 {
6769 struct remote_state *rs = get_remote_state ();
6770
6771 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
6772 {
6773 if (query (_("The target is not responding to interrupt requests.\n"
6774 "Stop debugging it? ")))
6775 {
6776 remote_unpush_target ();
6777 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
6778 }
6779 }
6780 else
6781 {
6782 if (query (_("Interrupted while waiting for the program.\n"
6783 "Give up waiting? ")))
6784 quit ();
6785 }
6786 }
6787
6788 /* Enable/disable target terminal ownership. Most targets can use
6789 terminal groups to control terminal ownership. Remote targets are
6790 different in that explicit transfer of ownership to/from GDB/target
6791 is required. */
6792
6793 void
6794 remote_target::terminal_inferior ()
6795 {
6796 /* NOTE: At this point we could also register our selves as the
6797 recipient of all input. Any characters typed could then be
6798 passed on down to the target. */
6799 }
6800
6801 void
6802 remote_target::terminal_ours ()
6803 {
6804 }
6805
6806 static void
6807 remote_console_output (char *msg)
6808 {
6809 char *p;
6810
6811 for (p = msg; p[0] && p[1]; p += 2)
6812 {
6813 char tb[2];
6814 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
6815
6816 tb[0] = c;
6817 tb[1] = 0;
6818 fputs_unfiltered (tb, gdb_stdtarg);
6819 }
6820 gdb_flush (gdb_stdtarg);
6821 }
6822
6823 DEF_VEC_O(cached_reg_t);
6824
6825 typedef struct stop_reply
6826 {
6827 struct notif_event base;
6828
6829 /* The identifier of the thread about this event */
6830 ptid_t ptid;
6831
6832 /* The remote state this event is associated with. When the remote
6833 connection, represented by a remote_state object, is closed,
6834 all the associated stop_reply events should be released. */
6835 struct remote_state *rs;
6836
6837 struct target_waitstatus ws;
6838
6839 /* The architecture associated with the expedited registers. */
6840 gdbarch *arch;
6841
6842 /* Expedited registers. This makes remote debugging a bit more
6843 efficient for those targets that provide critical registers as
6844 part of their normal status mechanism (as another roundtrip to
6845 fetch them is avoided). */
6846 VEC(cached_reg_t) *regcache;
6847
6848 enum target_stop_reason stop_reason;
6849
6850 CORE_ADDR watch_data_address;
6851
6852 int core;
6853 } *stop_reply_p;
6854
6855 static void
6856 stop_reply_xfree (struct stop_reply *r)
6857 {
6858 notif_event_xfree ((struct notif_event *) r);
6859 }
6860
6861 /* Return the length of the stop reply queue. */
6862
6863 int
6864 remote_target::stop_reply_queue_length ()
6865 {
6866 remote_state *rs = get_remote_state ();
6867 return rs->stop_reply_queue.size ();
6868 }
6869
6870 void
6871 remote_notif_stop_parse (remote_target *remote,
6872 struct notif_client *self, char *buf,
6873 struct notif_event *event)
6874 {
6875 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
6876 }
6877
6878 static void
6879 remote_notif_stop_ack (remote_target *remote,
6880 struct notif_client *self, char *buf,
6881 struct notif_event *event)
6882 {
6883 struct stop_reply *stop_reply = (struct stop_reply *) event;
6884
6885 /* acknowledge */
6886 putpkt (remote, self->ack_command);
6887
6888 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6889 {
6890 /* We got an unknown stop reply. */
6891 error (_("Unknown stop reply"));
6892 }
6893
6894 remote->push_stop_reply (stop_reply);
6895 }
6896
6897 static int
6898 remote_notif_stop_can_get_pending_events (remote_target *remote,
6899 struct notif_client *self)
6900 {
6901 /* We can't get pending events in remote_notif_process for
6902 notification stop, and we have to do this in remote_wait_ns
6903 instead. If we fetch all queued events from stub, remote stub
6904 may exit and we have no chance to process them back in
6905 remote_wait_ns. */
6906 remote_state *rs = remote->get_remote_state ();
6907 mark_async_event_handler (rs->remote_async_inferior_event_token);
6908 return 0;
6909 }
6910
6911 static void
6912 stop_reply_dtr (struct notif_event *event)
6913 {
6914 struct stop_reply *r = (struct stop_reply *) event;
6915 cached_reg_t *reg;
6916 int ix;
6917
6918 for (ix = 0;
6919 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6920 ix++)
6921 xfree (reg->data);
6922
6923 VEC_free (cached_reg_t, r->regcache);
6924 }
6925
6926 static struct notif_event *
6927 remote_notif_stop_alloc_reply (void)
6928 {
6929 /* We cast to a pointer to the "base class". */
6930 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
6931
6932 r->dtr = stop_reply_dtr;
6933
6934 return r;
6935 }
6936
6937 /* A client of notification Stop. */
6938
6939 struct notif_client notif_client_stop =
6940 {
6941 "Stop",
6942 "vStopped",
6943 remote_notif_stop_parse,
6944 remote_notif_stop_ack,
6945 remote_notif_stop_can_get_pending_events,
6946 remote_notif_stop_alloc_reply,
6947 REMOTE_NOTIF_STOP,
6948 };
6949
6950 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6951 the pid of the process that owns the threads we want to check, or
6952 -1 if we want to check all threads. */
6953
6954 static int
6955 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6956 ptid_t thread_ptid)
6957 {
6958 if (ws->kind == TARGET_WAITKIND_FORKED
6959 || ws->kind == TARGET_WAITKIND_VFORKED)
6960 {
6961 if (event_pid == -1 || event_pid == thread_ptid.pid ())
6962 return 1;
6963 }
6964
6965 return 0;
6966 }
6967
6968 /* Return the thread's pending status used to determine whether the
6969 thread is a fork parent stopped at a fork event. */
6970
6971 static struct target_waitstatus *
6972 thread_pending_fork_status (struct thread_info *thread)
6973 {
6974 if (thread->suspend.waitstatus_pending_p)
6975 return &thread->suspend.waitstatus;
6976 else
6977 return &thread->pending_follow;
6978 }
6979
6980 /* Determine if THREAD is a pending fork parent thread. */
6981
6982 static int
6983 is_pending_fork_parent_thread (struct thread_info *thread)
6984 {
6985 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6986 int pid = -1;
6987
6988 return is_pending_fork_parent (ws, pid, thread->ptid);
6989 }
6990
6991 /* If CONTEXT contains any fork child threads that have not been
6992 reported yet, remove them from the CONTEXT list. If such a
6993 thread exists it is because we are stopped at a fork catchpoint
6994 and have not yet called follow_fork, which will set up the
6995 host-side data structures for the new process. */
6996
6997 void
6998 remote_target::remove_new_fork_children (threads_listing_context *context)
6999 {
7000 int pid = -1;
7001 struct notif_client *notif = &notif_client_stop;
7002
7003 /* For any threads stopped at a fork event, remove the corresponding
7004 fork child threads from the CONTEXT list. */
7005 for (thread_info *thread : all_non_exited_threads ())
7006 {
7007 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7008
7009 if (is_pending_fork_parent (ws, pid, thread->ptid))
7010 context->remove_thread (ws->value.related_pid);
7011 }
7012
7013 /* Check for any pending fork events (not reported or processed yet)
7014 in process PID and remove those fork child threads from the
7015 CONTEXT list as well. */
7016 remote_notif_get_pending_events (notif);
7017 for (auto &event : get_remote_state ()->stop_reply_queue)
7018 if (event->ws.kind == TARGET_WAITKIND_FORKED
7019 || event->ws.kind == TARGET_WAITKIND_VFORKED
7020 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7021 context->remove_thread (event->ws.value.related_pid);
7022 }
7023
7024 /* Check whether any event pending in the vStopped queue would prevent
7025 a global or process wildcard vCont action. Clear
7026 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7027 and clear the event inferior's may_wildcard_vcont flag if we can't
7028 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7029
7030 void
7031 remote_target::check_pending_events_prevent_wildcard_vcont
7032 (int *may_global_wildcard)
7033 {
7034 struct notif_client *notif = &notif_client_stop;
7035
7036 remote_notif_get_pending_events (notif);
7037 for (auto &event : get_remote_state ()->stop_reply_queue)
7038 {
7039 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7040 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7041 continue;
7042
7043 if (event->ws.kind == TARGET_WAITKIND_FORKED
7044 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7045 *may_global_wildcard = 0;
7046
7047 struct inferior *inf = find_inferior_ptid (event->ptid);
7048
7049 /* This may be the first time we heard about this process.
7050 Regardless, we must not do a global wildcard resume, otherwise
7051 we'd resume this process too. */
7052 *may_global_wildcard = 0;
7053 if (inf != NULL)
7054 get_remote_inferior (inf)->may_wildcard_vcont = false;
7055 }
7056 }
7057
7058 /* Discard all pending stop replies of inferior INF. */
7059
7060 void
7061 remote_target::discard_pending_stop_replies (struct inferior *inf)
7062 {
7063 struct stop_reply *reply;
7064 struct remote_state *rs = get_remote_state ();
7065 struct remote_notif_state *rns = rs->notif_state;
7066
7067 /* This function can be notified when an inferior exists. When the
7068 target is not remote, the notification state is NULL. */
7069 if (rs->remote_desc == NULL)
7070 return;
7071
7072 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7073
7074 /* Discard the in-flight notification. */
7075 if (reply != NULL && reply->ptid.pid () == inf->pid)
7076 {
7077 stop_reply_xfree (reply);
7078 rns->pending_event[notif_client_stop.id] = NULL;
7079 }
7080
7081 /* Discard the stop replies we have already pulled with
7082 vStopped. */
7083 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7084 rs->stop_reply_queue.end (),
7085 [=] (const stop_reply_up &event)
7086 {
7087 return event->ptid.pid () == inf->pid;
7088 });
7089 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7090 }
7091
7092 /* Discard the stop replies for RS in stop_reply_queue. */
7093
7094 void
7095 remote_target::discard_pending_stop_replies_in_queue ()
7096 {
7097 remote_state *rs = get_remote_state ();
7098
7099 /* Discard the stop replies we have already pulled with
7100 vStopped. */
7101 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7102 rs->stop_reply_queue.end (),
7103 [=] (const stop_reply_up &event)
7104 {
7105 return event->rs == rs;
7106 });
7107 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7108 }
7109
7110 /* Remove the first reply in 'stop_reply_queue' which matches
7111 PTID. */
7112
7113 struct stop_reply *
7114 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7115 {
7116 remote_state *rs = get_remote_state ();
7117
7118 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7119 rs->stop_reply_queue.end (),
7120 [=] (const stop_reply_up &event)
7121 {
7122 return event->ptid.matches (ptid);
7123 });
7124 struct stop_reply *result;
7125 if (iter == rs->stop_reply_queue.end ())
7126 result = nullptr;
7127 else
7128 {
7129 result = iter->release ();
7130 rs->stop_reply_queue.erase (iter);
7131 }
7132
7133 if (notif_debug)
7134 fprintf_unfiltered (gdb_stdlog,
7135 "notif: discard queued event: 'Stop' in %s\n",
7136 target_pid_to_str (ptid));
7137
7138 return result;
7139 }
7140
7141 /* Look for a queued stop reply belonging to PTID. If one is found,
7142 remove it from the queue, and return it. Returns NULL if none is
7143 found. If there are still queued events left to process, tell the
7144 event loop to get back to target_wait soon. */
7145
7146 struct stop_reply *
7147 remote_target::queued_stop_reply (ptid_t ptid)
7148 {
7149 remote_state *rs = get_remote_state ();
7150 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7151
7152 if (!rs->stop_reply_queue.empty ())
7153 {
7154 /* There's still at least an event left. */
7155 mark_async_event_handler (rs->remote_async_inferior_event_token);
7156 }
7157
7158 return r;
7159 }
7160
7161 /* Push a fully parsed stop reply in the stop reply queue. Since we
7162 know that we now have at least one queued event left to pass to the
7163 core side, tell the event loop to get back to target_wait soon. */
7164
7165 void
7166 remote_target::push_stop_reply (struct stop_reply *new_event)
7167 {
7168 remote_state *rs = get_remote_state ();
7169 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7170
7171 if (notif_debug)
7172 fprintf_unfiltered (gdb_stdlog,
7173 "notif: push 'Stop' %s to queue %d\n",
7174 target_pid_to_str (new_event->ptid),
7175 int (rs->stop_reply_queue.size ()));
7176
7177 mark_async_event_handler (rs->remote_async_inferior_event_token);
7178 }
7179
7180 /* Returns true if we have a stop reply for PTID. */
7181
7182 int
7183 remote_target::peek_stop_reply (ptid_t ptid)
7184 {
7185 remote_state *rs = get_remote_state ();
7186 for (auto &event : rs->stop_reply_queue)
7187 if (ptid == event->ptid
7188 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7189 return 1;
7190 return 0;
7191 }
7192
7193 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7194 starting with P and ending with PEND matches PREFIX. */
7195
7196 static int
7197 strprefix (const char *p, const char *pend, const char *prefix)
7198 {
7199 for ( ; p < pend; p++, prefix++)
7200 if (*p != *prefix)
7201 return 0;
7202 return *prefix == '\0';
7203 }
7204
7205 /* Parse the stop reply in BUF. Either the function succeeds, and the
7206 result is stored in EVENT, or throws an error. */
7207
7208 void
7209 remote_target::remote_parse_stop_reply (char *buf, stop_reply *event)
7210 {
7211 remote_arch_state *rsa = NULL;
7212 ULONGEST addr;
7213 const char *p;
7214 int skipregs = 0;
7215
7216 event->ptid = null_ptid;
7217 event->rs = get_remote_state ();
7218 event->ws.kind = TARGET_WAITKIND_IGNORE;
7219 event->ws.value.integer = 0;
7220 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7221 event->regcache = NULL;
7222 event->core = -1;
7223
7224 switch (buf[0])
7225 {
7226 case 'T': /* Status with PC, SP, FP, ... */
7227 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7228 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7229 ss = signal number
7230 n... = register number
7231 r... = register contents
7232 */
7233
7234 p = &buf[3]; /* after Txx */
7235 while (*p)
7236 {
7237 const char *p1;
7238 int fieldsize;
7239
7240 p1 = strchr (p, ':');
7241 if (p1 == NULL)
7242 error (_("Malformed packet(a) (missing colon): %s\n\
7243 Packet: '%s'\n"),
7244 p, buf);
7245 if (p == p1)
7246 error (_("Malformed packet(a) (missing register number): %s\n\
7247 Packet: '%s'\n"),
7248 p, buf);
7249
7250 /* Some "registers" are actually extended stop information.
7251 Note if you're adding a new entry here: GDB 7.9 and
7252 earlier assume that all register "numbers" that start
7253 with an hex digit are real register numbers. Make sure
7254 the server only sends such a packet if it knows the
7255 client understands it. */
7256
7257 if (strprefix (p, p1, "thread"))
7258 event->ptid = read_ptid (++p1, &p);
7259 else if (strprefix (p, p1, "syscall_entry"))
7260 {
7261 ULONGEST sysno;
7262
7263 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7264 p = unpack_varlen_hex (++p1, &sysno);
7265 event->ws.value.syscall_number = (int) sysno;
7266 }
7267 else if (strprefix (p, p1, "syscall_return"))
7268 {
7269 ULONGEST sysno;
7270
7271 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7272 p = unpack_varlen_hex (++p1, &sysno);
7273 event->ws.value.syscall_number = (int) sysno;
7274 }
7275 else if (strprefix (p, p1, "watch")
7276 || strprefix (p, p1, "rwatch")
7277 || strprefix (p, p1, "awatch"))
7278 {
7279 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7280 p = unpack_varlen_hex (++p1, &addr);
7281 event->watch_data_address = (CORE_ADDR) addr;
7282 }
7283 else if (strprefix (p, p1, "swbreak"))
7284 {
7285 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7286
7287 /* Make sure the stub doesn't forget to indicate support
7288 with qSupported. */
7289 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7290 error (_("Unexpected swbreak stop reason"));
7291
7292 /* The value part is documented as "must be empty",
7293 though we ignore it, in case we ever decide to make
7294 use of it in a backward compatible way. */
7295 p = strchrnul (p1 + 1, ';');
7296 }
7297 else if (strprefix (p, p1, "hwbreak"))
7298 {
7299 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7300
7301 /* Make sure the stub doesn't forget to indicate support
7302 with qSupported. */
7303 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7304 error (_("Unexpected hwbreak stop reason"));
7305
7306 /* See above. */
7307 p = strchrnul (p1 + 1, ';');
7308 }
7309 else if (strprefix (p, p1, "library"))
7310 {
7311 event->ws.kind = TARGET_WAITKIND_LOADED;
7312 p = strchrnul (p1 + 1, ';');
7313 }
7314 else if (strprefix (p, p1, "replaylog"))
7315 {
7316 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7317 /* p1 will indicate "begin" or "end", but it makes
7318 no difference for now, so ignore it. */
7319 p = strchrnul (p1 + 1, ';');
7320 }
7321 else if (strprefix (p, p1, "core"))
7322 {
7323 ULONGEST c;
7324
7325 p = unpack_varlen_hex (++p1, &c);
7326 event->core = c;
7327 }
7328 else if (strprefix (p, p1, "fork"))
7329 {
7330 event->ws.value.related_pid = read_ptid (++p1, &p);
7331 event->ws.kind = TARGET_WAITKIND_FORKED;
7332 }
7333 else if (strprefix (p, p1, "vfork"))
7334 {
7335 event->ws.value.related_pid = read_ptid (++p1, &p);
7336 event->ws.kind = TARGET_WAITKIND_VFORKED;
7337 }
7338 else if (strprefix (p, p1, "vforkdone"))
7339 {
7340 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
7341 p = strchrnul (p1 + 1, ';');
7342 }
7343 else if (strprefix (p, p1, "exec"))
7344 {
7345 ULONGEST ignored;
7346 char pathname[PATH_MAX];
7347 int pathlen;
7348
7349 /* Determine the length of the execd pathname. */
7350 p = unpack_varlen_hex (++p1, &ignored);
7351 pathlen = (p - p1) / 2;
7352
7353 /* Save the pathname for event reporting and for
7354 the next run command. */
7355 hex2bin (p1, (gdb_byte *) pathname, pathlen);
7356 pathname[pathlen] = '\0';
7357
7358 /* This is freed during event handling. */
7359 event->ws.value.execd_pathname = xstrdup (pathname);
7360 event->ws.kind = TARGET_WAITKIND_EXECD;
7361
7362 /* Skip the registers included in this packet, since
7363 they may be for an architecture different from the
7364 one used by the original program. */
7365 skipregs = 1;
7366 }
7367 else if (strprefix (p, p1, "create"))
7368 {
7369 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
7370 p = strchrnul (p1 + 1, ';');
7371 }
7372 else
7373 {
7374 ULONGEST pnum;
7375 const char *p_temp;
7376
7377 if (skipregs)
7378 {
7379 p = strchrnul (p1 + 1, ';');
7380 p++;
7381 continue;
7382 }
7383
7384 /* Maybe a real ``P'' register number. */
7385 p_temp = unpack_varlen_hex (p, &pnum);
7386 /* If the first invalid character is the colon, we got a
7387 register number. Otherwise, it's an unknown stop
7388 reason. */
7389 if (p_temp == p1)
7390 {
7391 /* If we haven't parsed the event's thread yet, find
7392 it now, in order to find the architecture of the
7393 reported expedited registers. */
7394 if (event->ptid == null_ptid)
7395 {
7396 const char *thr = strstr (p1 + 1, ";thread:");
7397 if (thr != NULL)
7398 event->ptid = read_ptid (thr + strlen (";thread:"),
7399 NULL);
7400 else
7401 {
7402 /* Either the current thread hasn't changed,
7403 or the inferior is not multi-threaded.
7404 The event must be for the thread we last
7405 set as (or learned as being) current. */
7406 event->ptid = event->rs->general_thread;
7407 }
7408 }
7409
7410 if (rsa == NULL)
7411 {
7412 inferior *inf = (event->ptid == null_ptid
7413 ? NULL
7414 : find_inferior_ptid (event->ptid));
7415 /* If this is the first time we learn anything
7416 about this process, skip the registers
7417 included in this packet, since we don't yet
7418 know which architecture to use to parse them.
7419 We'll determine the architecture later when
7420 we process the stop reply and retrieve the
7421 target description, via
7422 remote_notice_new_inferior ->
7423 post_create_inferior. */
7424 if (inf == NULL)
7425 {
7426 p = strchrnul (p1 + 1, ';');
7427 p++;
7428 continue;
7429 }
7430
7431 event->arch = inf->gdbarch;
7432 rsa = event->rs->get_remote_arch_state (event->arch);
7433 }
7434
7435 packet_reg *reg
7436 = packet_reg_from_pnum (event->arch, rsa, pnum);
7437 cached_reg_t cached_reg;
7438
7439 if (reg == NULL)
7440 error (_("Remote sent bad register number %s: %s\n\
7441 Packet: '%s'\n"),
7442 hex_string (pnum), p, buf);
7443
7444 cached_reg.num = reg->regnum;
7445 cached_reg.data = (gdb_byte *)
7446 xmalloc (register_size (event->arch, reg->regnum));
7447
7448 p = p1 + 1;
7449 fieldsize = hex2bin (p, cached_reg.data,
7450 register_size (event->arch, reg->regnum));
7451 p += 2 * fieldsize;
7452 if (fieldsize < register_size (event->arch, reg->regnum))
7453 warning (_("Remote reply is too short: %s"), buf);
7454
7455 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7456 }
7457 else
7458 {
7459 /* Not a number. Silently skip unknown optional
7460 info. */
7461 p = strchrnul (p1 + 1, ';');
7462 }
7463 }
7464
7465 if (*p != ';')
7466 error (_("Remote register badly formatted: %s\nhere: %s"),
7467 buf, p);
7468 ++p;
7469 }
7470
7471 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7472 break;
7473
7474 /* fall through */
7475 case 'S': /* Old style status, just signal only. */
7476 {
7477 int sig;
7478
7479 event->ws.kind = TARGET_WAITKIND_STOPPED;
7480 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7481 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7482 event->ws.value.sig = (enum gdb_signal) sig;
7483 else
7484 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7485 }
7486 break;
7487 case 'w': /* Thread exited. */
7488 {
7489 ULONGEST value;
7490
7491 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7492 p = unpack_varlen_hex (&buf[1], &value);
7493 event->ws.value.integer = value;
7494 if (*p != ';')
7495 error (_("stop reply packet badly formatted: %s"), buf);
7496 event->ptid = read_ptid (++p, NULL);
7497 break;
7498 }
7499 case 'W': /* Target exited. */
7500 case 'X':
7501 {
7502 int pid;
7503 ULONGEST value;
7504
7505 /* GDB used to accept only 2 hex chars here. Stubs should
7506 only send more if they detect GDB supports multi-process
7507 support. */
7508 p = unpack_varlen_hex (&buf[1], &value);
7509
7510 if (buf[0] == 'W')
7511 {
7512 /* The remote process exited. */
7513 event->ws.kind = TARGET_WAITKIND_EXITED;
7514 event->ws.value.integer = value;
7515 }
7516 else
7517 {
7518 /* The remote process exited with a signal. */
7519 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7520 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7521 event->ws.value.sig = (enum gdb_signal) value;
7522 else
7523 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7524 }
7525
7526 /* If no process is specified, assume inferior_ptid. */
7527 pid = inferior_ptid.pid ();
7528 if (*p == '\0')
7529 ;
7530 else if (*p == ';')
7531 {
7532 p++;
7533
7534 if (*p == '\0')
7535 ;
7536 else if (startswith (p, "process:"))
7537 {
7538 ULONGEST upid;
7539
7540 p += sizeof ("process:") - 1;
7541 unpack_varlen_hex (p, &upid);
7542 pid = upid;
7543 }
7544 else
7545 error (_("unknown stop reply packet: %s"), buf);
7546 }
7547 else
7548 error (_("unknown stop reply packet: %s"), buf);
7549 event->ptid = ptid_t (pid);
7550 }
7551 break;
7552 case 'N':
7553 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7554 event->ptid = minus_one_ptid;
7555 break;
7556 }
7557
7558 if (target_is_non_stop_p () && event->ptid == null_ptid)
7559 error (_("No process or thread specified in stop reply: %s"), buf);
7560 }
7561
7562 /* When the stub wants to tell GDB about a new notification reply, it
7563 sends a notification (%Stop, for example). Those can come it at
7564 any time, hence, we have to make sure that any pending
7565 putpkt/getpkt sequence we're making is finished, before querying
7566 the stub for more events with the corresponding ack command
7567 (vStopped, for example). E.g., if we started a vStopped sequence
7568 immediately upon receiving the notification, something like this
7569 could happen:
7570
7571 1.1) --> Hg 1
7572 1.2) <-- OK
7573 1.3) --> g
7574 1.4) <-- %Stop
7575 1.5) --> vStopped
7576 1.6) <-- (registers reply to step #1.3)
7577
7578 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7579 query.
7580
7581 To solve this, whenever we parse a %Stop notification successfully,
7582 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7583 doing whatever we were doing:
7584
7585 2.1) --> Hg 1
7586 2.2) <-- OK
7587 2.3) --> g
7588 2.4) <-- %Stop
7589 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7590 2.5) <-- (registers reply to step #2.3)
7591
7592 Eventualy after step #2.5, we return to the event loop, which
7593 notices there's an event on the
7594 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7595 associated callback --- the function below. At this point, we're
7596 always safe to start a vStopped sequence. :
7597
7598 2.6) --> vStopped
7599 2.7) <-- T05 thread:2
7600 2.8) --> vStopped
7601 2.9) --> OK
7602 */
7603
7604 void
7605 remote_target::remote_notif_get_pending_events (notif_client *nc)
7606 {
7607 struct remote_state *rs = get_remote_state ();
7608
7609 if (rs->notif_state->pending_event[nc->id] != NULL)
7610 {
7611 if (notif_debug)
7612 fprintf_unfiltered (gdb_stdlog,
7613 "notif: process: '%s' ack pending event\n",
7614 nc->name);
7615
7616 /* acknowledge */
7617 nc->ack (this, nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7618 rs->notif_state->pending_event[nc->id] = NULL;
7619
7620 while (1)
7621 {
7622 getpkt (&rs->buf, &rs->buf_size, 0);
7623 if (strcmp (rs->buf, "OK") == 0)
7624 break;
7625 else
7626 remote_notif_ack (this, nc, rs->buf);
7627 }
7628 }
7629 else
7630 {
7631 if (notif_debug)
7632 fprintf_unfiltered (gdb_stdlog,
7633 "notif: process: '%s' no pending reply\n",
7634 nc->name);
7635 }
7636 }
7637
7638 /* Wrapper around remote_target::remote_notif_get_pending_events to
7639 avoid having to export the whole remote_target class. */
7640
7641 void
7642 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7643 {
7644 remote->remote_notif_get_pending_events (nc);
7645 }
7646
7647 /* Called when it is decided that STOP_REPLY holds the info of the
7648 event that is to be returned to the core. This function always
7649 destroys STOP_REPLY. */
7650
7651 ptid_t
7652 remote_target::process_stop_reply (struct stop_reply *stop_reply,
7653 struct target_waitstatus *status)
7654 {
7655 ptid_t ptid;
7656
7657 *status = stop_reply->ws;
7658 ptid = stop_reply->ptid;
7659
7660 /* If no thread/process was reported by the stub, assume the current
7661 inferior. */
7662 if (ptid == null_ptid)
7663 ptid = inferior_ptid;
7664
7665 if (status->kind != TARGET_WAITKIND_EXITED
7666 && status->kind != TARGET_WAITKIND_SIGNALLED
7667 && status->kind != TARGET_WAITKIND_NO_RESUMED)
7668 {
7669 /* Expedited registers. */
7670 if (stop_reply->regcache)
7671 {
7672 struct regcache *regcache
7673 = get_thread_arch_regcache (ptid, stop_reply->arch);
7674 cached_reg_t *reg;
7675 int ix;
7676
7677 for (ix = 0;
7678 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
7679 ix++)
7680 {
7681 regcache->raw_supply (reg->num, reg->data);
7682 xfree (reg->data);
7683 }
7684
7685 VEC_free (cached_reg_t, stop_reply->regcache);
7686 }
7687
7688 remote_notice_new_inferior (ptid, 0);
7689 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
7690 remote_thr->core = stop_reply->core;
7691 remote_thr->stop_reason = stop_reply->stop_reason;
7692 remote_thr->watch_data_address = stop_reply->watch_data_address;
7693 remote_thr->vcont_resumed = 0;
7694 }
7695
7696 stop_reply_xfree (stop_reply);
7697 return ptid;
7698 }
7699
7700 /* The non-stop mode version of target_wait. */
7701
7702 ptid_t
7703 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
7704 {
7705 struct remote_state *rs = get_remote_state ();
7706 struct stop_reply *stop_reply;
7707 int ret;
7708 int is_notif = 0;
7709
7710 /* If in non-stop mode, get out of getpkt even if a
7711 notification is received. */
7712
7713 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7714 0 /* forever */, &is_notif);
7715 while (1)
7716 {
7717 if (ret != -1 && !is_notif)
7718 switch (rs->buf[0])
7719 {
7720 case 'E': /* Error of some sort. */
7721 /* We're out of sync with the target now. Did it continue
7722 or not? We can't tell which thread it was in non-stop,
7723 so just ignore this. */
7724 warning (_("Remote failure reply: %s"), rs->buf);
7725 break;
7726 case 'O': /* Console output. */
7727 remote_console_output (rs->buf + 1);
7728 break;
7729 default:
7730 warning (_("Invalid remote reply: %s"), rs->buf);
7731 break;
7732 }
7733
7734 /* Acknowledge a pending stop reply that may have arrived in the
7735 mean time. */
7736 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
7737 remote_notif_get_pending_events (&notif_client_stop);
7738
7739 /* If indeed we noticed a stop reply, we're done. */
7740 stop_reply = queued_stop_reply (ptid);
7741 if (stop_reply != NULL)
7742 return process_stop_reply (stop_reply, status);
7743
7744 /* Still no event. If we're just polling for an event, then
7745 return to the event loop. */
7746 if (options & TARGET_WNOHANG)
7747 {
7748 status->kind = TARGET_WAITKIND_IGNORE;
7749 return minus_one_ptid;
7750 }
7751
7752 /* Otherwise do a blocking wait. */
7753 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7754 1 /* forever */, &is_notif);
7755 }
7756 }
7757
7758 /* Wait until the remote machine stops, then return, storing status in
7759 STATUS just as `wait' would. */
7760
7761 ptid_t
7762 remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
7763 {
7764 struct remote_state *rs = get_remote_state ();
7765 ptid_t event_ptid = null_ptid;
7766 char *buf;
7767 struct stop_reply *stop_reply;
7768
7769 again:
7770
7771 status->kind = TARGET_WAITKIND_IGNORE;
7772 status->value.integer = 0;
7773
7774 stop_reply = queued_stop_reply (ptid);
7775 if (stop_reply != NULL)
7776 return process_stop_reply (stop_reply, status);
7777
7778 if (rs->cached_wait_status)
7779 /* Use the cached wait status, but only once. */
7780 rs->cached_wait_status = 0;
7781 else
7782 {
7783 int ret;
7784 int is_notif;
7785 int forever = ((options & TARGET_WNOHANG) == 0
7786 && rs->wait_forever_enabled_p);
7787
7788 if (!rs->waiting_for_stop_reply)
7789 {
7790 status->kind = TARGET_WAITKIND_NO_RESUMED;
7791 return minus_one_ptid;
7792 }
7793
7794 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7795 _never_ wait for ever -> test on target_is_async_p().
7796 However, before we do that we need to ensure that the caller
7797 knows how to take the target into/out of async mode. */
7798 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7799 forever, &is_notif);
7800
7801 /* GDB gets a notification. Return to core as this event is
7802 not interesting. */
7803 if (ret != -1 && is_notif)
7804 return minus_one_ptid;
7805
7806 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7807 return minus_one_ptid;
7808 }
7809
7810 buf = rs->buf;
7811
7812 /* Assume that the target has acknowledged Ctrl-C unless we receive
7813 an 'F' or 'O' packet. */
7814 if (buf[0] != 'F' && buf[0] != 'O')
7815 rs->ctrlc_pending_p = 0;
7816
7817 switch (buf[0])
7818 {
7819 case 'E': /* Error of some sort. */
7820 /* We're out of sync with the target now. Did it continue or
7821 not? Not is more likely, so report a stop. */
7822 rs->waiting_for_stop_reply = 0;
7823
7824 warning (_("Remote failure reply: %s"), buf);
7825 status->kind = TARGET_WAITKIND_STOPPED;
7826 status->value.sig = GDB_SIGNAL_0;
7827 break;
7828 case 'F': /* File-I/O request. */
7829 /* GDB may access the inferior memory while handling the File-I/O
7830 request, but we don't want GDB accessing memory while waiting
7831 for a stop reply. See the comments in putpkt_binary. Set
7832 waiting_for_stop_reply to 0 temporarily. */
7833 rs->waiting_for_stop_reply = 0;
7834 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
7835 rs->ctrlc_pending_p = 0;
7836 /* GDB handled the File-I/O request, and the target is running
7837 again. Keep waiting for events. */
7838 rs->waiting_for_stop_reply = 1;
7839 break;
7840 case 'N': case 'T': case 'S': case 'X': case 'W':
7841 {
7842 /* There is a stop reply to handle. */
7843 rs->waiting_for_stop_reply = 0;
7844
7845 stop_reply
7846 = (struct stop_reply *) remote_notif_parse (this,
7847 &notif_client_stop,
7848 rs->buf);
7849
7850 event_ptid = process_stop_reply (stop_reply, status);
7851 break;
7852 }
7853 case 'O': /* Console output. */
7854 remote_console_output (buf + 1);
7855 break;
7856 case '\0':
7857 if (rs->last_sent_signal != GDB_SIGNAL_0)
7858 {
7859 /* Zero length reply means that we tried 'S' or 'C' and the
7860 remote system doesn't support it. */
7861 target_terminal::ours_for_output ();
7862 printf_filtered
7863 ("Can't send signals to this remote system. %s not sent.\n",
7864 gdb_signal_to_name (rs->last_sent_signal));
7865 rs->last_sent_signal = GDB_SIGNAL_0;
7866 target_terminal::inferior ();
7867
7868 strcpy (buf, rs->last_sent_step ? "s" : "c");
7869 putpkt (buf);
7870 break;
7871 }
7872 /* fallthrough */
7873 default:
7874 warning (_("Invalid remote reply: %s"), buf);
7875 break;
7876 }
7877
7878 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7879 return minus_one_ptid;
7880 else if (status->kind == TARGET_WAITKIND_IGNORE)
7881 {
7882 /* Nothing interesting happened. If we're doing a non-blocking
7883 poll, we're done. Otherwise, go back to waiting. */
7884 if (options & TARGET_WNOHANG)
7885 return minus_one_ptid;
7886 else
7887 goto again;
7888 }
7889 else if (status->kind != TARGET_WAITKIND_EXITED
7890 && status->kind != TARGET_WAITKIND_SIGNALLED)
7891 {
7892 if (event_ptid != null_ptid)
7893 record_currthread (rs, event_ptid);
7894 else
7895 event_ptid = inferior_ptid;
7896 }
7897 else
7898 /* A process exit. Invalidate our notion of current thread. */
7899 record_currthread (rs, minus_one_ptid);
7900
7901 return event_ptid;
7902 }
7903
7904 /* Wait until the remote machine stops, then return, storing status in
7905 STATUS just as `wait' would. */
7906
7907 ptid_t
7908 remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
7909 {
7910 ptid_t event_ptid;
7911
7912 if (target_is_non_stop_p ())
7913 event_ptid = wait_ns (ptid, status, options);
7914 else
7915 event_ptid = wait_as (ptid, status, options);
7916
7917 if (target_is_async_p ())
7918 {
7919 remote_state *rs = get_remote_state ();
7920
7921 /* If there are are events left in the queue tell the event loop
7922 to return here. */
7923 if (!rs->stop_reply_queue.empty ())
7924 mark_async_event_handler (rs->remote_async_inferior_event_token);
7925 }
7926
7927 return event_ptid;
7928 }
7929
7930 /* Fetch a single register using a 'p' packet. */
7931
7932 int
7933 remote_target::fetch_register_using_p (struct regcache *regcache,
7934 packet_reg *reg)
7935 {
7936 struct gdbarch *gdbarch = regcache->arch ();
7937 struct remote_state *rs = get_remote_state ();
7938 char *buf, *p;
7939 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
7940 int i;
7941
7942 if (packet_support (PACKET_p) == PACKET_DISABLE)
7943 return 0;
7944
7945 if (reg->pnum == -1)
7946 return 0;
7947
7948 p = rs->buf;
7949 *p++ = 'p';
7950 p += hexnumstr (p, reg->pnum);
7951 *p++ = '\0';
7952 putpkt (rs->buf);
7953 getpkt (&rs->buf, &rs->buf_size, 0);
7954
7955 buf = rs->buf;
7956
7957 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7958 {
7959 case PACKET_OK:
7960 break;
7961 case PACKET_UNKNOWN:
7962 return 0;
7963 case PACKET_ERROR:
7964 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7965 gdbarch_register_name (regcache->arch (),
7966 reg->regnum),
7967 buf);
7968 }
7969
7970 /* If this register is unfetchable, tell the regcache. */
7971 if (buf[0] == 'x')
7972 {
7973 regcache->raw_supply (reg->regnum, NULL);
7974 return 1;
7975 }
7976
7977 /* Otherwise, parse and supply the value. */
7978 p = buf;
7979 i = 0;
7980 while (p[0] != 0)
7981 {
7982 if (p[1] == 0)
7983 error (_("fetch_register_using_p: early buf termination"));
7984
7985 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7986 p += 2;
7987 }
7988 regcache->raw_supply (reg->regnum, regp);
7989 return 1;
7990 }
7991
7992 /* Fetch the registers included in the target's 'g' packet. */
7993
7994 int
7995 remote_target::send_g_packet ()
7996 {
7997 struct remote_state *rs = get_remote_state ();
7998 int buf_len;
7999
8000 xsnprintf (rs->buf, get_remote_packet_size (), "g");
8001 putpkt (rs->buf);
8002 getpkt (&rs->buf, &rs->buf_size, 0);
8003 if (packet_check_result (rs->buf) == PACKET_ERROR)
8004 error (_("Could not read registers; remote failure reply '%s'"),
8005 rs->buf);
8006
8007 /* We can get out of synch in various cases. If the first character
8008 in the buffer is not a hex character, assume that has happened
8009 and try to fetch another packet to read. */
8010 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8011 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8012 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8013 && rs->buf[0] != 'x') /* New: unavailable register value. */
8014 {
8015 if (remote_debug)
8016 fprintf_unfiltered (gdb_stdlog,
8017 "Bad register packet; fetching a new packet\n");
8018 getpkt (&rs->buf, &rs->buf_size, 0);
8019 }
8020
8021 buf_len = strlen (rs->buf);
8022
8023 /* Sanity check the received packet. */
8024 if (buf_len % 2 != 0)
8025 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
8026
8027 return buf_len / 2;
8028 }
8029
8030 void
8031 remote_target::process_g_packet (struct regcache *regcache)
8032 {
8033 struct gdbarch *gdbarch = regcache->arch ();
8034 struct remote_state *rs = get_remote_state ();
8035 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8036 int i, buf_len;
8037 char *p;
8038 char *regs;
8039
8040 buf_len = strlen (rs->buf);
8041
8042 /* Further sanity checks, with knowledge of the architecture. */
8043 if (buf_len > 2 * rsa->sizeof_g_packet)
8044 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8045 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
8046
8047 /* Save the size of the packet sent to us by the target. It is used
8048 as a heuristic when determining the max size of packets that the
8049 target can safely receive. */
8050 if (rsa->actual_register_packet_size == 0)
8051 rsa->actual_register_packet_size = buf_len;
8052
8053 /* If this is smaller than we guessed the 'g' packet would be,
8054 update our records. A 'g' reply that doesn't include a register's
8055 value implies either that the register is not available, or that
8056 the 'p' packet must be used. */
8057 if (buf_len < 2 * rsa->sizeof_g_packet)
8058 {
8059 long sizeof_g_packet = buf_len / 2;
8060
8061 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8062 {
8063 long offset = rsa->regs[i].offset;
8064 long reg_size = register_size (gdbarch, i);
8065
8066 if (rsa->regs[i].pnum == -1)
8067 continue;
8068
8069 if (offset >= sizeof_g_packet)
8070 rsa->regs[i].in_g_packet = 0;
8071 else if (offset + reg_size > sizeof_g_packet)
8072 error (_("Truncated register %d in remote 'g' packet"), i);
8073 else
8074 rsa->regs[i].in_g_packet = 1;
8075 }
8076
8077 /* Looks valid enough, we can assume this is the correct length
8078 for a 'g' packet. It's important not to adjust
8079 rsa->sizeof_g_packet if we have truncated registers otherwise
8080 this "if" won't be run the next time the method is called
8081 with a packet of the same size and one of the internal errors
8082 below will trigger instead. */
8083 rsa->sizeof_g_packet = sizeof_g_packet;
8084 }
8085
8086 regs = (char *) alloca (rsa->sizeof_g_packet);
8087
8088 /* Unimplemented registers read as all bits zero. */
8089 memset (regs, 0, rsa->sizeof_g_packet);
8090
8091 /* Reply describes registers byte by byte, each byte encoded as two
8092 hex characters. Suck them all up, then supply them to the
8093 register cacheing/storage mechanism. */
8094
8095 p = rs->buf;
8096 for (i = 0; i < rsa->sizeof_g_packet; i++)
8097 {
8098 if (p[0] == 0 || p[1] == 0)
8099 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8100 internal_error (__FILE__, __LINE__,
8101 _("unexpected end of 'g' packet reply"));
8102
8103 if (p[0] == 'x' && p[1] == 'x')
8104 regs[i] = 0; /* 'x' */
8105 else
8106 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8107 p += 2;
8108 }
8109
8110 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8111 {
8112 struct packet_reg *r = &rsa->regs[i];
8113 long reg_size = register_size (gdbarch, i);
8114
8115 if (r->in_g_packet)
8116 {
8117 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
8118 /* This shouldn't happen - we adjusted in_g_packet above. */
8119 internal_error (__FILE__, __LINE__,
8120 _("unexpected end of 'g' packet reply"));
8121 else if (rs->buf[r->offset * 2] == 'x')
8122 {
8123 gdb_assert (r->offset * 2 < strlen (rs->buf));
8124 /* The register isn't available, mark it as such (at
8125 the same time setting the value to zero). */
8126 regcache->raw_supply (r->regnum, NULL);
8127 }
8128 else
8129 regcache->raw_supply (r->regnum, regs + r->offset);
8130 }
8131 }
8132 }
8133
8134 void
8135 remote_target::fetch_registers_using_g (struct regcache *regcache)
8136 {
8137 send_g_packet ();
8138 process_g_packet (regcache);
8139 }
8140
8141 /* Make the remote selected traceframe match GDB's selected
8142 traceframe. */
8143
8144 void
8145 remote_target::set_remote_traceframe ()
8146 {
8147 int newnum;
8148 struct remote_state *rs = get_remote_state ();
8149
8150 if (rs->remote_traceframe_number == get_traceframe_number ())
8151 return;
8152
8153 /* Avoid recursion, remote_trace_find calls us again. */
8154 rs->remote_traceframe_number = get_traceframe_number ();
8155
8156 newnum = target_trace_find (tfind_number,
8157 get_traceframe_number (), 0, 0, NULL);
8158
8159 /* Should not happen. If it does, all bets are off. */
8160 if (newnum != get_traceframe_number ())
8161 warning (_("could not set remote traceframe"));
8162 }
8163
8164 void
8165 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8166 {
8167 struct gdbarch *gdbarch = regcache->arch ();
8168 struct remote_state *rs = get_remote_state ();
8169 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8170 int i;
8171
8172 set_remote_traceframe ();
8173 set_general_thread (regcache->ptid ());
8174
8175 if (regnum >= 0)
8176 {
8177 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8178
8179 gdb_assert (reg != NULL);
8180
8181 /* If this register might be in the 'g' packet, try that first -
8182 we are likely to read more than one register. If this is the
8183 first 'g' packet, we might be overly optimistic about its
8184 contents, so fall back to 'p'. */
8185 if (reg->in_g_packet)
8186 {
8187 fetch_registers_using_g (regcache);
8188 if (reg->in_g_packet)
8189 return;
8190 }
8191
8192 if (fetch_register_using_p (regcache, reg))
8193 return;
8194
8195 /* This register is not available. */
8196 regcache->raw_supply (reg->regnum, NULL);
8197
8198 return;
8199 }
8200
8201 fetch_registers_using_g (regcache);
8202
8203 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8204 if (!rsa->regs[i].in_g_packet)
8205 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8206 {
8207 /* This register is not available. */
8208 regcache->raw_supply (i, NULL);
8209 }
8210 }
8211
8212 /* Prepare to store registers. Since we may send them all (using a
8213 'G' request), we have to read out the ones we don't want to change
8214 first. */
8215
8216 void
8217 remote_target::prepare_to_store (struct regcache *regcache)
8218 {
8219 struct remote_state *rs = get_remote_state ();
8220 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8221 int i;
8222
8223 /* Make sure the entire registers array is valid. */
8224 switch (packet_support (PACKET_P))
8225 {
8226 case PACKET_DISABLE:
8227 case PACKET_SUPPORT_UNKNOWN:
8228 /* Make sure all the necessary registers are cached. */
8229 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8230 if (rsa->regs[i].in_g_packet)
8231 regcache->raw_update (rsa->regs[i].regnum);
8232 break;
8233 case PACKET_ENABLE:
8234 break;
8235 }
8236 }
8237
8238 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8239 packet was not recognized. */
8240
8241 int
8242 remote_target::store_register_using_P (const struct regcache *regcache,
8243 packet_reg *reg)
8244 {
8245 struct gdbarch *gdbarch = regcache->arch ();
8246 struct remote_state *rs = get_remote_state ();
8247 /* Try storing a single register. */
8248 char *buf = rs->buf;
8249 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8250 char *p;
8251
8252 if (packet_support (PACKET_P) == PACKET_DISABLE)
8253 return 0;
8254
8255 if (reg->pnum == -1)
8256 return 0;
8257
8258 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8259 p = buf + strlen (buf);
8260 regcache->raw_collect (reg->regnum, regp);
8261 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8262 putpkt (rs->buf);
8263 getpkt (&rs->buf, &rs->buf_size, 0);
8264
8265 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8266 {
8267 case PACKET_OK:
8268 return 1;
8269 case PACKET_ERROR:
8270 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8271 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
8272 case PACKET_UNKNOWN:
8273 return 0;
8274 default:
8275 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8276 }
8277 }
8278
8279 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8280 contents of the register cache buffer. FIXME: ignores errors. */
8281
8282 void
8283 remote_target::store_registers_using_G (const struct regcache *regcache)
8284 {
8285 struct remote_state *rs = get_remote_state ();
8286 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8287 gdb_byte *regs;
8288 char *p;
8289
8290 /* Extract all the registers in the regcache copying them into a
8291 local buffer. */
8292 {
8293 int i;
8294
8295 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8296 memset (regs, 0, rsa->sizeof_g_packet);
8297 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8298 {
8299 struct packet_reg *r = &rsa->regs[i];
8300
8301 if (r->in_g_packet)
8302 regcache->raw_collect (r->regnum, regs + r->offset);
8303 }
8304 }
8305
8306 /* Command describes registers byte by byte,
8307 each byte encoded as two hex characters. */
8308 p = rs->buf;
8309 *p++ = 'G';
8310 bin2hex (regs, p, rsa->sizeof_g_packet);
8311 putpkt (rs->buf);
8312 getpkt (&rs->buf, &rs->buf_size, 0);
8313 if (packet_check_result (rs->buf) == PACKET_ERROR)
8314 error (_("Could not write registers; remote failure reply '%s'"),
8315 rs->buf);
8316 }
8317
8318 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8319 of the register cache buffer. FIXME: ignores errors. */
8320
8321 void
8322 remote_target::store_registers (struct regcache *regcache, int regnum)
8323 {
8324 struct gdbarch *gdbarch = regcache->arch ();
8325 struct remote_state *rs = get_remote_state ();
8326 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8327 int i;
8328
8329 set_remote_traceframe ();
8330 set_general_thread (regcache->ptid ());
8331
8332 if (regnum >= 0)
8333 {
8334 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8335
8336 gdb_assert (reg != NULL);
8337
8338 /* Always prefer to store registers using the 'P' packet if
8339 possible; we often change only a small number of registers.
8340 Sometimes we change a larger number; we'd need help from a
8341 higher layer to know to use 'G'. */
8342 if (store_register_using_P (regcache, reg))
8343 return;
8344
8345 /* For now, don't complain if we have no way to write the
8346 register. GDB loses track of unavailable registers too
8347 easily. Some day, this may be an error. We don't have
8348 any way to read the register, either... */
8349 if (!reg->in_g_packet)
8350 return;
8351
8352 store_registers_using_G (regcache);
8353 return;
8354 }
8355
8356 store_registers_using_G (regcache);
8357
8358 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8359 if (!rsa->regs[i].in_g_packet)
8360 if (!store_register_using_P (regcache, &rsa->regs[i]))
8361 /* See above for why we do not issue an error here. */
8362 continue;
8363 }
8364 \f
8365
8366 /* Return the number of hex digits in num. */
8367
8368 static int
8369 hexnumlen (ULONGEST num)
8370 {
8371 int i;
8372
8373 for (i = 0; num != 0; i++)
8374 num >>= 4;
8375
8376 return std::max (i, 1);
8377 }
8378
8379 /* Set BUF to the minimum number of hex digits representing NUM. */
8380
8381 static int
8382 hexnumstr (char *buf, ULONGEST num)
8383 {
8384 int len = hexnumlen (num);
8385
8386 return hexnumnstr (buf, num, len);
8387 }
8388
8389
8390 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8391
8392 static int
8393 hexnumnstr (char *buf, ULONGEST num, int width)
8394 {
8395 int i;
8396
8397 buf[width] = '\0';
8398
8399 for (i = width - 1; i >= 0; i--)
8400 {
8401 buf[i] = "0123456789abcdef"[(num & 0xf)];
8402 num >>= 4;
8403 }
8404
8405 return width;
8406 }
8407
8408 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8409
8410 static CORE_ADDR
8411 remote_address_masked (CORE_ADDR addr)
8412 {
8413 unsigned int address_size = remote_address_size;
8414
8415 /* If "remoteaddresssize" was not set, default to target address size. */
8416 if (!address_size)
8417 address_size = gdbarch_addr_bit (target_gdbarch ());
8418
8419 if (address_size > 0
8420 && address_size < (sizeof (ULONGEST) * 8))
8421 {
8422 /* Only create a mask when that mask can safely be constructed
8423 in a ULONGEST variable. */
8424 ULONGEST mask = 1;
8425
8426 mask = (mask << address_size) - 1;
8427 addr &= mask;
8428 }
8429 return addr;
8430 }
8431
8432 /* Determine whether the remote target supports binary downloading.
8433 This is accomplished by sending a no-op memory write of zero length
8434 to the target at the specified address. It does not suffice to send
8435 the whole packet, since many stubs strip the eighth bit and
8436 subsequently compute a wrong checksum, which causes real havoc with
8437 remote_write_bytes.
8438
8439 NOTE: This can still lose if the serial line is not eight-bit
8440 clean. In cases like this, the user should clear "remote
8441 X-packet". */
8442
8443 void
8444 remote_target::check_binary_download (CORE_ADDR addr)
8445 {
8446 struct remote_state *rs = get_remote_state ();
8447
8448 switch (packet_support (PACKET_X))
8449 {
8450 case PACKET_DISABLE:
8451 break;
8452 case PACKET_ENABLE:
8453 break;
8454 case PACKET_SUPPORT_UNKNOWN:
8455 {
8456 char *p;
8457
8458 p = rs->buf;
8459 *p++ = 'X';
8460 p += hexnumstr (p, (ULONGEST) addr);
8461 *p++ = ',';
8462 p += hexnumstr (p, (ULONGEST) 0);
8463 *p++ = ':';
8464 *p = '\0';
8465
8466 putpkt_binary (rs->buf, (int) (p - rs->buf));
8467 getpkt (&rs->buf, &rs->buf_size, 0);
8468
8469 if (rs->buf[0] == '\0')
8470 {
8471 if (remote_debug)
8472 fprintf_unfiltered (gdb_stdlog,
8473 "binary downloading NOT "
8474 "supported by target\n");
8475 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8476 }
8477 else
8478 {
8479 if (remote_debug)
8480 fprintf_unfiltered (gdb_stdlog,
8481 "binary downloading supported by target\n");
8482 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8483 }
8484 break;
8485 }
8486 }
8487 }
8488
8489 /* Helper function to resize the payload in order to try to get a good
8490 alignment. We try to write an amount of data such that the next write will
8491 start on an address aligned on REMOTE_ALIGN_WRITES. */
8492
8493 static int
8494 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8495 {
8496 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8497 }
8498
8499 /* Write memory data directly to the remote machine.
8500 This does not inform the data cache; the data cache uses this.
8501 HEADER is the starting part of the packet.
8502 MEMADDR is the address in the remote memory space.
8503 MYADDR is the address of the buffer in our space.
8504 LEN_UNITS is the number of addressable units to write.
8505 UNIT_SIZE is the length in bytes of an addressable unit.
8506 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8507 should send data as binary ('X'), or hex-encoded ('M').
8508
8509 The function creates packet of the form
8510 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8511
8512 where encoding of <DATA> is terminated by PACKET_FORMAT.
8513
8514 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8515 are omitted.
8516
8517 Return the transferred status, error or OK (an
8518 'enum target_xfer_status' value). Save the number of addressable units
8519 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8520
8521 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8522 exchange between gdb and the stub could look like (?? in place of the
8523 checksum):
8524
8525 -> $m1000,4#??
8526 <- aaaabbbbccccdddd
8527
8528 -> $M1000,3:eeeeffffeeee#??
8529 <- OK
8530
8531 -> $m1000,4#??
8532 <- eeeeffffeeeedddd */
8533
8534 target_xfer_status
8535 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8536 const gdb_byte *myaddr,
8537 ULONGEST len_units,
8538 int unit_size,
8539 ULONGEST *xfered_len_units,
8540 char packet_format, int use_length)
8541 {
8542 struct remote_state *rs = get_remote_state ();
8543 char *p;
8544 char *plen = NULL;
8545 int plenlen = 0;
8546 int todo_units;
8547 int units_written;
8548 int payload_capacity_bytes;
8549 int payload_length_bytes;
8550
8551 if (packet_format != 'X' && packet_format != 'M')
8552 internal_error (__FILE__, __LINE__,
8553 _("remote_write_bytes_aux: bad packet format"));
8554
8555 if (len_units == 0)
8556 return TARGET_XFER_EOF;
8557
8558 payload_capacity_bytes = get_memory_write_packet_size ();
8559
8560 /* The packet buffer will be large enough for the payload;
8561 get_memory_packet_size ensures this. */
8562 rs->buf[0] = '\0';
8563
8564 /* Compute the size of the actual payload by subtracting out the
8565 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8566
8567 payload_capacity_bytes -= strlen ("$,:#NN");
8568 if (!use_length)
8569 /* The comma won't be used. */
8570 payload_capacity_bytes += 1;
8571 payload_capacity_bytes -= strlen (header);
8572 payload_capacity_bytes -= hexnumlen (memaddr);
8573
8574 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8575
8576 strcat (rs->buf, header);
8577 p = rs->buf + strlen (header);
8578
8579 /* Compute a best guess of the number of bytes actually transfered. */
8580 if (packet_format == 'X')
8581 {
8582 /* Best guess at number of bytes that will fit. */
8583 todo_units = std::min (len_units,
8584 (ULONGEST) payload_capacity_bytes / unit_size);
8585 if (use_length)
8586 payload_capacity_bytes -= hexnumlen (todo_units);
8587 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8588 }
8589 else
8590 {
8591 /* Number of bytes that will fit. */
8592 todo_units
8593 = std::min (len_units,
8594 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
8595 if (use_length)
8596 payload_capacity_bytes -= hexnumlen (todo_units);
8597 todo_units = std::min (todo_units,
8598 (payload_capacity_bytes / unit_size) / 2);
8599 }
8600
8601 if (todo_units <= 0)
8602 internal_error (__FILE__, __LINE__,
8603 _("minimum packet size too small to write data"));
8604
8605 /* If we already need another packet, then try to align the end
8606 of this packet to a useful boundary. */
8607 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8608 todo_units = align_for_efficient_write (todo_units, memaddr);
8609
8610 /* Append "<memaddr>". */
8611 memaddr = remote_address_masked (memaddr);
8612 p += hexnumstr (p, (ULONGEST) memaddr);
8613
8614 if (use_length)
8615 {
8616 /* Append ",". */
8617 *p++ = ',';
8618
8619 /* Append the length and retain its location and size. It may need to be
8620 adjusted once the packet body has been created. */
8621 plen = p;
8622 plenlen = hexnumstr (p, (ULONGEST) todo_units);
8623 p += plenlen;
8624 }
8625
8626 /* Append ":". */
8627 *p++ = ':';
8628 *p = '\0';
8629
8630 /* Append the packet body. */
8631 if (packet_format == 'X')
8632 {
8633 /* Binary mode. Send target system values byte by byte, in
8634 increasing byte addresses. Only escape certain critical
8635 characters. */
8636 payload_length_bytes =
8637 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8638 &units_written, payload_capacity_bytes);
8639
8640 /* If not all TODO units fit, then we'll need another packet. Make
8641 a second try to keep the end of the packet aligned. Don't do
8642 this if the packet is tiny. */
8643 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
8644 {
8645 int new_todo_units;
8646
8647 new_todo_units = align_for_efficient_write (units_written, memaddr);
8648
8649 if (new_todo_units != units_written)
8650 payload_length_bytes =
8651 remote_escape_output (myaddr, new_todo_units, unit_size,
8652 (gdb_byte *) p, &units_written,
8653 payload_capacity_bytes);
8654 }
8655
8656 p += payload_length_bytes;
8657 if (use_length && units_written < todo_units)
8658 {
8659 /* Escape chars have filled up the buffer prematurely,
8660 and we have actually sent fewer units than planned.
8661 Fix-up the length field of the packet. Use the same
8662 number of characters as before. */
8663 plen += hexnumnstr (plen, (ULONGEST) units_written,
8664 plenlen);
8665 *plen = ':'; /* overwrite \0 from hexnumnstr() */
8666 }
8667 }
8668 else
8669 {
8670 /* Normal mode: Send target system values byte by byte, in
8671 increasing byte addresses. Each byte is encoded as a two hex
8672 value. */
8673 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8674 units_written = todo_units;
8675 }
8676
8677 putpkt_binary (rs->buf, (int) (p - rs->buf));
8678 getpkt (&rs->buf, &rs->buf_size, 0);
8679
8680 if (rs->buf[0] == 'E')
8681 return TARGET_XFER_E_IO;
8682
8683 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8684 send fewer units than we'd planned. */
8685 *xfered_len_units = (ULONGEST) units_written;
8686 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8687 }
8688
8689 /* Write memory data directly to the remote machine.
8690 This does not inform the data cache; the data cache uses this.
8691 MEMADDR is the address in the remote memory space.
8692 MYADDR is the address of the buffer in our space.
8693 LEN is the number of bytes.
8694
8695 Return the transferred status, error or OK (an
8696 'enum target_xfer_status' value). Save the number of bytes
8697 transferred in *XFERED_LEN. Only transfer a single packet. */
8698
8699 target_xfer_status
8700 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8701 ULONGEST len, int unit_size,
8702 ULONGEST *xfered_len)
8703 {
8704 const char *packet_format = NULL;
8705
8706 /* Check whether the target supports binary download. */
8707 check_binary_download (memaddr);
8708
8709 switch (packet_support (PACKET_X))
8710 {
8711 case PACKET_ENABLE:
8712 packet_format = "X";
8713 break;
8714 case PACKET_DISABLE:
8715 packet_format = "M";
8716 break;
8717 case PACKET_SUPPORT_UNKNOWN:
8718 internal_error (__FILE__, __LINE__,
8719 _("remote_write_bytes: bad internal state"));
8720 default:
8721 internal_error (__FILE__, __LINE__, _("bad switch"));
8722 }
8723
8724 return remote_write_bytes_aux (packet_format,
8725 memaddr, myaddr, len, unit_size, xfered_len,
8726 packet_format[0], 1);
8727 }
8728
8729 /* Read memory data directly from the remote machine.
8730 This does not use the data cache; the data cache uses this.
8731 MEMADDR is the address in the remote memory space.
8732 MYADDR is the address of the buffer in our space.
8733 LEN_UNITS is the number of addressable memory units to read..
8734 UNIT_SIZE is the length in bytes of an addressable unit.
8735
8736 Return the transferred status, error or OK (an
8737 'enum target_xfer_status' value). Save the number of bytes
8738 transferred in *XFERED_LEN_UNITS.
8739
8740 See the comment of remote_write_bytes_aux for an example of
8741 memory read/write exchange between gdb and the stub. */
8742
8743 target_xfer_status
8744 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8745 ULONGEST len_units,
8746 int unit_size, ULONGEST *xfered_len_units)
8747 {
8748 struct remote_state *rs = get_remote_state ();
8749 int buf_size_bytes; /* Max size of packet output buffer. */
8750 char *p;
8751 int todo_units;
8752 int decoded_bytes;
8753
8754 buf_size_bytes = get_memory_read_packet_size ();
8755 /* The packet buffer will be large enough for the payload;
8756 get_memory_packet_size ensures this. */
8757
8758 /* Number of units that will fit. */
8759 todo_units = std::min (len_units,
8760 (ULONGEST) (buf_size_bytes / unit_size) / 2);
8761
8762 /* Construct "m"<memaddr>","<len>". */
8763 memaddr = remote_address_masked (memaddr);
8764 p = rs->buf;
8765 *p++ = 'm';
8766 p += hexnumstr (p, (ULONGEST) memaddr);
8767 *p++ = ',';
8768 p += hexnumstr (p, (ULONGEST) todo_units);
8769 *p = '\0';
8770 putpkt (rs->buf);
8771 getpkt (&rs->buf, &rs->buf_size, 0);
8772 if (rs->buf[0] == 'E'
8773 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8774 && rs->buf[3] == '\0')
8775 return TARGET_XFER_E_IO;
8776 /* Reply describes memory byte by byte, each byte encoded as two hex
8777 characters. */
8778 p = rs->buf;
8779 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
8780 /* Return what we have. Let higher layers handle partial reads. */
8781 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
8782 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
8783 }
8784
8785 /* Using the set of read-only target sections of remote, read live
8786 read-only memory.
8787
8788 For interface/parameters/return description see target.h,
8789 to_xfer_partial. */
8790
8791 target_xfer_status
8792 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8793 ULONGEST memaddr,
8794 ULONGEST len,
8795 int unit_size,
8796 ULONGEST *xfered_len)
8797 {
8798 struct target_section *secp;
8799 struct target_section_table *table;
8800
8801 secp = target_section_by_addr (this, memaddr);
8802 if (secp != NULL
8803 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8804 secp->the_bfd_section)
8805 & SEC_READONLY))
8806 {
8807 struct target_section *p;
8808 ULONGEST memend = memaddr + len;
8809
8810 table = target_get_section_table (this);
8811
8812 for (p = table->sections; p < table->sections_end; p++)
8813 {
8814 if (memaddr >= p->addr)
8815 {
8816 if (memend <= p->endaddr)
8817 {
8818 /* Entire transfer is within this section. */
8819 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8820 xfered_len);
8821 }
8822 else if (memaddr >= p->endaddr)
8823 {
8824 /* This section ends before the transfer starts. */
8825 continue;
8826 }
8827 else
8828 {
8829 /* This section overlaps the transfer. Just do half. */
8830 len = p->endaddr - memaddr;
8831 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8832 xfered_len);
8833 }
8834 }
8835 }
8836 }
8837
8838 return TARGET_XFER_EOF;
8839 }
8840
8841 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8842 first if the requested memory is unavailable in traceframe.
8843 Otherwise, fall back to remote_read_bytes_1. */
8844
8845 target_xfer_status
8846 remote_target::remote_read_bytes (CORE_ADDR memaddr,
8847 gdb_byte *myaddr, ULONGEST len, int unit_size,
8848 ULONGEST *xfered_len)
8849 {
8850 if (len == 0)
8851 return TARGET_XFER_EOF;
8852
8853 if (get_traceframe_number () != -1)
8854 {
8855 std::vector<mem_range> available;
8856
8857 /* If we fail to get the set of available memory, then the
8858 target does not support querying traceframe info, and so we
8859 attempt reading from the traceframe anyway (assuming the
8860 target implements the old QTro packet then). */
8861 if (traceframe_available_memory (&available, memaddr, len))
8862 {
8863 if (available.empty () || available[0].start != memaddr)
8864 {
8865 enum target_xfer_status res;
8866
8867 /* Don't read into the traceframe's available
8868 memory. */
8869 if (!available.empty ())
8870 {
8871 LONGEST oldlen = len;
8872
8873 len = available[0].start - memaddr;
8874 gdb_assert (len <= oldlen);
8875 }
8876
8877 /* This goes through the topmost target again. */
8878 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
8879 len, unit_size, xfered_len);
8880 if (res == TARGET_XFER_OK)
8881 return TARGET_XFER_OK;
8882 else
8883 {
8884 /* No use trying further, we know some memory starting
8885 at MEMADDR isn't available. */
8886 *xfered_len = len;
8887 return (*xfered_len != 0) ?
8888 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8889 }
8890 }
8891
8892 /* Don't try to read more than how much is available, in
8893 case the target implements the deprecated QTro packet to
8894 cater for older GDBs (the target's knowledge of read-only
8895 sections may be outdated by now). */
8896 len = available[0].length;
8897 }
8898 }
8899
8900 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
8901 }
8902
8903 \f
8904
8905 /* Sends a packet with content determined by the printf format string
8906 FORMAT and the remaining arguments, then gets the reply. Returns
8907 whether the packet was a success, a failure, or unknown. */
8908
8909 packet_result
8910 remote_target::remote_send_printf (const char *format, ...)
8911 {
8912 struct remote_state *rs = get_remote_state ();
8913 int max_size = get_remote_packet_size ();
8914 va_list ap;
8915
8916 va_start (ap, format);
8917
8918 rs->buf[0] = '\0';
8919 int size = vsnprintf (rs->buf, max_size, format, ap);
8920
8921 va_end (ap);
8922
8923 if (size >= max_size)
8924 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8925
8926 if (putpkt (rs->buf) < 0)
8927 error (_("Communication problem with target."));
8928
8929 rs->buf[0] = '\0';
8930 getpkt (&rs->buf, &rs->buf_size, 0);
8931
8932 return packet_check_result (rs->buf);
8933 }
8934
8935 /* Flash writing can take quite some time. We'll set
8936 effectively infinite timeout for flash operations.
8937 In future, we'll need to decide on a better approach. */
8938 static const int remote_flash_timeout = 1000;
8939
8940 void
8941 remote_target::flash_erase (ULONGEST address, LONGEST length)
8942 {
8943 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8944 enum packet_result ret;
8945 scoped_restore restore_timeout
8946 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8947
8948 ret = remote_send_printf ("vFlashErase:%s,%s",
8949 phex (address, addr_size),
8950 phex (length, 4));
8951 switch (ret)
8952 {
8953 case PACKET_UNKNOWN:
8954 error (_("Remote target does not support flash erase"));
8955 case PACKET_ERROR:
8956 error (_("Error erasing flash with vFlashErase packet"));
8957 default:
8958 break;
8959 }
8960 }
8961
8962 target_xfer_status
8963 remote_target::remote_flash_write (ULONGEST address,
8964 ULONGEST length, ULONGEST *xfered_len,
8965 const gdb_byte *data)
8966 {
8967 scoped_restore restore_timeout
8968 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8969 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8970 xfered_len,'X', 0);
8971 }
8972
8973 void
8974 remote_target::flash_done ()
8975 {
8976 int ret;
8977
8978 scoped_restore restore_timeout
8979 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8980
8981 ret = remote_send_printf ("vFlashDone");
8982
8983 switch (ret)
8984 {
8985 case PACKET_UNKNOWN:
8986 error (_("Remote target does not support vFlashDone"));
8987 case PACKET_ERROR:
8988 error (_("Error finishing flash operation"));
8989 default:
8990 break;
8991 }
8992 }
8993
8994 void
8995 remote_target::files_info ()
8996 {
8997 puts_filtered ("Debugging a target over a serial line.\n");
8998 }
8999 \f
9000 /* Stuff for dealing with the packets which are part of this protocol.
9001 See comment at top of file for details. */
9002
9003 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9004 error to higher layers. Called when a serial error is detected.
9005 The exception message is STRING, followed by a colon and a blank,
9006 the system error message for errno at function entry and final dot
9007 for output compatibility with throw_perror_with_name. */
9008
9009 static void
9010 unpush_and_perror (const char *string)
9011 {
9012 int saved_errno = errno;
9013
9014 remote_unpush_target ();
9015 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9016 safe_strerror (saved_errno));
9017 }
9018
9019 /* Read a single character from the remote end. The current quit
9020 handler is overridden to avoid quitting in the middle of packet
9021 sequence, as that would break communication with the remote server.
9022 See remote_serial_quit_handler for more detail. */
9023
9024 int
9025 remote_target::readchar (int timeout)
9026 {
9027 int ch;
9028 struct remote_state *rs = get_remote_state ();
9029
9030 {
9031 scoped_restore restore_quit_target
9032 = make_scoped_restore (&curr_quit_handler_target, this);
9033 scoped_restore restore_quit
9034 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9035
9036 rs->got_ctrlc_during_io = 0;
9037
9038 ch = serial_readchar (rs->remote_desc, timeout);
9039
9040 if (rs->got_ctrlc_during_io)
9041 set_quit_flag ();
9042 }
9043
9044 if (ch >= 0)
9045 return ch;
9046
9047 switch ((enum serial_rc) ch)
9048 {
9049 case SERIAL_EOF:
9050 remote_unpush_target ();
9051 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
9052 /* no return */
9053 case SERIAL_ERROR:
9054 unpush_and_perror (_("Remote communication error. "
9055 "Target disconnected."));
9056 /* no return */
9057 case SERIAL_TIMEOUT:
9058 break;
9059 }
9060 return ch;
9061 }
9062
9063 /* Wrapper for serial_write that closes the target and throws if
9064 writing fails. The current quit handler is overridden to avoid
9065 quitting in the middle of packet sequence, as that would break
9066 communication with the remote server. See
9067 remote_serial_quit_handler for more detail. */
9068
9069 void
9070 remote_target::remote_serial_write (const char *str, int len)
9071 {
9072 struct remote_state *rs = get_remote_state ();
9073
9074 scoped_restore restore_quit_target
9075 = make_scoped_restore (&curr_quit_handler_target, this);
9076 scoped_restore restore_quit
9077 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9078
9079 rs->got_ctrlc_during_io = 0;
9080
9081 if (serial_write (rs->remote_desc, str, len))
9082 {
9083 unpush_and_perror (_("Remote communication error. "
9084 "Target disconnected."));
9085 }
9086
9087 if (rs->got_ctrlc_during_io)
9088 set_quit_flag ();
9089 }
9090
9091 /* Return a string representing an escaped version of BUF, of len N.
9092 E.g. \n is converted to \\n, \t to \\t, etc. */
9093
9094 static std::string
9095 escape_buffer (const char *buf, int n)
9096 {
9097 string_file stb;
9098
9099 stb.putstrn (buf, n, '\\');
9100 return std::move (stb.string ());
9101 }
9102
9103 /* Display a null-terminated packet on stdout, for debugging, using C
9104 string notation. */
9105
9106 static void
9107 print_packet (const char *buf)
9108 {
9109 puts_filtered ("\"");
9110 fputstr_filtered (buf, '"', gdb_stdout);
9111 puts_filtered ("\"");
9112 }
9113
9114 int
9115 remote_target::putpkt (const char *buf)
9116 {
9117 return putpkt_binary (buf, strlen (buf));
9118 }
9119
9120 /* Wrapper around remote_target::putpkt to avoid exporting
9121 remote_target. */
9122
9123 int
9124 putpkt (remote_target *remote, const char *buf)
9125 {
9126 return remote->putpkt (buf);
9127 }
9128
9129 /* Send a packet to the remote machine, with error checking. The data
9130 of the packet is in BUF. The string in BUF can be at most
9131 get_remote_packet_size () - 5 to account for the $, # and checksum,
9132 and for a possible /0 if we are debugging (remote_debug) and want
9133 to print the sent packet as a string. */
9134
9135 int
9136 remote_target::putpkt_binary (const char *buf, int cnt)
9137 {
9138 struct remote_state *rs = get_remote_state ();
9139 int i;
9140 unsigned char csum = 0;
9141 gdb::def_vector<char> data (cnt + 6);
9142 char *buf2 = data.data ();
9143
9144 int ch;
9145 int tcount = 0;
9146 char *p;
9147
9148 /* Catch cases like trying to read memory or listing threads while
9149 we're waiting for a stop reply. The remote server wouldn't be
9150 ready to handle this request, so we'd hang and timeout. We don't
9151 have to worry about this in synchronous mode, because in that
9152 case it's not possible to issue a command while the target is
9153 running. This is not a problem in non-stop mode, because in that
9154 case, the stub is always ready to process serial input. */
9155 if (!target_is_non_stop_p ()
9156 && target_is_async_p ()
9157 && rs->waiting_for_stop_reply)
9158 {
9159 error (_("Cannot execute this command while the target is running.\n"
9160 "Use the \"interrupt\" command to stop the target\n"
9161 "and then try again."));
9162 }
9163
9164 /* We're sending out a new packet. Make sure we don't look at a
9165 stale cached response. */
9166 rs->cached_wait_status = 0;
9167
9168 /* Copy the packet into buffer BUF2, encapsulating it
9169 and giving it a checksum. */
9170
9171 p = buf2;
9172 *p++ = '$';
9173
9174 for (i = 0; i < cnt; i++)
9175 {
9176 csum += buf[i];
9177 *p++ = buf[i];
9178 }
9179 *p++ = '#';
9180 *p++ = tohex ((csum >> 4) & 0xf);
9181 *p++ = tohex (csum & 0xf);
9182
9183 /* Send it over and over until we get a positive ack. */
9184
9185 while (1)
9186 {
9187 int started_error_output = 0;
9188
9189 if (remote_debug)
9190 {
9191 *p = '\0';
9192
9193 int len = (int) (p - buf2);
9194
9195 std::string str
9196 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9197
9198 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9199
9200 if (len > REMOTE_DEBUG_MAX_CHAR)
9201 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9202 len - REMOTE_DEBUG_MAX_CHAR);
9203
9204 fprintf_unfiltered (gdb_stdlog, "...");
9205
9206 gdb_flush (gdb_stdlog);
9207 }
9208 remote_serial_write (buf2, p - buf2);
9209
9210 /* If this is a no acks version of the remote protocol, send the
9211 packet and move on. */
9212 if (rs->noack_mode)
9213 break;
9214
9215 /* Read until either a timeout occurs (-2) or '+' is read.
9216 Handle any notification that arrives in the mean time. */
9217 while (1)
9218 {
9219 ch = readchar (remote_timeout);
9220
9221 if (remote_debug)
9222 {
9223 switch (ch)
9224 {
9225 case '+':
9226 case '-':
9227 case SERIAL_TIMEOUT:
9228 case '$':
9229 case '%':
9230 if (started_error_output)
9231 {
9232 putchar_unfiltered ('\n');
9233 started_error_output = 0;
9234 }
9235 }
9236 }
9237
9238 switch (ch)
9239 {
9240 case '+':
9241 if (remote_debug)
9242 fprintf_unfiltered (gdb_stdlog, "Ack\n");
9243 return 1;
9244 case '-':
9245 if (remote_debug)
9246 fprintf_unfiltered (gdb_stdlog, "Nak\n");
9247 /* FALLTHROUGH */
9248 case SERIAL_TIMEOUT:
9249 tcount++;
9250 if (tcount > 3)
9251 return 0;
9252 break; /* Retransmit buffer. */
9253 case '$':
9254 {
9255 if (remote_debug)
9256 fprintf_unfiltered (gdb_stdlog,
9257 "Packet instead of Ack, ignoring it\n");
9258 /* It's probably an old response sent because an ACK
9259 was lost. Gobble up the packet and ack it so it
9260 doesn't get retransmitted when we resend this
9261 packet. */
9262 skip_frame ();
9263 remote_serial_write ("+", 1);
9264 continue; /* Now, go look for +. */
9265 }
9266
9267 case '%':
9268 {
9269 int val;
9270
9271 /* If we got a notification, handle it, and go back to looking
9272 for an ack. */
9273 /* We've found the start of a notification. Now
9274 collect the data. */
9275 val = read_frame (&rs->buf, &rs->buf_size);
9276 if (val >= 0)
9277 {
9278 if (remote_debug)
9279 {
9280 std::string str = escape_buffer (rs->buf, val);
9281
9282 fprintf_unfiltered (gdb_stdlog,
9283 " Notification received: %s\n",
9284 str.c_str ());
9285 }
9286 handle_notification (rs->notif_state, rs->buf);
9287 /* We're in sync now, rewait for the ack. */
9288 tcount = 0;
9289 }
9290 else
9291 {
9292 if (remote_debug)
9293 {
9294 if (!started_error_output)
9295 {
9296 started_error_output = 1;
9297 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9298 }
9299 fputc_unfiltered (ch & 0177, gdb_stdlog);
9300 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
9301 }
9302 }
9303 continue;
9304 }
9305 /* fall-through */
9306 default:
9307 if (remote_debug)
9308 {
9309 if (!started_error_output)
9310 {
9311 started_error_output = 1;
9312 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9313 }
9314 fputc_unfiltered (ch & 0177, gdb_stdlog);
9315 }
9316 continue;
9317 }
9318 break; /* Here to retransmit. */
9319 }
9320
9321 #if 0
9322 /* This is wrong. If doing a long backtrace, the user should be
9323 able to get out next time we call QUIT, without anything as
9324 violent as interrupt_query. If we want to provide a way out of
9325 here without getting to the next QUIT, it should be based on
9326 hitting ^C twice as in remote_wait. */
9327 if (quit_flag)
9328 {
9329 quit_flag = 0;
9330 interrupt_query ();
9331 }
9332 #endif
9333 }
9334
9335 return 0;
9336 }
9337
9338 /* Come here after finding the start of a frame when we expected an
9339 ack. Do our best to discard the rest of this packet. */
9340
9341 void
9342 remote_target::skip_frame ()
9343 {
9344 int c;
9345
9346 while (1)
9347 {
9348 c = readchar (remote_timeout);
9349 switch (c)
9350 {
9351 case SERIAL_TIMEOUT:
9352 /* Nothing we can do. */
9353 return;
9354 case '#':
9355 /* Discard the two bytes of checksum and stop. */
9356 c = readchar (remote_timeout);
9357 if (c >= 0)
9358 c = readchar (remote_timeout);
9359
9360 return;
9361 case '*': /* Run length encoding. */
9362 /* Discard the repeat count. */
9363 c = readchar (remote_timeout);
9364 if (c < 0)
9365 return;
9366 break;
9367 default:
9368 /* A regular character. */
9369 break;
9370 }
9371 }
9372 }
9373
9374 /* Come here after finding the start of the frame. Collect the rest
9375 into *BUF, verifying the checksum, length, and handling run-length
9376 compression. NUL terminate the buffer. If there is not enough room,
9377 expand *BUF using xrealloc.
9378
9379 Returns -1 on error, number of characters in buffer (ignoring the
9380 trailing NULL) on success. (could be extended to return one of the
9381 SERIAL status indications). */
9382
9383 long
9384 remote_target::read_frame (char **buf_p, long *sizeof_buf)
9385 {
9386 unsigned char csum;
9387 long bc;
9388 int c;
9389 char *buf = *buf_p;
9390 struct remote_state *rs = get_remote_state ();
9391
9392 csum = 0;
9393 bc = 0;
9394
9395 while (1)
9396 {
9397 c = readchar (remote_timeout);
9398 switch (c)
9399 {
9400 case SERIAL_TIMEOUT:
9401 if (remote_debug)
9402 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
9403 return -1;
9404 case '$':
9405 if (remote_debug)
9406 fputs_filtered ("Saw new packet start in middle of old one\n",
9407 gdb_stdlog);
9408 return -1; /* Start a new packet, count retries. */
9409 case '#':
9410 {
9411 unsigned char pktcsum;
9412 int check_0 = 0;
9413 int check_1 = 0;
9414
9415 buf[bc] = '\0';
9416
9417 check_0 = readchar (remote_timeout);
9418 if (check_0 >= 0)
9419 check_1 = readchar (remote_timeout);
9420
9421 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9422 {
9423 if (remote_debug)
9424 fputs_filtered ("Timeout in checksum, retrying\n",
9425 gdb_stdlog);
9426 return -1;
9427 }
9428 else if (check_0 < 0 || check_1 < 0)
9429 {
9430 if (remote_debug)
9431 fputs_filtered ("Communication error in checksum\n",
9432 gdb_stdlog);
9433 return -1;
9434 }
9435
9436 /* Don't recompute the checksum; with no ack packets we
9437 don't have any way to indicate a packet retransmission
9438 is necessary. */
9439 if (rs->noack_mode)
9440 return bc;
9441
9442 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9443 if (csum == pktcsum)
9444 return bc;
9445
9446 if (remote_debug)
9447 {
9448 std::string str = escape_buffer (buf, bc);
9449
9450 fprintf_unfiltered (gdb_stdlog,
9451 "Bad checksum, sentsum=0x%x, "
9452 "csum=0x%x, buf=%s\n",
9453 pktcsum, csum, str.c_str ());
9454 }
9455 /* Number of characters in buffer ignoring trailing
9456 NULL. */
9457 return -1;
9458 }
9459 case '*': /* Run length encoding. */
9460 {
9461 int repeat;
9462
9463 csum += c;
9464 c = readchar (remote_timeout);
9465 csum += c;
9466 repeat = c - ' ' + 3; /* Compute repeat count. */
9467
9468 /* The character before ``*'' is repeated. */
9469
9470 if (repeat > 0 && repeat <= 255 && bc > 0)
9471 {
9472 if (bc + repeat - 1 >= *sizeof_buf - 1)
9473 {
9474 /* Make some more room in the buffer. */
9475 *sizeof_buf += repeat;
9476 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
9477 buf = *buf_p;
9478 }
9479
9480 memset (&buf[bc], buf[bc - 1], repeat);
9481 bc += repeat;
9482 continue;
9483 }
9484
9485 buf[bc] = '\0';
9486 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9487 return -1;
9488 }
9489 default:
9490 if (bc >= *sizeof_buf - 1)
9491 {
9492 /* Make some more room in the buffer. */
9493 *sizeof_buf *= 2;
9494 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
9495 buf = *buf_p;
9496 }
9497
9498 buf[bc++] = c;
9499 csum += c;
9500 continue;
9501 }
9502 }
9503 }
9504
9505 /* Read a packet from the remote machine, with error checking, and
9506 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9507 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9508 rather than timing out; this is used (in synchronous mode) to wait
9509 for a target that is is executing user code to stop. */
9510 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9511 don't have to change all the calls to getpkt to deal with the
9512 return value, because at the moment I don't know what the right
9513 thing to do it for those. */
9514
9515 void
9516 remote_target::getpkt (char **buf, long *sizeof_buf, int forever)
9517 {
9518 getpkt_sane (buf, sizeof_buf, forever);
9519 }
9520
9521
9522 /* Read a packet from the remote machine, with error checking, and
9523 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9524 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9525 rather than timing out; this is used (in synchronous mode) to wait
9526 for a target that is is executing user code to stop. If FOREVER ==
9527 0, this function is allowed to time out gracefully and return an
9528 indication of this to the caller. Otherwise return the number of
9529 bytes read. If EXPECTING_NOTIF, consider receiving a notification
9530 enough reason to return to the caller. *IS_NOTIF is an output
9531 boolean that indicates whether *BUF holds a notification or not
9532 (a regular packet). */
9533
9534 int
9535 remote_target::getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf,
9536 int forever, int expecting_notif,
9537 int *is_notif)
9538 {
9539 struct remote_state *rs = get_remote_state ();
9540 int c;
9541 int tries;
9542 int timeout;
9543 int val = -1;
9544
9545 /* We're reading a new response. Make sure we don't look at a
9546 previously cached response. */
9547 rs->cached_wait_status = 0;
9548
9549 strcpy (*buf, "timeout");
9550
9551 if (forever)
9552 timeout = watchdog > 0 ? watchdog : -1;
9553 else if (expecting_notif)
9554 timeout = 0; /* There should already be a char in the buffer. If
9555 not, bail out. */
9556 else
9557 timeout = remote_timeout;
9558
9559 #define MAX_TRIES 3
9560
9561 /* Process any number of notifications, and then return when
9562 we get a packet. */
9563 for (;;)
9564 {
9565 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9566 times. */
9567 for (tries = 1; tries <= MAX_TRIES; tries++)
9568 {
9569 /* This can loop forever if the remote side sends us
9570 characters continuously, but if it pauses, we'll get
9571 SERIAL_TIMEOUT from readchar because of timeout. Then
9572 we'll count that as a retry.
9573
9574 Note that even when forever is set, we will only wait
9575 forever prior to the start of a packet. After that, we
9576 expect characters to arrive at a brisk pace. They should
9577 show up within remote_timeout intervals. */
9578 do
9579 c = readchar (timeout);
9580 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9581
9582 if (c == SERIAL_TIMEOUT)
9583 {
9584 if (expecting_notif)
9585 return -1; /* Don't complain, it's normal to not get
9586 anything in this case. */
9587
9588 if (forever) /* Watchdog went off? Kill the target. */
9589 {
9590 remote_unpush_target ();
9591 throw_error (TARGET_CLOSE_ERROR,
9592 _("Watchdog timeout has expired. "
9593 "Target detached."));
9594 }
9595 if (remote_debug)
9596 fputs_filtered ("Timed out.\n", gdb_stdlog);
9597 }
9598 else
9599 {
9600 /* We've found the start of a packet or notification.
9601 Now collect the data. */
9602 val = read_frame (buf, sizeof_buf);
9603 if (val >= 0)
9604 break;
9605 }
9606
9607 remote_serial_write ("-", 1);
9608 }
9609
9610 if (tries > MAX_TRIES)
9611 {
9612 /* We have tried hard enough, and just can't receive the
9613 packet/notification. Give up. */
9614 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9615
9616 /* Skip the ack char if we're in no-ack mode. */
9617 if (!rs->noack_mode)
9618 remote_serial_write ("+", 1);
9619 return -1;
9620 }
9621
9622 /* If we got an ordinary packet, return that to our caller. */
9623 if (c == '$')
9624 {
9625 if (remote_debug)
9626 {
9627 std::string str
9628 = escape_buffer (*buf,
9629 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9630
9631 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9632 str.c_str ());
9633
9634 if (val > REMOTE_DEBUG_MAX_CHAR)
9635 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9636 val - REMOTE_DEBUG_MAX_CHAR);
9637
9638 fprintf_unfiltered (gdb_stdlog, "\n");
9639 }
9640
9641 /* Skip the ack char if we're in no-ack mode. */
9642 if (!rs->noack_mode)
9643 remote_serial_write ("+", 1);
9644 if (is_notif != NULL)
9645 *is_notif = 0;
9646 return val;
9647 }
9648
9649 /* If we got a notification, handle it, and go back to looking
9650 for a packet. */
9651 else
9652 {
9653 gdb_assert (c == '%');
9654
9655 if (remote_debug)
9656 {
9657 std::string str = escape_buffer (*buf, val);
9658
9659 fprintf_unfiltered (gdb_stdlog,
9660 " Notification received: %s\n",
9661 str.c_str ());
9662 }
9663 if (is_notif != NULL)
9664 *is_notif = 1;
9665
9666 handle_notification (rs->notif_state, *buf);
9667
9668 /* Notifications require no acknowledgement. */
9669
9670 if (expecting_notif)
9671 return val;
9672 }
9673 }
9674 }
9675
9676 int
9677 remote_target::getpkt_sane (char **buf, long *sizeof_buf, int forever)
9678 {
9679 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
9680 }
9681
9682 int
9683 remote_target::getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9684 int *is_notif)
9685 {
9686 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9687 is_notif);
9688 }
9689
9690 /* Kill any new fork children of process PID that haven't been
9691 processed by follow_fork. */
9692
9693 void
9694 remote_target::kill_new_fork_children (int pid)
9695 {
9696 remote_state *rs = get_remote_state ();
9697 struct notif_client *notif = &notif_client_stop;
9698
9699 /* Kill the fork child threads of any threads in process PID
9700 that are stopped at a fork event. */
9701 for (thread_info *thread : all_non_exited_threads ())
9702 {
9703 struct target_waitstatus *ws = &thread->pending_follow;
9704
9705 if (is_pending_fork_parent (ws, pid, thread->ptid))
9706 {
9707 int child_pid = ws->value.related_pid.pid ();
9708 int res;
9709
9710 res = remote_vkill (child_pid);
9711 if (res != 0)
9712 error (_("Can't kill fork child process %d"), child_pid);
9713 }
9714 }
9715
9716 /* Check for any pending fork events (not reported or processed yet)
9717 in process PID and kill those fork child threads as well. */
9718 remote_notif_get_pending_events (notif);
9719 for (auto &event : rs->stop_reply_queue)
9720 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9721 {
9722 int child_pid = event->ws.value.related_pid.pid ();
9723 int res;
9724
9725 res = remote_vkill (child_pid);
9726 if (res != 0)
9727 error (_("Can't kill fork child process %d"), child_pid);
9728 }
9729 }
9730
9731 \f
9732 /* Target hook to kill the current inferior. */
9733
9734 void
9735 remote_target::kill ()
9736 {
9737 int res = -1;
9738 int pid = inferior_ptid.pid ();
9739 struct remote_state *rs = get_remote_state ();
9740
9741 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
9742 {
9743 /* If we're stopped while forking and we haven't followed yet,
9744 kill the child task. We need to do this before killing the
9745 parent task because if this is a vfork then the parent will
9746 be sleeping. */
9747 kill_new_fork_children (pid);
9748
9749 res = remote_vkill (pid);
9750 if (res == 0)
9751 {
9752 target_mourn_inferior (inferior_ptid);
9753 return;
9754 }
9755 }
9756
9757 /* If we are in 'target remote' mode and we are killing the only
9758 inferior, then we will tell gdbserver to exit and unpush the
9759 target. */
9760 if (res == -1 && !remote_multi_process_p (rs)
9761 && number_of_live_inferiors () == 1)
9762 {
9763 remote_kill_k ();
9764
9765 /* We've killed the remote end, we get to mourn it. If we are
9766 not in extended mode, mourning the inferior also unpushes
9767 remote_ops from the target stack, which closes the remote
9768 connection. */
9769 target_mourn_inferior (inferior_ptid);
9770
9771 return;
9772 }
9773
9774 error (_("Can't kill process"));
9775 }
9776
9777 /* Send a kill request to the target using the 'vKill' packet. */
9778
9779 int
9780 remote_target::remote_vkill (int pid)
9781 {
9782 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
9783 return -1;
9784
9785 remote_state *rs = get_remote_state ();
9786
9787 /* Tell the remote target to detach. */
9788 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
9789 putpkt (rs->buf);
9790 getpkt (&rs->buf, &rs->buf_size, 0);
9791
9792 switch (packet_ok (rs->buf,
9793 &remote_protocol_packets[PACKET_vKill]))
9794 {
9795 case PACKET_OK:
9796 return 0;
9797 case PACKET_ERROR:
9798 return 1;
9799 case PACKET_UNKNOWN:
9800 return -1;
9801 default:
9802 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9803 }
9804 }
9805
9806 /* Send a kill request to the target using the 'k' packet. */
9807
9808 void
9809 remote_target::remote_kill_k ()
9810 {
9811 /* Catch errors so the user can quit from gdb even when we
9812 aren't on speaking terms with the remote system. */
9813 TRY
9814 {
9815 putpkt ("k");
9816 }
9817 CATCH (ex, RETURN_MASK_ERROR)
9818 {
9819 if (ex.error == TARGET_CLOSE_ERROR)
9820 {
9821 /* If we got an (EOF) error that caused the target
9822 to go away, then we're done, that's what we wanted.
9823 "k" is susceptible to cause a premature EOF, given
9824 that the remote server isn't actually required to
9825 reply to "k", and it can happen that it doesn't
9826 even get to reply ACK to the "k". */
9827 return;
9828 }
9829
9830 /* Otherwise, something went wrong. We didn't actually kill
9831 the target. Just propagate the exception, and let the
9832 user or higher layers decide what to do. */
9833 throw_exception (ex);
9834 }
9835 END_CATCH
9836 }
9837
9838 void
9839 remote_target::mourn_inferior ()
9840 {
9841 struct remote_state *rs = get_remote_state ();
9842
9843 /* We're no longer interested in notification events of an inferior
9844 that exited or was killed/detached. */
9845 discard_pending_stop_replies (current_inferior ());
9846
9847 /* In 'target remote' mode with one inferior, we close the connection. */
9848 if (!rs->extended && number_of_live_inferiors () <= 1)
9849 {
9850 unpush_target (this);
9851
9852 /* remote_close takes care of doing most of the clean up. */
9853 generic_mourn_inferior ();
9854 return;
9855 }
9856
9857 /* In case we got here due to an error, but we're going to stay
9858 connected. */
9859 rs->waiting_for_stop_reply = 0;
9860
9861 /* If the current general thread belonged to the process we just
9862 detached from or has exited, the remote side current general
9863 thread becomes undefined. Considering a case like this:
9864
9865 - We just got here due to a detach.
9866 - The process that we're detaching from happens to immediately
9867 report a global breakpoint being hit in non-stop mode, in the
9868 same thread we had selected before.
9869 - GDB attaches to this process again.
9870 - This event happens to be the next event we handle.
9871
9872 GDB would consider that the current general thread didn't need to
9873 be set on the stub side (with Hg), since for all it knew,
9874 GENERAL_THREAD hadn't changed.
9875
9876 Notice that although in all-stop mode, the remote server always
9877 sets the current thread to the thread reporting the stop event,
9878 that doesn't happen in non-stop mode; in non-stop, the stub *must
9879 not* change the current thread when reporting a breakpoint hit,
9880 due to the decoupling of event reporting and event handling.
9881
9882 To keep things simple, we always invalidate our notion of the
9883 current thread. */
9884 record_currthread (rs, minus_one_ptid);
9885
9886 /* Call common code to mark the inferior as not running. */
9887 generic_mourn_inferior ();
9888
9889 if (!have_inferiors ())
9890 {
9891 if (!remote_multi_process_p (rs))
9892 {
9893 /* Check whether the target is running now - some remote stubs
9894 automatically restart after kill. */
9895 putpkt ("?");
9896 getpkt (&rs->buf, &rs->buf_size, 0);
9897
9898 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9899 {
9900 /* Assume that the target has been restarted. Set
9901 inferior_ptid so that bits of core GDB realizes
9902 there's something here, e.g., so that the user can
9903 say "kill" again. */
9904 inferior_ptid = magic_null_ptid;
9905 }
9906 }
9907 }
9908 }
9909
9910 bool
9911 extended_remote_target::supports_disable_randomization ()
9912 {
9913 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9914 }
9915
9916 void
9917 remote_target::extended_remote_disable_randomization (int val)
9918 {
9919 struct remote_state *rs = get_remote_state ();
9920 char *reply;
9921
9922 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9923 val);
9924 putpkt (rs->buf);
9925 reply = remote_get_noisy_reply ();
9926 if (*reply == '\0')
9927 error (_("Target does not support QDisableRandomization."));
9928 if (strcmp (reply, "OK") != 0)
9929 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9930 }
9931
9932 int
9933 remote_target::extended_remote_run (const std::string &args)
9934 {
9935 struct remote_state *rs = get_remote_state ();
9936 int len;
9937 const char *remote_exec_file = get_remote_exec_file ();
9938
9939 /* If the user has disabled vRun support, or we have detected that
9940 support is not available, do not try it. */
9941 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9942 return -1;
9943
9944 strcpy (rs->buf, "vRun;");
9945 len = strlen (rs->buf);
9946
9947 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9948 error (_("Remote file name too long for run packet"));
9949 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9950 strlen (remote_exec_file));
9951
9952 if (!args.empty ())
9953 {
9954 int i;
9955
9956 gdb_argv argv (args.c_str ());
9957 for (i = 0; argv[i] != NULL; i++)
9958 {
9959 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9960 error (_("Argument list too long for run packet"));
9961 rs->buf[len++] = ';';
9962 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9963 strlen (argv[i]));
9964 }
9965 }
9966
9967 rs->buf[len++] = '\0';
9968
9969 putpkt (rs->buf);
9970 getpkt (&rs->buf, &rs->buf_size, 0);
9971
9972 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9973 {
9974 case PACKET_OK:
9975 /* We have a wait response. All is well. */
9976 return 0;
9977 case PACKET_UNKNOWN:
9978 return -1;
9979 case PACKET_ERROR:
9980 if (remote_exec_file[0] == '\0')
9981 error (_("Running the default executable on the remote target failed; "
9982 "try \"set remote exec-file\"?"));
9983 else
9984 error (_("Running \"%s\" on the remote target failed"),
9985 remote_exec_file);
9986 default:
9987 gdb_assert_not_reached (_("bad switch"));
9988 }
9989 }
9990
9991 /* Helper function to send set/unset environment packets. ACTION is
9992 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9993 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9994 sent. */
9995
9996 void
9997 remote_target::send_environment_packet (const char *action,
9998 const char *packet,
9999 const char *value)
10000 {
10001 remote_state *rs = get_remote_state ();
10002
10003 /* Convert the environment variable to an hex string, which
10004 is the best format to be transmitted over the wire. */
10005 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10006 strlen (value));
10007
10008 xsnprintf (rs->buf, get_remote_packet_size (),
10009 "%s:%s", packet, encoded_value.c_str ());
10010
10011 putpkt (rs->buf);
10012 getpkt (&rs->buf, &rs->buf_size, 0);
10013 if (strcmp (rs->buf, "OK") != 0)
10014 warning (_("Unable to %s environment variable '%s' on remote."),
10015 action, value);
10016 }
10017
10018 /* Helper function to handle the QEnvironment* packets. */
10019
10020 void
10021 remote_target::extended_remote_environment_support ()
10022 {
10023 remote_state *rs = get_remote_state ();
10024
10025 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10026 {
10027 putpkt ("QEnvironmentReset");
10028 getpkt (&rs->buf, &rs->buf_size, 0);
10029 if (strcmp (rs->buf, "OK") != 0)
10030 warning (_("Unable to reset environment on remote."));
10031 }
10032
10033 gdb_environ *e = &current_inferior ()->environment;
10034
10035 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10036 for (const std::string &el : e->user_set_env ())
10037 send_environment_packet ("set", "QEnvironmentHexEncoded",
10038 el.c_str ());
10039
10040 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10041 for (const std::string &el : e->user_unset_env ())
10042 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10043 }
10044
10045 /* Helper function to set the current working directory for the
10046 inferior in the remote target. */
10047
10048 void
10049 remote_target::extended_remote_set_inferior_cwd ()
10050 {
10051 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10052 {
10053 const char *inferior_cwd = get_inferior_cwd ();
10054 remote_state *rs = get_remote_state ();
10055
10056 if (inferior_cwd != NULL)
10057 {
10058 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10059 strlen (inferior_cwd));
10060
10061 xsnprintf (rs->buf, get_remote_packet_size (),
10062 "QSetWorkingDir:%s", hexpath.c_str ());
10063 }
10064 else
10065 {
10066 /* An empty inferior_cwd means that the user wants us to
10067 reset the remote server's inferior's cwd. */
10068 xsnprintf (rs->buf, get_remote_packet_size (),
10069 "QSetWorkingDir:");
10070 }
10071
10072 putpkt (rs->buf);
10073 getpkt (&rs->buf, &rs->buf_size, 0);
10074 if (packet_ok (rs->buf,
10075 &remote_protocol_packets[PACKET_QSetWorkingDir])
10076 != PACKET_OK)
10077 error (_("\
10078 Remote replied unexpectedly while setting the inferior's working\n\
10079 directory: %s"),
10080 rs->buf);
10081
10082 }
10083 }
10084
10085 /* In the extended protocol we want to be able to do things like
10086 "run" and have them basically work as expected. So we need
10087 a special create_inferior function. We support changing the
10088 executable file and the command line arguments, but not the
10089 environment. */
10090
10091 void
10092 extended_remote_target::create_inferior (const char *exec_file,
10093 const std::string &args,
10094 char **env, int from_tty)
10095 {
10096 int run_worked;
10097 char *stop_reply;
10098 struct remote_state *rs = get_remote_state ();
10099 const char *remote_exec_file = get_remote_exec_file ();
10100
10101 /* If running asynchronously, register the target file descriptor
10102 with the event loop. */
10103 if (target_can_async_p ())
10104 target_async (1);
10105
10106 /* Disable address space randomization if requested (and supported). */
10107 if (supports_disable_randomization ())
10108 extended_remote_disable_randomization (disable_randomization);
10109
10110 /* If startup-with-shell is on, we inform gdbserver to start the
10111 remote inferior using a shell. */
10112 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10113 {
10114 xsnprintf (rs->buf, get_remote_packet_size (),
10115 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10116 putpkt (rs->buf);
10117 getpkt (&rs->buf, &rs->buf_size, 0);
10118 if (strcmp (rs->buf, "OK") != 0)
10119 error (_("\
10120 Remote replied unexpectedly while setting startup-with-shell: %s"),
10121 rs->buf);
10122 }
10123
10124 extended_remote_environment_support ();
10125
10126 extended_remote_set_inferior_cwd ();
10127
10128 /* Now restart the remote server. */
10129 run_worked = extended_remote_run (args) != -1;
10130 if (!run_worked)
10131 {
10132 /* vRun was not supported. Fail if we need it to do what the
10133 user requested. */
10134 if (remote_exec_file[0])
10135 error (_("Remote target does not support \"set remote exec-file\""));
10136 if (!args.empty ())
10137 error (_("Remote target does not support \"set args\" or run ARGS"));
10138
10139 /* Fall back to "R". */
10140 extended_remote_restart ();
10141 }
10142
10143 /* vRun's success return is a stop reply. */
10144 stop_reply = run_worked ? rs->buf : NULL;
10145 add_current_inferior_and_thread (stop_reply);
10146
10147 /* Get updated offsets, if the stub uses qOffsets. */
10148 get_offsets ();
10149 }
10150 \f
10151
10152 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10153 the list of conditions (in agent expression bytecode format), if any, the
10154 target needs to evaluate. The output is placed into the packet buffer
10155 started from BUF and ended at BUF_END. */
10156
10157 static int
10158 remote_add_target_side_condition (struct gdbarch *gdbarch,
10159 struct bp_target_info *bp_tgt, char *buf,
10160 char *buf_end)
10161 {
10162 if (bp_tgt->conditions.empty ())
10163 return 0;
10164
10165 buf += strlen (buf);
10166 xsnprintf (buf, buf_end - buf, "%s", ";");
10167 buf++;
10168
10169 /* Send conditions to the target. */
10170 for (agent_expr *aexpr : bp_tgt->conditions)
10171 {
10172 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10173 buf += strlen (buf);
10174 for (int i = 0; i < aexpr->len; ++i)
10175 buf = pack_hex_byte (buf, aexpr->buf[i]);
10176 *buf = '\0';
10177 }
10178 return 0;
10179 }
10180
10181 static void
10182 remote_add_target_side_commands (struct gdbarch *gdbarch,
10183 struct bp_target_info *bp_tgt, char *buf)
10184 {
10185 if (bp_tgt->tcommands.empty ())
10186 return;
10187
10188 buf += strlen (buf);
10189
10190 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10191 buf += strlen (buf);
10192
10193 /* Concatenate all the agent expressions that are commands into the
10194 cmds parameter. */
10195 for (agent_expr *aexpr : bp_tgt->tcommands)
10196 {
10197 sprintf (buf, "X%x,", aexpr->len);
10198 buf += strlen (buf);
10199 for (int i = 0; i < aexpr->len; ++i)
10200 buf = pack_hex_byte (buf, aexpr->buf[i]);
10201 *buf = '\0';
10202 }
10203 }
10204
10205 /* Insert a breakpoint. On targets that have software breakpoint
10206 support, we ask the remote target to do the work; on targets
10207 which don't, we insert a traditional memory breakpoint. */
10208
10209 int
10210 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10211 struct bp_target_info *bp_tgt)
10212 {
10213 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10214 If it succeeds, then set the support to PACKET_ENABLE. If it
10215 fails, and the user has explicitly requested the Z support then
10216 report an error, otherwise, mark it disabled and go on. */
10217
10218 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10219 {
10220 CORE_ADDR addr = bp_tgt->reqstd_address;
10221 struct remote_state *rs;
10222 char *p, *endbuf;
10223
10224 /* Make sure the remote is pointing at the right process, if
10225 necessary. */
10226 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10227 set_general_process ();
10228
10229 rs = get_remote_state ();
10230 p = rs->buf;
10231 endbuf = rs->buf + get_remote_packet_size ();
10232
10233 *(p++) = 'Z';
10234 *(p++) = '0';
10235 *(p++) = ',';
10236 addr = (ULONGEST) remote_address_masked (addr);
10237 p += hexnumstr (p, addr);
10238 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10239
10240 if (supports_evaluation_of_breakpoint_conditions ())
10241 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10242
10243 if (can_run_breakpoint_commands ())
10244 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10245
10246 putpkt (rs->buf);
10247 getpkt (&rs->buf, &rs->buf_size, 0);
10248
10249 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10250 {
10251 case PACKET_ERROR:
10252 return -1;
10253 case PACKET_OK:
10254 return 0;
10255 case PACKET_UNKNOWN:
10256 break;
10257 }
10258 }
10259
10260 /* If this breakpoint has target-side commands but this stub doesn't
10261 support Z0 packets, throw error. */
10262 if (!bp_tgt->tcommands.empty ())
10263 throw_error (NOT_SUPPORTED_ERROR, _("\
10264 Target doesn't support breakpoints that have target side commands."));
10265
10266 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10267 }
10268
10269 int
10270 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10271 struct bp_target_info *bp_tgt,
10272 enum remove_bp_reason reason)
10273 {
10274 CORE_ADDR addr = bp_tgt->placed_address;
10275 struct remote_state *rs = get_remote_state ();
10276
10277 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10278 {
10279 char *p = rs->buf;
10280 char *endbuf = rs->buf + get_remote_packet_size ();
10281
10282 /* Make sure the remote is pointing at the right process, if
10283 necessary. */
10284 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10285 set_general_process ();
10286
10287 *(p++) = 'z';
10288 *(p++) = '0';
10289 *(p++) = ',';
10290
10291 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10292 p += hexnumstr (p, addr);
10293 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10294
10295 putpkt (rs->buf);
10296 getpkt (&rs->buf, &rs->buf_size, 0);
10297
10298 return (rs->buf[0] == 'E');
10299 }
10300
10301 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10302 }
10303
10304 static enum Z_packet_type
10305 watchpoint_to_Z_packet (int type)
10306 {
10307 switch (type)
10308 {
10309 case hw_write:
10310 return Z_PACKET_WRITE_WP;
10311 break;
10312 case hw_read:
10313 return Z_PACKET_READ_WP;
10314 break;
10315 case hw_access:
10316 return Z_PACKET_ACCESS_WP;
10317 break;
10318 default:
10319 internal_error (__FILE__, __LINE__,
10320 _("hw_bp_to_z: bad watchpoint type %d"), type);
10321 }
10322 }
10323
10324 int
10325 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10326 enum target_hw_bp_type type, struct expression *cond)
10327 {
10328 struct remote_state *rs = get_remote_state ();
10329 char *endbuf = rs->buf + get_remote_packet_size ();
10330 char *p;
10331 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10332
10333 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10334 return 1;
10335
10336 /* Make sure the remote is pointing at the right process, if
10337 necessary. */
10338 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10339 set_general_process ();
10340
10341 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
10342 p = strchr (rs->buf, '\0');
10343 addr = remote_address_masked (addr);
10344 p += hexnumstr (p, (ULONGEST) addr);
10345 xsnprintf (p, endbuf - p, ",%x", len);
10346
10347 putpkt (rs->buf);
10348 getpkt (&rs->buf, &rs->buf_size, 0);
10349
10350 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10351 {
10352 case PACKET_ERROR:
10353 return -1;
10354 case PACKET_UNKNOWN:
10355 return 1;
10356 case PACKET_OK:
10357 return 0;
10358 }
10359 internal_error (__FILE__, __LINE__,
10360 _("remote_insert_watchpoint: reached end of function"));
10361 }
10362
10363 bool
10364 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10365 CORE_ADDR start, int length)
10366 {
10367 CORE_ADDR diff = remote_address_masked (addr - start);
10368
10369 return diff < length;
10370 }
10371
10372
10373 int
10374 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10375 enum target_hw_bp_type type, struct expression *cond)
10376 {
10377 struct remote_state *rs = get_remote_state ();
10378 char *endbuf = rs->buf + get_remote_packet_size ();
10379 char *p;
10380 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10381
10382 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10383 return -1;
10384
10385 /* Make sure the remote is pointing at the right process, if
10386 necessary. */
10387 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10388 set_general_process ();
10389
10390 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
10391 p = strchr (rs->buf, '\0');
10392 addr = remote_address_masked (addr);
10393 p += hexnumstr (p, (ULONGEST) addr);
10394 xsnprintf (p, endbuf - p, ",%x", len);
10395 putpkt (rs->buf);
10396 getpkt (&rs->buf, &rs->buf_size, 0);
10397
10398 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10399 {
10400 case PACKET_ERROR:
10401 case PACKET_UNKNOWN:
10402 return -1;
10403 case PACKET_OK:
10404 return 0;
10405 }
10406 internal_error (__FILE__, __LINE__,
10407 _("remote_remove_watchpoint: reached end of function"));
10408 }
10409
10410
10411 int remote_hw_watchpoint_limit = -1;
10412 int remote_hw_watchpoint_length_limit = -1;
10413 int remote_hw_breakpoint_limit = -1;
10414
10415 int
10416 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10417 {
10418 if (remote_hw_watchpoint_length_limit == 0)
10419 return 0;
10420 else if (remote_hw_watchpoint_length_limit < 0)
10421 return 1;
10422 else if (len <= remote_hw_watchpoint_length_limit)
10423 return 1;
10424 else
10425 return 0;
10426 }
10427
10428 int
10429 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10430 {
10431 if (type == bp_hardware_breakpoint)
10432 {
10433 if (remote_hw_breakpoint_limit == 0)
10434 return 0;
10435 else if (remote_hw_breakpoint_limit < 0)
10436 return 1;
10437 else if (cnt <= remote_hw_breakpoint_limit)
10438 return 1;
10439 }
10440 else
10441 {
10442 if (remote_hw_watchpoint_limit == 0)
10443 return 0;
10444 else if (remote_hw_watchpoint_limit < 0)
10445 return 1;
10446 else if (ot)
10447 return -1;
10448 else if (cnt <= remote_hw_watchpoint_limit)
10449 return 1;
10450 }
10451 return -1;
10452 }
10453
10454 /* The to_stopped_by_sw_breakpoint method of target remote. */
10455
10456 bool
10457 remote_target::stopped_by_sw_breakpoint ()
10458 {
10459 struct thread_info *thread = inferior_thread ();
10460
10461 return (thread->priv != NULL
10462 && (get_remote_thread_info (thread)->stop_reason
10463 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10464 }
10465
10466 /* The to_supports_stopped_by_sw_breakpoint method of target
10467 remote. */
10468
10469 bool
10470 remote_target::supports_stopped_by_sw_breakpoint ()
10471 {
10472 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10473 }
10474
10475 /* The to_stopped_by_hw_breakpoint method of target remote. */
10476
10477 bool
10478 remote_target::stopped_by_hw_breakpoint ()
10479 {
10480 struct thread_info *thread = inferior_thread ();
10481
10482 return (thread->priv != NULL
10483 && (get_remote_thread_info (thread)->stop_reason
10484 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10485 }
10486
10487 /* The to_supports_stopped_by_hw_breakpoint method of target
10488 remote. */
10489
10490 bool
10491 remote_target::supports_stopped_by_hw_breakpoint ()
10492 {
10493 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10494 }
10495
10496 bool
10497 remote_target::stopped_by_watchpoint ()
10498 {
10499 struct thread_info *thread = inferior_thread ();
10500
10501 return (thread->priv != NULL
10502 && (get_remote_thread_info (thread)->stop_reason
10503 == TARGET_STOPPED_BY_WATCHPOINT));
10504 }
10505
10506 bool
10507 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10508 {
10509 struct thread_info *thread = inferior_thread ();
10510
10511 if (thread->priv != NULL
10512 && (get_remote_thread_info (thread)->stop_reason
10513 == TARGET_STOPPED_BY_WATCHPOINT))
10514 {
10515 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10516 return true;
10517 }
10518
10519 return false;
10520 }
10521
10522
10523 int
10524 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10525 struct bp_target_info *bp_tgt)
10526 {
10527 CORE_ADDR addr = bp_tgt->reqstd_address;
10528 struct remote_state *rs;
10529 char *p, *endbuf;
10530 char *message;
10531
10532 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10533 return -1;
10534
10535 /* Make sure the remote is pointing at the right process, if
10536 necessary. */
10537 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10538 set_general_process ();
10539
10540 rs = get_remote_state ();
10541 p = rs->buf;
10542 endbuf = rs->buf + get_remote_packet_size ();
10543
10544 *(p++) = 'Z';
10545 *(p++) = '1';
10546 *(p++) = ',';
10547
10548 addr = remote_address_masked (addr);
10549 p += hexnumstr (p, (ULONGEST) addr);
10550 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10551
10552 if (supports_evaluation_of_breakpoint_conditions ())
10553 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10554
10555 if (can_run_breakpoint_commands ())
10556 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10557
10558 putpkt (rs->buf);
10559 getpkt (&rs->buf, &rs->buf_size, 0);
10560
10561 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10562 {
10563 case PACKET_ERROR:
10564 if (rs->buf[1] == '.')
10565 {
10566 message = strchr (rs->buf + 2, '.');
10567 if (message)
10568 error (_("Remote failure reply: %s"), message + 1);
10569 }
10570 return -1;
10571 case PACKET_UNKNOWN:
10572 return -1;
10573 case PACKET_OK:
10574 return 0;
10575 }
10576 internal_error (__FILE__, __LINE__,
10577 _("remote_insert_hw_breakpoint: reached end of function"));
10578 }
10579
10580
10581 int
10582 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10583 struct bp_target_info *bp_tgt)
10584 {
10585 CORE_ADDR addr;
10586 struct remote_state *rs = get_remote_state ();
10587 char *p = rs->buf;
10588 char *endbuf = rs->buf + get_remote_packet_size ();
10589
10590 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10591 return -1;
10592
10593 /* Make sure the remote is pointing at the right process, if
10594 necessary. */
10595 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10596 set_general_process ();
10597
10598 *(p++) = 'z';
10599 *(p++) = '1';
10600 *(p++) = ',';
10601
10602 addr = remote_address_masked (bp_tgt->placed_address);
10603 p += hexnumstr (p, (ULONGEST) addr);
10604 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10605
10606 putpkt (rs->buf);
10607 getpkt (&rs->buf, &rs->buf_size, 0);
10608
10609 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10610 {
10611 case PACKET_ERROR:
10612 case PACKET_UNKNOWN:
10613 return -1;
10614 case PACKET_OK:
10615 return 0;
10616 }
10617 internal_error (__FILE__, __LINE__,
10618 _("remote_remove_hw_breakpoint: reached end of function"));
10619 }
10620
10621 /* Verify memory using the "qCRC:" request. */
10622
10623 int
10624 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10625 {
10626 struct remote_state *rs = get_remote_state ();
10627 unsigned long host_crc, target_crc;
10628 char *tmp;
10629
10630 /* It doesn't make sense to use qCRC if the remote target is
10631 connected but not running. */
10632 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10633 {
10634 enum packet_result result;
10635
10636 /* Make sure the remote is pointing at the right process. */
10637 set_general_process ();
10638
10639 /* FIXME: assumes lma can fit into long. */
10640 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10641 (long) lma, (long) size);
10642 putpkt (rs->buf);
10643
10644 /* Be clever; compute the host_crc before waiting for target
10645 reply. */
10646 host_crc = xcrc32 (data, size, 0xffffffff);
10647
10648 getpkt (&rs->buf, &rs->buf_size, 0);
10649
10650 result = packet_ok (rs->buf,
10651 &remote_protocol_packets[PACKET_qCRC]);
10652 if (result == PACKET_ERROR)
10653 return -1;
10654 else if (result == PACKET_OK)
10655 {
10656 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10657 target_crc = target_crc * 16 + fromhex (*tmp);
10658
10659 return (host_crc == target_crc);
10660 }
10661 }
10662
10663 return simple_verify_memory (this, data, lma, size);
10664 }
10665
10666 /* compare-sections command
10667
10668 With no arguments, compares each loadable section in the exec bfd
10669 with the same memory range on the target, and reports mismatches.
10670 Useful for verifying the image on the target against the exec file. */
10671
10672 static void
10673 compare_sections_command (const char *args, int from_tty)
10674 {
10675 asection *s;
10676 const char *sectname;
10677 bfd_size_type size;
10678 bfd_vma lma;
10679 int matched = 0;
10680 int mismatched = 0;
10681 int res;
10682 int read_only = 0;
10683
10684 if (!exec_bfd)
10685 error (_("command cannot be used without an exec file"));
10686
10687 if (args != NULL && strcmp (args, "-r") == 0)
10688 {
10689 read_only = 1;
10690 args = NULL;
10691 }
10692
10693 for (s = exec_bfd->sections; s; s = s->next)
10694 {
10695 if (!(s->flags & SEC_LOAD))
10696 continue; /* Skip non-loadable section. */
10697
10698 if (read_only && (s->flags & SEC_READONLY) == 0)
10699 continue; /* Skip writeable sections */
10700
10701 size = bfd_get_section_size (s);
10702 if (size == 0)
10703 continue; /* Skip zero-length section. */
10704
10705 sectname = bfd_get_section_name (exec_bfd, s);
10706 if (args && strcmp (args, sectname) != 0)
10707 continue; /* Not the section selected by user. */
10708
10709 matched = 1; /* Do this section. */
10710 lma = s->lma;
10711
10712 gdb::byte_vector sectdata (size);
10713 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
10714
10715 res = target_verify_memory (sectdata.data (), lma, size);
10716
10717 if (res == -1)
10718 error (_("target memory fault, section %s, range %s -- %s"), sectname,
10719 paddress (target_gdbarch (), lma),
10720 paddress (target_gdbarch (), lma + size));
10721
10722 printf_filtered ("Section %s, range %s -- %s: ", sectname,
10723 paddress (target_gdbarch (), lma),
10724 paddress (target_gdbarch (), lma + size));
10725 if (res)
10726 printf_filtered ("matched.\n");
10727 else
10728 {
10729 printf_filtered ("MIS-MATCHED!\n");
10730 mismatched++;
10731 }
10732 }
10733 if (mismatched > 0)
10734 warning (_("One or more sections of the target image does not match\n\
10735 the loaded file\n"));
10736 if (args && !matched)
10737 printf_filtered (_("No loaded section named '%s'.\n"), args);
10738 }
10739
10740 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10741 into remote target. The number of bytes written to the remote
10742 target is returned, or -1 for error. */
10743
10744 target_xfer_status
10745 remote_target::remote_write_qxfer (const char *object_name,
10746 const char *annex, const gdb_byte *writebuf,
10747 ULONGEST offset, LONGEST len,
10748 ULONGEST *xfered_len,
10749 struct packet_config *packet)
10750 {
10751 int i, buf_len;
10752 ULONGEST n;
10753 struct remote_state *rs = get_remote_state ();
10754 int max_size = get_memory_write_packet_size ();
10755
10756 if (packet_config_support (packet) == PACKET_DISABLE)
10757 return TARGET_XFER_E_IO;
10758
10759 /* Insert header. */
10760 i = snprintf (rs->buf, max_size,
10761 "qXfer:%s:write:%s:%s:",
10762 object_name, annex ? annex : "",
10763 phex_nz (offset, sizeof offset));
10764 max_size -= (i + 1);
10765
10766 /* Escape as much data as fits into rs->buf. */
10767 buf_len = remote_escape_output
10768 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
10769
10770 if (putpkt_binary (rs->buf, i + buf_len) < 0
10771 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10772 || packet_ok (rs->buf, packet) != PACKET_OK)
10773 return TARGET_XFER_E_IO;
10774
10775 unpack_varlen_hex (rs->buf, &n);
10776
10777 *xfered_len = n;
10778 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
10779 }
10780
10781 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10782 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10783 number of bytes read is returned, or 0 for EOF, or -1 for error.
10784 The number of bytes read may be less than LEN without indicating an
10785 EOF. PACKET is checked and updated to indicate whether the remote
10786 target supports this object. */
10787
10788 target_xfer_status
10789 remote_target::remote_read_qxfer (const char *object_name,
10790 const char *annex,
10791 gdb_byte *readbuf, ULONGEST offset,
10792 LONGEST len,
10793 ULONGEST *xfered_len,
10794 struct packet_config *packet)
10795 {
10796 struct remote_state *rs = get_remote_state ();
10797 LONGEST i, n, packet_len;
10798
10799 if (packet_config_support (packet) == PACKET_DISABLE)
10800 return TARGET_XFER_E_IO;
10801
10802 /* Check whether we've cached an end-of-object packet that matches
10803 this request. */
10804 if (rs->finished_object)
10805 {
10806 if (strcmp (object_name, rs->finished_object) == 0
10807 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10808 && offset == rs->finished_offset)
10809 return TARGET_XFER_EOF;
10810
10811
10812 /* Otherwise, we're now reading something different. Discard
10813 the cache. */
10814 xfree (rs->finished_object);
10815 xfree (rs->finished_annex);
10816 rs->finished_object = NULL;
10817 rs->finished_annex = NULL;
10818 }
10819
10820 /* Request only enough to fit in a single packet. The actual data
10821 may not, since we don't know how much of it will need to be escaped;
10822 the target is free to respond with slightly less data. We subtract
10823 five to account for the response type and the protocol frame. */
10824 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
10825 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10826 object_name, annex ? annex : "",
10827 phex_nz (offset, sizeof offset),
10828 phex_nz (n, sizeof n));
10829 i = putpkt (rs->buf);
10830 if (i < 0)
10831 return TARGET_XFER_E_IO;
10832
10833 rs->buf[0] = '\0';
10834 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10835 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
10836 return TARGET_XFER_E_IO;
10837
10838 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10839 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10840
10841 /* 'm' means there is (or at least might be) more data after this
10842 batch. That does not make sense unless there's at least one byte
10843 of data in this reply. */
10844 if (rs->buf[0] == 'm' && packet_len == 1)
10845 error (_("Remote qXfer reply contained no data."));
10846
10847 /* Got some data. */
10848 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10849 packet_len - 1, readbuf, n);
10850
10851 /* 'l' is an EOF marker, possibly including a final block of data,
10852 or possibly empty. If we have the final block of a non-empty
10853 object, record this fact to bypass a subsequent partial read. */
10854 if (rs->buf[0] == 'l' && offset + i > 0)
10855 {
10856 rs->finished_object = xstrdup (object_name);
10857 rs->finished_annex = xstrdup (annex ? annex : "");
10858 rs->finished_offset = offset + i;
10859 }
10860
10861 if (i == 0)
10862 return TARGET_XFER_EOF;
10863 else
10864 {
10865 *xfered_len = i;
10866 return TARGET_XFER_OK;
10867 }
10868 }
10869
10870 enum target_xfer_status
10871 remote_target::xfer_partial (enum target_object object,
10872 const char *annex, gdb_byte *readbuf,
10873 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10874 ULONGEST *xfered_len)
10875 {
10876 struct remote_state *rs;
10877 int i;
10878 char *p2;
10879 char query_type;
10880 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
10881
10882 set_remote_traceframe ();
10883 set_general_thread (inferior_ptid);
10884
10885 rs = get_remote_state ();
10886
10887 /* Handle memory using the standard memory routines. */
10888 if (object == TARGET_OBJECT_MEMORY)
10889 {
10890 /* If the remote target is connected but not running, we should
10891 pass this request down to a lower stratum (e.g. the executable
10892 file). */
10893 if (!target_has_execution)
10894 return TARGET_XFER_EOF;
10895
10896 if (writebuf != NULL)
10897 return remote_write_bytes (offset, writebuf, len, unit_size,
10898 xfered_len);
10899 else
10900 return remote_read_bytes (offset, readbuf, len, unit_size,
10901 xfered_len);
10902 }
10903
10904 /* Handle SPU memory using qxfer packets. */
10905 if (object == TARGET_OBJECT_SPU)
10906 {
10907 if (readbuf)
10908 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
10909 xfered_len, &remote_protocol_packets
10910 [PACKET_qXfer_spu_read]);
10911 else
10912 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
10913 xfered_len, &remote_protocol_packets
10914 [PACKET_qXfer_spu_write]);
10915 }
10916
10917 /* Handle extra signal info using qxfer packets. */
10918 if (object == TARGET_OBJECT_SIGNAL_INFO)
10919 {
10920 if (readbuf)
10921 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
10922 xfered_len, &remote_protocol_packets
10923 [PACKET_qXfer_siginfo_read]);
10924 else
10925 return remote_write_qxfer ("siginfo", annex,
10926 writebuf, offset, len, xfered_len,
10927 &remote_protocol_packets
10928 [PACKET_qXfer_siginfo_write]);
10929 }
10930
10931 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10932 {
10933 if (readbuf)
10934 return remote_read_qxfer ("statictrace", annex,
10935 readbuf, offset, len, xfered_len,
10936 &remote_protocol_packets
10937 [PACKET_qXfer_statictrace_read]);
10938 else
10939 return TARGET_XFER_E_IO;
10940 }
10941
10942 /* Only handle flash writes. */
10943 if (writebuf != NULL)
10944 {
10945 switch (object)
10946 {
10947 case TARGET_OBJECT_FLASH:
10948 return remote_flash_write (offset, len, xfered_len,
10949 writebuf);
10950
10951 default:
10952 return TARGET_XFER_E_IO;
10953 }
10954 }
10955
10956 /* Map pre-existing objects onto letters. DO NOT do this for new
10957 objects!!! Instead specify new query packets. */
10958 switch (object)
10959 {
10960 case TARGET_OBJECT_AVR:
10961 query_type = 'R';
10962 break;
10963
10964 case TARGET_OBJECT_AUXV:
10965 gdb_assert (annex == NULL);
10966 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
10967 xfered_len,
10968 &remote_protocol_packets[PACKET_qXfer_auxv]);
10969
10970 case TARGET_OBJECT_AVAILABLE_FEATURES:
10971 return remote_read_qxfer
10972 ("features", annex, readbuf, offset, len, xfered_len,
10973 &remote_protocol_packets[PACKET_qXfer_features]);
10974
10975 case TARGET_OBJECT_LIBRARIES:
10976 return remote_read_qxfer
10977 ("libraries", annex, readbuf, offset, len, xfered_len,
10978 &remote_protocol_packets[PACKET_qXfer_libraries]);
10979
10980 case TARGET_OBJECT_LIBRARIES_SVR4:
10981 return remote_read_qxfer
10982 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
10983 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10984
10985 case TARGET_OBJECT_MEMORY_MAP:
10986 gdb_assert (annex == NULL);
10987 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
10988 xfered_len,
10989 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10990
10991 case TARGET_OBJECT_OSDATA:
10992 /* Should only get here if we're connected. */
10993 gdb_assert (rs->remote_desc);
10994 return remote_read_qxfer
10995 ("osdata", annex, readbuf, offset, len, xfered_len,
10996 &remote_protocol_packets[PACKET_qXfer_osdata]);
10997
10998 case TARGET_OBJECT_THREADS:
10999 gdb_assert (annex == NULL);
11000 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
11001 xfered_len,
11002 &remote_protocol_packets[PACKET_qXfer_threads]);
11003
11004 case TARGET_OBJECT_TRACEFRAME_INFO:
11005 gdb_assert (annex == NULL);
11006 return remote_read_qxfer
11007 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11008 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11009
11010 case TARGET_OBJECT_FDPIC:
11011 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11012 xfered_len,
11013 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11014
11015 case TARGET_OBJECT_OPENVMS_UIB:
11016 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11017 xfered_len,
11018 &remote_protocol_packets[PACKET_qXfer_uib]);
11019
11020 case TARGET_OBJECT_BTRACE:
11021 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11022 xfered_len,
11023 &remote_protocol_packets[PACKET_qXfer_btrace]);
11024
11025 case TARGET_OBJECT_BTRACE_CONF:
11026 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11027 len, xfered_len,
11028 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11029
11030 case TARGET_OBJECT_EXEC_FILE:
11031 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11032 len, xfered_len,
11033 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11034
11035 default:
11036 return TARGET_XFER_E_IO;
11037 }
11038
11039 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11040 large enough let the caller deal with it. */
11041 if (len < get_remote_packet_size ())
11042 return TARGET_XFER_E_IO;
11043 len = get_remote_packet_size ();
11044
11045 /* Except for querying the minimum buffer size, target must be open. */
11046 if (!rs->remote_desc)
11047 error (_("remote query is only available after target open"));
11048
11049 gdb_assert (annex != NULL);
11050 gdb_assert (readbuf != NULL);
11051
11052 p2 = rs->buf;
11053 *p2++ = 'q';
11054 *p2++ = query_type;
11055
11056 /* We used one buffer char for the remote protocol q command and
11057 another for the query type. As the remote protocol encapsulation
11058 uses 4 chars plus one extra in case we are debugging
11059 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11060 string. */
11061 i = 0;
11062 while (annex[i] && (i < (get_remote_packet_size () - 8)))
11063 {
11064 /* Bad caller may have sent forbidden characters. */
11065 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11066 *p2++ = annex[i];
11067 i++;
11068 }
11069 *p2 = '\0';
11070 gdb_assert (annex[i] == '\0');
11071
11072 i = putpkt (rs->buf);
11073 if (i < 0)
11074 return TARGET_XFER_E_IO;
11075
11076 getpkt (&rs->buf, &rs->buf_size, 0);
11077 strcpy ((char *) readbuf, rs->buf);
11078
11079 *xfered_len = strlen ((char *) readbuf);
11080 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11081 }
11082
11083 /* Implementation of to_get_memory_xfer_limit. */
11084
11085 ULONGEST
11086 remote_target::get_memory_xfer_limit ()
11087 {
11088 return get_memory_write_packet_size ();
11089 }
11090
11091 int
11092 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11093 const gdb_byte *pattern, ULONGEST pattern_len,
11094 CORE_ADDR *found_addrp)
11095 {
11096 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11097 struct remote_state *rs = get_remote_state ();
11098 int max_size = get_memory_write_packet_size ();
11099 struct packet_config *packet =
11100 &remote_protocol_packets[PACKET_qSearch_memory];
11101 /* Number of packet bytes used to encode the pattern;
11102 this could be more than PATTERN_LEN due to escape characters. */
11103 int escaped_pattern_len;
11104 /* Amount of pattern that was encodable in the packet. */
11105 int used_pattern_len;
11106 int i;
11107 int found;
11108 ULONGEST found_addr;
11109
11110 /* Don't go to the target if we don't have to. This is done before
11111 checking packet_config_support to avoid the possibility that a
11112 success for this edge case means the facility works in
11113 general. */
11114 if (pattern_len > search_space_len)
11115 return 0;
11116 if (pattern_len == 0)
11117 {
11118 *found_addrp = start_addr;
11119 return 1;
11120 }
11121
11122 /* If we already know the packet isn't supported, fall back to the simple
11123 way of searching memory. */
11124
11125 if (packet_config_support (packet) == PACKET_DISABLE)
11126 {
11127 /* Target doesn't provided special support, fall back and use the
11128 standard support (copy memory and do the search here). */
11129 return simple_search_memory (this, start_addr, search_space_len,
11130 pattern, pattern_len, found_addrp);
11131 }
11132
11133 /* Make sure the remote is pointing at the right process. */
11134 set_general_process ();
11135
11136 /* Insert header. */
11137 i = snprintf (rs->buf, max_size,
11138 "qSearch:memory:%s;%s;",
11139 phex_nz (start_addr, addr_size),
11140 phex_nz (search_space_len, sizeof (search_space_len)));
11141 max_size -= (i + 1);
11142
11143 /* Escape as much data as fits into rs->buf. */
11144 escaped_pattern_len =
11145 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
11146 &used_pattern_len, max_size);
11147
11148 /* Bail if the pattern is too large. */
11149 if (used_pattern_len != pattern_len)
11150 error (_("Pattern is too large to transmit to remote target."));
11151
11152 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
11153 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
11154 || packet_ok (rs->buf, packet) != PACKET_OK)
11155 {
11156 /* The request may not have worked because the command is not
11157 supported. If so, fall back to the simple way. */
11158 if (packet_config_support (packet) == PACKET_DISABLE)
11159 {
11160 return simple_search_memory (this, start_addr, search_space_len,
11161 pattern, pattern_len, found_addrp);
11162 }
11163 return -1;
11164 }
11165
11166 if (rs->buf[0] == '0')
11167 found = 0;
11168 else if (rs->buf[0] == '1')
11169 {
11170 found = 1;
11171 if (rs->buf[1] != ',')
11172 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
11173 unpack_varlen_hex (rs->buf + 2, &found_addr);
11174 *found_addrp = found_addr;
11175 }
11176 else
11177 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
11178
11179 return found;
11180 }
11181
11182 void
11183 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11184 {
11185 struct remote_state *rs = get_remote_state ();
11186 char *p = rs->buf;
11187
11188 if (!rs->remote_desc)
11189 error (_("remote rcmd is only available after target open"));
11190
11191 /* Send a NULL command across as an empty command. */
11192 if (command == NULL)
11193 command = "";
11194
11195 /* The query prefix. */
11196 strcpy (rs->buf, "qRcmd,");
11197 p = strchr (rs->buf, '\0');
11198
11199 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
11200 > get_remote_packet_size ())
11201 error (_("\"monitor\" command ``%s'' is too long."), command);
11202
11203 /* Encode the actual command. */
11204 bin2hex ((const gdb_byte *) command, p, strlen (command));
11205
11206 if (putpkt (rs->buf) < 0)
11207 error (_("Communication problem with target."));
11208
11209 /* get/display the response */
11210 while (1)
11211 {
11212 char *buf;
11213
11214 /* XXX - see also remote_get_noisy_reply(). */
11215 QUIT; /* Allow user to bail out with ^C. */
11216 rs->buf[0] = '\0';
11217 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
11218 {
11219 /* Timeout. Continue to (try to) read responses.
11220 This is better than stopping with an error, assuming the stub
11221 is still executing the (long) monitor command.
11222 If needed, the user can interrupt gdb using C-c, obtaining
11223 an effect similar to stop on timeout. */
11224 continue;
11225 }
11226 buf = rs->buf;
11227 if (buf[0] == '\0')
11228 error (_("Target does not support this command."));
11229 if (buf[0] == 'O' && buf[1] != 'K')
11230 {
11231 remote_console_output (buf + 1); /* 'O' message from stub. */
11232 continue;
11233 }
11234 if (strcmp (buf, "OK") == 0)
11235 break;
11236 if (strlen (buf) == 3 && buf[0] == 'E'
11237 && isdigit (buf[1]) && isdigit (buf[2]))
11238 {
11239 error (_("Protocol error with Rcmd"));
11240 }
11241 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11242 {
11243 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11244
11245 fputc_unfiltered (c, outbuf);
11246 }
11247 break;
11248 }
11249 }
11250
11251 std::vector<mem_region>
11252 remote_target::memory_map ()
11253 {
11254 std::vector<mem_region> result;
11255 gdb::optional<gdb::char_vector> text
11256 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
11257
11258 if (text)
11259 result = parse_memory_map (text->data ());
11260
11261 return result;
11262 }
11263
11264 static void
11265 packet_command (const char *args, int from_tty)
11266 {
11267 remote_target *remote = get_current_remote_target ();
11268
11269 if (remote == nullptr)
11270 error (_("command can only be used with remote target"));
11271
11272 remote->packet_command (args, from_tty);
11273 }
11274
11275 void
11276 remote_target::packet_command (const char *args, int from_tty)
11277 {
11278 if (!args)
11279 error (_("remote-packet command requires packet text as argument"));
11280
11281 puts_filtered ("sending: ");
11282 print_packet (args);
11283 puts_filtered ("\n");
11284 putpkt (args);
11285
11286 remote_state *rs = get_remote_state ();
11287
11288 getpkt (&rs->buf, &rs->buf_size, 0);
11289 puts_filtered ("received: ");
11290 print_packet (rs->buf);
11291 puts_filtered ("\n");
11292 }
11293
11294 #if 0
11295 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11296
11297 static void display_thread_info (struct gdb_ext_thread_info *info);
11298
11299 static void threadset_test_cmd (char *cmd, int tty);
11300
11301 static void threadalive_test (char *cmd, int tty);
11302
11303 static void threadlist_test_cmd (char *cmd, int tty);
11304
11305 int get_and_display_threadinfo (threadref *ref);
11306
11307 static void threadinfo_test_cmd (char *cmd, int tty);
11308
11309 static int thread_display_step (threadref *ref, void *context);
11310
11311 static void threadlist_update_test_cmd (char *cmd, int tty);
11312
11313 static void init_remote_threadtests (void);
11314
11315 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11316
11317 static void
11318 threadset_test_cmd (const char *cmd, int tty)
11319 {
11320 int sample_thread = SAMPLE_THREAD;
11321
11322 printf_filtered (_("Remote threadset test\n"));
11323 set_general_thread (sample_thread);
11324 }
11325
11326
11327 static void
11328 threadalive_test (const char *cmd, int tty)
11329 {
11330 int sample_thread = SAMPLE_THREAD;
11331 int pid = inferior_ptid.pid ();
11332 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11333
11334 if (remote_thread_alive (ptid))
11335 printf_filtered ("PASS: Thread alive test\n");
11336 else
11337 printf_filtered ("FAIL: Thread alive test\n");
11338 }
11339
11340 void output_threadid (char *title, threadref *ref);
11341
11342 void
11343 output_threadid (char *title, threadref *ref)
11344 {
11345 char hexid[20];
11346
11347 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
11348 hexid[16] = 0;
11349 printf_filtered ("%s %s\n", title, (&hexid[0]));
11350 }
11351
11352 static void
11353 threadlist_test_cmd (const char *cmd, int tty)
11354 {
11355 int startflag = 1;
11356 threadref nextthread;
11357 int done, result_count;
11358 threadref threadlist[3];
11359
11360 printf_filtered ("Remote Threadlist test\n");
11361 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11362 &result_count, &threadlist[0]))
11363 printf_filtered ("FAIL: threadlist test\n");
11364 else
11365 {
11366 threadref *scan = threadlist;
11367 threadref *limit = scan + result_count;
11368
11369 while (scan < limit)
11370 output_threadid (" thread ", scan++);
11371 }
11372 }
11373
11374 void
11375 display_thread_info (struct gdb_ext_thread_info *info)
11376 {
11377 output_threadid ("Threadid: ", &info->threadid);
11378 printf_filtered ("Name: %s\n ", info->shortname);
11379 printf_filtered ("State: %s\n", info->display);
11380 printf_filtered ("other: %s\n\n", info->more_display);
11381 }
11382
11383 int
11384 get_and_display_threadinfo (threadref *ref)
11385 {
11386 int result;
11387 int set;
11388 struct gdb_ext_thread_info threadinfo;
11389
11390 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11391 | TAG_MOREDISPLAY | TAG_DISPLAY;
11392 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11393 display_thread_info (&threadinfo);
11394 return result;
11395 }
11396
11397 static void
11398 threadinfo_test_cmd (const char *cmd, int tty)
11399 {
11400 int athread = SAMPLE_THREAD;
11401 threadref thread;
11402 int set;
11403
11404 int_to_threadref (&thread, athread);
11405 printf_filtered ("Remote Threadinfo test\n");
11406 if (!get_and_display_threadinfo (&thread))
11407 printf_filtered ("FAIL cannot get thread info\n");
11408 }
11409
11410 static int
11411 thread_display_step (threadref *ref, void *context)
11412 {
11413 /* output_threadid(" threadstep ",ref); *//* simple test */
11414 return get_and_display_threadinfo (ref);
11415 }
11416
11417 static void
11418 threadlist_update_test_cmd (const char *cmd, int tty)
11419 {
11420 printf_filtered ("Remote Threadlist update test\n");
11421 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11422 }
11423
11424 static void
11425 init_remote_threadtests (void)
11426 {
11427 add_com ("tlist", class_obscure, threadlist_test_cmd,
11428 _("Fetch and print the remote list of "
11429 "thread identifiers, one pkt only"));
11430 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11431 _("Fetch and display info about one thread"));
11432 add_com ("tset", class_obscure, threadset_test_cmd,
11433 _("Test setting to a different thread"));
11434 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11435 _("Iterate through updating all remote thread info"));
11436 add_com ("talive", class_obscure, threadalive_test,
11437 _(" Remote thread alive test "));
11438 }
11439
11440 #endif /* 0 */
11441
11442 /* Convert a thread ID to a string. Returns the string in a static
11443 buffer. */
11444
11445 const char *
11446 remote_target::pid_to_str (ptid_t ptid)
11447 {
11448 static char buf[64];
11449 struct remote_state *rs = get_remote_state ();
11450
11451 if (ptid == null_ptid)
11452 return normal_pid_to_str (ptid);
11453 else if (ptid.is_pid ())
11454 {
11455 /* Printing an inferior target id. */
11456
11457 /* When multi-process extensions are off, there's no way in the
11458 remote protocol to know the remote process id, if there's any
11459 at all. There's one exception --- when we're connected with
11460 target extended-remote, and we manually attached to a process
11461 with "attach PID". We don't record anywhere a flag that
11462 allows us to distinguish that case from the case of
11463 connecting with extended-remote and the stub already being
11464 attached to a process, and reporting yes to qAttached, hence
11465 no smart special casing here. */
11466 if (!remote_multi_process_p (rs))
11467 {
11468 xsnprintf (buf, sizeof buf, "Remote target");
11469 return buf;
11470 }
11471
11472 return normal_pid_to_str (ptid);
11473 }
11474 else
11475 {
11476 if (magic_null_ptid == ptid)
11477 xsnprintf (buf, sizeof buf, "Thread <main>");
11478 else if (remote_multi_process_p (rs))
11479 if (ptid.lwp () == 0)
11480 return normal_pid_to_str (ptid);
11481 else
11482 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11483 ptid.pid (), ptid.lwp ());
11484 else
11485 xsnprintf (buf, sizeof buf, "Thread %ld",
11486 ptid.lwp ());
11487 return buf;
11488 }
11489 }
11490
11491 /* Get the address of the thread local variable in OBJFILE which is
11492 stored at OFFSET within the thread local storage for thread PTID. */
11493
11494 CORE_ADDR
11495 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11496 CORE_ADDR offset)
11497 {
11498 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11499 {
11500 struct remote_state *rs = get_remote_state ();
11501 char *p = rs->buf;
11502 char *endp = rs->buf + get_remote_packet_size ();
11503 enum packet_result result;
11504
11505 strcpy (p, "qGetTLSAddr:");
11506 p += strlen (p);
11507 p = write_ptid (p, endp, ptid);
11508 *p++ = ',';
11509 p += hexnumstr (p, offset);
11510 *p++ = ',';
11511 p += hexnumstr (p, lm);
11512 *p++ = '\0';
11513
11514 putpkt (rs->buf);
11515 getpkt (&rs->buf, &rs->buf_size, 0);
11516 result = packet_ok (rs->buf,
11517 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11518 if (result == PACKET_OK)
11519 {
11520 ULONGEST addr;
11521
11522 unpack_varlen_hex (rs->buf, &addr);
11523 return addr;
11524 }
11525 else if (result == PACKET_UNKNOWN)
11526 throw_error (TLS_GENERIC_ERROR,
11527 _("Remote target doesn't support qGetTLSAddr packet"));
11528 else
11529 throw_error (TLS_GENERIC_ERROR,
11530 _("Remote target failed to process qGetTLSAddr request"));
11531 }
11532 else
11533 throw_error (TLS_GENERIC_ERROR,
11534 _("TLS not supported or disabled on this target"));
11535 /* Not reached. */
11536 return 0;
11537 }
11538
11539 /* Provide thread local base, i.e. Thread Information Block address.
11540 Returns 1 if ptid is found and thread_local_base is non zero. */
11541
11542 bool
11543 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11544 {
11545 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11546 {
11547 struct remote_state *rs = get_remote_state ();
11548 char *p = rs->buf;
11549 char *endp = rs->buf + get_remote_packet_size ();
11550 enum packet_result result;
11551
11552 strcpy (p, "qGetTIBAddr:");
11553 p += strlen (p);
11554 p = write_ptid (p, endp, ptid);
11555 *p++ = '\0';
11556
11557 putpkt (rs->buf);
11558 getpkt (&rs->buf, &rs->buf_size, 0);
11559 result = packet_ok (rs->buf,
11560 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11561 if (result == PACKET_OK)
11562 {
11563 ULONGEST val;
11564 unpack_varlen_hex (rs->buf, &val);
11565 if (addr)
11566 *addr = (CORE_ADDR) val;
11567 return true;
11568 }
11569 else if (result == PACKET_UNKNOWN)
11570 error (_("Remote target doesn't support qGetTIBAddr packet"));
11571 else
11572 error (_("Remote target failed to process qGetTIBAddr request"));
11573 }
11574 else
11575 error (_("qGetTIBAddr not supported or disabled on this target"));
11576 /* Not reached. */
11577 return false;
11578 }
11579
11580 /* Support for inferring a target description based on the current
11581 architecture and the size of a 'g' packet. While the 'g' packet
11582 can have any size (since optional registers can be left off the
11583 end), some sizes are easily recognizable given knowledge of the
11584 approximate architecture. */
11585
11586 struct remote_g_packet_guess
11587 {
11588 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11589 : bytes (bytes_),
11590 tdesc (tdesc_)
11591 {
11592 }
11593
11594 int bytes;
11595 const struct target_desc *tdesc;
11596 };
11597
11598 struct remote_g_packet_data : public allocate_on_obstack
11599 {
11600 std::vector<remote_g_packet_guess> guesses;
11601 };
11602
11603 static struct gdbarch_data *remote_g_packet_data_handle;
11604
11605 static void *
11606 remote_g_packet_data_init (struct obstack *obstack)
11607 {
11608 return new (obstack) remote_g_packet_data;
11609 }
11610
11611 void
11612 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11613 const struct target_desc *tdesc)
11614 {
11615 struct remote_g_packet_data *data
11616 = ((struct remote_g_packet_data *)
11617 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11618
11619 gdb_assert (tdesc != NULL);
11620
11621 for (const remote_g_packet_guess &guess : data->guesses)
11622 if (guess.bytes == bytes)
11623 internal_error (__FILE__, __LINE__,
11624 _("Duplicate g packet description added for size %d"),
11625 bytes);
11626
11627 data->guesses.emplace_back (bytes, tdesc);
11628 }
11629
11630 /* Return true if remote_read_description would do anything on this target
11631 and architecture, false otherwise. */
11632
11633 static bool
11634 remote_read_description_p (struct target_ops *target)
11635 {
11636 struct remote_g_packet_data *data
11637 = ((struct remote_g_packet_data *)
11638 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11639
11640 return !data->guesses.empty ();
11641 }
11642
11643 const struct target_desc *
11644 remote_target::read_description ()
11645 {
11646 struct remote_g_packet_data *data
11647 = ((struct remote_g_packet_data *)
11648 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11649
11650 /* Do not try this during initial connection, when we do not know
11651 whether there is a running but stopped thread. */
11652 if (!target_has_execution || inferior_ptid == null_ptid)
11653 return beneath ()->read_description ();
11654
11655 if (!data->guesses.empty ())
11656 {
11657 int bytes = send_g_packet ();
11658
11659 for (const remote_g_packet_guess &guess : data->guesses)
11660 if (guess.bytes == bytes)
11661 return guess.tdesc;
11662
11663 /* We discard the g packet. A minor optimization would be to
11664 hold on to it, and fill the register cache once we have selected
11665 an architecture, but it's too tricky to do safely. */
11666 }
11667
11668 return beneath ()->read_description ();
11669 }
11670
11671 /* Remote file transfer support. This is host-initiated I/O, not
11672 target-initiated; for target-initiated, see remote-fileio.c. */
11673
11674 /* If *LEFT is at least the length of STRING, copy STRING to
11675 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11676 decrease *LEFT. Otherwise raise an error. */
11677
11678 static void
11679 remote_buffer_add_string (char **buffer, int *left, const char *string)
11680 {
11681 int len = strlen (string);
11682
11683 if (len > *left)
11684 error (_("Packet too long for target."));
11685
11686 memcpy (*buffer, string, len);
11687 *buffer += len;
11688 *left -= len;
11689
11690 /* NUL-terminate the buffer as a convenience, if there is
11691 room. */
11692 if (*left)
11693 **buffer = '\0';
11694 }
11695
11696 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11697 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11698 decrease *LEFT. Otherwise raise an error. */
11699
11700 static void
11701 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11702 int len)
11703 {
11704 if (2 * len > *left)
11705 error (_("Packet too long for target."));
11706
11707 bin2hex (bytes, *buffer, len);
11708 *buffer += 2 * len;
11709 *left -= 2 * len;
11710
11711 /* NUL-terminate the buffer as a convenience, if there is
11712 room. */
11713 if (*left)
11714 **buffer = '\0';
11715 }
11716
11717 /* If *LEFT is large enough, convert VALUE to hex and add it to
11718 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11719 decrease *LEFT. Otherwise raise an error. */
11720
11721 static void
11722 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11723 {
11724 int len = hexnumlen (value);
11725
11726 if (len > *left)
11727 error (_("Packet too long for target."));
11728
11729 hexnumstr (*buffer, value);
11730 *buffer += len;
11731 *left -= len;
11732
11733 /* NUL-terminate the buffer as a convenience, if there is
11734 room. */
11735 if (*left)
11736 **buffer = '\0';
11737 }
11738
11739 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11740 value, *REMOTE_ERRNO to the remote error number or zero if none
11741 was included, and *ATTACHMENT to point to the start of the annex
11742 if any. The length of the packet isn't needed here; there may
11743 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11744
11745 Return 0 if the packet could be parsed, -1 if it could not. If
11746 -1 is returned, the other variables may not be initialized. */
11747
11748 static int
11749 remote_hostio_parse_result (char *buffer, int *retcode,
11750 int *remote_errno, char **attachment)
11751 {
11752 char *p, *p2;
11753
11754 *remote_errno = 0;
11755 *attachment = NULL;
11756
11757 if (buffer[0] != 'F')
11758 return -1;
11759
11760 errno = 0;
11761 *retcode = strtol (&buffer[1], &p, 16);
11762 if (errno != 0 || p == &buffer[1])
11763 return -1;
11764
11765 /* Check for ",errno". */
11766 if (*p == ',')
11767 {
11768 errno = 0;
11769 *remote_errno = strtol (p + 1, &p2, 16);
11770 if (errno != 0 || p + 1 == p2)
11771 return -1;
11772 p = p2;
11773 }
11774
11775 /* Check for ";attachment". If there is no attachment, the
11776 packet should end here. */
11777 if (*p == ';')
11778 {
11779 *attachment = p + 1;
11780 return 0;
11781 }
11782 else if (*p == '\0')
11783 return 0;
11784 else
11785 return -1;
11786 }
11787
11788 /* Send a prepared I/O packet to the target and read its response.
11789 The prepared packet is in the global RS->BUF before this function
11790 is called, and the answer is there when we return.
11791
11792 COMMAND_BYTES is the length of the request to send, which may include
11793 binary data. WHICH_PACKET is the packet configuration to check
11794 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11795 is set to the error number and -1 is returned. Otherwise the value
11796 returned by the function is returned.
11797
11798 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11799 attachment is expected; an error will be reported if there's a
11800 mismatch. If one is found, *ATTACHMENT will be set to point into
11801 the packet buffer and *ATTACHMENT_LEN will be set to the
11802 attachment's length. */
11803
11804 int
11805 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11806 int *remote_errno, char **attachment,
11807 int *attachment_len)
11808 {
11809 struct remote_state *rs = get_remote_state ();
11810 int ret, bytes_read;
11811 char *attachment_tmp;
11812
11813 if (packet_support (which_packet) == PACKET_DISABLE)
11814 {
11815 *remote_errno = FILEIO_ENOSYS;
11816 return -1;
11817 }
11818
11819 putpkt_binary (rs->buf, command_bytes);
11820 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11821
11822 /* If it timed out, something is wrong. Don't try to parse the
11823 buffer. */
11824 if (bytes_read < 0)
11825 {
11826 *remote_errno = FILEIO_EINVAL;
11827 return -1;
11828 }
11829
11830 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11831 {
11832 case PACKET_ERROR:
11833 *remote_errno = FILEIO_EINVAL;
11834 return -1;
11835 case PACKET_UNKNOWN:
11836 *remote_errno = FILEIO_ENOSYS;
11837 return -1;
11838 case PACKET_OK:
11839 break;
11840 }
11841
11842 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11843 &attachment_tmp))
11844 {
11845 *remote_errno = FILEIO_EINVAL;
11846 return -1;
11847 }
11848
11849 /* Make sure we saw an attachment if and only if we expected one. */
11850 if ((attachment_tmp == NULL && attachment != NULL)
11851 || (attachment_tmp != NULL && attachment == NULL))
11852 {
11853 *remote_errno = FILEIO_EINVAL;
11854 return -1;
11855 }
11856
11857 /* If an attachment was found, it must point into the packet buffer;
11858 work out how many bytes there were. */
11859 if (attachment_tmp != NULL)
11860 {
11861 *attachment = attachment_tmp;
11862 *attachment_len = bytes_read - (*attachment - rs->buf);
11863 }
11864
11865 return ret;
11866 }
11867
11868 /* See declaration.h. */
11869
11870 void
11871 readahead_cache::invalidate ()
11872 {
11873 this->fd = -1;
11874 }
11875
11876 /* See declaration.h. */
11877
11878 void
11879 readahead_cache::invalidate_fd (int fd)
11880 {
11881 if (this->fd == fd)
11882 this->fd = -1;
11883 }
11884
11885 /* Set the filesystem remote_hostio functions that take FILENAME
11886 arguments will use. Return 0 on success, or -1 if an error
11887 occurs (and set *REMOTE_ERRNO). */
11888
11889 int
11890 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11891 int *remote_errno)
11892 {
11893 struct remote_state *rs = get_remote_state ();
11894 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11895 char *p = rs->buf;
11896 int left = get_remote_packet_size () - 1;
11897 char arg[9];
11898 int ret;
11899
11900 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11901 return 0;
11902
11903 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11904 return 0;
11905
11906 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11907
11908 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11909 remote_buffer_add_string (&p, &left, arg);
11910
11911 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11912 remote_errno, NULL, NULL);
11913
11914 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11915 return 0;
11916
11917 if (ret == 0)
11918 rs->fs_pid = required_pid;
11919
11920 return ret;
11921 }
11922
11923 /* Implementation of to_fileio_open. */
11924
11925 int
11926 remote_target::remote_hostio_open (inferior *inf, const char *filename,
11927 int flags, int mode, int warn_if_slow,
11928 int *remote_errno)
11929 {
11930 struct remote_state *rs = get_remote_state ();
11931 char *p = rs->buf;
11932 int left = get_remote_packet_size () - 1;
11933
11934 if (warn_if_slow)
11935 {
11936 static int warning_issued = 0;
11937
11938 printf_unfiltered (_("Reading %s from remote target...\n"),
11939 filename);
11940
11941 if (!warning_issued)
11942 {
11943 warning (_("File transfers from remote targets can be slow."
11944 " Use \"set sysroot\" to access files locally"
11945 " instead."));
11946 warning_issued = 1;
11947 }
11948 }
11949
11950 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11951 return -1;
11952
11953 remote_buffer_add_string (&p, &left, "vFile:open:");
11954
11955 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11956 strlen (filename));
11957 remote_buffer_add_string (&p, &left, ",");
11958
11959 remote_buffer_add_int (&p, &left, flags);
11960 remote_buffer_add_string (&p, &left, ",");
11961
11962 remote_buffer_add_int (&p, &left, mode);
11963
11964 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11965 remote_errno, NULL, NULL);
11966 }
11967
11968 int
11969 remote_target::fileio_open (struct inferior *inf, const char *filename,
11970 int flags, int mode, int warn_if_slow,
11971 int *remote_errno)
11972 {
11973 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
11974 remote_errno);
11975 }
11976
11977 /* Implementation of to_fileio_pwrite. */
11978
11979 int
11980 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11981 ULONGEST offset, int *remote_errno)
11982 {
11983 struct remote_state *rs = get_remote_state ();
11984 char *p = rs->buf;
11985 int left = get_remote_packet_size ();
11986 int out_len;
11987
11988 rs->readahead_cache.invalidate_fd (fd);
11989
11990 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11991
11992 remote_buffer_add_int (&p, &left, fd);
11993 remote_buffer_add_string (&p, &left, ",");
11994
11995 remote_buffer_add_int (&p, &left, offset);
11996 remote_buffer_add_string (&p, &left, ",");
11997
11998 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11999 get_remote_packet_size () - (p - rs->buf));
12000
12001 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
12002 remote_errno, NULL, NULL);
12003 }
12004
12005 int
12006 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12007 ULONGEST offset, int *remote_errno)
12008 {
12009 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12010 }
12011
12012 /* Helper for the implementation of to_fileio_pread. Read the file
12013 from the remote side with vFile:pread. */
12014
12015 int
12016 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12017 ULONGEST offset, int *remote_errno)
12018 {
12019 struct remote_state *rs = get_remote_state ();
12020 char *p = rs->buf;
12021 char *attachment;
12022 int left = get_remote_packet_size ();
12023 int ret, attachment_len;
12024 int read_len;
12025
12026 remote_buffer_add_string (&p, &left, "vFile:pread:");
12027
12028 remote_buffer_add_int (&p, &left, fd);
12029 remote_buffer_add_string (&p, &left, ",");
12030
12031 remote_buffer_add_int (&p, &left, len);
12032 remote_buffer_add_string (&p, &left, ",");
12033
12034 remote_buffer_add_int (&p, &left, offset);
12035
12036 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
12037 remote_errno, &attachment,
12038 &attachment_len);
12039
12040 if (ret < 0)
12041 return ret;
12042
12043 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12044 read_buf, len);
12045 if (read_len != ret)
12046 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12047
12048 return ret;
12049 }
12050
12051 /* See declaration.h. */
12052
12053 int
12054 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12055 ULONGEST offset)
12056 {
12057 if (this->fd == fd
12058 && this->offset <= offset
12059 && offset < this->offset + this->bufsize)
12060 {
12061 ULONGEST max = this->offset + this->bufsize;
12062
12063 if (offset + len > max)
12064 len = max - offset;
12065
12066 memcpy (read_buf, this->buf + offset - this->offset, len);
12067 return len;
12068 }
12069
12070 return 0;
12071 }
12072
12073 /* Implementation of to_fileio_pread. */
12074
12075 int
12076 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12077 ULONGEST offset, int *remote_errno)
12078 {
12079 int ret;
12080 struct remote_state *rs = get_remote_state ();
12081 readahead_cache *cache = &rs->readahead_cache;
12082
12083 ret = cache->pread (fd, read_buf, len, offset);
12084 if (ret > 0)
12085 {
12086 cache->hit_count++;
12087
12088 if (remote_debug)
12089 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12090 pulongest (cache->hit_count));
12091 return ret;
12092 }
12093
12094 cache->miss_count++;
12095 if (remote_debug)
12096 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12097 pulongest (cache->miss_count));
12098
12099 cache->fd = fd;
12100 cache->offset = offset;
12101 cache->bufsize = get_remote_packet_size ();
12102 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12103
12104 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12105 cache->offset, remote_errno);
12106 if (ret <= 0)
12107 {
12108 cache->invalidate_fd (fd);
12109 return ret;
12110 }
12111
12112 cache->bufsize = ret;
12113 return cache->pread (fd, read_buf, len, offset);
12114 }
12115
12116 int
12117 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12118 ULONGEST offset, int *remote_errno)
12119 {
12120 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12121 }
12122
12123 /* Implementation of to_fileio_close. */
12124
12125 int
12126 remote_target::remote_hostio_close (int fd, int *remote_errno)
12127 {
12128 struct remote_state *rs = get_remote_state ();
12129 char *p = rs->buf;
12130 int left = get_remote_packet_size () - 1;
12131
12132 rs->readahead_cache.invalidate_fd (fd);
12133
12134 remote_buffer_add_string (&p, &left, "vFile:close:");
12135
12136 remote_buffer_add_int (&p, &left, fd);
12137
12138 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
12139 remote_errno, NULL, NULL);
12140 }
12141
12142 int
12143 remote_target::fileio_close (int fd, int *remote_errno)
12144 {
12145 return remote_hostio_close (fd, remote_errno);
12146 }
12147
12148 /* Implementation of to_fileio_unlink. */
12149
12150 int
12151 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12152 int *remote_errno)
12153 {
12154 struct remote_state *rs = get_remote_state ();
12155 char *p = rs->buf;
12156 int left = get_remote_packet_size () - 1;
12157
12158 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12159 return -1;
12160
12161 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12162
12163 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12164 strlen (filename));
12165
12166 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
12167 remote_errno, NULL, NULL);
12168 }
12169
12170 int
12171 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12172 int *remote_errno)
12173 {
12174 return remote_hostio_unlink (inf, filename, remote_errno);
12175 }
12176
12177 /* Implementation of to_fileio_readlink. */
12178
12179 gdb::optional<std::string>
12180 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12181 int *remote_errno)
12182 {
12183 struct remote_state *rs = get_remote_state ();
12184 char *p = rs->buf;
12185 char *attachment;
12186 int left = get_remote_packet_size ();
12187 int len, attachment_len;
12188 int read_len;
12189
12190 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12191 return {};
12192
12193 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12194
12195 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12196 strlen (filename));
12197
12198 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
12199 remote_errno, &attachment,
12200 &attachment_len);
12201
12202 if (len < 0)
12203 return {};
12204
12205 std::string ret (len, '\0');
12206
12207 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12208 (gdb_byte *) &ret[0], len);
12209 if (read_len != len)
12210 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12211
12212 return ret;
12213 }
12214
12215 /* Implementation of to_fileio_fstat. */
12216
12217 int
12218 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12219 {
12220 struct remote_state *rs = get_remote_state ();
12221 char *p = rs->buf;
12222 int left = get_remote_packet_size ();
12223 int attachment_len, ret;
12224 char *attachment;
12225 struct fio_stat fst;
12226 int read_len;
12227
12228 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12229
12230 remote_buffer_add_int (&p, &left, fd);
12231
12232 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
12233 remote_errno, &attachment,
12234 &attachment_len);
12235 if (ret < 0)
12236 {
12237 if (*remote_errno != FILEIO_ENOSYS)
12238 return ret;
12239
12240 /* Strictly we should return -1, ENOSYS here, but when
12241 "set sysroot remote:" was implemented in August 2008
12242 BFD's need for a stat function was sidestepped with
12243 this hack. This was not remedied until March 2015
12244 so we retain the previous behavior to avoid breaking
12245 compatibility.
12246
12247 Note that the memset is a March 2015 addition; older
12248 GDBs set st_size *and nothing else* so the structure
12249 would have garbage in all other fields. This might
12250 break something but retaining the previous behavior
12251 here would be just too wrong. */
12252
12253 memset (st, 0, sizeof (struct stat));
12254 st->st_size = INT_MAX;
12255 return 0;
12256 }
12257
12258 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12259 (gdb_byte *) &fst, sizeof (fst));
12260
12261 if (read_len != ret)
12262 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12263
12264 if (read_len != sizeof (fst))
12265 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12266 read_len, (int) sizeof (fst));
12267
12268 remote_fileio_to_host_stat (&fst, st);
12269
12270 return 0;
12271 }
12272
12273 /* Implementation of to_filesystem_is_local. */
12274
12275 bool
12276 remote_target::filesystem_is_local ()
12277 {
12278 /* Valgrind GDB presents itself as a remote target but works
12279 on the local filesystem: it does not implement remote get
12280 and users are not expected to set a sysroot. To handle
12281 this case we treat the remote filesystem as local if the
12282 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12283 does not support vFile:open. */
12284 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
12285 {
12286 enum packet_support ps = packet_support (PACKET_vFile_open);
12287
12288 if (ps == PACKET_SUPPORT_UNKNOWN)
12289 {
12290 int fd, remote_errno;
12291
12292 /* Try opening a file to probe support. The supplied
12293 filename is irrelevant, we only care about whether
12294 the stub recognizes the packet or not. */
12295 fd = remote_hostio_open (NULL, "just probing",
12296 FILEIO_O_RDONLY, 0700, 0,
12297 &remote_errno);
12298
12299 if (fd >= 0)
12300 remote_hostio_close (fd, &remote_errno);
12301
12302 ps = packet_support (PACKET_vFile_open);
12303 }
12304
12305 if (ps == PACKET_DISABLE)
12306 {
12307 static int warning_issued = 0;
12308
12309 if (!warning_issued)
12310 {
12311 warning (_("remote target does not support file"
12312 " transfer, attempting to access files"
12313 " from local filesystem."));
12314 warning_issued = 1;
12315 }
12316
12317 return true;
12318 }
12319 }
12320
12321 return false;
12322 }
12323
12324 static int
12325 remote_fileio_errno_to_host (int errnum)
12326 {
12327 switch (errnum)
12328 {
12329 case FILEIO_EPERM:
12330 return EPERM;
12331 case FILEIO_ENOENT:
12332 return ENOENT;
12333 case FILEIO_EINTR:
12334 return EINTR;
12335 case FILEIO_EIO:
12336 return EIO;
12337 case FILEIO_EBADF:
12338 return EBADF;
12339 case FILEIO_EACCES:
12340 return EACCES;
12341 case FILEIO_EFAULT:
12342 return EFAULT;
12343 case FILEIO_EBUSY:
12344 return EBUSY;
12345 case FILEIO_EEXIST:
12346 return EEXIST;
12347 case FILEIO_ENODEV:
12348 return ENODEV;
12349 case FILEIO_ENOTDIR:
12350 return ENOTDIR;
12351 case FILEIO_EISDIR:
12352 return EISDIR;
12353 case FILEIO_EINVAL:
12354 return EINVAL;
12355 case FILEIO_ENFILE:
12356 return ENFILE;
12357 case FILEIO_EMFILE:
12358 return EMFILE;
12359 case FILEIO_EFBIG:
12360 return EFBIG;
12361 case FILEIO_ENOSPC:
12362 return ENOSPC;
12363 case FILEIO_ESPIPE:
12364 return ESPIPE;
12365 case FILEIO_EROFS:
12366 return EROFS;
12367 case FILEIO_ENOSYS:
12368 return ENOSYS;
12369 case FILEIO_ENAMETOOLONG:
12370 return ENAMETOOLONG;
12371 }
12372 return -1;
12373 }
12374
12375 static char *
12376 remote_hostio_error (int errnum)
12377 {
12378 int host_error = remote_fileio_errno_to_host (errnum);
12379
12380 if (host_error == -1)
12381 error (_("Unknown remote I/O error %d"), errnum);
12382 else
12383 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12384 }
12385
12386 /* A RAII wrapper around a remote file descriptor. */
12387
12388 class scoped_remote_fd
12389 {
12390 public:
12391 scoped_remote_fd (remote_target *remote, int fd)
12392 : m_remote (remote), m_fd (fd)
12393 {
12394 }
12395
12396 ~scoped_remote_fd ()
12397 {
12398 if (m_fd != -1)
12399 {
12400 try
12401 {
12402 int remote_errno;
12403 m_remote->remote_hostio_close (m_fd, &remote_errno);
12404 }
12405 catch (...)
12406 {
12407 /* Swallow exception before it escapes the dtor. If
12408 something goes wrong, likely the connection is gone,
12409 and there's nothing else that can be done. */
12410 }
12411 }
12412 }
12413
12414 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12415
12416 /* Release ownership of the file descriptor, and return it. */
12417 int release () noexcept
12418 {
12419 int fd = m_fd;
12420 m_fd = -1;
12421 return fd;
12422 }
12423
12424 /* Return the owned file descriptor. */
12425 int get () const noexcept
12426 {
12427 return m_fd;
12428 }
12429
12430 private:
12431 /* The remote target. */
12432 remote_target *m_remote;
12433
12434 /* The owned remote I/O file descriptor. */
12435 int m_fd;
12436 };
12437
12438 void
12439 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12440 {
12441 remote_target *remote = get_current_remote_target ();
12442
12443 if (remote == nullptr)
12444 error (_("command can only be used with remote target"));
12445
12446 remote->remote_file_put (local_file, remote_file, from_tty);
12447 }
12448
12449 void
12450 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12451 int from_tty)
12452 {
12453 int retcode, remote_errno, bytes, io_size;
12454 int bytes_in_buffer;
12455 int saw_eof;
12456 ULONGEST offset;
12457
12458 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12459 if (file == NULL)
12460 perror_with_name (local_file);
12461
12462 scoped_remote_fd fd
12463 (this, remote_hostio_open (NULL,
12464 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12465 | FILEIO_O_TRUNC),
12466 0700, 0, &remote_errno));
12467 if (fd.get () == -1)
12468 remote_hostio_error (remote_errno);
12469
12470 /* Send up to this many bytes at once. They won't all fit in the
12471 remote packet limit, so we'll transfer slightly fewer. */
12472 io_size = get_remote_packet_size ();
12473 gdb::byte_vector buffer (io_size);
12474
12475 bytes_in_buffer = 0;
12476 saw_eof = 0;
12477 offset = 0;
12478 while (bytes_in_buffer || !saw_eof)
12479 {
12480 if (!saw_eof)
12481 {
12482 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12483 io_size - bytes_in_buffer,
12484 file.get ());
12485 if (bytes == 0)
12486 {
12487 if (ferror (file.get ()))
12488 error (_("Error reading %s."), local_file);
12489 else
12490 {
12491 /* EOF. Unless there is something still in the
12492 buffer from the last iteration, we are done. */
12493 saw_eof = 1;
12494 if (bytes_in_buffer == 0)
12495 break;
12496 }
12497 }
12498 }
12499 else
12500 bytes = 0;
12501
12502 bytes += bytes_in_buffer;
12503 bytes_in_buffer = 0;
12504
12505 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12506 offset, &remote_errno);
12507
12508 if (retcode < 0)
12509 remote_hostio_error (remote_errno);
12510 else if (retcode == 0)
12511 error (_("Remote write of %d bytes returned 0!"), bytes);
12512 else if (retcode < bytes)
12513 {
12514 /* Short write. Save the rest of the read data for the next
12515 write. */
12516 bytes_in_buffer = bytes - retcode;
12517 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12518 }
12519
12520 offset += retcode;
12521 }
12522
12523 if (remote_hostio_close (fd.release (), &remote_errno))
12524 remote_hostio_error (remote_errno);
12525
12526 if (from_tty)
12527 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12528 }
12529
12530 void
12531 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12532 {
12533 remote_target *remote = get_current_remote_target ();
12534
12535 if (remote == nullptr)
12536 error (_("command can only be used with remote target"));
12537
12538 remote->remote_file_get (remote_file, local_file, from_tty);
12539 }
12540
12541 void
12542 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12543 int from_tty)
12544 {
12545 int remote_errno, bytes, io_size;
12546 ULONGEST offset;
12547
12548 scoped_remote_fd fd
12549 (this, remote_hostio_open (NULL,
12550 remote_file, FILEIO_O_RDONLY, 0, 0,
12551 &remote_errno));
12552 if (fd.get () == -1)
12553 remote_hostio_error (remote_errno);
12554
12555 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12556 if (file == NULL)
12557 perror_with_name (local_file);
12558
12559 /* Send up to this many bytes at once. They won't all fit in the
12560 remote packet limit, so we'll transfer slightly fewer. */
12561 io_size = get_remote_packet_size ();
12562 gdb::byte_vector buffer (io_size);
12563
12564 offset = 0;
12565 while (1)
12566 {
12567 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12568 &remote_errno);
12569 if (bytes == 0)
12570 /* Success, but no bytes, means end-of-file. */
12571 break;
12572 if (bytes == -1)
12573 remote_hostio_error (remote_errno);
12574
12575 offset += bytes;
12576
12577 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12578 if (bytes == 0)
12579 perror_with_name (local_file);
12580 }
12581
12582 if (remote_hostio_close (fd.release (), &remote_errno))
12583 remote_hostio_error (remote_errno);
12584
12585 if (from_tty)
12586 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12587 }
12588
12589 void
12590 remote_file_delete (const char *remote_file, int from_tty)
12591 {
12592 remote_target *remote = get_current_remote_target ();
12593
12594 if (remote == nullptr)
12595 error (_("command can only be used with remote target"));
12596
12597 remote->remote_file_delete (remote_file, from_tty);
12598 }
12599
12600 void
12601 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12602 {
12603 int retcode, remote_errno;
12604
12605 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12606 if (retcode == -1)
12607 remote_hostio_error (remote_errno);
12608
12609 if (from_tty)
12610 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12611 }
12612
12613 static void
12614 remote_put_command (const char *args, int from_tty)
12615 {
12616 if (args == NULL)
12617 error_no_arg (_("file to put"));
12618
12619 gdb_argv argv (args);
12620 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12621 error (_("Invalid parameters to remote put"));
12622
12623 remote_file_put (argv[0], argv[1], from_tty);
12624 }
12625
12626 static void
12627 remote_get_command (const char *args, int from_tty)
12628 {
12629 if (args == NULL)
12630 error_no_arg (_("file to get"));
12631
12632 gdb_argv argv (args);
12633 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12634 error (_("Invalid parameters to remote get"));
12635
12636 remote_file_get (argv[0], argv[1], from_tty);
12637 }
12638
12639 static void
12640 remote_delete_command (const char *args, int from_tty)
12641 {
12642 if (args == NULL)
12643 error_no_arg (_("file to delete"));
12644
12645 gdb_argv argv (args);
12646 if (argv[0] == NULL || argv[1] != NULL)
12647 error (_("Invalid parameters to remote delete"));
12648
12649 remote_file_delete (argv[0], from_tty);
12650 }
12651
12652 static void
12653 remote_command (const char *args, int from_tty)
12654 {
12655 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
12656 }
12657
12658 bool
12659 remote_target::can_execute_reverse ()
12660 {
12661 if (packet_support (PACKET_bs) == PACKET_ENABLE
12662 || packet_support (PACKET_bc) == PACKET_ENABLE)
12663 return true;
12664 else
12665 return false;
12666 }
12667
12668 bool
12669 remote_target::supports_non_stop ()
12670 {
12671 return true;
12672 }
12673
12674 bool
12675 remote_target::supports_disable_randomization ()
12676 {
12677 /* Only supported in extended mode. */
12678 return false;
12679 }
12680
12681 bool
12682 remote_target::supports_multi_process ()
12683 {
12684 struct remote_state *rs = get_remote_state ();
12685
12686 return remote_multi_process_p (rs);
12687 }
12688
12689 static int
12690 remote_supports_cond_tracepoints ()
12691 {
12692 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
12693 }
12694
12695 bool
12696 remote_target::supports_evaluation_of_breakpoint_conditions ()
12697 {
12698 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
12699 }
12700
12701 static int
12702 remote_supports_fast_tracepoints ()
12703 {
12704 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
12705 }
12706
12707 static int
12708 remote_supports_static_tracepoints ()
12709 {
12710 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
12711 }
12712
12713 static int
12714 remote_supports_install_in_trace ()
12715 {
12716 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
12717 }
12718
12719 bool
12720 remote_target::supports_enable_disable_tracepoint ()
12721 {
12722 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12723 == PACKET_ENABLE);
12724 }
12725
12726 bool
12727 remote_target::supports_string_tracing ()
12728 {
12729 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
12730 }
12731
12732 bool
12733 remote_target::can_run_breakpoint_commands ()
12734 {
12735 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
12736 }
12737
12738 void
12739 remote_target::trace_init ()
12740 {
12741 struct remote_state *rs = get_remote_state ();
12742
12743 putpkt ("QTinit");
12744 remote_get_noisy_reply ();
12745 if (strcmp (rs->buf, "OK") != 0)
12746 error (_("Target does not support this command."));
12747 }
12748
12749 /* Recursive routine to walk through command list including loops, and
12750 download packets for each command. */
12751
12752 void
12753 remote_target::remote_download_command_source (int num, ULONGEST addr,
12754 struct command_line *cmds)
12755 {
12756 struct remote_state *rs = get_remote_state ();
12757 struct command_line *cmd;
12758
12759 for (cmd = cmds; cmd; cmd = cmd->next)
12760 {
12761 QUIT; /* Allow user to bail out with ^C. */
12762 strcpy (rs->buf, "QTDPsrc:");
12763 encode_source_string (num, addr, "cmd", cmd->line,
12764 rs->buf + strlen (rs->buf),
12765 rs->buf_size - strlen (rs->buf));
12766 putpkt (rs->buf);
12767 remote_get_noisy_reply ();
12768 if (strcmp (rs->buf, "OK"))
12769 warning (_("Target does not support source download."));
12770
12771 if (cmd->control_type == while_control
12772 || cmd->control_type == while_stepping_control)
12773 {
12774 remote_download_command_source (num, addr, cmd->body_list_0.get ());
12775
12776 QUIT; /* Allow user to bail out with ^C. */
12777 strcpy (rs->buf, "QTDPsrc:");
12778 encode_source_string (num, addr, "cmd", "end",
12779 rs->buf + strlen (rs->buf),
12780 rs->buf_size - strlen (rs->buf));
12781 putpkt (rs->buf);
12782 remote_get_noisy_reply ();
12783 if (strcmp (rs->buf, "OK"))
12784 warning (_("Target does not support source download."));
12785 }
12786 }
12787 }
12788
12789 void
12790 remote_target::download_tracepoint (struct bp_location *loc)
12791 {
12792 CORE_ADDR tpaddr;
12793 char addrbuf[40];
12794 std::vector<std::string> tdp_actions;
12795 std::vector<std::string> stepping_actions;
12796 char *pkt;
12797 struct breakpoint *b = loc->owner;
12798 struct tracepoint *t = (struct tracepoint *) b;
12799 struct remote_state *rs = get_remote_state ();
12800 int ret;
12801 const char *err_msg = _("Tracepoint packet too large for target.");
12802 size_t size_left;
12803
12804 /* We use a buffer other than rs->buf because we'll build strings
12805 across multiple statements, and other statements in between could
12806 modify rs->buf. */
12807 gdb::char_vector buf (get_remote_packet_size ());
12808
12809 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
12810
12811 tpaddr = loc->address;
12812 sprintf_vma (addrbuf, tpaddr);
12813 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12814 b->number, addrbuf, /* address */
12815 (b->enable_state == bp_enabled ? 'E' : 'D'),
12816 t->step_count, t->pass_count);
12817
12818 if (ret < 0 || ret >= buf.size ())
12819 error ("%s", err_msg);
12820
12821 /* Fast tracepoints are mostly handled by the target, but we can
12822 tell the target how big of an instruction block should be moved
12823 around. */
12824 if (b->type == bp_fast_tracepoint)
12825 {
12826 /* Only test for support at download time; we may not know
12827 target capabilities at definition time. */
12828 if (remote_supports_fast_tracepoints ())
12829 {
12830 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12831 NULL))
12832 {
12833 size_left = buf.size () - strlen (buf.data ());
12834 ret = snprintf (buf.data () + strlen (buf.data ()),
12835 size_left, ":F%x",
12836 gdb_insn_length (loc->gdbarch, tpaddr));
12837
12838 if (ret < 0 || ret >= size_left)
12839 error ("%s", err_msg);
12840 }
12841 else
12842 /* If it passed validation at definition but fails now,
12843 something is very wrong. */
12844 internal_error (__FILE__, __LINE__,
12845 _("Fast tracepoint not "
12846 "valid during download"));
12847 }
12848 else
12849 /* Fast tracepoints are functionally identical to regular
12850 tracepoints, so don't take lack of support as a reason to
12851 give up on the trace run. */
12852 warning (_("Target does not support fast tracepoints, "
12853 "downloading %d as regular tracepoint"), b->number);
12854 }
12855 else if (b->type == bp_static_tracepoint)
12856 {
12857 /* Only test for support at download time; we may not know
12858 target capabilities at definition time. */
12859 if (remote_supports_static_tracepoints ())
12860 {
12861 struct static_tracepoint_marker marker;
12862
12863 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12864 {
12865 size_left = buf.size () - strlen (buf.data ());
12866 ret = snprintf (buf.data () + strlen (buf.data ()),
12867 size_left, ":S");
12868
12869 if (ret < 0 || ret >= size_left)
12870 error ("%s", err_msg);
12871 }
12872 else
12873 error (_("Static tracepoint not valid during download"));
12874 }
12875 else
12876 /* Fast tracepoints are functionally identical to regular
12877 tracepoints, so don't take lack of support as a reason
12878 to give up on the trace run. */
12879 error (_("Target does not support static tracepoints"));
12880 }
12881 /* If the tracepoint has a conditional, make it into an agent
12882 expression and append to the definition. */
12883 if (loc->cond)
12884 {
12885 /* Only test support at download time, we may not know target
12886 capabilities at definition time. */
12887 if (remote_supports_cond_tracepoints ())
12888 {
12889 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12890 loc->cond.get ());
12891
12892 size_left = buf.size () - strlen (buf.data ());
12893
12894 ret = snprintf (buf.data () + strlen (buf.data ()),
12895 size_left, ":X%x,", aexpr->len);
12896
12897 if (ret < 0 || ret >= size_left)
12898 error ("%s", err_msg);
12899
12900 size_left = buf.size () - strlen (buf.data ());
12901
12902 /* Two bytes to encode each aexpr byte, plus the terminating
12903 null byte. */
12904 if (aexpr->len * 2 + 1 > size_left)
12905 error ("%s", err_msg);
12906
12907 pkt = buf.data () + strlen (buf.data ());
12908
12909 for (int ndx = 0; ndx < aexpr->len; ++ndx)
12910 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12911 *pkt = '\0';
12912 }
12913 else
12914 warning (_("Target does not support conditional tracepoints, "
12915 "ignoring tp %d cond"), b->number);
12916 }
12917
12918 if (b->commands || *default_collect)
12919 {
12920 size_left = buf.size () - strlen (buf.data ());
12921
12922 ret = snprintf (buf.data () + strlen (buf.data ()),
12923 size_left, "-");
12924
12925 if (ret < 0 || ret >= size_left)
12926 error ("%s", err_msg);
12927 }
12928
12929 putpkt (buf.data ());
12930 remote_get_noisy_reply ();
12931 if (strcmp (rs->buf, "OK"))
12932 error (_("Target does not support tracepoints."));
12933
12934 /* do_single_steps (t); */
12935 for (auto action_it = tdp_actions.begin ();
12936 action_it != tdp_actions.end (); action_it++)
12937 {
12938 QUIT; /* Allow user to bail out with ^C. */
12939
12940 bool has_more = ((action_it + 1) != tdp_actions.end ()
12941 || !stepping_actions.empty ());
12942
12943 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12944 b->number, addrbuf, /* address */
12945 action_it->c_str (),
12946 has_more ? '-' : 0);
12947
12948 if (ret < 0 || ret >= buf.size ())
12949 error ("%s", err_msg);
12950
12951 putpkt (buf.data ());
12952 remote_get_noisy_reply ();
12953 if (strcmp (rs->buf, "OK"))
12954 error (_("Error on target while setting tracepoints."));
12955 }
12956
12957 for (auto action_it = stepping_actions.begin ();
12958 action_it != stepping_actions.end (); action_it++)
12959 {
12960 QUIT; /* Allow user to bail out with ^C. */
12961
12962 bool is_first = action_it == stepping_actions.begin ();
12963 bool has_more = (action_it + 1) != stepping_actions.end ();
12964
12965 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12966 b->number, addrbuf, /* address */
12967 is_first ? "S" : "",
12968 action_it->c_str (),
12969 has_more ? "-" : "");
12970
12971 if (ret < 0 || ret >= buf.size ())
12972 error ("%s", err_msg);
12973
12974 putpkt (buf.data ());
12975 remote_get_noisy_reply ();
12976 if (strcmp (rs->buf, "OK"))
12977 error (_("Error on target while setting tracepoints."));
12978 }
12979
12980 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
12981 {
12982 if (b->location != NULL)
12983 {
12984 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12985
12986 if (ret < 0 || ret >= buf.size ())
12987 error ("%s", err_msg);
12988
12989 encode_source_string (b->number, loc->address, "at",
12990 event_location_to_string (b->location.get ()),
12991 buf.data () + strlen (buf.data ()),
12992 buf.size () - strlen (buf.data ()));
12993 putpkt (buf.data ());
12994 remote_get_noisy_reply ();
12995 if (strcmp (rs->buf, "OK"))
12996 warning (_("Target does not support source download."));
12997 }
12998 if (b->cond_string)
12999 {
13000 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13001
13002 if (ret < 0 || ret >= buf.size ())
13003 error ("%s", err_msg);
13004
13005 encode_source_string (b->number, loc->address,
13006 "cond", b->cond_string,
13007 buf.data () + strlen (buf.data ()),
13008 buf.size () - strlen (buf.data ()));
13009 putpkt (buf.data ());
13010 remote_get_noisy_reply ();
13011 if (strcmp (rs->buf, "OK"))
13012 warning (_("Target does not support source download."));
13013 }
13014 remote_download_command_source (b->number, loc->address,
13015 breakpoint_commands (b));
13016 }
13017 }
13018
13019 bool
13020 remote_target::can_download_tracepoint ()
13021 {
13022 struct remote_state *rs = get_remote_state ();
13023 struct trace_status *ts;
13024 int status;
13025
13026 /* Don't try to install tracepoints until we've relocated our
13027 symbols, and fetched and merged the target's tracepoint list with
13028 ours. */
13029 if (rs->starting_up)
13030 return false;
13031
13032 ts = current_trace_status ();
13033 status = get_trace_status (ts);
13034
13035 if (status == -1 || !ts->running_known || !ts->running)
13036 return false;
13037
13038 /* If we are in a tracing experiment, but remote stub doesn't support
13039 installing tracepoint in trace, we have to return. */
13040 if (!remote_supports_install_in_trace ())
13041 return false;
13042
13043 return true;
13044 }
13045
13046
13047 void
13048 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13049 {
13050 struct remote_state *rs = get_remote_state ();
13051 char *p;
13052
13053 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
13054 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13055 tsv.builtin);
13056 p = rs->buf + strlen (rs->buf);
13057 if ((p - rs->buf) + tsv.name.length () * 2 >= get_remote_packet_size ())
13058 error (_("Trace state variable name too long for tsv definition packet"));
13059 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13060 *p++ = '\0';
13061 putpkt (rs->buf);
13062 remote_get_noisy_reply ();
13063 if (*rs->buf == '\0')
13064 error (_("Target does not support this command."));
13065 if (strcmp (rs->buf, "OK") != 0)
13066 error (_("Error on target while downloading trace state variable."));
13067 }
13068
13069 void
13070 remote_target::enable_tracepoint (struct bp_location *location)
13071 {
13072 struct remote_state *rs = get_remote_state ();
13073 char addr_buf[40];
13074
13075 sprintf_vma (addr_buf, location->address);
13076 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
13077 location->owner->number, addr_buf);
13078 putpkt (rs->buf);
13079 remote_get_noisy_reply ();
13080 if (*rs->buf == '\0')
13081 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13082 if (strcmp (rs->buf, "OK") != 0)
13083 error (_("Error on target while enabling tracepoint."));
13084 }
13085
13086 void
13087 remote_target::disable_tracepoint (struct bp_location *location)
13088 {
13089 struct remote_state *rs = get_remote_state ();
13090 char addr_buf[40];
13091
13092 sprintf_vma (addr_buf, location->address);
13093 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
13094 location->owner->number, addr_buf);
13095 putpkt (rs->buf);
13096 remote_get_noisy_reply ();
13097 if (*rs->buf == '\0')
13098 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13099 if (strcmp (rs->buf, "OK") != 0)
13100 error (_("Error on target while disabling tracepoint."));
13101 }
13102
13103 void
13104 remote_target::trace_set_readonly_regions ()
13105 {
13106 asection *s;
13107 bfd *abfd = NULL;
13108 bfd_size_type size;
13109 bfd_vma vma;
13110 int anysecs = 0;
13111 int offset = 0;
13112
13113 if (!exec_bfd)
13114 return; /* No information to give. */
13115
13116 struct remote_state *rs = get_remote_state ();
13117
13118 strcpy (rs->buf, "QTro");
13119 offset = strlen (rs->buf);
13120 for (s = exec_bfd->sections; s; s = s->next)
13121 {
13122 char tmp1[40], tmp2[40];
13123 int sec_length;
13124
13125 if ((s->flags & SEC_LOAD) == 0 ||
13126 /* (s->flags & SEC_CODE) == 0 || */
13127 (s->flags & SEC_READONLY) == 0)
13128 continue;
13129
13130 anysecs = 1;
13131 vma = bfd_get_section_vma (abfd, s);
13132 size = bfd_get_section_size (s);
13133 sprintf_vma (tmp1, vma);
13134 sprintf_vma (tmp2, vma + size);
13135 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13136 if (offset + sec_length + 1 > rs->buf_size)
13137 {
13138 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13139 warning (_("\
13140 Too many sections for read-only sections definition packet."));
13141 break;
13142 }
13143 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
13144 tmp1, tmp2);
13145 offset += sec_length;
13146 }
13147 if (anysecs)
13148 {
13149 putpkt (rs->buf);
13150 getpkt (&rs->buf, &rs->buf_size, 0);
13151 }
13152 }
13153
13154 void
13155 remote_target::trace_start ()
13156 {
13157 struct remote_state *rs = get_remote_state ();
13158
13159 putpkt ("QTStart");
13160 remote_get_noisy_reply ();
13161 if (*rs->buf == '\0')
13162 error (_("Target does not support this command."));
13163 if (strcmp (rs->buf, "OK") != 0)
13164 error (_("Bogus reply from target: %s"), rs->buf);
13165 }
13166
13167 int
13168 remote_target::get_trace_status (struct trace_status *ts)
13169 {
13170 /* Initialize it just to avoid a GCC false warning. */
13171 char *p = NULL;
13172 /* FIXME we need to get register block size some other way. */
13173 extern int trace_regblock_size;
13174 enum packet_result result;
13175 struct remote_state *rs = get_remote_state ();
13176
13177 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13178 return -1;
13179
13180 trace_regblock_size
13181 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13182
13183 putpkt ("qTStatus");
13184
13185 TRY
13186 {
13187 p = remote_get_noisy_reply ();
13188 }
13189 CATCH (ex, RETURN_MASK_ERROR)
13190 {
13191 if (ex.error != TARGET_CLOSE_ERROR)
13192 {
13193 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13194 return -1;
13195 }
13196 throw_exception (ex);
13197 }
13198 END_CATCH
13199
13200 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13201
13202 /* If the remote target doesn't do tracing, flag it. */
13203 if (result == PACKET_UNKNOWN)
13204 return -1;
13205
13206 /* We're working with a live target. */
13207 ts->filename = NULL;
13208
13209 if (*p++ != 'T')
13210 error (_("Bogus trace status reply from target: %s"), rs->buf);
13211
13212 /* Function 'parse_trace_status' sets default value of each field of
13213 'ts' at first, so we don't have to do it here. */
13214 parse_trace_status (p, ts);
13215
13216 return ts->running;
13217 }
13218
13219 void
13220 remote_target::get_tracepoint_status (struct breakpoint *bp,
13221 struct uploaded_tp *utp)
13222 {
13223 struct remote_state *rs = get_remote_state ();
13224 char *reply;
13225 struct bp_location *loc;
13226 struct tracepoint *tp = (struct tracepoint *) bp;
13227 size_t size = get_remote_packet_size ();
13228
13229 if (tp)
13230 {
13231 tp->hit_count = 0;
13232 tp->traceframe_usage = 0;
13233 for (loc = tp->loc; loc; loc = loc->next)
13234 {
13235 /* If the tracepoint was never downloaded, don't go asking for
13236 any status. */
13237 if (tp->number_on_target == 0)
13238 continue;
13239 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
13240 phex_nz (loc->address, 0));
13241 putpkt (rs->buf);
13242 reply = remote_get_noisy_reply ();
13243 if (reply && *reply)
13244 {
13245 if (*reply == 'V')
13246 parse_tracepoint_status (reply + 1, bp, utp);
13247 }
13248 }
13249 }
13250 else if (utp)
13251 {
13252 utp->hit_count = 0;
13253 utp->traceframe_usage = 0;
13254 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
13255 phex_nz (utp->addr, 0));
13256 putpkt (rs->buf);
13257 reply = remote_get_noisy_reply ();
13258 if (reply && *reply)
13259 {
13260 if (*reply == 'V')
13261 parse_tracepoint_status (reply + 1, bp, utp);
13262 }
13263 }
13264 }
13265
13266 void
13267 remote_target::trace_stop ()
13268 {
13269 struct remote_state *rs = get_remote_state ();
13270
13271 putpkt ("QTStop");
13272 remote_get_noisy_reply ();
13273 if (*rs->buf == '\0')
13274 error (_("Target does not support this command."));
13275 if (strcmp (rs->buf, "OK") != 0)
13276 error (_("Bogus reply from target: %s"), rs->buf);
13277 }
13278
13279 int
13280 remote_target::trace_find (enum trace_find_type type, int num,
13281 CORE_ADDR addr1, CORE_ADDR addr2,
13282 int *tpp)
13283 {
13284 struct remote_state *rs = get_remote_state ();
13285 char *endbuf = rs->buf + get_remote_packet_size ();
13286 char *p, *reply;
13287 int target_frameno = -1, target_tracept = -1;
13288
13289 /* Lookups other than by absolute frame number depend on the current
13290 trace selected, so make sure it is correct on the remote end
13291 first. */
13292 if (type != tfind_number)
13293 set_remote_traceframe ();
13294
13295 p = rs->buf;
13296 strcpy (p, "QTFrame:");
13297 p = strchr (p, '\0');
13298 switch (type)
13299 {
13300 case tfind_number:
13301 xsnprintf (p, endbuf - p, "%x", num);
13302 break;
13303 case tfind_pc:
13304 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13305 break;
13306 case tfind_tp:
13307 xsnprintf (p, endbuf - p, "tdp:%x", num);
13308 break;
13309 case tfind_range:
13310 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13311 phex_nz (addr2, 0));
13312 break;
13313 case tfind_outside:
13314 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13315 phex_nz (addr2, 0));
13316 break;
13317 default:
13318 error (_("Unknown trace find type %d"), type);
13319 }
13320
13321 putpkt (rs->buf);
13322 reply = remote_get_noisy_reply ();
13323 if (*reply == '\0')
13324 error (_("Target does not support this command."));
13325
13326 while (reply && *reply)
13327 switch (*reply)
13328 {
13329 case 'F':
13330 p = ++reply;
13331 target_frameno = (int) strtol (p, &reply, 16);
13332 if (reply == p)
13333 error (_("Unable to parse trace frame number"));
13334 /* Don't update our remote traceframe number cache on failure
13335 to select a remote traceframe. */
13336 if (target_frameno == -1)
13337 return -1;
13338 break;
13339 case 'T':
13340 p = ++reply;
13341 target_tracept = (int) strtol (p, &reply, 16);
13342 if (reply == p)
13343 error (_("Unable to parse tracepoint number"));
13344 break;
13345 case 'O': /* "OK"? */
13346 if (reply[1] == 'K' && reply[2] == '\0')
13347 reply += 2;
13348 else
13349 error (_("Bogus reply from target: %s"), reply);
13350 break;
13351 default:
13352 error (_("Bogus reply from target: %s"), reply);
13353 }
13354 if (tpp)
13355 *tpp = target_tracept;
13356
13357 rs->remote_traceframe_number = target_frameno;
13358 return target_frameno;
13359 }
13360
13361 bool
13362 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13363 {
13364 struct remote_state *rs = get_remote_state ();
13365 char *reply;
13366 ULONGEST uval;
13367
13368 set_remote_traceframe ();
13369
13370 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
13371 putpkt (rs->buf);
13372 reply = remote_get_noisy_reply ();
13373 if (reply && *reply)
13374 {
13375 if (*reply == 'V')
13376 {
13377 unpack_varlen_hex (reply + 1, &uval);
13378 *val = (LONGEST) uval;
13379 return true;
13380 }
13381 }
13382 return false;
13383 }
13384
13385 int
13386 remote_target::save_trace_data (const char *filename)
13387 {
13388 struct remote_state *rs = get_remote_state ();
13389 char *p, *reply;
13390
13391 p = rs->buf;
13392 strcpy (p, "QTSave:");
13393 p += strlen (p);
13394 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
13395 error (_("Remote file name too long for trace save packet"));
13396 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13397 *p++ = '\0';
13398 putpkt (rs->buf);
13399 reply = remote_get_noisy_reply ();
13400 if (*reply == '\0')
13401 error (_("Target does not support this command."));
13402 if (strcmp (reply, "OK") != 0)
13403 error (_("Bogus reply from target: %s"), reply);
13404 return 0;
13405 }
13406
13407 /* This is basically a memory transfer, but needs to be its own packet
13408 because we don't know how the target actually organizes its trace
13409 memory, plus we want to be able to ask for as much as possible, but
13410 not be unhappy if we don't get as much as we ask for. */
13411
13412 LONGEST
13413 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13414 {
13415 struct remote_state *rs = get_remote_state ();
13416 char *reply;
13417 char *p;
13418 int rslt;
13419
13420 p = rs->buf;
13421 strcpy (p, "qTBuffer:");
13422 p += strlen (p);
13423 p += hexnumstr (p, offset);
13424 *p++ = ',';
13425 p += hexnumstr (p, len);
13426 *p++ = '\0';
13427
13428 putpkt (rs->buf);
13429 reply = remote_get_noisy_reply ();
13430 if (reply && *reply)
13431 {
13432 /* 'l' by itself means we're at the end of the buffer and
13433 there is nothing more to get. */
13434 if (*reply == 'l')
13435 return 0;
13436
13437 /* Convert the reply into binary. Limit the number of bytes to
13438 convert according to our passed-in buffer size, rather than
13439 what was returned in the packet; if the target is
13440 unexpectedly generous and gives us a bigger reply than we
13441 asked for, we don't want to crash. */
13442 rslt = hex2bin (reply, buf, len);
13443 return rslt;
13444 }
13445
13446 /* Something went wrong, flag as an error. */
13447 return -1;
13448 }
13449
13450 void
13451 remote_target::set_disconnected_tracing (int val)
13452 {
13453 struct remote_state *rs = get_remote_state ();
13454
13455 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13456 {
13457 char *reply;
13458
13459 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
13460 putpkt (rs->buf);
13461 reply = remote_get_noisy_reply ();
13462 if (*reply == '\0')
13463 error (_("Target does not support this command."));
13464 if (strcmp (reply, "OK") != 0)
13465 error (_("Bogus reply from target: %s"), reply);
13466 }
13467 else if (val)
13468 warning (_("Target does not support disconnected tracing."));
13469 }
13470
13471 int
13472 remote_target::core_of_thread (ptid_t ptid)
13473 {
13474 struct thread_info *info = find_thread_ptid (ptid);
13475
13476 if (info != NULL && info->priv != NULL)
13477 return get_remote_thread_info (info)->core;
13478
13479 return -1;
13480 }
13481
13482 void
13483 remote_target::set_circular_trace_buffer (int val)
13484 {
13485 struct remote_state *rs = get_remote_state ();
13486 char *reply;
13487
13488 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
13489 putpkt (rs->buf);
13490 reply = remote_get_noisy_reply ();
13491 if (*reply == '\0')
13492 error (_("Target does not support this command."));
13493 if (strcmp (reply, "OK") != 0)
13494 error (_("Bogus reply from target: %s"), reply);
13495 }
13496
13497 traceframe_info_up
13498 remote_target::traceframe_info ()
13499 {
13500 gdb::optional<gdb::char_vector> text
13501 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
13502 NULL);
13503 if (text)
13504 return parse_traceframe_info (text->data ());
13505
13506 return NULL;
13507 }
13508
13509 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13510 instruction on which a fast tracepoint may be placed. Returns -1
13511 if the packet is not supported, and 0 if the minimum instruction
13512 length is unknown. */
13513
13514 int
13515 remote_target::get_min_fast_tracepoint_insn_len ()
13516 {
13517 struct remote_state *rs = get_remote_state ();
13518 char *reply;
13519
13520 /* If we're not debugging a process yet, the IPA can't be
13521 loaded. */
13522 if (!target_has_execution)
13523 return 0;
13524
13525 /* Make sure the remote is pointing at the right process. */
13526 set_general_process ();
13527
13528 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
13529 putpkt (rs->buf);
13530 reply = remote_get_noisy_reply ();
13531 if (*reply == '\0')
13532 return -1;
13533 else
13534 {
13535 ULONGEST min_insn_len;
13536
13537 unpack_varlen_hex (reply, &min_insn_len);
13538
13539 return (int) min_insn_len;
13540 }
13541 }
13542
13543 void
13544 remote_target::set_trace_buffer_size (LONGEST val)
13545 {
13546 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13547 {
13548 struct remote_state *rs = get_remote_state ();
13549 char *buf = rs->buf;
13550 char *endbuf = rs->buf + get_remote_packet_size ();
13551 enum packet_result result;
13552
13553 gdb_assert (val >= 0 || val == -1);
13554 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13555 /* Send -1 as literal "-1" to avoid host size dependency. */
13556 if (val < 0)
13557 {
13558 *buf++ = '-';
13559 buf += hexnumstr (buf, (ULONGEST) -val);
13560 }
13561 else
13562 buf += hexnumstr (buf, (ULONGEST) val);
13563
13564 putpkt (rs->buf);
13565 remote_get_noisy_reply ();
13566 result = packet_ok (rs->buf,
13567 &remote_protocol_packets[PACKET_QTBuffer_size]);
13568
13569 if (result != PACKET_OK)
13570 warning (_("Bogus reply from target: %s"), rs->buf);
13571 }
13572 }
13573
13574 bool
13575 remote_target::set_trace_notes (const char *user, const char *notes,
13576 const char *stop_notes)
13577 {
13578 struct remote_state *rs = get_remote_state ();
13579 char *reply;
13580 char *buf = rs->buf;
13581 char *endbuf = rs->buf + get_remote_packet_size ();
13582 int nbytes;
13583
13584 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13585 if (user)
13586 {
13587 buf += xsnprintf (buf, endbuf - buf, "user:");
13588 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13589 buf += 2 * nbytes;
13590 *buf++ = ';';
13591 }
13592 if (notes)
13593 {
13594 buf += xsnprintf (buf, endbuf - buf, "notes:");
13595 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13596 buf += 2 * nbytes;
13597 *buf++ = ';';
13598 }
13599 if (stop_notes)
13600 {
13601 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13602 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13603 buf += 2 * nbytes;
13604 *buf++ = ';';
13605 }
13606 /* Ensure the buffer is terminated. */
13607 *buf = '\0';
13608
13609 putpkt (rs->buf);
13610 reply = remote_get_noisy_reply ();
13611 if (*reply == '\0')
13612 return false;
13613
13614 if (strcmp (reply, "OK") != 0)
13615 error (_("Bogus reply from target: %s"), reply);
13616
13617 return true;
13618 }
13619
13620 bool
13621 remote_target::use_agent (bool use)
13622 {
13623 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13624 {
13625 struct remote_state *rs = get_remote_state ();
13626
13627 /* If the stub supports QAgent. */
13628 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
13629 putpkt (rs->buf);
13630 getpkt (&rs->buf, &rs->buf_size, 0);
13631
13632 if (strcmp (rs->buf, "OK") == 0)
13633 {
13634 ::use_agent = use;
13635 return true;
13636 }
13637 }
13638
13639 return false;
13640 }
13641
13642 bool
13643 remote_target::can_use_agent ()
13644 {
13645 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13646 }
13647
13648 struct btrace_target_info
13649 {
13650 /* The ptid of the traced thread. */
13651 ptid_t ptid;
13652
13653 /* The obtained branch trace configuration. */
13654 struct btrace_config conf;
13655 };
13656
13657 /* Reset our idea of our target's btrace configuration. */
13658
13659 static void
13660 remote_btrace_reset (remote_state *rs)
13661 {
13662 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13663 }
13664
13665 /* Synchronize the configuration with the target. */
13666
13667 void
13668 remote_target::btrace_sync_conf (const btrace_config *conf)
13669 {
13670 struct packet_config *packet;
13671 struct remote_state *rs;
13672 char *buf, *pos, *endbuf;
13673
13674 rs = get_remote_state ();
13675 buf = rs->buf;
13676 endbuf = buf + get_remote_packet_size ();
13677
13678 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13679 if (packet_config_support (packet) == PACKET_ENABLE
13680 && conf->bts.size != rs->btrace_config.bts.size)
13681 {
13682 pos = buf;
13683 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13684 conf->bts.size);
13685
13686 putpkt (buf);
13687 getpkt (&buf, &rs->buf_size, 0);
13688
13689 if (packet_ok (buf, packet) == PACKET_ERROR)
13690 {
13691 if (buf[0] == 'E' && buf[1] == '.')
13692 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13693 else
13694 error (_("Failed to configure the BTS buffer size."));
13695 }
13696
13697 rs->btrace_config.bts.size = conf->bts.size;
13698 }
13699
13700 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13701 if (packet_config_support (packet) == PACKET_ENABLE
13702 && conf->pt.size != rs->btrace_config.pt.size)
13703 {
13704 pos = buf;
13705 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13706 conf->pt.size);
13707
13708 putpkt (buf);
13709 getpkt (&buf, &rs->buf_size, 0);
13710
13711 if (packet_ok (buf, packet) == PACKET_ERROR)
13712 {
13713 if (buf[0] == 'E' && buf[1] == '.')
13714 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13715 else
13716 error (_("Failed to configure the trace buffer size."));
13717 }
13718
13719 rs->btrace_config.pt.size = conf->pt.size;
13720 }
13721 }
13722
13723 /* Read the current thread's btrace configuration from the target and
13724 store it into CONF. */
13725
13726 static void
13727 btrace_read_config (struct btrace_config *conf)
13728 {
13729 gdb::optional<gdb::char_vector> xml
13730 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
13731 if (xml)
13732 parse_xml_btrace_conf (conf, xml->data ());
13733 }
13734
13735 /* Maybe reopen target btrace. */
13736
13737 void
13738 remote_target::remote_btrace_maybe_reopen ()
13739 {
13740 struct remote_state *rs = get_remote_state ();
13741 int btrace_target_pushed = 0;
13742 #if !defined (HAVE_LIBIPT)
13743 int warned = 0;
13744 #endif
13745
13746 scoped_restore_current_thread restore_thread;
13747
13748 for (thread_info *tp : all_non_exited_threads ())
13749 {
13750 set_general_thread (tp->ptid);
13751
13752 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13753 btrace_read_config (&rs->btrace_config);
13754
13755 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13756 continue;
13757
13758 #if !defined (HAVE_LIBIPT)
13759 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13760 {
13761 if (!warned)
13762 {
13763 warned = 1;
13764 warning (_("Target is recording using Intel Processor Trace "
13765 "but support was disabled at compile time."));
13766 }
13767
13768 continue;
13769 }
13770 #endif /* !defined (HAVE_LIBIPT) */
13771
13772 /* Push target, once, but before anything else happens. This way our
13773 changes to the threads will be cleaned up by unpushing the target
13774 in case btrace_read_config () throws. */
13775 if (!btrace_target_pushed)
13776 {
13777 btrace_target_pushed = 1;
13778 record_btrace_push_target ();
13779 printf_filtered (_("Target is recording using %s.\n"),
13780 btrace_format_string (rs->btrace_config.format));
13781 }
13782
13783 tp->btrace.target = XCNEW (struct btrace_target_info);
13784 tp->btrace.target->ptid = tp->ptid;
13785 tp->btrace.target->conf = rs->btrace_config;
13786 }
13787 }
13788
13789 /* Enable branch tracing. */
13790
13791 struct btrace_target_info *
13792 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
13793 {
13794 struct btrace_target_info *tinfo = NULL;
13795 struct packet_config *packet = NULL;
13796 struct remote_state *rs = get_remote_state ();
13797 char *buf = rs->buf;
13798 char *endbuf = rs->buf + get_remote_packet_size ();
13799
13800 switch (conf->format)
13801 {
13802 case BTRACE_FORMAT_BTS:
13803 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13804 break;
13805
13806 case BTRACE_FORMAT_PT:
13807 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13808 break;
13809 }
13810
13811 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
13812 error (_("Target does not support branch tracing."));
13813
13814 btrace_sync_conf (conf);
13815
13816 set_general_thread (ptid);
13817
13818 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13819 putpkt (rs->buf);
13820 getpkt (&rs->buf, &rs->buf_size, 0);
13821
13822 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13823 {
13824 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13825 error (_("Could not enable branch tracing for %s: %s"),
13826 target_pid_to_str (ptid), rs->buf + 2);
13827 else
13828 error (_("Could not enable branch tracing for %s."),
13829 target_pid_to_str (ptid));
13830 }
13831
13832 tinfo = XCNEW (struct btrace_target_info);
13833 tinfo->ptid = ptid;
13834
13835 /* If we fail to read the configuration, we lose some information, but the
13836 tracing itself is not impacted. */
13837 TRY
13838 {
13839 btrace_read_config (&tinfo->conf);
13840 }
13841 CATCH (err, RETURN_MASK_ERROR)
13842 {
13843 if (err.message != NULL)
13844 warning ("%s", err.message);
13845 }
13846 END_CATCH
13847
13848 return tinfo;
13849 }
13850
13851 /* Disable branch tracing. */
13852
13853 void
13854 remote_target::disable_btrace (struct btrace_target_info *tinfo)
13855 {
13856 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13857 struct remote_state *rs = get_remote_state ();
13858 char *buf = rs->buf;
13859 char *endbuf = rs->buf + get_remote_packet_size ();
13860
13861 if (packet_config_support (packet) != PACKET_ENABLE)
13862 error (_("Target does not support branch tracing."));
13863
13864 set_general_thread (tinfo->ptid);
13865
13866 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13867 putpkt (rs->buf);
13868 getpkt (&rs->buf, &rs->buf_size, 0);
13869
13870 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13871 {
13872 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13873 error (_("Could not disable branch tracing for %s: %s"),
13874 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13875 else
13876 error (_("Could not disable branch tracing for %s."),
13877 target_pid_to_str (tinfo->ptid));
13878 }
13879
13880 xfree (tinfo);
13881 }
13882
13883 /* Teardown branch tracing. */
13884
13885 void
13886 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
13887 {
13888 /* We must not talk to the target during teardown. */
13889 xfree (tinfo);
13890 }
13891
13892 /* Read the branch trace. */
13893
13894 enum btrace_error
13895 remote_target::read_btrace (struct btrace_data *btrace,
13896 struct btrace_target_info *tinfo,
13897 enum btrace_read_type type)
13898 {
13899 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
13900 const char *annex;
13901
13902 if (packet_config_support (packet) != PACKET_ENABLE)
13903 error (_("Target does not support branch tracing."));
13904
13905 #if !defined(HAVE_LIBEXPAT)
13906 error (_("Cannot process branch tracing result. XML parsing not supported."));
13907 #endif
13908
13909 switch (type)
13910 {
13911 case BTRACE_READ_ALL:
13912 annex = "all";
13913 break;
13914 case BTRACE_READ_NEW:
13915 annex = "new";
13916 break;
13917 case BTRACE_READ_DELTA:
13918 annex = "delta";
13919 break;
13920 default:
13921 internal_error (__FILE__, __LINE__,
13922 _("Bad branch tracing read type: %u."),
13923 (unsigned int) type);
13924 }
13925
13926 gdb::optional<gdb::char_vector> xml
13927 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
13928 if (!xml)
13929 return BTRACE_ERR_UNKNOWN;
13930
13931 parse_xml_btrace (btrace, xml->data ());
13932
13933 return BTRACE_ERR_NONE;
13934 }
13935
13936 const struct btrace_config *
13937 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
13938 {
13939 return &tinfo->conf;
13940 }
13941
13942 bool
13943 remote_target::augmented_libraries_svr4_read ()
13944 {
13945 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13946 == PACKET_ENABLE);
13947 }
13948
13949 /* Implementation of to_load. */
13950
13951 void
13952 remote_target::load (const char *name, int from_tty)
13953 {
13954 generic_load (name, from_tty);
13955 }
13956
13957 /* Accepts an integer PID; returns a string representing a file that
13958 can be opened on the remote side to get the symbols for the child
13959 process. Returns NULL if the operation is not supported. */
13960
13961 char *
13962 remote_target::pid_to_exec_file (int pid)
13963 {
13964 static gdb::optional<gdb::char_vector> filename;
13965 struct inferior *inf;
13966 char *annex = NULL;
13967
13968 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13969 return NULL;
13970
13971 inf = find_inferior_pid (pid);
13972 if (inf == NULL)
13973 internal_error (__FILE__, __LINE__,
13974 _("not currently attached to process %d"), pid);
13975
13976 if (!inf->fake_pid_p)
13977 {
13978 const int annex_size = 9;
13979
13980 annex = (char *) alloca (annex_size);
13981 xsnprintf (annex, annex_size, "%x", pid);
13982 }
13983
13984 filename = target_read_stralloc (current_top_target (),
13985 TARGET_OBJECT_EXEC_FILE, annex);
13986
13987 return filename ? filename->data () : nullptr;
13988 }
13989
13990 /* Implement the to_can_do_single_step target_ops method. */
13991
13992 int
13993 remote_target::can_do_single_step ()
13994 {
13995 /* We can only tell whether target supports single step or not by
13996 supported s and S vCont actions if the stub supports vContSupported
13997 feature. If the stub doesn't support vContSupported feature,
13998 we have conservatively to think target doesn't supports single
13999 step. */
14000 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14001 {
14002 struct remote_state *rs = get_remote_state ();
14003
14004 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14005 remote_vcont_probe ();
14006
14007 return rs->supports_vCont.s && rs->supports_vCont.S;
14008 }
14009 else
14010 return 0;
14011 }
14012
14013 /* Implementation of the to_execution_direction method for the remote
14014 target. */
14015
14016 enum exec_direction_kind
14017 remote_target::execution_direction ()
14018 {
14019 struct remote_state *rs = get_remote_state ();
14020
14021 return rs->last_resume_exec_dir;
14022 }
14023
14024 /* Return pointer to the thread_info struct which corresponds to
14025 THREAD_HANDLE (having length HANDLE_LEN). */
14026
14027 thread_info *
14028 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14029 int handle_len,
14030 inferior *inf)
14031 {
14032 for (thread_info *tp : all_non_exited_threads ())
14033 {
14034 remote_thread_info *priv = get_remote_thread_info (tp);
14035
14036 if (tp->inf == inf && priv != NULL)
14037 {
14038 if (handle_len != priv->thread_handle.size ())
14039 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14040 handle_len, priv->thread_handle.size ());
14041 if (memcmp (thread_handle, priv->thread_handle.data (),
14042 handle_len) == 0)
14043 return tp;
14044 }
14045 }
14046
14047 return NULL;
14048 }
14049
14050 bool
14051 remote_target::can_async_p ()
14052 {
14053 struct remote_state *rs = get_remote_state ();
14054
14055 /* We don't go async if the user has explicitly prevented it with the
14056 "maint set target-async" command. */
14057 if (!target_async_permitted)
14058 return false;
14059
14060 /* We're async whenever the serial device is. */
14061 return serial_can_async_p (rs->remote_desc);
14062 }
14063
14064 bool
14065 remote_target::is_async_p ()
14066 {
14067 struct remote_state *rs = get_remote_state ();
14068
14069 if (!target_async_permitted)
14070 /* We only enable async when the user specifically asks for it. */
14071 return false;
14072
14073 /* We're async whenever the serial device is. */
14074 return serial_is_async_p (rs->remote_desc);
14075 }
14076
14077 /* Pass the SERIAL event on and up to the client. One day this code
14078 will be able to delay notifying the client of an event until the
14079 point where an entire packet has been received. */
14080
14081 static serial_event_ftype remote_async_serial_handler;
14082
14083 static void
14084 remote_async_serial_handler (struct serial *scb, void *context)
14085 {
14086 /* Don't propogate error information up to the client. Instead let
14087 the client find out about the error by querying the target. */
14088 inferior_event_handler (INF_REG_EVENT, NULL);
14089 }
14090
14091 static void
14092 remote_async_inferior_event_handler (gdb_client_data data)
14093 {
14094 inferior_event_handler (INF_REG_EVENT, data);
14095 }
14096
14097 void
14098 remote_target::async (int enable)
14099 {
14100 struct remote_state *rs = get_remote_state ();
14101
14102 if (enable)
14103 {
14104 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14105
14106 /* If there are pending events in the stop reply queue tell the
14107 event loop to process them. */
14108 if (!rs->stop_reply_queue.empty ())
14109 mark_async_event_handler (rs->remote_async_inferior_event_token);
14110 /* For simplicity, below we clear the pending events token
14111 without remembering whether it is marked, so here we always
14112 mark it. If there's actually no pending notification to
14113 process, this ends up being a no-op (other than a spurious
14114 event-loop wakeup). */
14115 if (target_is_non_stop_p ())
14116 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14117 }
14118 else
14119 {
14120 serial_async (rs->remote_desc, NULL, NULL);
14121 /* If the core is disabling async, it doesn't want to be
14122 disturbed with target events. Clear all async event sources
14123 too. */
14124 clear_async_event_handler (rs->remote_async_inferior_event_token);
14125 if (target_is_non_stop_p ())
14126 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14127 }
14128 }
14129
14130 /* Implementation of the to_thread_events method. */
14131
14132 void
14133 remote_target::thread_events (int enable)
14134 {
14135 struct remote_state *rs = get_remote_state ();
14136 size_t size = get_remote_packet_size ();
14137
14138 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14139 return;
14140
14141 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
14142 putpkt (rs->buf);
14143 getpkt (&rs->buf, &rs->buf_size, 0);
14144
14145 switch (packet_ok (rs->buf,
14146 &remote_protocol_packets[PACKET_QThreadEvents]))
14147 {
14148 case PACKET_OK:
14149 if (strcmp (rs->buf, "OK") != 0)
14150 error (_("Remote refused setting thread events: %s"), rs->buf);
14151 break;
14152 case PACKET_ERROR:
14153 warning (_("Remote failure reply: %s"), rs->buf);
14154 break;
14155 case PACKET_UNKNOWN:
14156 break;
14157 }
14158 }
14159
14160 static void
14161 set_remote_cmd (const char *args, int from_tty)
14162 {
14163 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
14164 }
14165
14166 static void
14167 show_remote_cmd (const char *args, int from_tty)
14168 {
14169 /* We can't just use cmd_show_list here, because we want to skip
14170 the redundant "show remote Z-packet" and the legacy aliases. */
14171 struct cmd_list_element *list = remote_show_cmdlist;
14172 struct ui_out *uiout = current_uiout;
14173
14174 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14175 for (; list != NULL; list = list->next)
14176 if (strcmp (list->name, "Z-packet") == 0)
14177 continue;
14178 else if (list->type == not_set_cmd)
14179 /* Alias commands are exactly like the original, except they
14180 don't have the normal type. */
14181 continue;
14182 else
14183 {
14184 ui_out_emit_tuple option_emitter (uiout, "option");
14185
14186 uiout->field_string ("name", list->name);
14187 uiout->text (": ");
14188 if (list->type == show_cmd)
14189 do_show_command (NULL, from_tty, list);
14190 else
14191 cmd_func (list, NULL, from_tty);
14192 }
14193 }
14194
14195
14196 /* Function to be called whenever a new objfile (shlib) is detected. */
14197 static void
14198 remote_new_objfile (struct objfile *objfile)
14199 {
14200 remote_target *remote = get_current_remote_target ();
14201
14202 if (remote != NULL) /* Have a remote connection. */
14203 remote->remote_check_symbols ();
14204 }
14205
14206 /* Pull all the tracepoints defined on the target and create local
14207 data structures representing them. We don't want to create real
14208 tracepoints yet, we don't want to mess up the user's existing
14209 collection. */
14210
14211 int
14212 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14213 {
14214 struct remote_state *rs = get_remote_state ();
14215 char *p;
14216
14217 /* Ask for a first packet of tracepoint definition. */
14218 putpkt ("qTfP");
14219 getpkt (&rs->buf, &rs->buf_size, 0);
14220 p = rs->buf;
14221 while (*p && *p != 'l')
14222 {
14223 parse_tracepoint_definition (p, utpp);
14224 /* Ask for another packet of tracepoint definition. */
14225 putpkt ("qTsP");
14226 getpkt (&rs->buf, &rs->buf_size, 0);
14227 p = rs->buf;
14228 }
14229 return 0;
14230 }
14231
14232 int
14233 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14234 {
14235 struct remote_state *rs = get_remote_state ();
14236 char *p;
14237
14238 /* Ask for a first packet of variable definition. */
14239 putpkt ("qTfV");
14240 getpkt (&rs->buf, &rs->buf_size, 0);
14241 p = rs->buf;
14242 while (*p && *p != 'l')
14243 {
14244 parse_tsv_definition (p, utsvp);
14245 /* Ask for another packet of variable definition. */
14246 putpkt ("qTsV");
14247 getpkt (&rs->buf, &rs->buf_size, 0);
14248 p = rs->buf;
14249 }
14250 return 0;
14251 }
14252
14253 /* The "set/show range-stepping" show hook. */
14254
14255 static void
14256 show_range_stepping (struct ui_file *file, int from_tty,
14257 struct cmd_list_element *c,
14258 const char *value)
14259 {
14260 fprintf_filtered (file,
14261 _("Debugger's willingness to use range stepping "
14262 "is %s.\n"), value);
14263 }
14264
14265 /* Return true if the vCont;r action is supported by the remote
14266 stub. */
14267
14268 bool
14269 remote_target::vcont_r_supported ()
14270 {
14271 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14272 remote_vcont_probe ();
14273
14274 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14275 && get_remote_state ()->supports_vCont.r);
14276 }
14277
14278 /* The "set/show range-stepping" set hook. */
14279
14280 static void
14281 set_range_stepping (const char *ignore_args, int from_tty,
14282 struct cmd_list_element *c)
14283 {
14284 /* When enabling, check whether range stepping is actually supported
14285 by the target, and warn if not. */
14286 if (use_range_stepping)
14287 {
14288 remote_target *remote = get_current_remote_target ();
14289 if (remote == NULL
14290 || !remote->vcont_r_supported ())
14291 warning (_("Range stepping is not supported by the current target"));
14292 }
14293 }
14294
14295 void
14296 _initialize_remote (void)
14297 {
14298 struct cmd_list_element *cmd;
14299 const char *cmd_name;
14300
14301 /* architecture specific data */
14302 remote_g_packet_data_handle =
14303 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14304
14305 remote_pspace_data
14306 = register_program_space_data_with_cleanup (NULL,
14307 remote_pspace_data_cleanup);
14308
14309 add_target (remote_target_info, remote_target::open);
14310 add_target (extended_remote_target_info, extended_remote_target::open);
14311
14312 /* Hook into new objfile notification. */
14313 gdb::observers::new_objfile.attach (remote_new_objfile);
14314
14315 #if 0
14316 init_remote_threadtests ();
14317 #endif
14318
14319 /* set/show remote ... */
14320
14321 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
14322 Remote protocol specific variables\n\
14323 Configure various remote-protocol specific variables such as\n\
14324 the packets being used"),
14325 &remote_set_cmdlist, "set remote ",
14326 0 /* allow-unknown */, &setlist);
14327 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14328 Remote protocol specific variables\n\
14329 Configure various remote-protocol specific variables such as\n\
14330 the packets being used"),
14331 &remote_show_cmdlist, "show remote ",
14332 0 /* allow-unknown */, &showlist);
14333
14334 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14335 Compare section data on target to the exec file.\n\
14336 Argument is a single section name (default: all loaded sections).\n\
14337 To compare only read-only loaded sections, specify the -r option."),
14338 &cmdlist);
14339
14340 add_cmd ("packet", class_maintenance, packet_command, _("\
14341 Send an arbitrary packet to a remote target.\n\
14342 maintenance packet TEXT\n\
14343 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14344 this command sends the string TEXT to the inferior, and displays the\n\
14345 response packet. GDB supplies the initial `$' character, and the\n\
14346 terminating `#' character and checksum."),
14347 &maintenancelist);
14348
14349 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14350 Set whether to send break if interrupted."), _("\
14351 Show whether to send break if interrupted."), _("\
14352 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14353 set_remotebreak, show_remotebreak,
14354 &setlist, &showlist);
14355 cmd_name = "remotebreak";
14356 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14357 deprecate_cmd (cmd, "set remote interrupt-sequence");
14358 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14359 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14360 deprecate_cmd (cmd, "show remote interrupt-sequence");
14361
14362 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14363 interrupt_sequence_modes, &interrupt_sequence_mode,
14364 _("\
14365 Set interrupt sequence to remote target."), _("\
14366 Show interrupt sequence to remote target."), _("\
14367 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14368 NULL, show_interrupt_sequence,
14369 &remote_set_cmdlist,
14370 &remote_show_cmdlist);
14371
14372 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14373 &interrupt_on_connect, _("\
14374 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14375 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14376 If set, interrupt sequence is sent to remote target."),
14377 NULL, NULL,
14378 &remote_set_cmdlist, &remote_show_cmdlist);
14379
14380 /* Install commands for configuring memory read/write packets. */
14381
14382 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14383 Set the maximum number of bytes per memory write packet (deprecated)."),
14384 &setlist);
14385 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14386 Show the maximum number of bytes per memory write packet (deprecated)."),
14387 &showlist);
14388 add_cmd ("memory-write-packet-size", no_class,
14389 set_memory_write_packet_size, _("\
14390 Set the maximum number of bytes per memory-write packet.\n\
14391 Specify the number of bytes in a packet or 0 (zero) for the\n\
14392 default packet size. The actual limit is further reduced\n\
14393 dependent on the target. Specify ``fixed'' to disable the\n\
14394 further restriction and ``limit'' to enable that restriction."),
14395 &remote_set_cmdlist);
14396 add_cmd ("memory-read-packet-size", no_class,
14397 set_memory_read_packet_size, _("\
14398 Set the maximum number of bytes per memory-read packet.\n\
14399 Specify the number of bytes in a packet or 0 (zero) for the\n\
14400 default packet size. The actual limit is further reduced\n\
14401 dependent on the target. Specify ``fixed'' to disable the\n\
14402 further restriction and ``limit'' to enable that restriction."),
14403 &remote_set_cmdlist);
14404 add_cmd ("memory-write-packet-size", no_class,
14405 show_memory_write_packet_size,
14406 _("Show the maximum number of bytes per memory-write packet."),
14407 &remote_show_cmdlist);
14408 add_cmd ("memory-read-packet-size", no_class,
14409 show_memory_read_packet_size,
14410 _("Show the maximum number of bytes per memory-read packet."),
14411 &remote_show_cmdlist);
14412
14413 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14414 &remote_hw_watchpoint_limit, _("\
14415 Set the maximum number of target hardware watchpoints."), _("\
14416 Show the maximum number of target hardware watchpoints."), _("\
14417 Specify \"unlimited\" for unlimited hardware watchpoints."),
14418 NULL, show_hardware_watchpoint_limit,
14419 &remote_set_cmdlist,
14420 &remote_show_cmdlist);
14421 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14422 no_class,
14423 &remote_hw_watchpoint_length_limit, _("\
14424 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14425 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14426 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14427 NULL, show_hardware_watchpoint_length_limit,
14428 &remote_set_cmdlist, &remote_show_cmdlist);
14429 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
14430 &remote_hw_breakpoint_limit, _("\
14431 Set the maximum number of target hardware breakpoints."), _("\
14432 Show the maximum number of target hardware breakpoints."), _("\
14433 Specify \"unlimited\" for unlimited hardware breakpoints."),
14434 NULL, show_hardware_breakpoint_limit,
14435 &remote_set_cmdlist, &remote_show_cmdlist);
14436
14437 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14438 &remote_address_size, _("\
14439 Set the maximum size of the address (in bits) in a memory packet."), _("\
14440 Show the maximum size of the address (in bits) in a memory packet."), NULL,
14441 NULL,
14442 NULL, /* FIXME: i18n: */
14443 &setlist, &showlist);
14444
14445 init_all_packet_configs ();
14446
14447 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
14448 "X", "binary-download", 1);
14449
14450 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
14451 "vCont", "verbose-resume", 0);
14452
14453 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14454 "QPassSignals", "pass-signals", 0);
14455
14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14457 "QCatchSyscalls", "catch-syscalls", 0);
14458
14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14460 "QProgramSignals", "program-signals", 0);
14461
14462 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14463 "QSetWorkingDir", "set-working-dir", 0);
14464
14465 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14466 "QStartupWithShell", "startup-with-shell", 0);
14467
14468 add_packet_config_cmd (&remote_protocol_packets
14469 [PACKET_QEnvironmentHexEncoded],
14470 "QEnvironmentHexEncoded", "environment-hex-encoded",
14471 0);
14472
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14474 "QEnvironmentReset", "environment-reset",
14475 0);
14476
14477 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14478 "QEnvironmentUnset", "environment-unset",
14479 0);
14480
14481 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
14482 "qSymbol", "symbol-lookup", 0);
14483
14484 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
14485 "P", "set-register", 1);
14486
14487 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
14488 "p", "fetch-register", 1);
14489
14490 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
14491 "Z0", "software-breakpoint", 0);
14492
14493 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
14494 "Z1", "hardware-breakpoint", 0);
14495
14496 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
14497 "Z2", "write-watchpoint", 0);
14498
14499 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
14500 "Z3", "read-watchpoint", 0);
14501
14502 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
14503 "Z4", "access-watchpoint", 0);
14504
14505 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14506 "qXfer:auxv:read", "read-aux-vector", 0);
14507
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14509 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14510
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14512 "qXfer:features:read", "target-features", 0);
14513
14514 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14515 "qXfer:libraries:read", "library-info", 0);
14516
14517 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14518 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14519
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14521 "qXfer:memory-map:read", "memory-map", 0);
14522
14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14524 "qXfer:spu:read", "read-spu-object", 0);
14525
14526 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14527 "qXfer:spu:write", "write-spu-object", 0);
14528
14529 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14530 "qXfer:osdata:read", "osdata", 0);
14531
14532 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14533 "qXfer:threads:read", "threads", 0);
14534
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14536 "qXfer:siginfo:read", "read-siginfo-object", 0);
14537
14538 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14539 "qXfer:siginfo:write", "write-siginfo-object", 0);
14540
14541 add_packet_config_cmd
14542 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
14543 "qXfer:traceframe-info:read", "traceframe-info", 0);
14544
14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14546 "qXfer:uib:read", "unwind-info-block", 0);
14547
14548 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
14549 "qGetTLSAddr", "get-thread-local-storage-address",
14550 0);
14551
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14553 "qGetTIBAddr", "get-thread-information-block-address",
14554 0);
14555
14556 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14557 "bc", "reverse-continue", 0);
14558
14559 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14560 "bs", "reverse-step", 0);
14561
14562 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14563 "qSupported", "supported-packets", 0);
14564
14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14566 "qSearch:memory", "search-memory", 0);
14567
14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14569 "qTStatus", "trace-status", 0);
14570
14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14572 "vFile:setfs", "hostio-setfs", 0);
14573
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14575 "vFile:open", "hostio-open", 0);
14576
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14578 "vFile:pread", "hostio-pread", 0);
14579
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14581 "vFile:pwrite", "hostio-pwrite", 0);
14582
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14584 "vFile:close", "hostio-close", 0);
14585
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14587 "vFile:unlink", "hostio-unlink", 0);
14588
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14590 "vFile:readlink", "hostio-readlink", 0);
14591
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14593 "vFile:fstat", "hostio-fstat", 0);
14594
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14596 "vAttach", "attach", 0);
14597
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14599 "vRun", "run", 0);
14600
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14602 "QStartNoAckMode", "noack", 0);
14603
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14605 "vKill", "kill", 0);
14606
14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14608 "qAttached", "query-attached", 0);
14609
14610 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
14611 "ConditionalTracepoints",
14612 "conditional-tracepoints", 0);
14613
14614 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14615 "ConditionalBreakpoints",
14616 "conditional-breakpoints", 0);
14617
14618 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14619 "BreakpointCommands",
14620 "breakpoint-commands", 0);
14621
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14623 "FastTracepoints", "fast-tracepoints", 0);
14624
14625 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14626 "TracepointSource", "TracepointSource", 0);
14627
14628 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14629 "QAllow", "allow", 0);
14630
14631 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14632 "StaticTracepoints", "static-tracepoints", 0);
14633
14634 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14635 "InstallInTrace", "install-in-trace", 0);
14636
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14638 "qXfer:statictrace:read", "read-sdata-object", 0);
14639
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14641 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14642
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14644 "QDisableRandomization", "disable-randomization", 0);
14645
14646 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14647 "QAgent", "agent", 0);
14648
14649 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14650 "QTBuffer:size", "trace-buffer-size", 0);
14651
14652 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14653 "Qbtrace:off", "disable-btrace", 0);
14654
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
14656 "Qbtrace:bts", "enable-btrace-bts", 0);
14657
14658 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14659 "Qbtrace:pt", "enable-btrace-pt", 0);
14660
14661 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14662 "qXfer:btrace", "read-btrace", 0);
14663
14664 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14665 "qXfer:btrace-conf", "read-btrace-conf", 0);
14666
14667 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14668 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14669
14670 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14671 "multiprocess-feature", "multiprocess-feature", 0);
14672
14673 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14674 "swbreak-feature", "swbreak-feature", 0);
14675
14676 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14677 "hwbreak-feature", "hwbreak-feature", 0);
14678
14679 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14680 "fork-event-feature", "fork-event-feature", 0);
14681
14682 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14683 "vfork-event-feature", "vfork-event-feature", 0);
14684
14685 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14686 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14687
14688 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14689 "vContSupported", "verbose-resume-supported", 0);
14690
14691 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14692 "exec-event-feature", "exec-event-feature", 0);
14693
14694 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14695 "vCtrlC", "ctrl-c", 0);
14696
14697 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14698 "QThreadEvents", "thread-events", 0);
14699
14700 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14701 "N stop reply", "no-resumed-stop-reply", 0);
14702
14703 /* Assert that we've registered "set remote foo-packet" commands
14704 for all packet configs. */
14705 {
14706 int i;
14707
14708 for (i = 0; i < PACKET_MAX; i++)
14709 {
14710 /* Ideally all configs would have a command associated. Some
14711 still don't though. */
14712 int excepted;
14713
14714 switch (i)
14715 {
14716 case PACKET_QNonStop:
14717 case PACKET_EnableDisableTracepoints_feature:
14718 case PACKET_tracenz_feature:
14719 case PACKET_DisconnectedTracing_feature:
14720 case PACKET_augmented_libraries_svr4_read_feature:
14721 case PACKET_qCRC:
14722 /* Additions to this list need to be well justified:
14723 pre-existing packets are OK; new packets are not. */
14724 excepted = 1;
14725 break;
14726 default:
14727 excepted = 0;
14728 break;
14729 }
14730
14731 /* This catches both forgetting to add a config command, and
14732 forgetting to remove a packet from the exception list. */
14733 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14734 }
14735 }
14736
14737 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14738 Z sub-packet has its own set and show commands, but users may
14739 have sets to this variable in their .gdbinit files (or in their
14740 documentation). */
14741 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
14742 &remote_Z_packet_detect, _("\
14743 Set use of remote protocol `Z' packets"), _("\
14744 Show use of remote protocol `Z' packets "), _("\
14745 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14746 packets."),
14747 set_remote_protocol_Z_packet_cmd,
14748 show_remote_protocol_Z_packet_cmd,
14749 /* FIXME: i18n: Use of remote protocol
14750 `Z' packets is %s. */
14751 &remote_set_cmdlist, &remote_show_cmdlist);
14752
14753 add_prefix_cmd ("remote", class_files, remote_command, _("\
14754 Manipulate files on the remote system\n\
14755 Transfer files to and from the remote target system."),
14756 &remote_cmdlist, "remote ",
14757 0 /* allow-unknown */, &cmdlist);
14758
14759 add_cmd ("put", class_files, remote_put_command,
14760 _("Copy a local file to the remote system."),
14761 &remote_cmdlist);
14762
14763 add_cmd ("get", class_files, remote_get_command,
14764 _("Copy a remote file to the local system."),
14765 &remote_cmdlist);
14766
14767 add_cmd ("delete", class_files, remote_delete_command,
14768 _("Delete a remote file."),
14769 &remote_cmdlist);
14770
14771 add_setshow_string_noescape_cmd ("exec-file", class_files,
14772 &remote_exec_file_var, _("\
14773 Set the remote pathname for \"run\""), _("\
14774 Show the remote pathname for \"run\""), NULL,
14775 set_remote_exec_file,
14776 show_remote_exec_file,
14777 &remote_set_cmdlist,
14778 &remote_show_cmdlist);
14779
14780 add_setshow_boolean_cmd ("range-stepping", class_run,
14781 &use_range_stepping, _("\
14782 Enable or disable range stepping."), _("\
14783 Show whether target-assisted range stepping is enabled."), _("\
14784 If on, and the target supports it, when stepping a source line, GDB\n\
14785 tells the target to step the corresponding range of addresses itself instead\n\
14786 of issuing multiple single-steps. This speeds up source level\n\
14787 stepping. If off, GDB always issues single-steps, even if range\n\
14788 stepping is supported by the target. The default is on."),
14789 set_range_stepping,
14790 show_range_stepping,
14791 &setlist,
14792 &showlist);
14793
14794 /* Eventually initialize fileio. See fileio.c */
14795 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
14796
14797 /* Take advantage of the fact that the TID field is not used, to tag
14798 special ptids with it set to != 0. */
14799 magic_null_ptid = ptid_t (42000, -1, 1);
14800 not_sent_ptid = ptid_t (42000, -2, 1);
14801 any_thread_ptid = ptid_t (42000, 0, 1);
14802 }
This page took 0.422884 seconds and 4 git commands to generate.