1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2015 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
30 /*#include "terminal.h" */
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
36 #include "remote-notif.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
45 #include "filestuff.h"
50 #include "gdb_sys_time.h"
52 #include "event-loop.h"
53 #include "event-top.h"
59 #include "gdbcore.h" /* for exec_bfd */
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
74 /* Temp hacks for tracepoint encoding migration. */
75 static char *target_buf;
76 static long target_buf_size;
78 /* The size to align memory write packets, when practical. The protocol
79 does not guarantee any alignment, and gdb will generate short
80 writes and unaligned writes, but even as a best-effort attempt this
81 can improve bulk transfers. For instance, if a write is misaligned
82 relative to the target's data bus, the stub may need to make an extra
83 round trip fetching data from the target. This doesn't make a
84 huge difference, but it's easy to do, so we try to be helpful.
86 The alignment chosen is arbitrary; usually data bus width is
87 important here, not the possibly larger cache line size. */
88 enum { REMOTE_ALIGN_WRITES = 16 };
90 /* Prototypes for local functions. */
91 static void async_cleanup_sigint_signal_handler (void *dummy);
92 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
93 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
94 int forever, int *is_notif);
96 static void async_handle_remote_sigint (int);
97 static void async_handle_remote_sigint_twice (int);
99 static void remote_files_info (struct target_ops *ignore);
101 static void remote_prepare_to_store (struct target_ops *self,
102 struct regcache *regcache);
104 static void remote_open_1 (const char *, int, struct target_ops *,
107 static void remote_close (struct target_ops *self);
111 static int remote_vkill (int pid, struct remote_state *rs);
113 static void remote_mourn (struct target_ops *ops);
115 static void extended_remote_restart (void);
117 static void extended_remote_mourn (struct target_ops *);
119 static void remote_send (char **buf, long *sizeof_buf_p);
121 static int readchar (int timeout);
123 static void remote_serial_write (const char *str, int len);
125 static void remote_kill (struct target_ops *ops);
127 static int remote_can_async_p (struct target_ops *);
129 static int remote_is_async_p (struct target_ops *);
131 static void remote_async (struct target_ops *ops, int enable);
133 static void sync_remote_interrupt_twice (int signo);
135 static void interrupt_query (void);
137 static void set_general_thread (struct ptid ptid);
138 static void set_continue_thread (struct ptid ptid);
140 static void get_offsets (void);
142 static void skip_frame (void);
144 static long read_frame (char **buf_p, long *sizeof_buf);
146 static int hexnumlen (ULONGEST num);
148 static void init_remote_ops (void);
150 static void init_extended_remote_ops (void);
152 static void remote_stop (struct target_ops *self, ptid_t);
154 static int stubhex (int ch);
156 static int hexnumstr (char *, ULONGEST);
158 static int hexnumnstr (char *, ULONGEST, int);
160 static CORE_ADDR remote_address_masked (CORE_ADDR);
162 static void print_packet (const char *);
164 static void compare_sections_command (char *, int);
166 static void packet_command (char *, int);
168 static int stub_unpack_int (char *buff, int fieldlength);
170 static ptid_t remote_current_thread (ptid_t oldptid);
172 static int putpkt_binary (const char *buf, int cnt);
174 static void check_binary_download (CORE_ADDR addr);
176 struct packet_config;
178 static void show_packet_config_cmd (struct packet_config *config);
180 static void show_remote_protocol_packet_cmd (struct ui_file *file,
182 struct cmd_list_element *c,
185 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
186 static ptid_t read_ptid (char *buf, char **obuf);
188 static void remote_set_permissions (struct target_ops *self);
190 static int remote_get_trace_status (struct target_ops *self,
191 struct trace_status *ts);
193 static int remote_upload_tracepoints (struct target_ops *self,
194 struct uploaded_tp **utpp);
196 static int remote_upload_trace_state_variables (struct target_ops *self,
197 struct uploaded_tsv **utsvp);
199 static void remote_query_supported (void);
201 static void remote_check_symbols (void);
203 void _initialize_remote (void);
206 static void stop_reply_xfree (struct stop_reply *);
207 static void remote_parse_stop_reply (char *, struct stop_reply *);
208 static void push_stop_reply (struct stop_reply *);
209 static void discard_pending_stop_replies_in_queue (struct remote_state *);
210 static int peek_stop_reply (ptid_t ptid);
212 struct threads_listing_context;
213 static void remove_new_fork_children (struct threads_listing_context *);
215 static void remote_async_inferior_event_handler (gdb_client_data);
217 static void remote_terminal_ours (struct target_ops *self);
219 static int remote_read_description_p (struct target_ops *target);
221 static void remote_console_output (char *msg);
223 static int remote_supports_cond_breakpoints (struct target_ops *self);
225 static int remote_can_run_breakpoint_commands (struct target_ops *self);
227 static void remote_btrace_reset (void);
229 static int stop_reply_queue_length (void);
231 static void readahead_cache_invalidate (void);
235 static struct cmd_list_element *remote_cmdlist;
237 /* For "set remote" and "show remote". */
239 static struct cmd_list_element *remote_set_cmdlist;
240 static struct cmd_list_element *remote_show_cmdlist;
242 /* Stub vCont actions support.
244 Each field is a boolean flag indicating whether the stub reports
245 support for the corresponding action. */
247 struct vCont_action_support
256 /* Controls whether GDB is willing to use range stepping. */
258 static int use_range_stepping = 1;
260 #define OPAQUETHREADBYTES 8
262 /* a 64 bit opaque identifier */
263 typedef unsigned char threadref[OPAQUETHREADBYTES];
265 /* About this many threadisds fit in a packet. */
267 #define MAXTHREADLISTRESULTS 32
269 /* Data for the vFile:pread readahead cache. */
271 struct readahead_cache
273 /* The file descriptor for the file that is being cached. -1 if the
277 /* The offset into the file that the cache buffer corresponds
281 /* The buffer holding the cache contents. */
283 /* The buffer's size. We try to read as much as fits into a packet
287 /* Cache hit and miss counters. */
292 /* Description of the remote protocol state for the currently
293 connected target. This is per-target state, and independent of the
294 selected architecture. */
298 /* A buffer to use for incoming packets, and its current size. The
299 buffer is grown dynamically for larger incoming packets.
300 Outgoing packets may also be constructed in this buffer.
301 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
302 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
307 /* True if we're going through initial connection setup (finding out
308 about the remote side's threads, relocating symbols, etc.). */
311 /* If we negotiated packet size explicitly (and thus can bypass
312 heuristics for the largest packet size that will not overflow
313 a buffer in the stub), this will be set to that packet size.
314 Otherwise zero, meaning to use the guessed size. */
315 long explicit_packet_size;
317 /* remote_wait is normally called when the target is running and
318 waits for a stop reply packet. But sometimes we need to call it
319 when the target is already stopped. We can send a "?" packet
320 and have remote_wait read the response. Or, if we already have
321 the response, we can stash it in BUF and tell remote_wait to
322 skip calling getpkt. This flag is set when BUF contains a
323 stop reply packet and the target is not waiting. */
324 int cached_wait_status;
326 /* True, if in no ack mode. That is, neither GDB nor the stub will
327 expect acks from each other. The connection is assumed to be
331 /* True if we're connected in extended remote mode. */
334 /* True if we resumed the target and we're waiting for the target to
335 stop. In the mean time, we can't start another command/query.
336 The remote server wouldn't be ready to process it, so we'd
337 timeout waiting for a reply that would never come and eventually
338 we'd close the connection. This can happen in asynchronous mode
339 because we allow GDB commands while the target is running. */
340 int waiting_for_stop_reply;
342 /* The status of the stub support for the various vCont actions. */
343 struct vCont_action_support supports_vCont;
345 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
346 responded to that. */
349 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
350 remote_open knows that we don't have a file open when the program
352 struct serial *remote_desc;
354 /* These are the threads which we last sent to the remote system. The
355 TID member will be -1 for all or -2 for not sent yet. */
356 ptid_t general_thread;
357 ptid_t continue_thread;
359 /* This is the traceframe which we last selected on the remote system.
360 It will be -1 if no traceframe is selected. */
361 int remote_traceframe_number;
363 char *last_pass_packet;
365 /* The last QProgramSignals packet sent to the target. We bypass
366 sending a new program signals list down to the target if the new
367 packet is exactly the same as the last we sent. IOW, we only let
368 the target know about program signals list changes. */
369 char *last_program_signals_packet;
371 enum gdb_signal last_sent_signal;
375 char *finished_object;
376 char *finished_annex;
377 ULONGEST finished_offset;
379 /* Should we try the 'ThreadInfo' query packet?
381 This variable (NOT available to the user: auto-detect only!)
382 determines whether GDB will use the new, simpler "ThreadInfo"
383 query or the older, more complex syntax for thread queries.
384 This is an auto-detect variable (set to true at each connect,
385 and set to false when the target fails to recognize it). */
386 int use_threadinfo_query;
387 int use_threadextra_query;
389 /* This is set to the data address of the access causing the target
390 to stop for a watchpoint. */
391 CORE_ADDR remote_watch_data_address;
393 /* Whether the target stopped for a breakpoint/watchpoint. */
394 enum target_stop_reason stop_reason;
396 threadref echo_nextthread;
397 threadref nextthread;
398 threadref resultthreadlist[MAXTHREADLISTRESULTS];
400 /* The state of remote notification. */
401 struct remote_notif_state *notif_state;
403 /* The branch trace configuration. */
404 struct btrace_config btrace_config;
406 /* The argument to the last "vFile:setfs:" packet we sent, used
407 to avoid sending repeated unnecessary "vFile:setfs:" packets.
408 Initialized to -1 to indicate that no "vFile:setfs:" packet
409 has yet been sent. */
412 /* A readahead cache for vFile:pread. Often, reading a binary
413 involves a sequence of small reads. E.g., when parsing an ELF
414 file. A readahead cache helps mostly the case of remote
415 debugging on a connection with higher latency, due to the
416 request/reply nature of the RSP. We only cache data for a single
417 file descriptor at a time. */
418 struct readahead_cache readahead_cache;
421 /* Private data that we'll store in (struct thread_info)->private. */
422 struct private_thread_info
429 free_private_thread_info (struct private_thread_info *info)
435 /* This data could be associated with a target, but we do not always
436 have access to the current target when we need it, so for now it is
437 static. This will be fine for as long as only one target is in use
439 static struct remote_state *remote_state;
441 static struct remote_state *
442 get_remote_state_raw (void)
447 /* Allocate a new struct remote_state with xmalloc, initialize it, and
450 static struct remote_state *
451 new_remote_state (void)
453 struct remote_state *result = XCNEW (struct remote_state);
455 /* The default buffer size is unimportant; it will be expanded
456 whenever a larger buffer is needed. */
457 result->buf_size = 400;
458 result->buf = xmalloc (result->buf_size);
459 result->remote_traceframe_number = -1;
460 result->last_sent_signal = GDB_SIGNAL_0;
466 /* Description of the remote protocol for a given architecture. */
470 long offset; /* Offset into G packet. */
471 long regnum; /* GDB's internal register number. */
472 LONGEST pnum; /* Remote protocol register number. */
473 int in_g_packet; /* Always part of G packet. */
474 /* long size in bytes; == register_size (target_gdbarch (), regnum);
476 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
480 struct remote_arch_state
482 /* Description of the remote protocol registers. */
483 long sizeof_g_packet;
485 /* Description of the remote protocol registers indexed by REGNUM
486 (making an array gdbarch_num_regs in size). */
487 struct packet_reg *regs;
489 /* This is the size (in chars) of the first response to the ``g''
490 packet. It is used as a heuristic when determining the maximum
491 size of memory-read and memory-write packets. A target will
492 typically only reserve a buffer large enough to hold the ``g''
493 packet. The size does not include packet overhead (headers and
495 long actual_register_packet_size;
497 /* This is the maximum size (in chars) of a non read/write packet.
498 It is also used as a cap on the size of read/write packets. */
499 long remote_packet_size;
502 /* Utility: generate error from an incoming stub packet. */
504 trace_error (char *buf)
507 return; /* not an error msg */
510 case '1': /* malformed packet error */
511 if (*++buf == '0') /* general case: */
512 error (_("remote.c: error in outgoing packet."));
514 error (_("remote.c: error in outgoing packet at field #%ld."),
515 strtol (buf, NULL, 16));
517 error (_("Target returns error code '%s'."), buf);
521 /* Utility: wait for reply from stub, while accepting "O" packets. */
523 remote_get_noisy_reply (char **buf_p,
526 do /* Loop on reply from remote stub. */
530 QUIT; /* Allow user to bail out with ^C. */
531 getpkt (buf_p, sizeof_buf, 0);
535 else if (startswith (buf, "qRelocInsn:"))
538 CORE_ADDR from, to, org_to;
540 int adjusted_size = 0;
543 p = buf + strlen ("qRelocInsn:");
544 pp = unpack_varlen_hex (p, &ul);
546 error (_("invalid qRelocInsn packet: %s"), buf);
550 unpack_varlen_hex (p, &ul);
557 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
560 CATCH (ex, RETURN_MASK_ALL)
562 if (ex.error == MEMORY_ERROR)
564 /* Propagate memory errors silently back to the
565 target. The stub may have limited the range of
566 addresses we can write to, for example. */
570 /* Something unexpectedly bad happened. Be verbose
571 so we can tell what, and propagate the error back
572 to the stub, so it doesn't get stuck waiting for
574 exception_fprintf (gdb_stderr, ex,
575 _("warning: relocating instruction: "));
583 adjusted_size = to - org_to;
585 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
589 else if (buf[0] == 'O' && buf[1] != 'K')
590 remote_console_output (buf + 1); /* 'O' message from stub */
592 return buf; /* Here's the actual reply. */
597 /* Handle for retreving the remote protocol data from gdbarch. */
598 static struct gdbarch_data *remote_gdbarch_data_handle;
600 static struct remote_arch_state *
601 get_remote_arch_state (void)
603 return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle);
606 /* Fetch the global remote target state. */
608 static struct remote_state *
609 get_remote_state (void)
611 /* Make sure that the remote architecture state has been
612 initialized, because doing so might reallocate rs->buf. Any
613 function which calls getpkt also needs to be mindful of changes
614 to rs->buf, but this call limits the number of places which run
616 get_remote_arch_state ();
618 return get_remote_state_raw ();
622 compare_pnums (const void *lhs_, const void *rhs_)
624 const struct packet_reg * const *lhs = lhs_;
625 const struct packet_reg * const *rhs = rhs_;
627 if ((*lhs)->pnum < (*rhs)->pnum)
629 else if ((*lhs)->pnum == (*rhs)->pnum)
636 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
638 int regnum, num_remote_regs, offset;
639 struct packet_reg **remote_regs;
641 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
643 struct packet_reg *r = ®s[regnum];
645 if (register_size (gdbarch, regnum) == 0)
646 /* Do not try to fetch zero-sized (placeholder) registers. */
649 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
654 /* Define the g/G packet format as the contents of each register
655 with a remote protocol number, in order of ascending protocol
658 remote_regs = alloca (gdbarch_num_regs (gdbarch)
659 * sizeof (struct packet_reg *));
660 for (num_remote_regs = 0, regnum = 0;
661 regnum < gdbarch_num_regs (gdbarch);
663 if (regs[regnum].pnum != -1)
664 remote_regs[num_remote_regs++] = ®s[regnum];
666 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
669 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
671 remote_regs[regnum]->in_g_packet = 1;
672 remote_regs[regnum]->offset = offset;
673 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
679 /* Given the architecture described by GDBARCH, return the remote
680 protocol register's number and the register's offset in the g/G
681 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
682 If the target does not have a mapping for REGNUM, return false,
683 otherwise, return true. */
686 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
687 int *pnum, int *poffset)
690 struct packet_reg *regs;
691 struct cleanup *old_chain;
693 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
695 regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
696 old_chain = make_cleanup (xfree, regs);
698 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
700 *pnum = regs[regnum].pnum;
701 *poffset = regs[regnum].offset;
703 do_cleanups (old_chain);
709 init_remote_state (struct gdbarch *gdbarch)
711 struct remote_state *rs = get_remote_state_raw ();
712 struct remote_arch_state *rsa;
714 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
716 /* Use the architecture to build a regnum<->pnum table, which will be
717 1:1 unless a feature set specifies otherwise. */
718 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
719 gdbarch_num_regs (gdbarch),
722 /* Record the maximum possible size of the g packet - it may turn out
724 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
726 /* Default maximum number of characters in a packet body. Many
727 remote stubs have a hardwired buffer size of 400 bytes
728 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
729 as the maximum packet-size to ensure that the packet and an extra
730 NUL character can always fit in the buffer. This stops GDB
731 trashing stubs that try to squeeze an extra NUL into what is
732 already a full buffer (As of 1999-12-04 that was most stubs). */
733 rsa->remote_packet_size = 400 - 1;
735 /* This one is filled in when a ``g'' packet is received. */
736 rsa->actual_register_packet_size = 0;
738 /* Should rsa->sizeof_g_packet needs more space than the
739 default, adjust the size accordingly. Remember that each byte is
740 encoded as two characters. 32 is the overhead for the packet
741 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
742 (``$NN:G...#NN'') is a better guess, the below has been padded a
744 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
745 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
747 /* Make sure that the packet buffer is plenty big enough for
748 this architecture. */
749 if (rs->buf_size < rsa->remote_packet_size)
751 rs->buf_size = 2 * rsa->remote_packet_size;
752 rs->buf = xrealloc (rs->buf, rs->buf_size);
758 /* Return the current allowed size of a remote packet. This is
759 inferred from the current architecture, and should be used to
760 limit the length of outgoing packets. */
762 get_remote_packet_size (void)
764 struct remote_state *rs = get_remote_state ();
765 struct remote_arch_state *rsa = get_remote_arch_state ();
767 if (rs->explicit_packet_size)
768 return rs->explicit_packet_size;
770 return rsa->remote_packet_size;
773 static struct packet_reg *
774 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
776 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
780 struct packet_reg *r = &rsa->regs[regnum];
782 gdb_assert (r->regnum == regnum);
787 static struct packet_reg *
788 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
792 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
794 struct packet_reg *r = &rsa->regs[i];
802 static struct target_ops remote_ops;
804 static struct target_ops extended_remote_ops;
806 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
807 ``forever'' still use the normal timeout mechanism. This is
808 currently used by the ASYNC code to guarentee that target reads
809 during the initial connect always time-out. Once getpkt has been
810 modified to return a timeout indication and, in turn
811 remote_wait()/wait_for_inferior() have gained a timeout parameter
813 static int wait_forever_enabled_p = 1;
815 /* Allow the user to specify what sequence to send to the remote
816 when he requests a program interruption: Although ^C is usually
817 what remote systems expect (this is the default, here), it is
818 sometimes preferable to send a break. On other systems such
819 as the Linux kernel, a break followed by g, which is Magic SysRq g
820 is required in order to interrupt the execution. */
821 const char interrupt_sequence_control_c[] = "Ctrl-C";
822 const char interrupt_sequence_break[] = "BREAK";
823 const char interrupt_sequence_break_g[] = "BREAK-g";
824 static const char *const interrupt_sequence_modes[] =
826 interrupt_sequence_control_c,
827 interrupt_sequence_break,
828 interrupt_sequence_break_g,
831 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
834 show_interrupt_sequence (struct ui_file *file, int from_tty,
835 struct cmd_list_element *c,
838 if (interrupt_sequence_mode == interrupt_sequence_control_c)
839 fprintf_filtered (file,
840 _("Send the ASCII ETX character (Ctrl-c) "
841 "to the remote target to interrupt the "
842 "execution of the program.\n"));
843 else if (interrupt_sequence_mode == interrupt_sequence_break)
844 fprintf_filtered (file,
845 _("send a break signal to the remote target "
846 "to interrupt the execution of the program.\n"));
847 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
848 fprintf_filtered (file,
849 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
850 "the remote target to interrupt the execution "
851 "of Linux kernel.\n"));
853 internal_error (__FILE__, __LINE__,
854 _("Invalid value for interrupt_sequence_mode: %s."),
855 interrupt_sequence_mode);
858 /* This boolean variable specifies whether interrupt_sequence is sent
859 to the remote target when gdb connects to it.
860 This is mostly needed when you debug the Linux kernel: The Linux kernel
861 expects BREAK g which is Magic SysRq g for connecting gdb. */
862 static int interrupt_on_connect = 0;
864 /* This variable is used to implement the "set/show remotebreak" commands.
865 Since these commands are now deprecated in favor of "set/show remote
866 interrupt-sequence", it no longer has any effect on the code. */
867 static int remote_break;
870 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
873 interrupt_sequence_mode = interrupt_sequence_break;
875 interrupt_sequence_mode = interrupt_sequence_control_c;
879 show_remotebreak (struct ui_file *file, int from_tty,
880 struct cmd_list_element *c,
885 /* This variable sets the number of bits in an address that are to be
886 sent in a memory ("M" or "m") packet. Normally, after stripping
887 leading zeros, the entire address would be sent. This variable
888 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
889 initial implementation of remote.c restricted the address sent in
890 memory packets to ``host::sizeof long'' bytes - (typically 32
891 bits). Consequently, for 64 bit targets, the upper 32 bits of an
892 address was never sent. Since fixing this bug may cause a break in
893 some remote targets this variable is principly provided to
894 facilitate backward compatibility. */
896 static unsigned int remote_address_size;
898 /* Temporary to track who currently owns the terminal. See
899 remote_terminal_* for more details. */
901 static int remote_async_terminal_ours_p;
903 /* The executable file to use for "run" on the remote side. */
905 static char *remote_exec_file = "";
908 /* User configurable variables for the number of characters in a
909 memory read/write packet. MIN (rsa->remote_packet_size,
910 rsa->sizeof_g_packet) is the default. Some targets need smaller
911 values (fifo overruns, et.al.) and some users need larger values
912 (speed up transfers). The variables ``preferred_*'' (the user
913 request), ``current_*'' (what was actually set) and ``forced_*''
914 (Positive - a soft limit, negative - a hard limit). */
916 struct memory_packet_config
923 /* Compute the current size of a read/write packet. Since this makes
924 use of ``actual_register_packet_size'' the computation is dynamic. */
927 get_memory_packet_size (struct memory_packet_config *config)
929 struct remote_state *rs = get_remote_state ();
930 struct remote_arch_state *rsa = get_remote_arch_state ();
932 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
933 law?) that some hosts don't cope very well with large alloca()
934 calls. Eventually the alloca() code will be replaced by calls to
935 xmalloc() and make_cleanups() allowing this restriction to either
936 be lifted or removed. */
937 #ifndef MAX_REMOTE_PACKET_SIZE
938 #define MAX_REMOTE_PACKET_SIZE 16384
940 /* NOTE: 20 ensures we can write at least one byte. */
941 #ifndef MIN_REMOTE_PACKET_SIZE
942 #define MIN_REMOTE_PACKET_SIZE 20
947 if (config->size <= 0)
948 what_they_get = MAX_REMOTE_PACKET_SIZE;
950 what_they_get = config->size;
954 what_they_get = get_remote_packet_size ();
955 /* Limit the packet to the size specified by the user. */
957 && what_they_get > config->size)
958 what_they_get = config->size;
960 /* Limit it to the size of the targets ``g'' response unless we have
961 permission from the stub to use a larger packet size. */
962 if (rs->explicit_packet_size == 0
963 && rsa->actual_register_packet_size > 0
964 && what_they_get > rsa->actual_register_packet_size)
965 what_they_get = rsa->actual_register_packet_size;
967 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
968 what_they_get = MAX_REMOTE_PACKET_SIZE;
969 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
970 what_they_get = MIN_REMOTE_PACKET_SIZE;
972 /* Make sure there is room in the global buffer for this packet
973 (including its trailing NUL byte). */
974 if (rs->buf_size < what_they_get + 1)
976 rs->buf_size = 2 * what_they_get;
977 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
980 return what_they_get;
983 /* Update the size of a read/write packet. If they user wants
984 something really big then do a sanity check. */
987 set_memory_packet_size (char *args, struct memory_packet_config *config)
989 int fixed_p = config->fixed_p;
990 long size = config->size;
993 error (_("Argument required (integer, `fixed' or `limited')."));
994 else if (strcmp (args, "hard") == 0
995 || strcmp (args, "fixed") == 0)
997 else if (strcmp (args, "soft") == 0
998 || strcmp (args, "limit") == 0)
1004 size = strtoul (args, &end, 0);
1006 error (_("Invalid %s (bad syntax)."), config->name);
1008 /* Instead of explicitly capping the size of a packet to
1009 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
1010 instead allowed to set the size to something arbitrarily
1012 if (size > MAX_REMOTE_PACKET_SIZE)
1013 error (_("Invalid %s (too large)."), config->name);
1017 if (fixed_p && !config->fixed_p)
1019 if (! query (_("The target may not be able to correctly handle a %s\n"
1020 "of %ld bytes. Change the packet size? "),
1021 config->name, size))
1022 error (_("Packet size not changed."));
1024 /* Update the config. */
1025 config->fixed_p = fixed_p;
1026 config->size = size;
1030 show_memory_packet_size (struct memory_packet_config *config)
1032 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1033 if (config->fixed_p)
1034 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1035 get_memory_packet_size (config));
1037 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1038 get_memory_packet_size (config));
1041 static struct memory_packet_config memory_write_packet_config =
1043 "memory-write-packet-size",
1047 set_memory_write_packet_size (char *args, int from_tty)
1049 set_memory_packet_size (args, &memory_write_packet_config);
1053 show_memory_write_packet_size (char *args, int from_tty)
1055 show_memory_packet_size (&memory_write_packet_config);
1059 get_memory_write_packet_size (void)
1061 return get_memory_packet_size (&memory_write_packet_config);
1064 static struct memory_packet_config memory_read_packet_config =
1066 "memory-read-packet-size",
1070 set_memory_read_packet_size (char *args, int from_tty)
1072 set_memory_packet_size (args, &memory_read_packet_config);
1076 show_memory_read_packet_size (char *args, int from_tty)
1078 show_memory_packet_size (&memory_read_packet_config);
1082 get_memory_read_packet_size (void)
1084 long size = get_memory_packet_size (&memory_read_packet_config);
1086 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1087 extra buffer size argument before the memory read size can be
1088 increased beyond this. */
1089 if (size > get_remote_packet_size ())
1090 size = get_remote_packet_size ();
1095 /* Generic configuration support for packets the stub optionally
1096 supports. Allows the user to specify the use of the packet as well
1097 as allowing GDB to auto-detect support in the remote stub. */
1101 PACKET_SUPPORT_UNKNOWN = 0,
1106 struct packet_config
1111 /* If auto, GDB auto-detects support for this packet or feature,
1112 either through qSupported, or by trying the packet and looking
1113 at the response. If true, GDB assumes the target supports this
1114 packet. If false, the packet is disabled. Configs that don't
1115 have an associated command always have this set to auto. */
1116 enum auto_boolean detect;
1118 /* Does the target support this packet? */
1119 enum packet_support support;
1122 /* Analyze a packet's return value and update the packet config
1132 static enum packet_support packet_config_support (struct packet_config *config);
1133 static enum packet_support packet_support (int packet);
1136 show_packet_config_cmd (struct packet_config *config)
1138 char *support = "internal-error";
1140 switch (packet_config_support (config))
1143 support = "enabled";
1145 case PACKET_DISABLE:
1146 support = "disabled";
1148 case PACKET_SUPPORT_UNKNOWN:
1149 support = "unknown";
1152 switch (config->detect)
1154 case AUTO_BOOLEAN_AUTO:
1155 printf_filtered (_("Support for the `%s' packet "
1156 "is auto-detected, currently %s.\n"),
1157 config->name, support);
1159 case AUTO_BOOLEAN_TRUE:
1160 case AUTO_BOOLEAN_FALSE:
1161 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1162 config->name, support);
1168 add_packet_config_cmd (struct packet_config *config, const char *name,
1169 const char *title, int legacy)
1175 config->name = name;
1176 config->title = title;
1177 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1179 show_doc = xstrprintf ("Show current use of remote "
1180 "protocol `%s' (%s) packet",
1182 /* set/show TITLE-packet {auto,on,off} */
1183 cmd_name = xstrprintf ("%s-packet", title);
1184 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1185 &config->detect, set_doc,
1186 show_doc, NULL, /* help_doc */
1188 show_remote_protocol_packet_cmd,
1189 &remote_set_cmdlist, &remote_show_cmdlist);
1190 /* The command code copies the documentation strings. */
1193 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1198 legacy_name = xstrprintf ("%s-packet", name);
1199 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1200 &remote_set_cmdlist);
1201 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1202 &remote_show_cmdlist);
1206 static enum packet_result
1207 packet_check_result (const char *buf)
1211 /* The stub recognized the packet request. Check that the
1212 operation succeeded. */
1214 && isxdigit (buf[1]) && isxdigit (buf[2])
1216 /* "Enn" - definitly an error. */
1217 return PACKET_ERROR;
1219 /* Always treat "E." as an error. This will be used for
1220 more verbose error messages, such as E.memtypes. */
1221 if (buf[0] == 'E' && buf[1] == '.')
1222 return PACKET_ERROR;
1224 /* The packet may or may not be OK. Just assume it is. */
1228 /* The stub does not support the packet. */
1229 return PACKET_UNKNOWN;
1232 static enum packet_result
1233 packet_ok (const char *buf, struct packet_config *config)
1235 enum packet_result result;
1237 if (config->detect != AUTO_BOOLEAN_TRUE
1238 && config->support == PACKET_DISABLE)
1239 internal_error (__FILE__, __LINE__,
1240 _("packet_ok: attempt to use a disabled packet"));
1242 result = packet_check_result (buf);
1247 /* The stub recognized the packet request. */
1248 if (config->support == PACKET_SUPPORT_UNKNOWN)
1251 fprintf_unfiltered (gdb_stdlog,
1252 "Packet %s (%s) is supported\n",
1253 config->name, config->title);
1254 config->support = PACKET_ENABLE;
1257 case PACKET_UNKNOWN:
1258 /* The stub does not support the packet. */
1259 if (config->detect == AUTO_BOOLEAN_AUTO
1260 && config->support == PACKET_ENABLE)
1262 /* If the stub previously indicated that the packet was
1263 supported then there is a protocol error. */
1264 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1265 config->name, config->title);
1267 else if (config->detect == AUTO_BOOLEAN_TRUE)
1269 /* The user set it wrong. */
1270 error (_("Enabled packet %s (%s) not recognized by stub"),
1271 config->name, config->title);
1275 fprintf_unfiltered (gdb_stdlog,
1276 "Packet %s (%s) is NOT supported\n",
1277 config->name, config->title);
1278 config->support = PACKET_DISABLE;
1299 PACKET_vFile_pwrite,
1301 PACKET_vFile_unlink,
1302 PACKET_vFile_readlink,
1305 PACKET_qXfer_features,
1306 PACKET_qXfer_exec_file,
1307 PACKET_qXfer_libraries,
1308 PACKET_qXfer_libraries_svr4,
1309 PACKET_qXfer_memory_map,
1310 PACKET_qXfer_spu_read,
1311 PACKET_qXfer_spu_write,
1312 PACKET_qXfer_osdata,
1313 PACKET_qXfer_threads,
1314 PACKET_qXfer_statictrace_read,
1315 PACKET_qXfer_traceframe_info,
1321 PACKET_QPassSignals,
1322 PACKET_QProgramSignals,
1324 PACKET_qSearch_memory,
1327 PACKET_QStartNoAckMode,
1329 PACKET_qXfer_siginfo_read,
1330 PACKET_qXfer_siginfo_write,
1333 /* Support for conditional tracepoints. */
1334 PACKET_ConditionalTracepoints,
1336 /* Support for target-side breakpoint conditions. */
1337 PACKET_ConditionalBreakpoints,
1339 /* Support for target-side breakpoint commands. */
1340 PACKET_BreakpointCommands,
1342 /* Support for fast tracepoints. */
1343 PACKET_FastTracepoints,
1345 /* Support for static tracepoints. */
1346 PACKET_StaticTracepoints,
1348 /* Support for installing tracepoints while a trace experiment is
1350 PACKET_InstallInTrace,
1354 PACKET_TracepointSource,
1357 PACKET_QDisableRandomization,
1359 PACKET_QTBuffer_size,
1363 PACKET_qXfer_btrace,
1365 /* Support for the QNonStop packet. */
1368 /* Support for multi-process extensions. */
1369 PACKET_multiprocess_feature,
1371 /* Support for enabling and disabling tracepoints while a trace
1372 experiment is running. */
1373 PACKET_EnableDisableTracepoints_feature,
1375 /* Support for collecting strings using the tracenz bytecode. */
1376 PACKET_tracenz_feature,
1378 /* Support for continuing to run a trace experiment while GDB is
1380 PACKET_DisconnectedTracing_feature,
1382 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1383 PACKET_augmented_libraries_svr4_read_feature,
1385 /* Support for the qXfer:btrace-conf:read packet. */
1386 PACKET_qXfer_btrace_conf,
1388 /* Support for the Qbtrace-conf:bts:size packet. */
1389 PACKET_Qbtrace_conf_bts_size,
1391 /* Support for swbreak+ feature. */
1392 PACKET_swbreak_feature,
1394 /* Support for hwbreak+ feature. */
1395 PACKET_hwbreak_feature,
1397 /* Support for fork events. */
1398 PACKET_fork_event_feature,
1400 /* Support for vfork events. */
1401 PACKET_vfork_event_feature,
1403 /* Support for the Qbtrace-conf:pt:size packet. */
1404 PACKET_Qbtrace_conf_pt_size,
1409 static struct packet_config remote_protocol_packets[PACKET_MAX];
1411 /* Returns the packet's corresponding "set remote foo-packet" command
1412 state. See struct packet_config for more details. */
1414 static enum auto_boolean
1415 packet_set_cmd_state (int packet)
1417 return remote_protocol_packets[packet].detect;
1420 /* Returns whether a given packet or feature is supported. This takes
1421 into account the state of the corresponding "set remote foo-packet"
1422 command, which may be used to bypass auto-detection. */
1424 static enum packet_support
1425 packet_config_support (struct packet_config *config)
1427 switch (config->detect)
1429 case AUTO_BOOLEAN_TRUE:
1430 return PACKET_ENABLE;
1431 case AUTO_BOOLEAN_FALSE:
1432 return PACKET_DISABLE;
1433 case AUTO_BOOLEAN_AUTO:
1434 return config->support;
1436 gdb_assert_not_reached (_("bad switch"));
1440 /* Same as packet_config_support, but takes the packet's enum value as
1443 static enum packet_support
1444 packet_support (int packet)
1446 struct packet_config *config = &remote_protocol_packets[packet];
1448 return packet_config_support (config);
1452 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1453 struct cmd_list_element *c,
1456 struct packet_config *packet;
1458 for (packet = remote_protocol_packets;
1459 packet < &remote_protocol_packets[PACKET_MAX];
1462 if (&packet->detect == c->var)
1464 show_packet_config_cmd (packet);
1468 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1472 /* Should we try one of the 'Z' requests? */
1476 Z_PACKET_SOFTWARE_BP,
1477 Z_PACKET_HARDWARE_BP,
1484 /* For compatibility with older distributions. Provide a ``set remote
1485 Z-packet ...'' command that updates all the Z packet types. */
1487 static enum auto_boolean remote_Z_packet_detect;
1490 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1491 struct cmd_list_element *c)
1495 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1496 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1500 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1501 struct cmd_list_element *c,
1506 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1508 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1512 /* Returns true if the multi-process extensions are in effect. */
1515 remote_multi_process_p (struct remote_state *rs)
1517 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1520 /* Returns true if fork events are supported. */
1523 remote_fork_event_p (struct remote_state *rs)
1525 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1528 /* Returns true if vfork events are supported. */
1531 remote_vfork_event_p (struct remote_state *rs)
1533 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1536 /* Insert fork catchpoint target routine. If fork events are enabled
1537 then return success, nothing more to do. */
1540 remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1542 struct remote_state *rs = get_remote_state ();
1544 return !remote_fork_event_p (rs);
1547 /* Remove fork catchpoint target routine. Nothing to do, just
1551 remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1556 /* Insert vfork catchpoint target routine. If vfork events are enabled
1557 then return success, nothing more to do. */
1560 remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1562 struct remote_state *rs = get_remote_state ();
1564 return !remote_vfork_event_p (rs);
1567 /* Remove vfork catchpoint target routine. Nothing to do, just
1571 remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1576 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1577 static struct async_signal_handler *async_sigint_remote_twice_token;
1578 static struct async_signal_handler *async_sigint_remote_token;
1581 /* Asynchronous signal handle registered as event loop source for
1582 when we have pending events ready to be passed to the core. */
1584 static struct async_event_handler *remote_async_inferior_event_token;
1588 static ptid_t magic_null_ptid;
1589 static ptid_t not_sent_ptid;
1590 static ptid_t any_thread_ptid;
1592 /* Find out if the stub attached to PID (and hence GDB should offer to
1593 detach instead of killing it when bailing out). */
1596 remote_query_attached (int pid)
1598 struct remote_state *rs = get_remote_state ();
1599 size_t size = get_remote_packet_size ();
1601 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
1604 if (remote_multi_process_p (rs))
1605 xsnprintf (rs->buf, size, "qAttached:%x", pid);
1607 xsnprintf (rs->buf, size, "qAttached");
1610 getpkt (&rs->buf, &rs->buf_size, 0);
1612 switch (packet_ok (rs->buf,
1613 &remote_protocol_packets[PACKET_qAttached]))
1616 if (strcmp (rs->buf, "1") == 0)
1620 warning (_("Remote failure reply: %s"), rs->buf);
1622 case PACKET_UNKNOWN:
1629 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1630 has been invented by GDB, instead of reported by the target. Since
1631 we can be connected to a remote system before before knowing about
1632 any inferior, mark the target with execution when we find the first
1633 inferior. If ATTACHED is 1, then we had just attached to this
1634 inferior. If it is 0, then we just created this inferior. If it
1635 is -1, then try querying the remote stub to find out if it had
1636 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1637 attempt to open this inferior's executable as the main executable
1638 if no main executable is open already. */
1640 static struct inferior *
1641 remote_add_inferior (int fake_pid_p, int pid, int attached,
1644 struct inferior *inf;
1646 /* Check whether this process we're learning about is to be
1647 considered attached, or if is to be considered to have been
1648 spawned by the stub. */
1650 attached = remote_query_attached (pid);
1652 if (gdbarch_has_global_solist (target_gdbarch ()))
1654 /* If the target shares code across all inferiors, then every
1655 attach adds a new inferior. */
1656 inf = add_inferior (pid);
1658 /* ... and every inferior is bound to the same program space.
1659 However, each inferior may still have its own address
1661 inf->aspace = maybe_new_address_space ();
1662 inf->pspace = current_program_space;
1666 /* In the traditional debugging scenario, there's a 1-1 match
1667 between program/address spaces. We simply bind the inferior
1668 to the program space's address space. */
1669 inf = current_inferior ();
1670 inferior_appeared (inf, pid);
1673 inf->attach_flag = attached;
1674 inf->fake_pid_p = fake_pid_p;
1676 /* If no main executable is currently open then attempt to
1677 open the file that was executed to create this inferior. */
1678 if (try_open_exec && get_exec_file (0) == NULL)
1679 exec_file_locate_attach (pid, 1);
1684 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1685 according to RUNNING. */
1688 remote_add_thread (ptid_t ptid, int running)
1690 struct remote_state *rs = get_remote_state ();
1692 /* GDB historically didn't pull threads in the initial connection
1693 setup. If the remote target doesn't even have a concept of
1694 threads (e.g., a bare-metal target), even if internally we
1695 consider that a single-threaded target, mentioning a new thread
1696 might be confusing to the user. Be silent then, preserving the
1697 age old behavior. */
1698 if (rs->starting_up)
1699 add_thread_silent (ptid);
1703 set_executing (ptid, running);
1704 set_running (ptid, running);
1707 /* Come here when we learn about a thread id from the remote target.
1708 It may be the first time we hear about such thread, so take the
1709 opportunity to add it to GDB's thread list. In case this is the
1710 first time we're noticing its corresponding inferior, add it to
1711 GDB's inferior list as well. */
1714 remote_notice_new_inferior (ptid_t currthread, int running)
1716 /* If this is a new thread, add it to GDB's thread list.
1717 If we leave it up to WFI to do this, bad things will happen. */
1719 if (in_thread_list (currthread) && is_exited (currthread))
1721 /* We're seeing an event on a thread id we knew had exited.
1722 This has to be a new thread reusing the old id. Add it. */
1723 remote_add_thread (currthread, running);
1727 if (!in_thread_list (currthread))
1729 struct inferior *inf = NULL;
1730 int pid = ptid_get_pid (currthread);
1732 if (ptid_is_pid (inferior_ptid)
1733 && pid == ptid_get_pid (inferior_ptid))
1735 /* inferior_ptid has no thread member yet. This can happen
1736 with the vAttach -> remote_wait,"TAAthread:" path if the
1737 stub doesn't support qC. This is the first stop reported
1738 after an attach, so this is the main thread. Update the
1739 ptid in the thread list. */
1740 if (in_thread_list (pid_to_ptid (pid)))
1741 thread_change_ptid (inferior_ptid, currthread);
1744 remote_add_thread (currthread, running);
1745 inferior_ptid = currthread;
1750 if (ptid_equal (magic_null_ptid, inferior_ptid))
1752 /* inferior_ptid is not set yet. This can happen with the
1753 vRun -> remote_wait,"TAAthread:" path if the stub
1754 doesn't support qC. This is the first stop reported
1755 after an attach, so this is the main thread. Update the
1756 ptid in the thread list. */
1757 thread_change_ptid (inferior_ptid, currthread);
1761 /* When connecting to a target remote, or to a target
1762 extended-remote which already was debugging an inferior, we
1763 may not know about it yet. Add it before adding its child
1764 thread, so notifications are emitted in a sensible order. */
1765 if (!in_inferior_list (ptid_get_pid (currthread)))
1767 struct remote_state *rs = get_remote_state ();
1768 int fake_pid_p = !remote_multi_process_p (rs);
1770 inf = remote_add_inferior (fake_pid_p,
1771 ptid_get_pid (currthread), -1, 1);
1774 /* This is really a new thread. Add it. */
1775 remote_add_thread (currthread, running);
1777 /* If we found a new inferior, let the common code do whatever
1778 it needs to with it (e.g., read shared libraries, insert
1779 breakpoints), unless we're just setting up an all-stop
1783 struct remote_state *rs = get_remote_state ();
1785 if (non_stop || !rs->starting_up)
1786 notice_new_inferior (currthread, running, 0);
1791 /* Return the private thread data, creating it if necessary. */
1793 static struct private_thread_info *
1794 demand_private_info (ptid_t ptid)
1796 struct thread_info *info = find_thread_ptid (ptid);
1802 info->priv = xmalloc (sizeof (*(info->priv)));
1803 info->private_dtor = free_private_thread_info;
1804 info->priv->core = -1;
1805 info->priv->extra = 0;
1811 /* Call this function as a result of
1812 1) A halt indication (T packet) containing a thread id
1813 2) A direct query of currthread
1814 3) Successful execution of set thread */
1817 record_currthread (struct remote_state *rs, ptid_t currthread)
1819 rs->general_thread = currthread;
1822 /* If 'QPassSignals' is supported, tell the remote stub what signals
1823 it can simply pass through to the inferior without reporting. */
1826 remote_pass_signals (struct target_ops *self,
1827 int numsigs, unsigned char *pass_signals)
1829 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
1831 char *pass_packet, *p;
1833 struct remote_state *rs = get_remote_state ();
1835 gdb_assert (numsigs < 256);
1836 for (i = 0; i < numsigs; i++)
1838 if (pass_signals[i])
1841 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1842 strcpy (pass_packet, "QPassSignals:");
1843 p = pass_packet + strlen (pass_packet);
1844 for (i = 0; i < numsigs; i++)
1846 if (pass_signals[i])
1849 *p++ = tohex (i >> 4);
1850 *p++ = tohex (i & 15);
1859 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
1861 putpkt (pass_packet);
1862 getpkt (&rs->buf, &rs->buf_size, 0);
1863 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
1864 if (rs->last_pass_packet)
1865 xfree (rs->last_pass_packet);
1866 rs->last_pass_packet = pass_packet;
1869 xfree (pass_packet);
1873 /* If 'QProgramSignals' is supported, tell the remote stub what
1874 signals it should pass through to the inferior when detaching. */
1877 remote_program_signals (struct target_ops *self,
1878 int numsigs, unsigned char *signals)
1880 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
1884 struct remote_state *rs = get_remote_state ();
1886 gdb_assert (numsigs < 256);
1887 for (i = 0; i < numsigs; i++)
1892 packet = xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
1893 strcpy (packet, "QProgramSignals:");
1894 p = packet + strlen (packet);
1895 for (i = 0; i < numsigs; i++)
1897 if (signal_pass_state (i))
1900 *p++ = tohex (i >> 4);
1901 *p++ = tohex (i & 15);
1910 if (!rs->last_program_signals_packet
1911 || strcmp (rs->last_program_signals_packet, packet) != 0)
1914 getpkt (&rs->buf, &rs->buf_size, 0);
1915 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
1916 xfree (rs->last_program_signals_packet);
1917 rs->last_program_signals_packet = packet;
1924 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1925 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1926 thread. If GEN is set, set the general thread, if not, then set
1927 the step/continue thread. */
1929 set_thread (struct ptid ptid, int gen)
1931 struct remote_state *rs = get_remote_state ();
1932 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
1933 char *buf = rs->buf;
1934 char *endbuf = rs->buf + get_remote_packet_size ();
1936 if (ptid_equal (state, ptid))
1940 *buf++ = gen ? 'g' : 'c';
1941 if (ptid_equal (ptid, magic_null_ptid))
1942 xsnprintf (buf, endbuf - buf, "0");
1943 else if (ptid_equal (ptid, any_thread_ptid))
1944 xsnprintf (buf, endbuf - buf, "0");
1945 else if (ptid_equal (ptid, minus_one_ptid))
1946 xsnprintf (buf, endbuf - buf, "-1");
1948 write_ptid (buf, endbuf, ptid);
1950 getpkt (&rs->buf, &rs->buf_size, 0);
1952 rs->general_thread = ptid;
1954 rs->continue_thread = ptid;
1958 set_general_thread (struct ptid ptid)
1960 set_thread (ptid, 1);
1964 set_continue_thread (struct ptid ptid)
1966 set_thread (ptid, 0);
1969 /* Change the remote current process. Which thread within the process
1970 ends up selected isn't important, as long as it is the same process
1971 as what INFERIOR_PTID points to.
1973 This comes from that fact that there is no explicit notion of
1974 "selected process" in the protocol. The selected process for
1975 general operations is the process the selected general thread
1979 set_general_process (void)
1981 struct remote_state *rs = get_remote_state ();
1983 /* If the remote can't handle multiple processes, don't bother. */
1984 if (!rs->extended || !remote_multi_process_p (rs))
1987 /* We only need to change the remote current thread if it's pointing
1988 at some other process. */
1989 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
1990 set_general_thread (inferior_ptid);
1994 /* Return nonzero if this is the main thread that we made up ourselves
1995 to model non-threaded targets as single-threaded. */
1998 remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
2000 struct remote_state *rs = get_remote_state ();
2003 if (ptid_equal (ptid, magic_null_ptid))
2004 /* The main thread is always alive. */
2007 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
2008 /* The main thread is always alive. This can happen after a
2009 vAttach, if the remote side doesn't support
2016 /* Return nonzero if the thread PTID is still alive on the remote
2020 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2022 struct remote_state *rs = get_remote_state ();
2025 /* Check if this is a thread that we made up ourselves to model
2026 non-threaded targets as single-threaded. */
2027 if (remote_thread_always_alive (ops, ptid))
2031 endp = rs->buf + get_remote_packet_size ();
2034 write_ptid (p, endp, ptid);
2037 getpkt (&rs->buf, &rs->buf_size, 0);
2038 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2041 /* About these extended threadlist and threadinfo packets. They are
2042 variable length packets but, the fields within them are often fixed
2043 length. They are redundent enough to send over UDP as is the
2044 remote protocol in general. There is a matching unit test module
2047 /* WARNING: This threadref data structure comes from the remote O.S.,
2048 libstub protocol encoding, and remote.c. It is not particularly
2051 /* Right now, the internal structure is int. We want it to be bigger.
2052 Plan to fix this. */
2054 typedef int gdb_threadref; /* Internal GDB thread reference. */
2056 /* gdb_ext_thread_info is an internal GDB data structure which is
2057 equivalent to the reply of the remote threadinfo packet. */
2059 struct gdb_ext_thread_info
2061 threadref threadid; /* External form of thread reference. */
2062 int active; /* Has state interesting to GDB?
2064 char display[256]; /* Brief state display, name,
2065 blocked/suspended. */
2066 char shortname[32]; /* To be used to name threads. */
2067 char more_display[256]; /* Long info, statistics, queue depth,
2071 /* The volume of remote transfers can be limited by submitting
2072 a mask containing bits specifying the desired information.
2073 Use a union of these values as the 'selection' parameter to
2074 get_thread_info. FIXME: Make these TAG names more thread specific. */
2076 #define TAG_THREADID 1
2077 #define TAG_EXISTS 2
2078 #define TAG_DISPLAY 4
2079 #define TAG_THREADNAME 8
2080 #define TAG_MOREDISPLAY 16
2082 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2084 static char *unpack_nibble (char *buf, int *val);
2086 static char *unpack_byte (char *buf, int *value);
2088 static char *pack_int (char *buf, int value);
2090 static char *unpack_int (char *buf, int *value);
2092 static char *unpack_string (char *src, char *dest, int length);
2094 static char *pack_threadid (char *pkt, threadref *id);
2096 static char *unpack_threadid (char *inbuf, threadref *id);
2098 void int_to_threadref (threadref *id, int value);
2100 static int threadref_to_int (threadref *ref);
2102 static void copy_threadref (threadref *dest, threadref *src);
2104 static int threadmatch (threadref *dest, threadref *src);
2106 static char *pack_threadinfo_request (char *pkt, int mode,
2109 static int remote_unpack_thread_info_response (char *pkt,
2110 threadref *expectedref,
2111 struct gdb_ext_thread_info
2115 static int remote_get_threadinfo (threadref *threadid,
2116 int fieldset, /*TAG mask */
2117 struct gdb_ext_thread_info *info);
2119 static char *pack_threadlist_request (char *pkt, int startflag,
2121 threadref *nextthread);
2123 static int parse_threadlist_response (char *pkt,
2125 threadref *original_echo,
2126 threadref *resultlist,
2129 static int remote_get_threadlist (int startflag,
2130 threadref *nextthread,
2134 threadref *threadlist);
2136 typedef int (*rmt_thread_action) (threadref *ref, void *context);
2138 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2139 void *context, int looplimit);
2141 static int remote_newthread_step (threadref *ref, void *context);
2144 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2145 buffer we're allowed to write to. Returns
2146 BUF+CHARACTERS_WRITTEN. */
2149 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2152 struct remote_state *rs = get_remote_state ();
2154 if (remote_multi_process_p (rs))
2156 pid = ptid_get_pid (ptid);
2158 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2160 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2162 tid = ptid_get_lwp (ptid);
2164 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2166 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2171 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2172 passed the last parsed char. Returns null_ptid on error. */
2175 read_ptid (char *buf, char **obuf)
2179 ULONGEST pid = 0, tid = 0;
2183 /* Multi-process ptid. */
2184 pp = unpack_varlen_hex (p + 1, &pid);
2186 error (_("invalid remote ptid: %s"), p);
2189 pp = unpack_varlen_hex (p + 1, &tid);
2192 return ptid_build (pid, tid, 0);
2195 /* No multi-process. Just a tid. */
2196 pp = unpack_varlen_hex (p, &tid);
2198 /* Return null_ptid when no thread id is found. */
2206 /* Since the stub is not sending a process id, then default to
2207 what's in inferior_ptid, unless it's null at this point. If so,
2208 then since there's no way to know the pid of the reported
2209 threads, use the magic number. */
2210 if (ptid_equal (inferior_ptid, null_ptid))
2211 pid = ptid_get_pid (magic_null_ptid);
2213 pid = ptid_get_pid (inferior_ptid);
2217 return ptid_build (pid, tid, 0);
2223 if (ch >= 'a' && ch <= 'f')
2224 return ch - 'a' + 10;
2225 if (ch >= '0' && ch <= '9')
2227 if (ch >= 'A' && ch <= 'F')
2228 return ch - 'A' + 10;
2233 stub_unpack_int (char *buff, int fieldlength)
2240 nibble = stubhex (*buff++);
2244 retval = retval << 4;
2250 unpack_nibble (char *buf, int *val)
2252 *val = fromhex (*buf++);
2257 unpack_byte (char *buf, int *value)
2259 *value = stub_unpack_int (buf, 2);
2264 pack_int (char *buf, int value)
2266 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2267 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2268 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2269 buf = pack_hex_byte (buf, (value & 0xff));
2274 unpack_int (char *buf, int *value)
2276 *value = stub_unpack_int (buf, 8);
2280 #if 0 /* Currently unused, uncomment when needed. */
2281 static char *pack_string (char *pkt, char *string);
2284 pack_string (char *pkt, char *string)
2289 len = strlen (string);
2291 len = 200; /* Bigger than most GDB packets, junk??? */
2292 pkt = pack_hex_byte (pkt, len);
2296 if ((ch == '\0') || (ch == '#'))
2297 ch = '*'; /* Protect encapsulation. */
2302 #endif /* 0 (unused) */
2305 unpack_string (char *src, char *dest, int length)
2314 pack_threadid (char *pkt, threadref *id)
2317 unsigned char *altid;
2319 altid = (unsigned char *) id;
2320 limit = pkt + BUF_THREAD_ID_SIZE;
2322 pkt = pack_hex_byte (pkt, *altid++);
2328 unpack_threadid (char *inbuf, threadref *id)
2331 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2334 altref = (char *) id;
2336 while (inbuf < limit)
2338 x = stubhex (*inbuf++);
2339 y = stubhex (*inbuf++);
2340 *altref++ = (x << 4) | y;
2345 /* Externally, threadrefs are 64 bits but internally, they are still
2346 ints. This is due to a mismatch of specifications. We would like
2347 to use 64bit thread references internally. This is an adapter
2351 int_to_threadref (threadref *id, int value)
2353 unsigned char *scan;
2355 scan = (unsigned char *) id;
2361 *scan++ = (value >> 24) & 0xff;
2362 *scan++ = (value >> 16) & 0xff;
2363 *scan++ = (value >> 8) & 0xff;
2364 *scan++ = (value & 0xff);
2368 threadref_to_int (threadref *ref)
2371 unsigned char *scan;
2377 value = (value << 8) | ((*scan++) & 0xff);
2382 copy_threadref (threadref *dest, threadref *src)
2385 unsigned char *csrc, *cdest;
2387 csrc = (unsigned char *) src;
2388 cdest = (unsigned char *) dest;
2395 threadmatch (threadref *dest, threadref *src)
2397 /* Things are broken right now, so just assume we got a match. */
2399 unsigned char *srcp, *destp;
2401 srcp = (char *) src;
2402 destp = (char *) dest;
2406 result &= (*srcp++ == *destp++) ? 1 : 0;
2413 threadid:1, # always request threadid
2420 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2423 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2425 *pkt++ = 'q'; /* Info Query */
2426 *pkt++ = 'P'; /* process or thread info */
2427 pkt = pack_int (pkt, mode); /* mode */
2428 pkt = pack_threadid (pkt, id); /* threadid */
2429 *pkt = '\0'; /* terminate */
2433 /* These values tag the fields in a thread info response packet. */
2434 /* Tagging the fields allows us to request specific fields and to
2435 add more fields as time goes by. */
2437 #define TAG_THREADID 1 /* Echo the thread identifier. */
2438 #define TAG_EXISTS 2 /* Is this process defined enough to
2439 fetch registers and its stack? */
2440 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2441 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2442 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2446 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2447 struct gdb_ext_thread_info *info)
2449 struct remote_state *rs = get_remote_state ();
2453 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2456 /* info->threadid = 0; FIXME: implement zero_threadref. */
2458 info->display[0] = '\0';
2459 info->shortname[0] = '\0';
2460 info->more_display[0] = '\0';
2462 /* Assume the characters indicating the packet type have been
2464 pkt = unpack_int (pkt, &mask); /* arg mask */
2465 pkt = unpack_threadid (pkt, &ref);
2468 warning (_("Incomplete response to threadinfo request."));
2469 if (!threadmatch (&ref, expectedref))
2470 { /* This is an answer to a different request. */
2471 warning (_("ERROR RMT Thread info mismatch."));
2474 copy_threadref (&info->threadid, &ref);
2476 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2478 /* Packets are terminated with nulls. */
2479 while ((pkt < limit) && mask && *pkt)
2481 pkt = unpack_int (pkt, &tag); /* tag */
2482 pkt = unpack_byte (pkt, &length); /* length */
2483 if (!(tag & mask)) /* Tags out of synch with mask. */
2485 warning (_("ERROR RMT: threadinfo tag mismatch."));
2489 if (tag == TAG_THREADID)
2493 warning (_("ERROR RMT: length of threadid is not 16."));
2497 pkt = unpack_threadid (pkt, &ref);
2498 mask = mask & ~TAG_THREADID;
2501 if (tag == TAG_EXISTS)
2503 info->active = stub_unpack_int (pkt, length);
2505 mask = mask & ~(TAG_EXISTS);
2508 warning (_("ERROR RMT: 'exists' length too long."));
2514 if (tag == TAG_THREADNAME)
2516 pkt = unpack_string (pkt, &info->shortname[0], length);
2517 mask = mask & ~TAG_THREADNAME;
2520 if (tag == TAG_DISPLAY)
2522 pkt = unpack_string (pkt, &info->display[0], length);
2523 mask = mask & ~TAG_DISPLAY;
2526 if (tag == TAG_MOREDISPLAY)
2528 pkt = unpack_string (pkt, &info->more_display[0], length);
2529 mask = mask & ~TAG_MOREDISPLAY;
2532 warning (_("ERROR RMT: unknown thread info tag."));
2533 break; /* Not a tag we know about. */
2539 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2540 struct gdb_ext_thread_info *info)
2542 struct remote_state *rs = get_remote_state ();
2545 pack_threadinfo_request (rs->buf, fieldset, threadid);
2547 getpkt (&rs->buf, &rs->buf_size, 0);
2549 if (rs->buf[0] == '\0')
2552 result = remote_unpack_thread_info_response (rs->buf + 2,
2557 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2560 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2561 threadref *nextthread)
2563 *pkt++ = 'q'; /* info query packet */
2564 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2565 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2566 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2567 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2572 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2575 parse_threadlist_response (char *pkt, int result_limit,
2576 threadref *original_echo, threadref *resultlist,
2579 struct remote_state *rs = get_remote_state ();
2581 int count, resultcount, done;
2584 /* Assume the 'q' and 'M chars have been stripped. */
2585 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2586 /* done parse past here */
2587 pkt = unpack_byte (pkt, &count); /* count field */
2588 pkt = unpack_nibble (pkt, &done);
2589 /* The first threadid is the argument threadid. */
2590 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2591 while ((count-- > 0) && (pkt < limit))
2593 pkt = unpack_threadid (pkt, resultlist++);
2594 if (resultcount++ >= result_limit)
2602 /* Fetch the next batch of threads from the remote. Returns -1 if the
2603 qL packet is not supported, 0 on error and 1 on success. */
2606 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2607 int *done, int *result_count, threadref *threadlist)
2609 struct remote_state *rs = get_remote_state ();
2612 /* Trancate result limit to be smaller than the packet size. */
2613 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2614 >= get_remote_packet_size ())
2615 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2617 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2619 getpkt (&rs->buf, &rs->buf_size, 0);
2620 if (*rs->buf == '\0')
2622 /* Packet not supported. */
2627 parse_threadlist_response (rs->buf + 2, result_limit,
2628 &rs->echo_nextthread, threadlist, done);
2630 if (!threadmatch (&rs->echo_nextthread, nextthread))
2632 /* FIXME: This is a good reason to drop the packet. */
2633 /* Possably, there is a duplicate response. */
2635 retransmit immediatly - race conditions
2636 retransmit after timeout - yes
2638 wait for packet, then exit
2640 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2641 return 0; /* I choose simply exiting. */
2643 if (*result_count <= 0)
2647 warning (_("RMT ERROR : failed to get remote thread list."));
2650 return result; /* break; */
2652 if (*result_count > result_limit)
2655 warning (_("RMT ERROR: threadlist response longer than requested."));
2661 /* Fetch the list of remote threads, with the qL packet, and call
2662 STEPFUNCTION for each thread found. Stops iterating and returns 1
2663 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2664 STEPFUNCTION returns false. If the packet is not supported,
2668 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2671 struct remote_state *rs = get_remote_state ();
2672 int done, i, result_count;
2680 if (loopcount++ > looplimit)
2683 warning (_("Remote fetch threadlist -infinite loop-."));
2686 result = remote_get_threadlist (startflag, &rs->nextthread,
2687 MAXTHREADLISTRESULTS,
2688 &done, &result_count,
2689 rs->resultthreadlist);
2692 /* Clear for later iterations. */
2694 /* Setup to resume next batch of thread references, set nextthread. */
2695 if (result_count >= 1)
2696 copy_threadref (&rs->nextthread,
2697 &rs->resultthreadlist[result_count - 1]);
2699 while (result_count--)
2701 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2711 /* A thread found on the remote target. */
2713 typedef struct thread_item
2715 /* The thread's PTID. */
2718 /* The thread's extra info. May be NULL. */
2721 /* The core the thread was running on. -1 if not known. */
2724 DEF_VEC_O(thread_item_t);
2726 /* Context passed around to the various methods listing remote
2727 threads. As new threads are found, they're added to the ITEMS
2730 struct threads_listing_context
2732 /* The threads found on the remote target. */
2733 VEC (thread_item_t) *items;
2736 /* Discard the contents of the constructed thread listing context. */
2739 clear_threads_listing_context (void *p)
2741 struct threads_listing_context *context = p;
2743 struct thread_item *item;
2745 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2746 xfree (item->extra);
2748 VEC_free (thread_item_t, context->items);
2751 /* Remove the thread specified as the related_pid field of WS
2752 from the CONTEXT list. */
2755 threads_listing_context_remove (struct target_waitstatus *ws,
2756 struct threads_listing_context *context)
2758 struct thread_item *item;
2760 ptid_t child_ptid = ws->value.related_pid;
2762 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2764 if (ptid_equal (item->ptid, child_ptid))
2766 VEC_ordered_remove (thread_item_t, context->items, i);
2773 remote_newthread_step (threadref *ref, void *data)
2775 struct threads_listing_context *context = data;
2776 struct thread_item item;
2777 int pid = ptid_get_pid (inferior_ptid);
2779 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
2783 VEC_safe_push (thread_item_t, context->items, &item);
2785 return 1; /* continue iterator */
2788 #define CRAZY_MAX_THREADS 1000
2791 remote_current_thread (ptid_t oldpid)
2793 struct remote_state *rs = get_remote_state ();
2796 getpkt (&rs->buf, &rs->buf_size, 0);
2797 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2802 result = read_ptid (&rs->buf[2], &obuf);
2803 if (*obuf != '\0' && remote_debug)
2804 fprintf_unfiltered (gdb_stdlog,
2805 "warning: garbage in qC reply\n");
2813 /* List remote threads using the deprecated qL packet. */
2816 remote_get_threads_with_ql (struct target_ops *ops,
2817 struct threads_listing_context *context)
2819 if (remote_threadlist_iterator (remote_newthread_step, context,
2820 CRAZY_MAX_THREADS) >= 0)
2826 #if defined(HAVE_LIBEXPAT)
2829 start_thread (struct gdb_xml_parser *parser,
2830 const struct gdb_xml_element *element,
2831 void *user_data, VEC(gdb_xml_value_s) *attributes)
2833 struct threads_listing_context *data = user_data;
2835 struct thread_item item;
2837 struct gdb_xml_value *attr;
2839 id = xml_find_attribute (attributes, "id")->value;
2840 item.ptid = read_ptid (id, NULL);
2842 attr = xml_find_attribute (attributes, "core");
2844 item.core = *(ULONGEST *) attr->value;
2850 VEC_safe_push (thread_item_t, data->items, &item);
2854 end_thread (struct gdb_xml_parser *parser,
2855 const struct gdb_xml_element *element,
2856 void *user_data, const char *body_text)
2858 struct threads_listing_context *data = user_data;
2860 if (body_text && *body_text)
2861 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
2864 const struct gdb_xml_attribute thread_attributes[] = {
2865 { "id", GDB_XML_AF_NONE, NULL, NULL },
2866 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2867 { NULL, GDB_XML_AF_NONE, NULL, NULL }
2870 const struct gdb_xml_element thread_children[] = {
2871 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2874 const struct gdb_xml_element threads_children[] = {
2875 { "thread", thread_attributes, thread_children,
2876 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2877 start_thread, end_thread },
2878 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2881 const struct gdb_xml_element threads_elements[] = {
2882 { "threads", NULL, threads_children,
2883 GDB_XML_EF_NONE, NULL, NULL },
2884 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2889 /* List remote threads using qXfer:threads:read. */
2892 remote_get_threads_with_qxfer (struct target_ops *ops,
2893 struct threads_listing_context *context)
2895 #if defined(HAVE_LIBEXPAT)
2896 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
2898 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
2899 struct cleanup *back_to = make_cleanup (xfree, xml);
2901 if (xml != NULL && *xml != '\0')
2903 gdb_xml_parse_quick (_("threads"), "threads.dtd",
2904 threads_elements, xml, context);
2907 do_cleanups (back_to);
2915 /* List remote threads using qfThreadInfo/qsThreadInfo. */
2918 remote_get_threads_with_qthreadinfo (struct target_ops *ops,
2919 struct threads_listing_context *context)
2921 struct remote_state *rs = get_remote_state ();
2923 if (rs->use_threadinfo_query)
2927 putpkt ("qfThreadInfo");
2928 getpkt (&rs->buf, &rs->buf_size, 0);
2930 if (bufp[0] != '\0') /* q packet recognized */
2932 while (*bufp++ == 'm') /* reply contains one or more TID */
2936 struct thread_item item;
2938 item.ptid = read_ptid (bufp, &bufp);
2942 VEC_safe_push (thread_item_t, context->items, &item);
2944 while (*bufp++ == ','); /* comma-separated list */
2945 putpkt ("qsThreadInfo");
2946 getpkt (&rs->buf, &rs->buf_size, 0);
2953 /* Packet not recognized. */
2954 rs->use_threadinfo_query = 0;
2961 /* Implement the to_update_thread_list function for the remote
2965 remote_update_thread_list (struct target_ops *ops)
2967 struct remote_state *rs = get_remote_state ();
2968 struct threads_listing_context context;
2969 struct cleanup *old_chain;
2972 context.items = NULL;
2973 old_chain = make_cleanup (clear_threads_listing_context, &context);
2975 /* We have a few different mechanisms to fetch the thread list. Try
2976 them all, starting with the most preferred one first, falling
2977 back to older methods. */
2978 if (remote_get_threads_with_qxfer (ops, &context)
2979 || remote_get_threads_with_qthreadinfo (ops, &context)
2980 || remote_get_threads_with_ql (ops, &context))
2983 struct thread_item *item;
2984 struct thread_info *tp, *tmp;
2988 if (VEC_empty (thread_item_t, context.items)
2989 && remote_thread_always_alive (ops, inferior_ptid))
2991 /* Some targets don't really support threads, but still
2992 reply an (empty) thread list in response to the thread
2993 listing packets, instead of replying "packet not
2994 supported". Exit early so we don't delete the main
2996 do_cleanups (old_chain);
3000 /* CONTEXT now holds the current thread list on the remote
3001 target end. Delete GDB-side threads no longer found on the
3003 ALL_THREADS_SAFE (tp, tmp)
3006 VEC_iterate (thread_item_t, context.items, i, item);
3009 if (ptid_equal (item->ptid, tp->ptid))
3013 if (i == VEC_length (thread_item_t, context.items))
3016 delete_thread (tp->ptid);
3020 /* Remove any unreported fork child threads from CONTEXT so
3021 that we don't interfere with follow fork, which is where
3022 creation of such threads is handled. */
3023 remove_new_fork_children (&context);
3025 /* And now add threads we don't know about yet to our list. */
3027 VEC_iterate (thread_item_t, context.items, i, item);
3030 if (!ptid_equal (item->ptid, null_ptid))
3032 struct private_thread_info *info;
3033 /* In non-stop mode, we assume new found threads are
3034 running until proven otherwise with a stop reply. In
3035 all-stop, we can only get here if all threads are
3037 int running = non_stop ? 1 : 0;
3039 remote_notice_new_inferior (item->ptid, running);
3041 info = demand_private_info (item->ptid);
3042 info->core = item->core;
3043 info->extra = item->extra;
3051 /* If no thread listing method is supported, then query whether
3052 each known thread is alive, one by one, with the T packet.
3053 If the target doesn't support threads at all, then this is a
3054 no-op. See remote_thread_alive. */
3058 do_cleanups (old_chain);
3062 * Collect a descriptive string about the given thread.
3063 * The target may say anything it wants to about the thread
3064 * (typically info about its blocked / runnable state, name, etc.).
3065 * This string will appear in the info threads display.
3067 * Optional: targets are not required to implement this function.
3071 remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
3073 struct remote_state *rs = get_remote_state ();
3077 struct gdb_ext_thread_info threadinfo;
3078 static char display_buf[100]; /* arbitrary... */
3079 int n = 0; /* position in display_buf */
3081 if (rs->remote_desc == 0) /* paranoia */
3082 internal_error (__FILE__, __LINE__,
3083 _("remote_threads_extra_info"));
3085 if (ptid_equal (tp->ptid, magic_null_ptid)
3086 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
3087 /* This is the main thread which was added by GDB. The remote
3088 server doesn't know about it. */
3091 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3093 struct thread_info *info = find_thread_ptid (tp->ptid);
3095 if (info && info->priv)
3096 return info->priv->extra;
3101 if (rs->use_threadextra_query)
3104 char *endb = rs->buf + get_remote_packet_size ();
3106 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3108 write_ptid (b, endb, tp->ptid);
3111 getpkt (&rs->buf, &rs->buf_size, 0);
3112 if (rs->buf[0] != 0)
3114 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
3115 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
3116 display_buf [result] = '\0';
3121 /* If the above query fails, fall back to the old method. */
3122 rs->use_threadextra_query = 0;
3123 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3124 | TAG_MOREDISPLAY | TAG_DISPLAY;
3125 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
3126 if (remote_get_threadinfo (&id, set, &threadinfo))
3127 if (threadinfo.active)
3129 if (*threadinfo.shortname)
3130 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
3131 " Name: %s,", threadinfo.shortname);
3132 if (*threadinfo.display)
3133 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3134 " State: %s,", threadinfo.display);
3135 if (*threadinfo.more_display)
3136 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3137 " Priority: %s", threadinfo.more_display);
3141 /* For purely cosmetic reasons, clear up trailing commas. */
3142 if (',' == display_buf[n-1])
3143 display_buf[n-1] = ' ';
3152 remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
3153 struct static_tracepoint_marker *marker)
3155 struct remote_state *rs = get_remote_state ();
3158 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3160 p += hexnumstr (p, addr);
3162 getpkt (&rs->buf, &rs->buf_size, 0);
3166 error (_("Remote failure reply: %s"), p);
3170 parse_static_tracepoint_marker_definition (p, &p, marker);
3177 static VEC(static_tracepoint_marker_p) *
3178 remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3181 struct remote_state *rs = get_remote_state ();
3182 VEC(static_tracepoint_marker_p) *markers = NULL;
3183 struct static_tracepoint_marker *marker = NULL;
3184 struct cleanup *old_chain;
3187 /* Ask for a first packet of static tracepoint marker
3190 getpkt (&rs->buf, &rs->buf_size, 0);
3193 error (_("Remote failure reply: %s"), p);
3195 old_chain = make_cleanup (free_current_marker, &marker);
3200 marker = XCNEW (struct static_tracepoint_marker);
3204 parse_static_tracepoint_marker_definition (p, &p, marker);
3206 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3208 VEC_safe_push (static_tracepoint_marker_p,
3214 release_static_tracepoint_marker (marker);
3215 memset (marker, 0, sizeof (*marker));
3218 while (*p++ == ','); /* comma-separated list */
3219 /* Ask for another packet of static tracepoint definition. */
3221 getpkt (&rs->buf, &rs->buf_size, 0);
3225 do_cleanups (old_chain);
3230 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3233 remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
3235 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
3239 /* Restart the remote side; this is an extended protocol operation. */
3242 extended_remote_restart (void)
3244 struct remote_state *rs = get_remote_state ();
3246 /* Send the restart command; for reasons I don't understand the
3247 remote side really expects a number after the "R". */
3248 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3251 remote_fileio_reset ();
3254 /* Clean up connection to a remote debugger. */
3257 remote_close (struct target_ops *self)
3259 struct remote_state *rs = get_remote_state ();
3261 if (rs->remote_desc == NULL)
3262 return; /* already closed */
3264 /* Make sure we leave stdin registered in the event loop, and we
3265 don't leave the async SIGINT signal handler installed. */
3266 remote_terminal_ours (self);
3268 serial_close (rs->remote_desc);
3269 rs->remote_desc = NULL;
3271 /* We don't have a connection to the remote stub anymore. Get rid
3272 of all the inferiors and their threads we were controlling.
3273 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3274 will be unable to find the thread corresponding to (pid, 0, 0). */
3275 inferior_ptid = null_ptid;
3276 discard_all_inferiors ();
3278 /* We are closing the remote target, so we should discard
3279 everything of this target. */
3280 discard_pending_stop_replies_in_queue (rs);
3282 if (remote_async_inferior_event_token)
3283 delete_async_event_handler (&remote_async_inferior_event_token);
3285 remote_notif_state_xfree (rs->notif_state);
3287 trace_reset_local_state ();
3290 /* Query the remote side for the text, data and bss offsets. */
3295 struct remote_state *rs = get_remote_state ();
3298 int lose, num_segments = 0, do_sections, do_segments;
3299 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3300 struct section_offsets *offs;
3301 struct symfile_segment_data *data;
3303 if (symfile_objfile == NULL)
3306 putpkt ("qOffsets");
3307 getpkt (&rs->buf, &rs->buf_size, 0);
3310 if (buf[0] == '\000')
3311 return; /* Return silently. Stub doesn't support
3315 warning (_("Remote failure reply: %s"), buf);
3319 /* Pick up each field in turn. This used to be done with scanf, but
3320 scanf will make trouble if CORE_ADDR size doesn't match
3321 conversion directives correctly. The following code will work
3322 with any size of CORE_ADDR. */
3323 text_addr = data_addr = bss_addr = 0;
3327 if (startswith (ptr, "Text="))
3330 /* Don't use strtol, could lose on big values. */
3331 while (*ptr && *ptr != ';')
3332 text_addr = (text_addr << 4) + fromhex (*ptr++);
3334 if (startswith (ptr, ";Data="))
3337 while (*ptr && *ptr != ';')
3338 data_addr = (data_addr << 4) + fromhex (*ptr++);
3343 if (!lose && startswith (ptr, ";Bss="))
3346 while (*ptr && *ptr != ';')
3347 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3349 if (bss_addr != data_addr)
3350 warning (_("Target reported unsupported offsets: %s"), buf);
3355 else if (startswith (ptr, "TextSeg="))
3358 /* Don't use strtol, could lose on big values. */
3359 while (*ptr && *ptr != ';')
3360 text_addr = (text_addr << 4) + fromhex (*ptr++);
3363 if (startswith (ptr, ";DataSeg="))
3366 while (*ptr && *ptr != ';')
3367 data_addr = (data_addr << 4) + fromhex (*ptr++);
3375 error (_("Malformed response to offset query, %s"), buf);
3376 else if (*ptr != '\0')
3377 warning (_("Target reported unsupported offsets: %s"), buf);
3379 offs = ((struct section_offsets *)
3380 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3381 memcpy (offs, symfile_objfile->section_offsets,
3382 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3384 data = get_symfile_segment_data (symfile_objfile->obfd);
3385 do_segments = (data != NULL);
3386 do_sections = num_segments == 0;
3388 if (num_segments > 0)
3390 segments[0] = text_addr;
3391 segments[1] = data_addr;
3393 /* If we have two segments, we can still try to relocate everything
3394 by assuming that the .text and .data offsets apply to the whole
3395 text and data segments. Convert the offsets given in the packet
3396 to base addresses for symfile_map_offsets_to_segments. */
3397 else if (data && data->num_segments == 2)
3399 segments[0] = data->segment_bases[0] + text_addr;
3400 segments[1] = data->segment_bases[1] + data_addr;
3403 /* If the object file has only one segment, assume that it is text
3404 rather than data; main programs with no writable data are rare,
3405 but programs with no code are useless. Of course the code might
3406 have ended up in the data segment... to detect that we would need
3407 the permissions here. */
3408 else if (data && data->num_segments == 1)
3410 segments[0] = data->segment_bases[0] + text_addr;
3413 /* There's no way to relocate by segment. */
3419 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3420 offs, num_segments, segments);
3422 if (ret == 0 && !do_sections)
3423 error (_("Can not handle qOffsets TextSeg "
3424 "response with this symbol file"));
3431 free_symfile_segment_data (data);
3435 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3437 /* This is a temporary kludge to force data and bss to use the
3438 same offsets because that's what nlmconv does now. The real
3439 solution requires changes to the stub and remote.c that I
3440 don't have time to do right now. */
3442 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3443 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3446 objfile_relocate (symfile_objfile, offs);
3449 /* Send interrupt_sequence to remote target. */
3451 send_interrupt_sequence (void)
3453 struct remote_state *rs = get_remote_state ();
3455 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3456 remote_serial_write ("\x03", 1);
3457 else if (interrupt_sequence_mode == interrupt_sequence_break)
3458 serial_send_break (rs->remote_desc);
3459 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3461 serial_send_break (rs->remote_desc);
3462 remote_serial_write ("g", 1);
3465 internal_error (__FILE__, __LINE__,
3466 _("Invalid value for interrupt_sequence_mode: %s."),
3467 interrupt_sequence_mode);
3471 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3472 and extract the PTID. Returns NULL_PTID if not found. */
3475 stop_reply_extract_thread (char *stop_reply)
3477 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3481 /* Txx r:val ; r:val (...) */
3484 /* Look for "register" named "thread". */
3489 p1 = strchr (p, ':');
3493 if (strncmp (p, "thread", p1 - p) == 0)
3494 return read_ptid (++p1, &p);
3496 p1 = strchr (p, ';');
3508 /* Determine the remote side's current thread. If we have a stop
3509 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3510 "thread" register we can extract the current thread from. If not,
3511 ask the remote which is the current thread with qC. The former
3512 method avoids a roundtrip. */
3515 get_current_thread (char *wait_status)
3517 ptid_t ptid = null_ptid;
3519 /* Note we don't use remote_parse_stop_reply as that makes use of
3520 the target architecture, which we haven't yet fully determined at
3522 if (wait_status != NULL)
3523 ptid = stop_reply_extract_thread (wait_status);
3524 if (ptid_equal (ptid, null_ptid))
3525 ptid = remote_current_thread (inferior_ptid);
3530 /* Query the remote target for which is the current thread/process,
3531 add it to our tables, and update INFERIOR_PTID. The caller is
3532 responsible for setting the state such that the remote end is ready
3533 to return the current thread.
3535 This function is called after handling the '?' or 'vRun' packets,
3536 whose response is a stop reply from which we can also try
3537 extracting the thread. If the target doesn't support the explicit
3538 qC query, we infer the current thread from that stop reply, passed
3539 in in WAIT_STATUS, which may be NULL. */
3542 add_current_inferior_and_thread (char *wait_status)
3544 struct remote_state *rs = get_remote_state ();
3548 inferior_ptid = null_ptid;
3550 /* Now, if we have thread information, update inferior_ptid. */
3551 ptid = get_current_thread (wait_status);
3553 if (!ptid_equal (ptid, null_ptid))
3555 if (!remote_multi_process_p (rs))
3558 inferior_ptid = ptid;
3562 /* Without this, some commands which require an active target
3563 (such as kill) won't work. This variable serves (at least)
3564 double duty as both the pid of the target process (if it has
3565 such), and as a flag indicating that a target is active. */
3566 inferior_ptid = magic_null_ptid;
3570 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1, 1);
3572 /* Add the main thread. */
3573 add_thread_silent (inferior_ptid);
3576 /* Process all initial stop replies the remote side sent in response
3577 to the ? packet. These indicate threads that were already stopped
3578 on initial connection. We mark these threads as stopped and print
3579 their current frame before giving the user the prompt. */
3582 process_initial_stop_replies (void)
3584 int pending_stop_replies = stop_reply_queue_length ();
3586 /* Consume the initial pending events. */
3587 while (pending_stop_replies-- > 0)
3589 ptid_t waiton_ptid = minus_one_ptid;
3591 struct target_waitstatus ws;
3592 int ignore_event = 0;
3594 memset (&ws, 0, sizeof (ws));
3595 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3597 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3601 case TARGET_WAITKIND_IGNORE:
3602 case TARGET_WAITKIND_NO_RESUMED:
3603 case TARGET_WAITKIND_SIGNALLED:
3604 case TARGET_WAITKIND_EXITED:
3605 /* We shouldn't see these, but if we do, just ignore. */
3607 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3611 case TARGET_WAITKIND_EXECD:
3612 xfree (ws.value.execd_pathname);
3621 switch_to_thread (event_ptid);
3622 set_executing (event_ptid, 0);
3623 set_running (event_ptid, 0);
3625 stop_pc = get_frame_pc (get_current_frame ());
3626 set_current_sal_from_frame (get_current_frame ());
3628 if (ws.kind == TARGET_WAITKIND_STOPPED)
3630 enum gdb_signal sig = ws.value.sig;
3632 /* Stubs traditionally report SIGTRAP as initial signal,
3633 instead of signal 0. Suppress it. */
3634 if (sig == GDB_SIGNAL_TRAP)
3636 inferior_thread ()->suspend.stop_signal = sig;
3638 if (signal_print_state (sig))
3639 observer_notify_signal_received (sig);
3642 print_stop_event (&ws);
3643 observer_notify_normal_stop (NULL, 1);
3648 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
3650 struct remote_state *rs = get_remote_state ();
3651 struct packet_config *noack_config;
3652 char *wait_status = NULL;
3654 immediate_quit++; /* Allow user to interrupt it. */
3657 if (interrupt_on_connect)
3658 send_interrupt_sequence ();
3660 /* Ack any packet which the remote side has already sent. */
3661 serial_write (rs->remote_desc, "+", 1);
3663 /* Signal other parts that we're going through the initial setup,
3664 and so things may not be stable yet. */
3665 rs->starting_up = 1;
3667 /* The first packet we send to the target is the optional "supported
3668 packets" request. If the target can answer this, it will tell us
3669 which later probes to skip. */
3670 remote_query_supported ();
3672 /* If the stub wants to get a QAllow, compose one and send it. */
3673 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
3674 remote_set_permissions (target);
3676 /* Next, we possibly activate noack mode.
3678 If the QStartNoAckMode packet configuration is set to AUTO,
3679 enable noack mode if the stub reported a wish for it with
3682 If set to TRUE, then enable noack mode even if the stub didn't
3683 report it in qSupported. If the stub doesn't reply OK, the
3684 session ends with an error.
3686 If FALSE, then don't activate noack mode, regardless of what the
3687 stub claimed should be the default with qSupported. */
3689 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3690 if (packet_config_support (noack_config) != PACKET_DISABLE)
3692 putpkt ("QStartNoAckMode");
3693 getpkt (&rs->buf, &rs->buf_size, 0);
3694 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3700 /* Tell the remote that we are using the extended protocol. */
3702 getpkt (&rs->buf, &rs->buf_size, 0);
3705 /* Let the target know which signals it is allowed to pass down to
3707 update_signals_program_target ();
3709 /* Next, if the target can specify a description, read it. We do
3710 this before anything involving memory or registers. */
3711 target_find_description ();
3713 /* Next, now that we know something about the target, update the
3714 address spaces in the program spaces. */
3715 update_address_spaces ();
3717 /* On OSs where the list of libraries is global to all
3718 processes, we fetch them early. */
3719 if (gdbarch_has_global_solist (target_gdbarch ()))
3720 solib_add (NULL, from_tty, target, auto_solib_add);
3724 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3725 error (_("Non-stop mode requested, but remote "
3726 "does not support non-stop"));
3728 putpkt ("QNonStop:1");
3729 getpkt (&rs->buf, &rs->buf_size, 0);
3731 if (strcmp (rs->buf, "OK") != 0)
3732 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
3734 /* Find about threads and processes the stub is already
3735 controlling. We default to adding them in the running state.
3736 The '?' query below will then tell us about which threads are
3738 remote_update_thread_list (target);
3740 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
3742 /* Don't assume that the stub can operate in all-stop mode.
3743 Request it explicitly. */
3744 putpkt ("QNonStop:0");
3745 getpkt (&rs->buf, &rs->buf_size, 0);
3747 if (strcmp (rs->buf, "OK") != 0)
3748 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
3751 /* Upload TSVs regardless of whether the target is running or not. The
3752 remote stub, such as GDBserver, may have some predefined or builtin
3753 TSVs, even if the target is not running. */
3754 if (remote_get_trace_status (target, current_trace_status ()) != -1)
3756 struct uploaded_tsv *uploaded_tsvs = NULL;
3758 remote_upload_trace_state_variables (target, &uploaded_tsvs);
3759 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3762 /* Check whether the target is running now. */
3764 getpkt (&rs->buf, &rs->buf_size, 0);
3770 struct inferior *inf;
3772 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
3775 error (_("The target is not running (try extended-remote?)"));
3777 /* We're connected, but not running. Drop out before we
3778 call start_remote. */
3779 rs->starting_up = 0;
3784 /* Save the reply for later. */
3785 wait_status = alloca (strlen (rs->buf) + 1);
3786 strcpy (wait_status, rs->buf);
3789 /* Fetch thread list. */
3790 target_update_thread_list ();
3792 /* Let the stub know that we want it to return the thread. */
3793 set_continue_thread (minus_one_ptid);
3795 if (thread_count () == 0)
3797 /* Target has no concept of threads at all. GDB treats
3798 non-threaded target as single-threaded; add a main
3800 add_current_inferior_and_thread (wait_status);
3804 /* We have thread information; select the thread the target
3805 says should be current. If we're reconnecting to a
3806 multi-threaded program, this will ideally be the thread
3807 that last reported an event before GDB disconnected. */
3808 inferior_ptid = get_current_thread (wait_status);
3809 if (ptid_equal (inferior_ptid, null_ptid))
3811 /* Odd... The target was able to list threads, but not
3812 tell us which thread was current (no "thread"
3813 register in T stop reply?). Just pick the first
3814 thread in the thread list then. */
3817 fprintf_unfiltered (gdb_stdlog,
3818 "warning: couldn't determine remote "
3819 "current thread; picking first in list.\n");
3821 inferior_ptid = thread_list->ptid;
3825 /* init_wait_for_inferior should be called before get_offsets in order
3826 to manage `inserted' flag in bp loc in a correct state.
3827 breakpoint_init_inferior, called from init_wait_for_inferior, set
3828 `inserted' flag to 0, while before breakpoint_re_set, called from
3829 start_remote, set `inserted' flag to 1. In the initialization of
3830 inferior, breakpoint_init_inferior should be called first, and then
3831 breakpoint_re_set can be called. If this order is broken, state of
3832 `inserted' flag is wrong, and cause some problems on breakpoint
3834 init_wait_for_inferior ();
3836 get_offsets (); /* Get text, data & bss offsets. */
3838 /* If we could not find a description using qXfer, and we know
3839 how to do it some other way, try again. This is not
3840 supported for non-stop; it could be, but it is tricky if
3841 there are no stopped threads when we connect. */
3842 if (remote_read_description_p (target)
3843 && gdbarch_target_desc (target_gdbarch ()) == NULL)
3845 target_clear_description ();
3846 target_find_description ();
3849 /* Use the previously fetched status. */
3850 gdb_assert (wait_status != NULL);
3851 strcpy (rs->buf, wait_status);
3852 rs->cached_wait_status = 1;
3855 start_remote (from_tty); /* Initialize gdb process mechanisms. */
3859 ptid_t current_ptid;
3861 /* Clear WFI global state. Do this before finding about new
3862 threads and inferiors, and setting the current inferior.
3863 Otherwise we would clear the proceed status of the current
3864 inferior when we want its stop_soon state to be preserved
3865 (see notice_new_inferior). */
3866 init_wait_for_inferior ();
3868 /* In non-stop, we will either get an "OK", meaning that there
3869 are no stopped threads at this time; or, a regular stop
3870 reply. In the latter case, there may be more than one thread
3871 stopped --- we pull them all out using the vStopped
3873 if (strcmp (rs->buf, "OK") != 0)
3875 struct notif_client *notif = ¬if_client_stop;
3877 /* remote_notif_get_pending_replies acks this one, and gets
3879 rs->notif_state->pending_event[notif_client_stop.id]
3880 = remote_notif_parse (notif, rs->buf);
3881 remote_notif_get_pending_events (notif);
3884 if (thread_count () == 0)
3887 error (_("The target is not running (try extended-remote?)"));
3889 /* We're connected, but not running. Drop out before we
3890 call start_remote. */
3891 rs->starting_up = 0;
3895 /* Let the stub know that we want it to return the thread. */
3897 /* Force the stub to choose a thread. */
3898 set_general_thread (null_ptid);
3901 current_ptid = remote_current_thread (minus_one_ptid);
3902 if (ptid_equal (inferior_ptid, minus_one_ptid))
3903 error (_("remote didn't report the current thread in non-stop mode"));
3905 inferior_ptid = current_ptid;
3906 get_offsets (); /* Get text, data & bss offsets. */
3908 /* In non-stop mode, any cached wait status will be stored in
3909 the stop reply queue. */
3910 gdb_assert (wait_status == NULL);
3912 /* Report all signals during attach/startup. */
3913 remote_pass_signals (target, 0, NULL);
3915 /* If there are already stopped threads, mark them stopped and
3916 report their stops before giving the prompt to the user. */
3917 process_initial_stop_replies ();
3919 switch_to_thread (current_ptid);
3921 if (target_can_async_p ())
3925 /* If we connected to a live target, do some additional setup. */
3926 if (target_has_execution)
3928 if (symfile_objfile) /* No use without a symbol-file. */
3929 remote_check_symbols ();
3932 /* Possibly the target has been engaged in a trace run started
3933 previously; find out where things are at. */
3934 if (remote_get_trace_status (target, current_trace_status ()) != -1)
3936 struct uploaded_tp *uploaded_tps = NULL;
3938 if (current_trace_status ()->running)
3939 printf_filtered (_("Trace is already running on the target.\n"));
3941 remote_upload_tracepoints (target, &uploaded_tps);
3943 merge_uploaded_tracepoints (&uploaded_tps);
3946 /* The thread and inferior lists are now synchronized with the
3947 target, our symbols have been relocated, and we're merged the
3948 target's tracepoints with ours. We're done with basic start
3950 rs->starting_up = 0;
3952 /* Maybe breakpoints are global and need to be inserted now. */
3953 if (breakpoints_should_be_inserted_now ())
3954 insert_breakpoints ();
3957 /* Open a connection to a remote debugger.
3958 NAME is the filename used for communication. */
3961 remote_open (const char *name, int from_tty)
3963 remote_open_1 (name, from_tty, &remote_ops, 0);
3966 /* Open a connection to a remote debugger using the extended
3967 remote gdb protocol. NAME is the filename used for communication. */
3970 extended_remote_open (const char *name, int from_tty)
3972 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
3975 /* Reset all packets back to "unknown support". Called when opening a
3976 new connection to a remote target. */
3979 reset_all_packet_configs_support (void)
3983 for (i = 0; i < PACKET_MAX; i++)
3984 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
3987 /* Initialize all packet configs. */
3990 init_all_packet_configs (void)
3994 for (i = 0; i < PACKET_MAX; i++)
3996 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
3997 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4001 /* Symbol look-up. */
4004 remote_check_symbols (void)
4006 struct remote_state *rs = get_remote_state ();
4007 char *msg, *reply, *tmp;
4008 struct bound_minimal_symbol sym;
4011 /* The remote side has no concept of inferiors that aren't running
4012 yet, it only knows about running processes. If we're connected
4013 but our current inferior is not running, we should not invite the
4014 remote target to request symbol lookups related to its
4015 (unrelated) current process. */
4016 if (!target_has_execution)
4019 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4022 /* Make sure the remote is pointing at the right process. Note
4023 there's no way to select "no process". */
4024 set_general_process ();
4026 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4027 because we need both at the same time. */
4028 msg = alloca (get_remote_packet_size ());
4030 /* Invite target to request symbol lookups. */
4032 putpkt ("qSymbol::");
4033 getpkt (&rs->buf, &rs->buf_size, 0);
4034 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
4037 while (startswith (reply, "qSymbol:"))
4039 struct bound_minimal_symbol sym;
4042 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
4044 sym = lookup_minimal_symbol (msg, NULL, NULL);
4045 if (sym.minsym == NULL)
4046 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
4049 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4050 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4052 /* If this is a function address, return the start of code
4053 instead of any data function descriptor. */
4054 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4058 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
4059 phex_nz (sym_addr, addr_size), &reply[8]);
4063 getpkt (&rs->buf, &rs->buf_size, 0);
4068 static struct serial *
4069 remote_serial_open (const char *name)
4071 static int udp_warning = 0;
4073 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4074 of in ser-tcp.c, because it is the remote protocol assuming that the
4075 serial connection is reliable and not the serial connection promising
4077 if (!udp_warning && startswith (name, "udp:"))
4079 warning (_("The remote protocol may be unreliable over UDP.\n"
4080 "Some events may be lost, rendering further debugging "
4085 return serial_open (name);
4088 /* Inform the target of our permission settings. The permission flags
4089 work without this, but if the target knows the settings, it can do
4090 a couple things. First, it can add its own check, to catch cases
4091 that somehow manage to get by the permissions checks in target
4092 methods. Second, if the target is wired to disallow particular
4093 settings (for instance, a system in the field that is not set up to
4094 be able to stop at a breakpoint), it can object to any unavailable
4098 remote_set_permissions (struct target_ops *self)
4100 struct remote_state *rs = get_remote_state ();
4102 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4103 "WriteReg:%x;WriteMem:%x;"
4104 "InsertBreak:%x;InsertTrace:%x;"
4105 "InsertFastTrace:%x;Stop:%x",
4106 may_write_registers, may_write_memory,
4107 may_insert_breakpoints, may_insert_tracepoints,
4108 may_insert_fast_tracepoints, may_stop);
4110 getpkt (&rs->buf, &rs->buf_size, 0);
4112 /* If the target didn't like the packet, warn the user. Do not try
4113 to undo the user's settings, that would just be maddening. */
4114 if (strcmp (rs->buf, "OK") != 0)
4115 warning (_("Remote refused setting permissions with: %s"), rs->buf);
4118 /* This type describes each known response to the qSupported
4120 struct protocol_feature
4122 /* The name of this protocol feature. */
4125 /* The default for this protocol feature. */
4126 enum packet_support default_support;
4128 /* The function to call when this feature is reported, or after
4129 qSupported processing if the feature is not supported.
4130 The first argument points to this structure. The second
4131 argument indicates whether the packet requested support be
4132 enabled, disabled, or probed (or the default, if this function
4133 is being called at the end of processing and this feature was
4134 not reported). The third argument may be NULL; if not NULL, it
4135 is a NUL-terminated string taken from the packet following
4136 this feature's name and an equals sign. */
4137 void (*func) (const struct protocol_feature *, enum packet_support,
4140 /* The corresponding packet for this feature. Only used if
4141 FUNC is remote_supported_packet. */
4146 remote_supported_packet (const struct protocol_feature *feature,
4147 enum packet_support support,
4148 const char *argument)
4152 warning (_("Remote qSupported response supplied an unexpected value for"
4153 " \"%s\"."), feature->name);
4157 remote_protocol_packets[feature->packet].support = support;
4161 remote_packet_size (const struct protocol_feature *feature,
4162 enum packet_support support, const char *value)
4164 struct remote_state *rs = get_remote_state ();
4169 if (support != PACKET_ENABLE)
4172 if (value == NULL || *value == '\0')
4174 warning (_("Remote target reported \"%s\" without a size."),
4180 packet_size = strtol (value, &value_end, 16);
4181 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4183 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4184 feature->name, value);
4188 if (packet_size > MAX_REMOTE_PACKET_SIZE)
4190 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
4191 packet_size, MAX_REMOTE_PACKET_SIZE);
4192 packet_size = MAX_REMOTE_PACKET_SIZE;
4195 /* Record the new maximum packet size. */
4196 rs->explicit_packet_size = packet_size;
4199 static const struct protocol_feature remote_protocol_features[] = {
4200 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
4201 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
4202 PACKET_qXfer_auxv },
4203 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4204 PACKET_qXfer_exec_file },
4205 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4206 PACKET_qXfer_features },
4207 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4208 PACKET_qXfer_libraries },
4209 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4210 PACKET_qXfer_libraries_svr4 },
4211 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4212 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
4213 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
4214 PACKET_qXfer_memory_map },
4215 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4216 PACKET_qXfer_spu_read },
4217 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4218 PACKET_qXfer_spu_write },
4219 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4220 PACKET_qXfer_osdata },
4221 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4222 PACKET_qXfer_threads },
4223 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4224 PACKET_qXfer_traceframe_info },
4225 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4226 PACKET_QPassSignals },
4227 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4228 PACKET_QProgramSignals },
4229 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4230 PACKET_QStartNoAckMode },
4231 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4232 PACKET_multiprocess_feature },
4233 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4234 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4235 PACKET_qXfer_siginfo_read },
4236 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4237 PACKET_qXfer_siginfo_write },
4238 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
4239 PACKET_ConditionalTracepoints },
4240 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
4241 PACKET_ConditionalBreakpoints },
4242 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
4243 PACKET_BreakpointCommands },
4244 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
4245 PACKET_FastTracepoints },
4246 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
4247 PACKET_StaticTracepoints },
4248 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
4249 PACKET_InstallInTrace},
4250 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4251 PACKET_DisconnectedTracing_feature },
4252 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4254 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4256 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4257 PACKET_TracepointSource },
4258 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4260 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4261 PACKET_EnableDisableTracepoints_feature },
4262 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4263 PACKET_qXfer_fdpic },
4264 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4266 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4267 PACKET_QDisableRandomization },
4268 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4269 { "QTBuffer:size", PACKET_DISABLE,
4270 remote_supported_packet, PACKET_QTBuffer_size},
4271 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
4272 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4273 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4274 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
4275 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4276 PACKET_qXfer_btrace },
4277 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
4278 PACKET_qXfer_btrace_conf },
4279 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
4280 PACKET_Qbtrace_conf_bts_size },
4281 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
4282 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
4283 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4284 PACKET_fork_event_feature },
4285 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4286 PACKET_vfork_event_feature },
4287 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
4288 PACKET_Qbtrace_conf_pt_size }
4291 static char *remote_support_xml;
4293 /* Register string appended to "xmlRegisters=" in qSupported query. */
4296 register_remote_support_xml (const char *xml)
4298 #if defined(HAVE_LIBEXPAT)
4299 if (remote_support_xml == NULL)
4300 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4303 char *copy = xstrdup (remote_support_xml + 13);
4304 char *p = strtok (copy, ",");
4308 if (strcmp (p, xml) == 0)
4315 while ((p = strtok (NULL, ",")) != NULL);
4318 remote_support_xml = reconcat (remote_support_xml,
4319 remote_support_xml, ",", xml,
4326 remote_query_supported_append (char *msg, const char *append)
4329 return reconcat (msg, msg, ";", append, (char *) NULL);
4331 return xstrdup (append);
4335 remote_query_supported (void)
4337 struct remote_state *rs = get_remote_state ();
4340 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4342 /* The packet support flags are handled differently for this packet
4343 than for most others. We treat an error, a disabled packet, and
4344 an empty response identically: any features which must be reported
4345 to be used will be automatically disabled. An empty buffer
4346 accomplishes this, since that is also the representation for a list
4347 containing no features. */
4350 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
4353 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4355 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4356 q = remote_query_supported_append (q, "multiprocess+");
4358 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4359 q = remote_query_supported_append (q, "swbreak+");
4360 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4361 q = remote_query_supported_append (q, "hwbreak+");
4363 if (remote_support_xml)
4364 q = remote_query_supported_append (q, remote_support_xml);
4366 q = remote_query_supported_append (q, "qRelocInsn+");
4370 if (packet_set_cmd_state (PACKET_fork_event_feature)
4371 != AUTO_BOOLEAN_FALSE)
4372 q = remote_query_supported_append (q, "fork-events+");
4373 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4374 != AUTO_BOOLEAN_FALSE)
4375 q = remote_query_supported_append (q, "vfork-events+");
4378 q = reconcat (q, "qSupported:", q, (char *) NULL);
4381 do_cleanups (old_chain);
4383 getpkt (&rs->buf, &rs->buf_size, 0);
4385 /* If an error occured, warn, but do not return - just reset the
4386 buffer to empty and go on to disable features. */
4387 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4390 warning (_("Remote failure reply: %s"), rs->buf);
4395 memset (seen, 0, sizeof (seen));
4400 enum packet_support is_supported;
4401 char *p, *end, *name_end, *value;
4403 /* First separate out this item from the rest of the packet. If
4404 there's another item after this, we overwrite the separator
4405 (terminated strings are much easier to work with). */
4407 end = strchr (p, ';');
4410 end = p + strlen (p);
4420 warning (_("empty item in \"qSupported\" response"));
4425 name_end = strchr (p, '=');
4428 /* This is a name=value entry. */
4429 is_supported = PACKET_ENABLE;
4430 value = name_end + 1;
4439 is_supported = PACKET_ENABLE;
4443 is_supported = PACKET_DISABLE;
4447 is_supported = PACKET_SUPPORT_UNKNOWN;
4451 warning (_("unrecognized item \"%s\" "
4452 "in \"qSupported\" response"), p);
4458 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4459 if (strcmp (remote_protocol_features[i].name, p) == 0)
4461 const struct protocol_feature *feature;
4464 feature = &remote_protocol_features[i];
4465 feature->func (feature, is_supported, value);
4470 /* If we increased the packet size, make sure to increase the global
4471 buffer size also. We delay this until after parsing the entire
4472 qSupported packet, because this is the same buffer we were
4474 if (rs->buf_size < rs->explicit_packet_size)
4476 rs->buf_size = rs->explicit_packet_size;
4477 rs->buf = xrealloc (rs->buf, rs->buf_size);
4480 /* Handle the defaults for unmentioned features. */
4481 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4484 const struct protocol_feature *feature;
4486 feature = &remote_protocol_features[i];
4487 feature->func (feature, feature->default_support, NULL);
4491 /* Remove any of the remote.c targets from target stack. Upper targets depend
4492 on it so remove them first. */
4495 remote_unpush_target (void)
4497 pop_all_targets_above (process_stratum - 1);
4501 remote_open_1 (const char *name, int from_tty,
4502 struct target_ops *target, int extended_p)
4504 struct remote_state *rs = get_remote_state ();
4507 error (_("To open a remote debug connection, you need to specify what\n"
4508 "serial device is attached to the remote system\n"
4509 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4511 /* See FIXME above. */
4512 if (!target_async_permitted)
4513 wait_forever_enabled_p = 1;
4515 /* If we're connected to a running target, target_preopen will kill it.
4516 Ask this question first, before target_preopen has a chance to kill
4518 if (rs->remote_desc != NULL && !have_inferiors ())
4521 && !query (_("Already connected to a remote target. Disconnect? ")))
4522 error (_("Still connected."));
4525 /* Here the possibly existing remote target gets unpushed. */
4526 target_preopen (from_tty);
4528 /* Make sure we send the passed signals list the next time we resume. */
4529 xfree (rs->last_pass_packet);
4530 rs->last_pass_packet = NULL;
4532 /* Make sure we send the program signals list the next time we
4534 xfree (rs->last_program_signals_packet);
4535 rs->last_program_signals_packet = NULL;
4537 remote_fileio_reset ();
4538 reopen_exec_file ();
4541 rs->remote_desc = remote_serial_open (name);
4542 if (!rs->remote_desc)
4543 perror_with_name (name);
4545 if (baud_rate != -1)
4547 if (serial_setbaudrate (rs->remote_desc, baud_rate))
4549 /* The requested speed could not be set. Error out to
4550 top level after closing remote_desc. Take care to
4551 set remote_desc to NULL to avoid closing remote_desc
4553 serial_close (rs->remote_desc);
4554 rs->remote_desc = NULL;
4555 perror_with_name (name);
4559 serial_setparity (rs->remote_desc, serial_parity);
4560 serial_raw (rs->remote_desc);
4562 /* If there is something sitting in the buffer we might take it as a
4563 response to a command, which would be bad. */
4564 serial_flush_input (rs->remote_desc);
4568 puts_filtered ("Remote debugging using ");
4569 puts_filtered (name);
4570 puts_filtered ("\n");
4572 push_target (target); /* Switch to using remote target now. */
4574 /* Register extra event sources in the event loop. */
4575 remote_async_inferior_event_token
4576 = create_async_event_handler (remote_async_inferior_event_handler,
4578 rs->notif_state = remote_notif_state_allocate ();
4580 /* Reset the target state; these things will be queried either by
4581 remote_query_supported or as they are needed. */
4582 reset_all_packet_configs_support ();
4583 rs->cached_wait_status = 0;
4584 rs->explicit_packet_size = 0;
4586 rs->extended = extended_p;
4587 rs->waiting_for_stop_reply = 0;
4588 rs->ctrlc_pending_p = 0;
4590 rs->general_thread = not_sent_ptid;
4591 rs->continue_thread = not_sent_ptid;
4592 rs->remote_traceframe_number = -1;
4594 /* Probe for ability to use "ThreadInfo" query, as required. */
4595 rs->use_threadinfo_query = 1;
4596 rs->use_threadextra_query = 1;
4598 readahead_cache_invalidate ();
4600 if (target_async_permitted)
4602 /* With this target we start out by owning the terminal. */
4603 remote_async_terminal_ours_p = 1;
4605 /* FIXME: cagney/1999-09-23: During the initial connection it is
4606 assumed that the target is already ready and able to respond to
4607 requests. Unfortunately remote_start_remote() eventually calls
4608 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4609 around this. Eventually a mechanism that allows
4610 wait_for_inferior() to expect/get timeouts will be
4612 wait_forever_enabled_p = 0;
4615 /* First delete any symbols previously loaded from shared libraries. */
4616 no_shared_libraries (NULL, 0);
4619 init_thread_list ();
4621 /* Start the remote connection. If error() or QUIT, discard this
4622 target (we'd otherwise be in an inconsistent state) and then
4623 propogate the error on up the exception chain. This ensures that
4624 the caller doesn't stumble along blindly assuming that the
4625 function succeeded. The CLI doesn't have this problem but other
4626 UI's, such as MI do.
4628 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4629 this function should return an error indication letting the
4630 caller restore the previous state. Unfortunately the command
4631 ``target remote'' is directly wired to this function making that
4632 impossible. On a positive note, the CLI side of this problem has
4633 been fixed - the function set_cmd_context() makes it possible for
4634 all the ``target ....'' commands to share a common callback
4635 function. See cli-dump.c. */
4640 remote_start_remote (from_tty, target, extended_p);
4642 CATCH (ex, RETURN_MASK_ALL)
4644 /* Pop the partially set up target - unless something else did
4645 already before throwing the exception. */
4646 if (rs->remote_desc != NULL)
4647 remote_unpush_target ();
4648 if (target_async_permitted)
4649 wait_forever_enabled_p = 1;
4650 throw_exception (ex);
4655 remote_btrace_reset ();
4657 if (target_async_permitted)
4658 wait_forever_enabled_p = 1;
4661 /* Detach the specified process. */
4664 remote_detach_pid (int pid)
4666 struct remote_state *rs = get_remote_state ();
4668 if (remote_multi_process_p (rs))
4669 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
4671 strcpy (rs->buf, "D");
4674 getpkt (&rs->buf, &rs->buf_size, 0);
4676 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4678 else if (rs->buf[0] == '\0')
4679 error (_("Remote doesn't know how to detach"));
4681 error (_("Can't detach process."));
4684 /* This detaches a program to which we previously attached, using
4685 inferior_ptid to identify the process. After this is done, GDB
4686 can be used to debug some other program. We better not have left
4687 any breakpoints in the target program or it'll die when it hits
4691 remote_detach_1 (const char *args, int from_tty)
4693 int pid = ptid_get_pid (inferior_ptid);
4694 struct remote_state *rs = get_remote_state ();
4695 struct thread_info *tp = find_thread_ptid (inferior_ptid);
4699 error (_("Argument given to \"detach\" when remotely debugging."));
4701 if (!target_has_execution)
4702 error (_("No process to detach from."));
4706 char *exec_file = get_exec_file (0);
4707 if (exec_file == NULL)
4709 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
4710 target_pid_to_str (pid_to_ptid (pid)));
4711 gdb_flush (gdb_stdout);
4714 /* Tell the remote target to detach. */
4715 remote_detach_pid (pid);
4717 if (from_tty && !rs->extended)
4718 puts_filtered (_("Ending remote debugging.\n"));
4720 /* Check to see if we are detaching a fork parent. Note that if we
4721 are detaching a fork child, tp == NULL. */
4722 is_fork_parent = (tp != NULL
4723 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
4725 /* If doing detach-on-fork, we don't mourn, because that will delete
4726 breakpoints that should be available for the followed inferior. */
4727 if (!is_fork_parent)
4728 target_mourn_inferior ();
4731 inferior_ptid = null_ptid;
4732 detach_inferior (pid);
4737 remote_detach (struct target_ops *ops, const char *args, int from_tty)
4739 remote_detach_1 (args, from_tty);
4743 extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
4745 remote_detach_1 (args, from_tty);
4748 /* Target follow-fork function for remote targets. On entry, and
4749 at return, the current inferior is the fork parent.
4751 Note that although this is currently only used for extended-remote,
4752 it is named remote_follow_fork in anticipation of using it for the
4753 remote target as well. */
4756 remote_follow_fork (struct target_ops *ops, int follow_child,
4759 struct remote_state *rs = get_remote_state ();
4760 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
4762 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
4763 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
4765 /* When following the parent and detaching the child, we detach
4766 the child here. For the case of following the child and
4767 detaching the parent, the detach is done in the target-
4768 independent follow fork code in infrun.c. We can't use
4769 target_detach when detaching an unfollowed child because
4770 the client side doesn't know anything about the child. */
4771 if (detach_fork && !follow_child)
4773 /* Detach the fork child. */
4777 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
4778 child_pid = ptid_get_pid (child_ptid);
4780 remote_detach_pid (child_pid);
4781 detach_inferior (child_pid);
4787 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4790 remote_disconnect (struct target_ops *target, const char *args, int from_tty)
4793 error (_("Argument given to \"disconnect\" when remotely debugging."));
4795 /* Make sure we unpush even the extended remote targets; mourn
4796 won't do it. So call remote_mourn directly instead of
4797 target_mourn_inferior. */
4798 remote_mourn (target);
4801 puts_filtered ("Ending remote debugging.\n");
4804 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4805 be chatty about it. */
4808 extended_remote_attach (struct target_ops *target, const char *args,
4811 struct remote_state *rs = get_remote_state ();
4813 char *wait_status = NULL;
4815 pid = parse_pid_to_attach (args);
4817 /* Remote PID can be freely equal to getpid, do not check it here the same
4818 way as in other targets. */
4820 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
4821 error (_("This target does not support attaching to a process"));
4825 char *exec_file = get_exec_file (0);
4828 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
4829 target_pid_to_str (pid_to_ptid (pid)));
4831 printf_unfiltered (_("Attaching to %s\n"),
4832 target_pid_to_str (pid_to_ptid (pid)));
4834 gdb_flush (gdb_stdout);
4837 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
4839 getpkt (&rs->buf, &rs->buf_size, 0);
4841 switch (packet_ok (rs->buf,
4842 &remote_protocol_packets[PACKET_vAttach]))
4847 /* Save the reply for later. */
4848 wait_status = alloca (strlen (rs->buf) + 1);
4849 strcpy (wait_status, rs->buf);
4851 else if (strcmp (rs->buf, "OK") != 0)
4852 error (_("Attaching to %s failed with: %s"),
4853 target_pid_to_str (pid_to_ptid (pid)),
4856 case PACKET_UNKNOWN:
4857 error (_("This target does not support attaching to a process"));
4859 error (_("Attaching to %s failed"),
4860 target_pid_to_str (pid_to_ptid (pid)));
4863 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
4865 inferior_ptid = pid_to_ptid (pid);
4869 struct thread_info *thread;
4871 /* Get list of threads. */
4872 remote_update_thread_list (target);
4874 thread = first_thread_of_process (pid);
4876 inferior_ptid = thread->ptid;
4878 inferior_ptid = pid_to_ptid (pid);
4880 /* Invalidate our notion of the remote current thread. */
4881 record_currthread (rs, minus_one_ptid);
4885 /* Now, if we have thread information, update inferior_ptid. */
4886 inferior_ptid = remote_current_thread (inferior_ptid);
4888 /* Add the main thread to the thread list. */
4889 add_thread_silent (inferior_ptid);
4892 /* Next, if the target can specify a description, read it. We do
4893 this before anything involving memory or registers. */
4894 target_find_description ();
4898 /* Use the previously fetched status. */
4899 gdb_assert (wait_status != NULL);
4901 if (target_can_async_p ())
4903 struct notif_event *reply
4904 = remote_notif_parse (¬if_client_stop, wait_status);
4906 push_stop_reply ((struct stop_reply *) reply);
4912 gdb_assert (wait_status != NULL);
4913 strcpy (rs->buf, wait_status);
4914 rs->cached_wait_status = 1;
4918 gdb_assert (wait_status == NULL);
4921 /* Implementation of the to_post_attach method. */
4924 extended_remote_post_attach (struct target_ops *ops, int pid)
4926 /* In certain cases GDB might not have had the chance to start
4927 symbol lookup up until now. This could happen if the debugged
4928 binary is not using shared libraries, the vsyscall page is not
4929 present (on Linux) and the binary itself hadn't changed since the
4930 debugging process was started. */
4931 if (symfile_objfile != NULL)
4932 remote_check_symbols();
4936 /* Check for the availability of vCont. This function should also check
4940 remote_vcont_probe (struct remote_state *rs)
4944 strcpy (rs->buf, "vCont?");
4946 getpkt (&rs->buf, &rs->buf_size, 0);
4949 /* Make sure that the features we assume are supported. */
4950 if (startswith (buf, "vCont"))
4953 int support_s, support_S, support_c, support_C;
4959 rs->supports_vCont.t = 0;
4960 rs->supports_vCont.r = 0;
4961 while (p && *p == ';')
4964 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4966 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4968 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4970 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4972 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
4973 rs->supports_vCont.t = 1;
4974 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
4975 rs->supports_vCont.r = 1;
4977 p = strchr (p, ';');
4980 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4981 BUF will make packet_ok disable the packet. */
4982 if (!support_s || !support_S || !support_c || !support_C)
4986 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
4989 /* Helper function for building "vCont" resumptions. Write a
4990 resumption to P. ENDP points to one-passed-the-end of the buffer
4991 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4992 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4993 resumed thread should be single-stepped and/or signalled. If PTID
4994 equals minus_one_ptid, then all threads are resumed; if PTID
4995 represents a process, then all threads of the process are resumed;
4996 the thread to be stepped and/or signalled is given in the global
5000 append_resumption (char *p, char *endp,
5001 ptid_t ptid, int step, enum gdb_signal siggnal)
5003 struct remote_state *rs = get_remote_state ();
5005 if (step && siggnal != GDB_SIGNAL_0)
5006 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
5008 /* GDB is willing to range step. */
5009 && use_range_stepping
5010 /* Target supports range stepping. */
5011 && rs->supports_vCont.r
5012 /* We don't currently support range stepping multiple
5013 threads with a wildcard (though the protocol allows it,
5014 so stubs shouldn't make an active effort to forbid
5016 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5018 struct thread_info *tp;
5020 if (ptid_equal (ptid, minus_one_ptid))
5022 /* If we don't know about the target thread's tid, then
5023 we're resuming magic_null_ptid (see caller). */
5024 tp = find_thread_ptid (magic_null_ptid);
5027 tp = find_thread_ptid (ptid);
5028 gdb_assert (tp != NULL);
5030 if (tp->control.may_range_step)
5032 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5034 p += xsnprintf (p, endp - p, ";r%s,%s",
5035 phex_nz (tp->control.step_range_start,
5037 phex_nz (tp->control.step_range_end,
5041 p += xsnprintf (p, endp - p, ";s");
5044 p += xsnprintf (p, endp - p, ";s");
5045 else if (siggnal != GDB_SIGNAL_0)
5046 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5048 p += xsnprintf (p, endp - p, ";c");
5050 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5054 /* All (-1) threads of process. */
5055 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5057 p += xsnprintf (p, endp - p, ":");
5058 p = write_ptid (p, endp, nptid);
5060 else if (!ptid_equal (ptid, minus_one_ptid))
5062 p += xsnprintf (p, endp - p, ":");
5063 p = write_ptid (p, endp, ptid);
5069 /* Append a vCont continue-with-signal action for threads that have a
5070 non-zero stop signal. */
5073 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5075 struct thread_info *thread;
5077 ALL_NON_EXITED_THREADS (thread)
5078 if (ptid_match (thread->ptid, ptid)
5079 && !ptid_equal (inferior_ptid, thread->ptid)
5080 && thread->suspend.stop_signal != GDB_SIGNAL_0)
5082 p = append_resumption (p, endp, thread->ptid,
5083 0, thread->suspend.stop_signal);
5084 thread->suspend.stop_signal = GDB_SIGNAL_0;
5090 /* Resume the remote inferior by using a "vCont" packet. The thread
5091 to be resumed is PTID; STEP and SIGGNAL indicate whether the
5092 resumed thread should be single-stepped and/or signalled. If PTID
5093 equals minus_one_ptid, then all threads are resumed; the thread to
5094 be stepped and/or signalled is given in the global INFERIOR_PTID.
5095 This function returns non-zero iff it resumes the inferior.
5097 This function issues a strict subset of all possible vCont commands at the
5101 remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
5103 struct remote_state *rs = get_remote_state ();
5107 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5108 remote_vcont_probe (rs);
5110 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
5114 endp = rs->buf + get_remote_packet_size ();
5116 /* If we could generate a wider range of packets, we'd have to worry
5117 about overflowing BUF. Should there be a generic
5118 "multi-part-packet" packet? */
5120 p += xsnprintf (p, endp - p, "vCont");
5122 if (ptid_equal (ptid, magic_null_ptid))
5124 /* MAGIC_NULL_PTID means that we don't have any active threads,
5125 so we don't have any TID numbers the inferior will
5126 understand. Make sure to only send forms that do not specify
5128 append_resumption (p, endp, minus_one_ptid, step, siggnal);
5130 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
5132 /* Resume all threads (of all processes, or of a single
5133 process), with preference for INFERIOR_PTID. This assumes
5134 inferior_ptid belongs to the set of all threads we are about
5136 if (step || siggnal != GDB_SIGNAL_0)
5138 /* Step inferior_ptid, with or without signal. */
5139 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
5142 /* Also pass down any pending signaled resumption for other
5143 threads not the current. */
5144 p = append_pending_thread_resumptions (p, endp, ptid);
5146 /* And continue others without a signal. */
5147 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
5151 /* Scheduler locking; resume only PTID. */
5152 append_resumption (p, endp, ptid, step, siggnal);
5155 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5160 /* In non-stop, the stub replies to vCont with "OK". The stop
5161 reply will be reported asynchronously by means of a `%Stop'
5163 getpkt (&rs->buf, &rs->buf_size, 0);
5164 if (strcmp (rs->buf, "OK") != 0)
5165 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5171 /* Tell the remote machine to resume. */
5174 remote_resume (struct target_ops *ops,
5175 ptid_t ptid, int step, enum gdb_signal siggnal)
5177 struct remote_state *rs = get_remote_state ();
5180 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5181 (explained in remote-notif.c:handle_notification) so
5182 remote_notif_process is not called. We need find a place where
5183 it is safe to start a 'vNotif' sequence. It is good to do it
5184 before resuming inferior, because inferior was stopped and no RSP
5185 traffic at that moment. */
5187 remote_notif_process (rs->notif_state, ¬if_client_stop);
5189 rs->last_sent_signal = siggnal;
5190 rs->last_sent_step = step;
5192 /* The vCont packet doesn't need to specify threads via Hc. */
5193 /* No reverse support (yet) for vCont. */
5194 if (execution_direction != EXEC_REVERSE)
5195 if (remote_vcont_resume (ptid, step, siggnal))
5198 /* All other supported resume packets do use Hc, so set the continue
5200 if (ptid_equal (ptid, minus_one_ptid))
5201 set_continue_thread (any_thread_ptid);
5203 set_continue_thread (ptid);
5206 if (execution_direction == EXEC_REVERSE)
5208 /* We don't pass signals to the target in reverse exec mode. */
5209 if (info_verbose && siggnal != GDB_SIGNAL_0)
5210 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5213 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5214 error (_("Remote reverse-step not supported."));
5215 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5216 error (_("Remote reverse-continue not supported."));
5218 strcpy (buf, step ? "bs" : "bc");
5220 else if (siggnal != GDB_SIGNAL_0)
5222 buf[0] = step ? 'S' : 'C';
5223 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5224 buf[2] = tohex (((int) siggnal) & 0xf);
5228 strcpy (buf, step ? "s" : "c");
5233 /* We are about to start executing the inferior, let's register it
5234 with the event loop. NOTE: this is the one place where all the
5235 execution commands end up. We could alternatively do this in each
5236 of the execution commands in infcmd.c. */
5237 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5238 into infcmd.c in order to allow inferior function calls to work
5239 NOT asynchronously. */
5240 if (target_can_async_p ())
5243 /* We've just told the target to resume. The remote server will
5244 wait for the inferior to stop, and then send a stop reply. In
5245 the mean time, we can't start another command/query ourselves
5246 because the stub wouldn't be ready to process it. This applies
5247 only to the base all-stop protocol, however. In non-stop (which
5248 only supports vCont), the stub replies with an "OK", and is
5249 immediate able to process further serial input. */
5251 rs->waiting_for_stop_reply = 1;
5255 /* Set up the signal handler for SIGINT, while the target is
5256 executing, ovewriting the 'regular' SIGINT signal handler. */
5258 async_initialize_sigint_signal_handler (void)
5260 signal (SIGINT, async_handle_remote_sigint);
5263 /* Signal handler for SIGINT, while the target is executing. */
5265 async_handle_remote_sigint (int sig)
5267 signal (sig, async_handle_remote_sigint_twice);
5268 /* Note we need to go through gdb_call_async_signal_handler in order
5269 to wake up the event loop on Windows. */
5270 gdb_call_async_signal_handler (async_sigint_remote_token, 0);
5273 /* Signal handler for SIGINT, installed after SIGINT has already been
5274 sent once. It will take effect the second time that the user sends
5277 async_handle_remote_sigint_twice (int sig)
5279 signal (sig, async_handle_remote_sigint);
5280 /* See note in async_handle_remote_sigint. */
5281 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 0);
5284 /* Implementation of to_check_pending_interrupt. */
5287 remote_check_pending_interrupt (struct target_ops *self)
5289 struct async_signal_handler *token = async_sigint_remote_twice_token;
5291 if (async_signal_handler_is_marked (token))
5293 clear_async_signal_handler (token);
5294 call_async_signal_handler (token);
5298 /* Perform the real interruption of the target execution, in response
5301 async_remote_interrupt (gdb_client_data arg)
5304 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
5306 target_stop (inferior_ptid);
5309 /* Perform interrupt, if the first attempt did not succeed. Just give
5310 up on the target alltogether. */
5312 async_remote_interrupt_twice (gdb_client_data arg)
5315 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
5320 /* Reinstall the usual SIGINT handlers, after the target has
5323 async_cleanup_sigint_signal_handler (void *dummy)
5325 signal (SIGINT, handle_sigint);
5328 /* Send ^C to target to halt it. Target will respond, and send us a
5330 static void (*ofunc) (int);
5332 /* The command line interface's interrupt routine. This function is installed
5333 as a signal handler for SIGINT. The first time a user requests an
5334 interrupt, we call remote_interrupt to send a break or ^C. If there is no
5335 response from the target (it didn't stop when the user requested it),
5336 we ask the user if he'd like to detach from the target. */
5339 sync_remote_interrupt (int signo)
5341 /* If this doesn't work, try more severe steps. */
5342 signal (signo, sync_remote_interrupt_twice);
5344 gdb_call_async_signal_handler (async_sigint_remote_token, 1);
5347 /* The user typed ^C twice. */
5350 sync_remote_interrupt_twice (int signo)
5352 signal (signo, ofunc);
5353 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5354 signal (signo, sync_remote_interrupt);
5357 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5358 thread, all threads of a remote process, or all threads of all
5362 remote_stop_ns (ptid_t ptid)
5364 struct remote_state *rs = get_remote_state ();
5366 char *endp = rs->buf + get_remote_packet_size ();
5368 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5369 remote_vcont_probe (rs);
5371 if (!rs->supports_vCont.t)
5372 error (_("Remote server does not support stopping threads"));
5374 if (ptid_equal (ptid, minus_one_ptid)
5375 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5376 p += xsnprintf (p, endp - p, "vCont;t");
5381 p += xsnprintf (p, endp - p, "vCont;t:");
5383 if (ptid_is_pid (ptid))
5384 /* All (-1) threads of process. */
5385 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5388 /* Small optimization: if we already have a stop reply for
5389 this thread, no use in telling the stub we want this
5391 if (peek_stop_reply (ptid))
5397 write_ptid (p, endp, nptid);
5400 /* In non-stop, we get an immediate OK reply. The stop reply will
5401 come in asynchronously by notification. */
5403 getpkt (&rs->buf, &rs->buf_size, 0);
5404 if (strcmp (rs->buf, "OK") != 0)
5405 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5408 /* All-stop version of target_interrupt. Sends a break or a ^C to
5409 interrupt the remote target. It is undefined which thread of which
5410 process reports the interrupt. */
5413 remote_interrupt_as (ptid_t ptid)
5415 struct remote_state *rs = get_remote_state ();
5417 rs->ctrlc_pending_p = 1;
5419 /* If the inferior is stopped already, but the core didn't know
5420 about it yet, just ignore the request. The cached wait status
5421 will be collected in remote_wait. */
5422 if (rs->cached_wait_status)
5425 /* Send interrupt_sequence to remote target. */
5426 send_interrupt_sequence ();
5429 /* Implement the to_stop function for the remote targets. */
5432 remote_stop (struct target_ops *self, ptid_t ptid)
5435 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
5438 remote_stop_ns (ptid);
5441 /* We don't currently have a way to transparently pause the
5442 remote target in all-stop mode. Interrupt it instead. */
5443 remote_interrupt_as (ptid);
5447 /* Implement the to_interrupt function for the remote targets. */
5450 remote_interrupt (struct target_ops *self, ptid_t ptid)
5453 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
5457 /* We don't currently have a way to ^C the remote target in
5458 non-stop mode. Stop it (with no signal) instead. */
5459 remote_stop_ns (ptid);
5462 remote_interrupt_as (ptid);
5465 /* Ask the user what to do when an interrupt is received. */
5468 interrupt_query (void)
5470 struct remote_state *rs = get_remote_state ();
5471 struct cleanup *old_chain;
5473 old_chain = make_cleanup_restore_target_terminal ();
5474 target_terminal_ours ();
5476 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
5478 if (query (_("The target is not responding to interrupt requests.\n"
5479 "Stop debugging it? ")))
5481 remote_unpush_target ();
5482 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5487 if (query (_("Interrupted while waiting for the program.\n"
5488 "Give up waiting? ")))
5492 do_cleanups (old_chain);
5495 /* Enable/disable target terminal ownership. Most targets can use
5496 terminal groups to control terminal ownership. Remote targets are
5497 different in that explicit transfer of ownership to/from GDB/target
5501 remote_terminal_inferior (struct target_ops *self)
5503 if (!target_async_permitted)
5504 /* Nothing to do. */
5507 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5508 idempotent. The event-loop GDB talking to an asynchronous target
5509 with a synchronous command calls this function from both
5510 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5511 transfer the terminal to the target when it shouldn't this guard
5513 if (!remote_async_terminal_ours_p)
5515 delete_file_handler (input_fd);
5516 remote_async_terminal_ours_p = 0;
5517 async_initialize_sigint_signal_handler ();
5518 /* NOTE: At this point we could also register our selves as the
5519 recipient of all input. Any characters typed could then be
5520 passed on down to the target. */
5524 remote_terminal_ours (struct target_ops *self)
5526 if (!target_async_permitted)
5527 /* Nothing to do. */
5530 /* See FIXME in remote_terminal_inferior. */
5531 if (remote_async_terminal_ours_p)
5533 async_cleanup_sigint_signal_handler (NULL);
5534 add_file_handler (input_fd, stdin_event_handler, 0);
5535 remote_async_terminal_ours_p = 1;
5539 remote_console_output (char *msg)
5543 for (p = msg; p[0] && p[1]; p += 2)
5546 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
5550 fputs_unfiltered (tb, gdb_stdtarg);
5552 gdb_flush (gdb_stdtarg);
5555 typedef struct cached_reg
5558 gdb_byte data[MAX_REGISTER_SIZE];
5561 DEF_VEC_O(cached_reg_t);
5563 typedef struct stop_reply
5565 struct notif_event base;
5567 /* The identifier of the thread about this event */
5570 /* The remote state this event is associated with. When the remote
5571 connection, represented by a remote_state object, is closed,
5572 all the associated stop_reply events should be released. */
5573 struct remote_state *rs;
5575 struct target_waitstatus ws;
5577 /* Expedited registers. This makes remote debugging a bit more
5578 efficient for those targets that provide critical registers as
5579 part of their normal status mechanism (as another roundtrip to
5580 fetch them is avoided). */
5581 VEC(cached_reg_t) *regcache;
5583 enum target_stop_reason stop_reason;
5585 CORE_ADDR watch_data_address;
5590 DECLARE_QUEUE_P (stop_reply_p);
5591 DEFINE_QUEUE_P (stop_reply_p);
5592 /* The list of already fetched and acknowledged stop events. This
5593 queue is used for notification Stop, and other notifications
5594 don't need queue for their events, because the notification events
5595 of Stop can't be consumed immediately, so that events should be
5596 queued first, and be consumed by remote_wait_{ns,as} one per
5597 time. Other notifications can consume their events immediately,
5598 so queue is not needed for them. */
5599 static QUEUE (stop_reply_p) *stop_reply_queue;
5602 stop_reply_xfree (struct stop_reply *r)
5604 notif_event_xfree ((struct notif_event *) r);
5607 /* Return the length of the stop reply queue. */
5610 stop_reply_queue_length (void)
5612 return QUEUE_length (stop_reply_p, stop_reply_queue);
5616 remote_notif_stop_parse (struct notif_client *self, char *buf,
5617 struct notif_event *event)
5619 remote_parse_stop_reply (buf, (struct stop_reply *) event);
5623 remote_notif_stop_ack (struct notif_client *self, char *buf,
5624 struct notif_event *event)
5626 struct stop_reply *stop_reply = (struct stop_reply *) event;
5629 putpkt ((char *) self->ack_command);
5631 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
5632 /* We got an unknown stop reply. */
5633 error (_("Unknown stop reply"));
5635 push_stop_reply (stop_reply);
5639 remote_notif_stop_can_get_pending_events (struct notif_client *self)
5641 /* We can't get pending events in remote_notif_process for
5642 notification stop, and we have to do this in remote_wait_ns
5643 instead. If we fetch all queued events from stub, remote stub
5644 may exit and we have no chance to process them back in
5646 mark_async_event_handler (remote_async_inferior_event_token);
5651 stop_reply_dtr (struct notif_event *event)
5653 struct stop_reply *r = (struct stop_reply *) event;
5655 VEC_free (cached_reg_t, r->regcache);
5658 static struct notif_event *
5659 remote_notif_stop_alloc_reply (void)
5661 struct notif_event *r
5662 = (struct notif_event *) XNEW (struct stop_reply);
5664 r->dtr = stop_reply_dtr;
5669 /* A client of notification Stop. */
5671 struct notif_client notif_client_stop =
5675 remote_notif_stop_parse,
5676 remote_notif_stop_ack,
5677 remote_notif_stop_can_get_pending_events,
5678 remote_notif_stop_alloc_reply,
5682 /* A parameter to pass data in and out. */
5684 struct queue_iter_param
5687 struct stop_reply *output;
5690 /* Determine if THREAD is a pending fork parent thread. ARG contains
5691 the pid of the process that owns the threads we want to check, or
5692 -1 if we want to check all threads. */
5695 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
5698 if (ws->kind == TARGET_WAITKIND_FORKED
5699 || ws->kind == TARGET_WAITKIND_VFORKED)
5701 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
5708 /* Check whether EVENT is a fork event, and if it is, remove the
5709 fork child from the context list passed in DATA. */
5712 remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
5713 QUEUE_ITER (stop_reply_p) *iter,
5717 struct queue_iter_param *param = data;
5718 struct threads_listing_context *context = param->input;
5720 if (event->ws.kind == TARGET_WAITKIND_FORKED
5721 || event->ws.kind == TARGET_WAITKIND_VFORKED)
5723 threads_listing_context_remove (&event->ws, context);
5729 /* If CONTEXT contains any fork child threads that have not been
5730 reported yet, remove them from the CONTEXT list. If such a
5731 thread exists it is because we are stopped at a fork catchpoint
5732 and have not yet called follow_fork, which will set up the
5733 host-side data structures for the new process. */
5736 remove_new_fork_children (struct threads_listing_context *context)
5738 struct thread_info * thread;
5740 struct notif_client *notif = ¬if_client_stop;
5741 struct queue_iter_param param;
5743 /* For any threads stopped at a fork event, remove the corresponding
5744 fork child threads from the CONTEXT list. */
5745 ALL_NON_EXITED_THREADS (thread)
5747 struct target_waitstatus *ws = &thread->pending_follow;
5749 if (is_pending_fork_parent (ws, pid, thread->ptid))
5751 threads_listing_context_remove (ws, context);
5755 /* Check for any pending fork events (not reported or processed yet)
5756 in process PID and remove those fork child threads from the
5757 CONTEXT list as well. */
5758 remote_notif_get_pending_events (notif);
5759 param.input = context;
5760 param.output = NULL;
5761 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5762 remove_child_of_pending_fork, ¶m);
5765 /* Remove stop replies in the queue if its pid is equal to the given
5769 remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
5770 QUEUE_ITER (stop_reply_p) *iter,
5774 struct queue_iter_param *param = data;
5775 struct inferior *inf = param->input;
5777 if (ptid_get_pid (event->ptid) == inf->pid)
5779 stop_reply_xfree (event);
5780 QUEUE_remove_elem (stop_reply_p, q, iter);
5786 /* Discard all pending stop replies of inferior INF. */
5789 discard_pending_stop_replies (struct inferior *inf)
5792 struct queue_iter_param param;
5793 struct stop_reply *reply;
5794 struct remote_state *rs = get_remote_state ();
5795 struct remote_notif_state *rns = rs->notif_state;
5797 /* This function can be notified when an inferior exists. When the
5798 target is not remote, the notification state is NULL. */
5799 if (rs->remote_desc == NULL)
5802 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
5804 /* Discard the in-flight notification. */
5805 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
5807 stop_reply_xfree (reply);
5808 rns->pending_event[notif_client_stop.id] = NULL;
5812 param.output = NULL;
5813 /* Discard the stop replies we have already pulled with
5815 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5816 remove_stop_reply_for_inferior, ¶m);
5819 /* If its remote state is equal to the given remote state,
5820 remove EVENT from the stop reply queue. */
5823 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
5824 QUEUE_ITER (stop_reply_p) *iter,
5828 struct queue_iter_param *param = data;
5829 struct remote_state *rs = param->input;
5831 if (event->rs == rs)
5833 stop_reply_xfree (event);
5834 QUEUE_remove_elem (stop_reply_p, q, iter);
5840 /* Discard the stop replies for RS in stop_reply_queue. */
5843 discard_pending_stop_replies_in_queue (struct remote_state *rs)
5845 struct queue_iter_param param;
5848 param.output = NULL;
5849 /* Discard the stop replies we have already pulled with
5851 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5852 remove_stop_reply_of_remote_state, ¶m);
5855 /* A parameter to pass data in and out. */
5858 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
5859 QUEUE_ITER (stop_reply_p) *iter,
5863 struct queue_iter_param *param = data;
5864 ptid_t *ptid = param->input;
5866 if (ptid_match (event->ptid, *ptid))
5868 param->output = event;
5869 QUEUE_remove_elem (stop_reply_p, q, iter);
5876 /* Remove the first reply in 'stop_reply_queue' which matches
5879 static struct stop_reply *
5880 remote_notif_remove_queued_reply (ptid_t ptid)
5882 struct queue_iter_param param;
5884 param.input = &ptid;
5885 param.output = NULL;
5887 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5888 remote_notif_remove_once_on_match, ¶m);
5890 fprintf_unfiltered (gdb_stdlog,
5891 "notif: discard queued event: 'Stop' in %s\n",
5892 target_pid_to_str (ptid));
5894 return param.output;
5897 /* Look for a queued stop reply belonging to PTID. If one is found,
5898 remove it from the queue, and return it. Returns NULL if none is
5899 found. If there are still queued events left to process, tell the
5900 event loop to get back to target_wait soon. */
5902 static struct stop_reply *
5903 queued_stop_reply (ptid_t ptid)
5905 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
5907 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
5908 /* There's still at least an event left. */
5909 mark_async_event_handler (remote_async_inferior_event_token);
5914 /* Push a fully parsed stop reply in the stop reply queue. Since we
5915 know that we now have at least one queued event left to pass to the
5916 core side, tell the event loop to get back to target_wait soon. */
5919 push_stop_reply (struct stop_reply *new_event)
5921 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
5924 fprintf_unfiltered (gdb_stdlog,
5925 "notif: push 'Stop' %s to queue %d\n",
5926 target_pid_to_str (new_event->ptid),
5927 QUEUE_length (stop_reply_p,
5930 mark_async_event_handler (remote_async_inferior_event_token);
5934 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
5935 QUEUE_ITER (stop_reply_p) *iter,
5936 struct stop_reply *event,
5939 ptid_t *ptid = data;
5941 return !(ptid_equal (*ptid, event->ptid)
5942 && event->ws.kind == TARGET_WAITKIND_STOPPED);
5945 /* Returns true if we have a stop reply for PTID. */
5948 peek_stop_reply (ptid_t ptid)
5950 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
5951 stop_reply_match_ptid_and_ws, &ptid);
5954 /* Skip PACKET until the next semi-colon (or end of string). */
5957 skip_to_semicolon (char *p)
5959 while (*p != '\0' && *p != ';')
5964 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
5965 starting with P and ending with PEND matches PREFIX. */
5968 strprefix (const char *p, const char *pend, const char *prefix)
5970 for ( ; p < pend; p++, prefix++)
5973 return *prefix == '\0';
5976 /* Parse the stop reply in BUF. Either the function succeeds, and the
5977 result is stored in EVENT, or throws an error. */
5980 remote_parse_stop_reply (char *buf, struct stop_reply *event)
5982 struct remote_arch_state *rsa = get_remote_arch_state ();
5986 event->ptid = null_ptid;
5987 event->rs = get_remote_state ();
5988 event->ws.kind = TARGET_WAITKIND_IGNORE;
5989 event->ws.value.integer = 0;
5990 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5991 event->regcache = NULL;
5996 case 'T': /* Status with PC, SP, FP, ... */
5997 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5998 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6000 n... = register number
6001 r... = register contents
6004 p = &buf[3]; /* after Txx */
6010 p1 = strchr (p, ':');
6012 error (_("Malformed packet(a) (missing colon): %s\n\
6016 error (_("Malformed packet(a) (missing register number): %s\n\
6020 /* Some "registers" are actually extended stop information.
6021 Note if you're adding a new entry here: GDB 7.9 and
6022 earlier assume that all register "numbers" that start
6023 with an hex digit are real register numbers. Make sure
6024 the server only sends such a packet if it knows the
6025 client understands it. */
6027 if (strprefix (p, p1, "thread"))
6028 event->ptid = read_ptid (++p1, &p);
6029 else if (strprefix (p, p1, "watch")
6030 || strprefix (p, p1, "rwatch")
6031 || strprefix (p, p1, "awatch"))
6033 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
6034 p = unpack_varlen_hex (++p1, &addr);
6035 event->watch_data_address = (CORE_ADDR) addr;
6037 else if (strprefix (p, p1, "swbreak"))
6039 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6041 /* Make sure the stub doesn't forget to indicate support
6043 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6044 error (_("Unexpected swbreak stop reason"));
6046 /* The value part is documented as "must be empty",
6047 though we ignore it, in case we ever decide to make
6048 use of it in a backward compatible way. */
6049 p = skip_to_semicolon (p1 + 1);
6051 else if (strprefix (p, p1, "hwbreak"))
6053 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6055 /* Make sure the stub doesn't forget to indicate support
6057 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6058 error (_("Unexpected hwbreak stop reason"));
6061 p = skip_to_semicolon (p1 + 1);
6063 else if (strprefix (p, p1, "library"))
6065 event->ws.kind = TARGET_WAITKIND_LOADED;
6066 p = skip_to_semicolon (p1 + 1);
6068 else if (strprefix (p, p1, "replaylog"))
6070 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6071 /* p1 will indicate "begin" or "end", but it makes
6072 no difference for now, so ignore it. */
6073 p = skip_to_semicolon (p1 + 1);
6075 else if (strprefix (p, p1, "core"))
6079 p = unpack_varlen_hex (++p1, &c);
6082 else if (strprefix (p, p1, "fork"))
6084 event->ws.value.related_pid = read_ptid (++p1, &p);
6085 event->ws.kind = TARGET_WAITKIND_FORKED;
6087 else if (strprefix (p, p1, "vfork"))
6089 event->ws.value.related_pid = read_ptid (++p1, &p);
6090 event->ws.kind = TARGET_WAITKIND_VFORKED;
6092 else if (strprefix (p, p1, "vforkdone"))
6094 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
6095 p = skip_to_semicolon (p1 + 1);
6102 /* Maybe a real ``P'' register number. */
6103 p_temp = unpack_varlen_hex (p, &pnum);
6104 /* If the first invalid character is the colon, we got a
6105 register number. Otherwise, it's an unknown stop
6109 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6110 cached_reg_t cached_reg;
6113 error (_("Remote sent bad register number %s: %s\n\
6115 hex_string (pnum), p, buf);
6117 cached_reg.num = reg->regnum;
6120 fieldsize = hex2bin (p, cached_reg.data,
6121 register_size (target_gdbarch (),
6124 if (fieldsize < register_size (target_gdbarch (),
6126 warning (_("Remote reply is too short: %s"), buf);
6128 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6132 /* Not a number. Silently skip unknown optional
6134 p = skip_to_semicolon (p1 + 1);
6139 error (_("Remote register badly formatted: %s\nhere: %s"),
6144 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
6148 case 'S': /* Old style status, just signal only. */
6152 event->ws.kind = TARGET_WAITKIND_STOPPED;
6153 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
6154 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
6155 event->ws.value.sig = (enum gdb_signal) sig;
6157 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6160 case 'W': /* Target exited. */
6167 /* GDB used to accept only 2 hex chars here. Stubs should
6168 only send more if they detect GDB supports multi-process
6170 p = unpack_varlen_hex (&buf[1], &value);
6174 /* The remote process exited. */
6175 event->ws.kind = TARGET_WAITKIND_EXITED;
6176 event->ws.value.integer = value;
6180 /* The remote process exited with a signal. */
6181 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
6182 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
6183 event->ws.value.sig = (enum gdb_signal) value;
6185 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6188 /* If no process is specified, assume inferior_ptid. */
6189 pid = ptid_get_pid (inferior_ptid);
6198 else if (startswith (p, "process:"))
6202 p += sizeof ("process:") - 1;
6203 unpack_varlen_hex (p, &upid);
6207 error (_("unknown stop reply packet: %s"), buf);
6210 error (_("unknown stop reply packet: %s"), buf);
6211 event->ptid = pid_to_ptid (pid);
6216 if (non_stop && ptid_equal (event->ptid, null_ptid))
6217 error (_("No process or thread specified in stop reply: %s"), buf);
6220 /* When the stub wants to tell GDB about a new notification reply, it
6221 sends a notification (%Stop, for example). Those can come it at
6222 any time, hence, we have to make sure that any pending
6223 putpkt/getpkt sequence we're making is finished, before querying
6224 the stub for more events with the corresponding ack command
6225 (vStopped, for example). E.g., if we started a vStopped sequence
6226 immediately upon receiving the notification, something like this
6234 1.6) <-- (registers reply to step #1.3)
6236 Obviously, the reply in step #1.6 would be unexpected to a vStopped
6239 To solve this, whenever we parse a %Stop notification successfully,
6240 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
6241 doing whatever we were doing:
6247 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
6248 2.5) <-- (registers reply to step #2.3)
6250 Eventualy after step #2.5, we return to the event loop, which
6251 notices there's an event on the
6252 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
6253 associated callback --- the function below. At this point, we're
6254 always safe to start a vStopped sequence. :
6257 2.7) <-- T05 thread:2
6263 remote_notif_get_pending_events (struct notif_client *nc)
6265 struct remote_state *rs = get_remote_state ();
6267 if (rs->notif_state->pending_event[nc->id] != NULL)
6270 fprintf_unfiltered (gdb_stdlog,
6271 "notif: process: '%s' ack pending event\n",
6275 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
6276 rs->notif_state->pending_event[nc->id] = NULL;
6280 getpkt (&rs->buf, &rs->buf_size, 0);
6281 if (strcmp (rs->buf, "OK") == 0)
6284 remote_notif_ack (nc, rs->buf);
6290 fprintf_unfiltered (gdb_stdlog,
6291 "notif: process: '%s' no pending reply\n",
6296 /* Called when it is decided that STOP_REPLY holds the info of the
6297 event that is to be returned to the core. This function always
6298 destroys STOP_REPLY. */
6301 process_stop_reply (struct stop_reply *stop_reply,
6302 struct target_waitstatus *status)
6306 *status = stop_reply->ws;
6307 ptid = stop_reply->ptid;
6309 /* If no thread/process was reported by the stub, assume the current
6311 if (ptid_equal (ptid, null_ptid))
6312 ptid = inferior_ptid;
6314 if (status->kind != TARGET_WAITKIND_EXITED
6315 && status->kind != TARGET_WAITKIND_SIGNALLED)
6317 struct remote_state *rs = get_remote_state ();
6319 /* Expedited registers. */
6320 if (stop_reply->regcache)
6322 struct regcache *regcache
6323 = get_thread_arch_regcache (ptid, target_gdbarch ());
6328 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
6330 regcache_raw_supply (regcache, reg->num, reg->data);
6331 VEC_free (cached_reg_t, stop_reply->regcache);
6334 rs->stop_reason = stop_reply->stop_reason;
6335 rs->remote_watch_data_address = stop_reply->watch_data_address;
6337 remote_notice_new_inferior (ptid, 0);
6338 demand_private_info (ptid)->core = stop_reply->core;
6341 stop_reply_xfree (stop_reply);
6345 /* The non-stop mode version of target_wait. */
6348 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
6350 struct remote_state *rs = get_remote_state ();
6351 struct stop_reply *stop_reply;
6355 /* If in non-stop mode, get out of getpkt even if a
6356 notification is received. */
6358 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6359 0 /* forever */, &is_notif);
6362 if (ret != -1 && !is_notif)
6365 case 'E': /* Error of some sort. */
6366 /* We're out of sync with the target now. Did it continue
6367 or not? We can't tell which thread it was in non-stop,
6368 so just ignore this. */
6369 warning (_("Remote failure reply: %s"), rs->buf);
6371 case 'O': /* Console output. */
6372 remote_console_output (rs->buf + 1);
6375 warning (_("Invalid remote reply: %s"), rs->buf);
6379 /* Acknowledge a pending stop reply that may have arrived in the
6381 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
6382 remote_notif_get_pending_events (¬if_client_stop);
6384 /* If indeed we noticed a stop reply, we're done. */
6385 stop_reply = queued_stop_reply (ptid);
6386 if (stop_reply != NULL)
6387 return process_stop_reply (stop_reply, status);
6389 /* Still no event. If we're just polling for an event, then
6390 return to the event loop. */
6391 if (options & TARGET_WNOHANG)
6393 status->kind = TARGET_WAITKIND_IGNORE;
6394 return minus_one_ptid;
6397 /* Otherwise do a blocking wait. */
6398 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6399 1 /* forever */, &is_notif);
6403 /* Wait until the remote machine stops, then return, storing status in
6404 STATUS just as `wait' would. */
6407 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
6409 struct remote_state *rs = get_remote_state ();
6410 ptid_t event_ptid = null_ptid;
6412 struct stop_reply *stop_reply;
6416 status->kind = TARGET_WAITKIND_IGNORE;
6417 status->value.integer = 0;
6419 stop_reply = queued_stop_reply (ptid);
6420 if (stop_reply != NULL)
6421 return process_stop_reply (stop_reply, status);
6423 if (rs->cached_wait_status)
6424 /* Use the cached wait status, but only once. */
6425 rs->cached_wait_status = 0;
6430 int forever = ((options & TARGET_WNOHANG) == 0
6431 && wait_forever_enabled_p);
6433 if (!rs->waiting_for_stop_reply)
6435 status->kind = TARGET_WAITKIND_NO_RESUMED;
6436 return minus_one_ptid;
6439 if (!target_is_async_p ())
6441 ofunc = signal (SIGINT, sync_remote_interrupt);
6442 /* If the user hit C-c before this packet, or between packets,
6443 pretend that it was hit right here. */
6444 if (check_quit_flag ())
6447 sync_remote_interrupt (SIGINT);
6451 /* FIXME: cagney/1999-09-27: If we're in async mode we should
6452 _never_ wait for ever -> test on target_is_async_p().
6453 However, before we do that we need to ensure that the caller
6454 knows how to take the target into/out of async mode. */
6455 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6456 forever, &is_notif);
6458 if (!target_is_async_p ())
6459 signal (SIGINT, ofunc);
6461 /* GDB gets a notification. Return to core as this event is
6463 if (ret != -1 && is_notif)
6464 return minus_one_ptid;
6466 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
6467 return minus_one_ptid;
6472 rs->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6474 /* We got something. */
6475 rs->waiting_for_stop_reply = 0;
6477 /* Assume that the target has acknowledged Ctrl-C unless we receive
6478 an 'F' or 'O' packet. */
6479 if (buf[0] != 'F' && buf[0] != 'O')
6480 rs->ctrlc_pending_p = 0;
6484 case 'E': /* Error of some sort. */
6485 /* We're out of sync with the target now. Did it continue or
6486 not? Not is more likely, so report a stop. */
6487 warning (_("Remote failure reply: %s"), buf);
6488 status->kind = TARGET_WAITKIND_STOPPED;
6489 status->value.sig = GDB_SIGNAL_0;
6491 case 'F': /* File-I/O request. */
6492 remote_fileio_request (buf, rs->ctrlc_pending_p);
6493 rs->ctrlc_pending_p = 0;
6495 case 'T': case 'S': case 'X': case 'W':
6497 struct stop_reply *stop_reply
6498 = (struct stop_reply *) remote_notif_parse (¬if_client_stop,
6501 event_ptid = process_stop_reply (stop_reply, status);
6504 case 'O': /* Console output. */
6505 remote_console_output (buf + 1);
6507 /* The target didn't really stop; keep waiting. */
6508 rs->waiting_for_stop_reply = 1;
6512 if (rs->last_sent_signal != GDB_SIGNAL_0)
6514 /* Zero length reply means that we tried 'S' or 'C' and the
6515 remote system doesn't support it. */
6516 target_terminal_ours_for_output ();
6518 ("Can't send signals to this remote system. %s not sent.\n",
6519 gdb_signal_to_name (rs->last_sent_signal));
6520 rs->last_sent_signal = GDB_SIGNAL_0;
6521 target_terminal_inferior ();
6523 strcpy ((char *) buf, rs->last_sent_step ? "s" : "c");
6524 putpkt ((char *) buf);
6526 /* We just told the target to resume, so a stop reply is in
6528 rs->waiting_for_stop_reply = 1;
6531 /* else fallthrough */
6533 warning (_("Invalid remote reply: %s"), buf);
6535 rs->waiting_for_stop_reply = 1;
6539 if (status->kind == TARGET_WAITKIND_IGNORE)
6541 /* Nothing interesting happened. If we're doing a non-blocking
6542 poll, we're done. Otherwise, go back to waiting. */
6543 if (options & TARGET_WNOHANG)
6544 return minus_one_ptid;
6548 else if (status->kind != TARGET_WAITKIND_EXITED
6549 && status->kind != TARGET_WAITKIND_SIGNALLED)
6551 if (!ptid_equal (event_ptid, null_ptid))
6552 record_currthread (rs, event_ptid);
6554 event_ptid = inferior_ptid;
6557 /* A process exit. Invalidate our notion of current thread. */
6558 record_currthread (rs, minus_one_ptid);
6563 /* Wait until the remote machine stops, then return, storing status in
6564 STATUS just as `wait' would. */
6567 remote_wait (struct target_ops *ops,
6568 ptid_t ptid, struct target_waitstatus *status, int options)
6573 event_ptid = remote_wait_ns (ptid, status, options);
6575 event_ptid = remote_wait_as (ptid, status, options);
6577 if (target_is_async_p ())
6579 /* If there are are events left in the queue tell the event loop
6581 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6582 mark_async_event_handler (remote_async_inferior_event_token);
6588 /* Fetch a single register using a 'p' packet. */
6591 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
6593 struct remote_state *rs = get_remote_state ();
6595 char regp[MAX_REGISTER_SIZE];
6598 if (packet_support (PACKET_p) == PACKET_DISABLE)
6601 if (reg->pnum == -1)
6606 p += hexnumstr (p, reg->pnum);
6609 getpkt (&rs->buf, &rs->buf_size, 0);
6613 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
6617 case PACKET_UNKNOWN:
6620 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
6621 gdbarch_register_name (get_regcache_arch (regcache),
6626 /* If this register is unfetchable, tell the regcache. */
6629 regcache_raw_supply (regcache, reg->regnum, NULL);
6633 /* Otherwise, parse and supply the value. */
6639 error (_("fetch_register_using_p: early buf termination"));
6641 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
6644 regcache_raw_supply (regcache, reg->regnum, regp);
6648 /* Fetch the registers included in the target's 'g' packet. */
6651 send_g_packet (void)
6653 struct remote_state *rs = get_remote_state ();
6656 xsnprintf (rs->buf, get_remote_packet_size (), "g");
6657 remote_send (&rs->buf, &rs->buf_size);
6659 /* We can get out of synch in various cases. If the first character
6660 in the buffer is not a hex character, assume that has happened
6661 and try to fetch another packet to read. */
6662 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
6663 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
6664 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
6665 && rs->buf[0] != 'x') /* New: unavailable register value. */
6668 fprintf_unfiltered (gdb_stdlog,
6669 "Bad register packet; fetching a new packet\n");
6670 getpkt (&rs->buf, &rs->buf_size, 0);
6673 buf_len = strlen (rs->buf);
6675 /* Sanity check the received packet. */
6676 if (buf_len % 2 != 0)
6677 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
6683 process_g_packet (struct regcache *regcache)
6685 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6686 struct remote_state *rs = get_remote_state ();
6687 struct remote_arch_state *rsa = get_remote_arch_state ();
6692 buf_len = strlen (rs->buf);
6694 /* Further sanity checks, with knowledge of the architecture. */
6695 if (buf_len > 2 * rsa->sizeof_g_packet)
6696 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
6698 /* Save the size of the packet sent to us by the target. It is used
6699 as a heuristic when determining the max size of packets that the
6700 target can safely receive. */
6701 if (rsa->actual_register_packet_size == 0)
6702 rsa->actual_register_packet_size = buf_len;
6704 /* If this is smaller than we guessed the 'g' packet would be,
6705 update our records. A 'g' reply that doesn't include a register's
6706 value implies either that the register is not available, or that
6707 the 'p' packet must be used. */
6708 if (buf_len < 2 * rsa->sizeof_g_packet)
6710 rsa->sizeof_g_packet = buf_len / 2;
6712 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6714 if (rsa->regs[i].pnum == -1)
6717 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
6718 rsa->regs[i].in_g_packet = 0;
6720 rsa->regs[i].in_g_packet = 1;
6724 regs = alloca (rsa->sizeof_g_packet);
6726 /* Unimplemented registers read as all bits zero. */
6727 memset (regs, 0, rsa->sizeof_g_packet);
6729 /* Reply describes registers byte by byte, each byte encoded as two
6730 hex characters. Suck them all up, then supply them to the
6731 register cacheing/storage mechanism. */
6734 for (i = 0; i < rsa->sizeof_g_packet; i++)
6736 if (p[0] == 0 || p[1] == 0)
6737 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
6738 internal_error (__FILE__, __LINE__,
6739 _("unexpected end of 'g' packet reply"));
6741 if (p[0] == 'x' && p[1] == 'x')
6742 regs[i] = 0; /* 'x' */
6744 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
6748 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6750 struct packet_reg *r = &rsa->regs[i];
6754 if (r->offset * 2 >= strlen (rs->buf))
6755 /* This shouldn't happen - we adjusted in_g_packet above. */
6756 internal_error (__FILE__, __LINE__,
6757 _("unexpected end of 'g' packet reply"));
6758 else if (rs->buf[r->offset * 2] == 'x')
6760 gdb_assert (r->offset * 2 < strlen (rs->buf));
6761 /* The register isn't available, mark it as such (at
6762 the same time setting the value to zero). */
6763 regcache_raw_supply (regcache, r->regnum, NULL);
6766 regcache_raw_supply (regcache, r->regnum,
6773 fetch_registers_using_g (struct regcache *regcache)
6776 process_g_packet (regcache);
6779 /* Make the remote selected traceframe match GDB's selected
6783 set_remote_traceframe (void)
6786 struct remote_state *rs = get_remote_state ();
6788 if (rs->remote_traceframe_number == get_traceframe_number ())
6791 /* Avoid recursion, remote_trace_find calls us again. */
6792 rs->remote_traceframe_number = get_traceframe_number ();
6794 newnum = target_trace_find (tfind_number,
6795 get_traceframe_number (), 0, 0, NULL);
6797 /* Should not happen. If it does, all bets are off. */
6798 if (newnum != get_traceframe_number ())
6799 warning (_("could not set remote traceframe"));
6803 remote_fetch_registers (struct target_ops *ops,
6804 struct regcache *regcache, int regnum)
6806 struct remote_arch_state *rsa = get_remote_arch_state ();
6809 set_remote_traceframe ();
6810 set_general_thread (inferior_ptid);
6814 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6816 gdb_assert (reg != NULL);
6818 /* If this register might be in the 'g' packet, try that first -
6819 we are likely to read more than one register. If this is the
6820 first 'g' packet, we might be overly optimistic about its
6821 contents, so fall back to 'p'. */
6822 if (reg->in_g_packet)
6824 fetch_registers_using_g (regcache);
6825 if (reg->in_g_packet)
6829 if (fetch_register_using_p (regcache, reg))
6832 /* This register is not available. */
6833 regcache_raw_supply (regcache, reg->regnum, NULL);
6838 fetch_registers_using_g (regcache);
6840 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6841 if (!rsa->regs[i].in_g_packet)
6842 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
6844 /* This register is not available. */
6845 regcache_raw_supply (regcache, i, NULL);
6849 /* Prepare to store registers. Since we may send them all (using a
6850 'G' request), we have to read out the ones we don't want to change
6854 remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
6856 struct remote_arch_state *rsa = get_remote_arch_state ();
6858 gdb_byte buf[MAX_REGISTER_SIZE];
6860 /* Make sure the entire registers array is valid. */
6861 switch (packet_support (PACKET_P))
6863 case PACKET_DISABLE:
6864 case PACKET_SUPPORT_UNKNOWN:
6865 /* Make sure all the necessary registers are cached. */
6866 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6867 if (rsa->regs[i].in_g_packet)
6868 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
6875 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
6876 packet was not recognized. */
6879 store_register_using_P (const struct regcache *regcache,
6880 struct packet_reg *reg)
6882 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6883 struct remote_state *rs = get_remote_state ();
6884 /* Try storing a single register. */
6885 char *buf = rs->buf;
6886 gdb_byte regp[MAX_REGISTER_SIZE];
6889 if (packet_support (PACKET_P) == PACKET_DISABLE)
6892 if (reg->pnum == -1)
6895 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
6896 p = buf + strlen (buf);
6897 regcache_raw_collect (regcache, reg->regnum, regp);
6898 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6900 getpkt (&rs->buf, &rs->buf_size, 0);
6902 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
6907 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6908 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
6909 case PACKET_UNKNOWN:
6912 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
6916 /* Store register REGNUM, or all registers if REGNUM == -1, from the
6917 contents of the register cache buffer. FIXME: ignores errors. */
6920 store_registers_using_G (const struct regcache *regcache)
6922 struct remote_state *rs = get_remote_state ();
6923 struct remote_arch_state *rsa = get_remote_arch_state ();
6927 /* Extract all the registers in the regcache copying them into a
6932 regs = alloca (rsa->sizeof_g_packet);
6933 memset (regs, 0, rsa->sizeof_g_packet);
6934 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6936 struct packet_reg *r = &rsa->regs[i];
6939 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
6943 /* Command describes registers byte by byte,
6944 each byte encoded as two hex characters. */
6947 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6949 bin2hex (regs, p, rsa->sizeof_g_packet);
6951 getpkt (&rs->buf, &rs->buf_size, 0);
6952 if (packet_check_result (rs->buf) == PACKET_ERROR)
6953 error (_("Could not write registers; remote failure reply '%s'"),
6957 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6958 of the register cache buffer. FIXME: ignores errors. */
6961 remote_store_registers (struct target_ops *ops,
6962 struct regcache *regcache, int regnum)
6964 struct remote_arch_state *rsa = get_remote_arch_state ();
6967 set_remote_traceframe ();
6968 set_general_thread (inferior_ptid);
6972 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6974 gdb_assert (reg != NULL);
6976 /* Always prefer to store registers using the 'P' packet if
6977 possible; we often change only a small number of registers.
6978 Sometimes we change a larger number; we'd need help from a
6979 higher layer to know to use 'G'. */
6980 if (store_register_using_P (regcache, reg))
6983 /* For now, don't complain if we have no way to write the
6984 register. GDB loses track of unavailable registers too
6985 easily. Some day, this may be an error. We don't have
6986 any way to read the register, either... */
6987 if (!reg->in_g_packet)
6990 store_registers_using_G (regcache);
6994 store_registers_using_G (regcache);
6996 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6997 if (!rsa->regs[i].in_g_packet)
6998 if (!store_register_using_P (regcache, &rsa->regs[i]))
6999 /* See above for why we do not issue an error here. */
7004 /* Return the number of hex digits in num. */
7007 hexnumlen (ULONGEST num)
7011 for (i = 0; num != 0; i++)
7017 /* Set BUF to the minimum number of hex digits representing NUM. */
7020 hexnumstr (char *buf, ULONGEST num)
7022 int len = hexnumlen (num);
7024 return hexnumnstr (buf, num, len);
7028 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
7031 hexnumnstr (char *buf, ULONGEST num, int width)
7037 for (i = width - 1; i >= 0; i--)
7039 buf[i] = "0123456789abcdef"[(num & 0xf)];
7046 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
7049 remote_address_masked (CORE_ADDR addr)
7051 unsigned int address_size = remote_address_size;
7053 /* If "remoteaddresssize" was not set, default to target address size. */
7055 address_size = gdbarch_addr_bit (target_gdbarch ());
7057 if (address_size > 0
7058 && address_size < (sizeof (ULONGEST) * 8))
7060 /* Only create a mask when that mask can safely be constructed
7061 in a ULONGEST variable. */
7064 mask = (mask << address_size) - 1;
7070 /* Determine whether the remote target supports binary downloading.
7071 This is accomplished by sending a no-op memory write of zero length
7072 to the target at the specified address. It does not suffice to send
7073 the whole packet, since many stubs strip the eighth bit and
7074 subsequently compute a wrong checksum, which causes real havoc with
7077 NOTE: This can still lose if the serial line is not eight-bit
7078 clean. In cases like this, the user should clear "remote
7082 check_binary_download (CORE_ADDR addr)
7084 struct remote_state *rs = get_remote_state ();
7086 switch (packet_support (PACKET_X))
7088 case PACKET_DISABLE:
7092 case PACKET_SUPPORT_UNKNOWN:
7098 p += hexnumstr (p, (ULONGEST) addr);
7100 p += hexnumstr (p, (ULONGEST) 0);
7104 putpkt_binary (rs->buf, (int) (p - rs->buf));
7105 getpkt (&rs->buf, &rs->buf_size, 0);
7107 if (rs->buf[0] == '\0')
7110 fprintf_unfiltered (gdb_stdlog,
7111 "binary downloading NOT "
7112 "supported by target\n");
7113 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
7118 fprintf_unfiltered (gdb_stdlog,
7119 "binary downloading supported by target\n");
7120 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
7127 /* Helper function to resize the payload in order to try to get a good
7128 alignment. We try to write an amount of data such that the next write will
7129 start on an address aligned on REMOTE_ALIGN_WRITES. */
7132 align_for_efficient_write (int todo, CORE_ADDR memaddr)
7134 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
7137 /* Write memory data directly to the remote machine.
7138 This does not inform the data cache; the data cache uses this.
7139 HEADER is the starting part of the packet.
7140 MEMADDR is the address in the remote memory space.
7141 MYADDR is the address of the buffer in our space.
7142 LEN_UNITS is the number of addressable units to write.
7143 UNIT_SIZE is the length in bytes of an addressable unit.
7144 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
7145 should send data as binary ('X'), or hex-encoded ('M').
7147 The function creates packet of the form
7148 <HEADER><ADDRESS>,<LENGTH>:<DATA>
7150 where encoding of <DATA> is terminated by PACKET_FORMAT.
7152 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
7155 Return the transferred status, error or OK (an
7156 'enum target_xfer_status' value). Save the number of addressable units
7157 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
7159 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
7160 exchange between gdb and the stub could look like (?? in place of the
7166 -> $M1000,3:eeeeffffeeee#??
7170 <- eeeeffffeeeedddd */
7172 static enum target_xfer_status
7173 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
7174 const gdb_byte *myaddr, ULONGEST len_units,
7175 int unit_size, ULONGEST *xfered_len_units,
7176 char packet_format, int use_length)
7178 struct remote_state *rs = get_remote_state ();
7184 int payload_capacity_bytes;
7185 int payload_length_bytes;
7187 if (packet_format != 'X' && packet_format != 'M')
7188 internal_error (__FILE__, __LINE__,
7189 _("remote_write_bytes_aux: bad packet format"));
7192 return TARGET_XFER_EOF;
7194 payload_capacity_bytes = get_memory_write_packet_size ();
7196 /* The packet buffer will be large enough for the payload;
7197 get_memory_packet_size ensures this. */
7200 /* Compute the size of the actual payload by subtracting out the
7201 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
7203 payload_capacity_bytes -= strlen ("$,:#NN");
7205 /* The comma won't be used. */
7206 payload_capacity_bytes += 1;
7207 payload_capacity_bytes -= strlen (header);
7208 payload_capacity_bytes -= hexnumlen (memaddr);
7210 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
7212 strcat (rs->buf, header);
7213 p = rs->buf + strlen (header);
7215 /* Compute a best guess of the number of bytes actually transfered. */
7216 if (packet_format == 'X')
7218 /* Best guess at number of bytes that will fit. */
7219 todo_units = min (len_units, payload_capacity_bytes / unit_size);
7221 payload_capacity_bytes -= hexnumlen (todo_units);
7222 todo_units = min (todo_units, payload_capacity_bytes / unit_size);
7226 /* Number of bytes that will fit. */
7227 todo_units = min (len_units, (payload_capacity_bytes / unit_size) / 2);
7229 payload_capacity_bytes -= hexnumlen (todo_units);
7230 todo_units = min (todo_units, (payload_capacity_bytes / unit_size) / 2);
7233 if (todo_units <= 0)
7234 internal_error (__FILE__, __LINE__,
7235 _("minimum packet size too small to write data"));
7237 /* If we already need another packet, then try to align the end
7238 of this packet to a useful boundary. */
7239 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
7240 todo_units = align_for_efficient_write (todo_units, memaddr);
7242 /* Append "<memaddr>". */
7243 memaddr = remote_address_masked (memaddr);
7244 p += hexnumstr (p, (ULONGEST) memaddr);
7251 /* Append the length and retain its location and size. It may need to be
7252 adjusted once the packet body has been created. */
7254 plenlen = hexnumstr (p, (ULONGEST) todo_units);
7262 /* Append the packet body. */
7263 if (packet_format == 'X')
7265 /* Binary mode. Send target system values byte by byte, in
7266 increasing byte addresses. Only escape certain critical
7268 payload_length_bytes =
7269 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
7270 &units_written, payload_capacity_bytes);
7272 /* If not all TODO units fit, then we'll need another packet. Make
7273 a second try to keep the end of the packet aligned. Don't do
7274 this if the packet is tiny. */
7275 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
7279 new_todo_units = align_for_efficient_write (units_written, memaddr);
7281 if (new_todo_units != units_written)
7282 payload_length_bytes =
7283 remote_escape_output (myaddr, new_todo_units, unit_size,
7284 (gdb_byte *) p, &units_written,
7285 payload_capacity_bytes);
7288 p += payload_length_bytes;
7289 if (use_length && units_written < todo_units)
7291 /* Escape chars have filled up the buffer prematurely,
7292 and we have actually sent fewer units than planned.
7293 Fix-up the length field of the packet. Use the same
7294 number of characters as before. */
7295 plen += hexnumnstr (plen, (ULONGEST) units_written,
7297 *plen = ':'; /* overwrite \0 from hexnumnstr() */
7302 /* Normal mode: Send target system values byte by byte, in
7303 increasing byte addresses. Each byte is encoded as a two hex
7305 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
7306 units_written = todo_units;
7309 putpkt_binary (rs->buf, (int) (p - rs->buf));
7310 getpkt (&rs->buf, &rs->buf_size, 0);
7312 if (rs->buf[0] == 'E')
7313 return TARGET_XFER_E_IO;
7315 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
7316 send fewer units than we'd planned. */
7317 *xfered_len_units = (ULONGEST) units_written;
7318 return TARGET_XFER_OK;
7321 /* Write memory data directly to the remote machine.
7322 This does not inform the data cache; the data cache uses this.
7323 MEMADDR is the address in the remote memory space.
7324 MYADDR is the address of the buffer in our space.
7325 LEN is the number of bytes.
7327 Return the transferred status, error or OK (an
7328 'enum target_xfer_status' value). Save the number of bytes
7329 transferred in *XFERED_LEN. Only transfer a single packet. */
7331 static enum target_xfer_status
7332 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
7333 int unit_size, ULONGEST *xfered_len)
7335 char *packet_format = 0;
7337 /* Check whether the target supports binary download. */
7338 check_binary_download (memaddr);
7340 switch (packet_support (PACKET_X))
7343 packet_format = "X";
7345 case PACKET_DISABLE:
7346 packet_format = "M";
7348 case PACKET_SUPPORT_UNKNOWN:
7349 internal_error (__FILE__, __LINE__,
7350 _("remote_write_bytes: bad internal state"));
7352 internal_error (__FILE__, __LINE__, _("bad switch"));
7355 return remote_write_bytes_aux (packet_format,
7356 memaddr, myaddr, len, unit_size, xfered_len,
7357 packet_format[0], 1);
7360 /* Read memory data directly from the remote machine.
7361 This does not use the data cache; the data cache uses this.
7362 MEMADDR is the address in the remote memory space.
7363 MYADDR is the address of the buffer in our space.
7364 LEN_UNITS is the number of addressable memory units to read..
7365 UNIT_SIZE is the length in bytes of an addressable unit.
7367 Return the transferred status, error or OK (an
7368 'enum target_xfer_status' value). Save the number of bytes
7369 transferred in *XFERED_LEN_UNITS.
7371 See the comment of remote_write_bytes_aux for an example of
7372 memory read/write exchange between gdb and the stub. */
7374 static enum target_xfer_status
7375 remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
7376 int unit_size, ULONGEST *xfered_len_units)
7378 struct remote_state *rs = get_remote_state ();
7379 int buf_size_bytes; /* Max size of packet output buffer. */
7384 buf_size_bytes = get_memory_read_packet_size ();
7385 /* The packet buffer will be large enough for the payload;
7386 get_memory_packet_size ensures this. */
7388 /* Number of units that will fit. */
7389 todo_units = min (len_units, (buf_size_bytes / unit_size) / 2);
7391 /* Construct "m"<memaddr>","<len>". */
7392 memaddr = remote_address_masked (memaddr);
7395 p += hexnumstr (p, (ULONGEST) memaddr);
7397 p += hexnumstr (p, (ULONGEST) todo_units);
7400 getpkt (&rs->buf, &rs->buf_size, 0);
7401 if (rs->buf[0] == 'E'
7402 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
7403 && rs->buf[3] == '\0')
7404 return TARGET_XFER_E_IO;
7405 /* Reply describes memory byte by byte, each byte encoded as two hex
7408 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
7409 /* Return what we have. Let higher layers handle partial reads. */
7410 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
7411 return TARGET_XFER_OK;
7414 /* Using the set of read-only target sections of remote, read live
7417 For interface/parameters/return description see target.h,
7420 static enum target_xfer_status
7421 remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
7422 ULONGEST memaddr, ULONGEST len,
7423 int unit_size, ULONGEST *xfered_len)
7425 struct target_section *secp;
7426 struct target_section_table *table;
7428 secp = target_section_by_addr (ops, memaddr);
7430 && (bfd_get_section_flags (secp->the_bfd_section->owner,
7431 secp->the_bfd_section)
7434 struct target_section *p;
7435 ULONGEST memend = memaddr + len;
7437 table = target_get_section_table (ops);
7439 for (p = table->sections; p < table->sections_end; p++)
7441 if (memaddr >= p->addr)
7443 if (memend <= p->endaddr)
7445 /* Entire transfer is within this section. */
7446 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7449 else if (memaddr >= p->endaddr)
7451 /* This section ends before the transfer starts. */
7456 /* This section overlaps the transfer. Just do half. */
7457 len = p->endaddr - memaddr;
7458 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7465 return TARGET_XFER_EOF;
7468 /* Similar to remote_read_bytes_1, but it reads from the remote stub
7469 first if the requested memory is unavailable in traceframe.
7470 Otherwise, fall back to remote_read_bytes_1. */
7472 static enum target_xfer_status
7473 remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
7474 gdb_byte *myaddr, ULONGEST len, int unit_size,
7475 ULONGEST *xfered_len)
7478 return TARGET_XFER_EOF;
7480 if (get_traceframe_number () != -1)
7482 VEC(mem_range_s) *available;
7484 /* If we fail to get the set of available memory, then the
7485 target does not support querying traceframe info, and so we
7486 attempt reading from the traceframe anyway (assuming the
7487 target implements the old QTro packet then). */
7488 if (traceframe_available_memory (&available, memaddr, len))
7490 struct cleanup *old_chain;
7492 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
7494 if (VEC_empty (mem_range_s, available)
7495 || VEC_index (mem_range_s, available, 0)->start != memaddr)
7497 enum target_xfer_status res;
7499 /* Don't read into the traceframe's available
7501 if (!VEC_empty (mem_range_s, available))
7503 LONGEST oldlen = len;
7505 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
7506 gdb_assert (len <= oldlen);
7509 do_cleanups (old_chain);
7511 /* This goes through the topmost target again. */
7512 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
7513 len, unit_size, xfered_len);
7514 if (res == TARGET_XFER_OK)
7515 return TARGET_XFER_OK;
7518 /* No use trying further, we know some memory starting
7519 at MEMADDR isn't available. */
7521 return TARGET_XFER_UNAVAILABLE;
7525 /* Don't try to read more than how much is available, in
7526 case the target implements the deprecated QTro packet to
7527 cater for older GDBs (the target's knowledge of read-only
7528 sections may be outdated by now). */
7529 len = VEC_index (mem_range_s, available, 0)->length;
7531 do_cleanups (old_chain);
7535 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
7540 /* Sends a packet with content determined by the printf format string
7541 FORMAT and the remaining arguments, then gets the reply. Returns
7542 whether the packet was a success, a failure, or unknown. */
7544 static enum packet_result remote_send_printf (const char *format, ...)
7545 ATTRIBUTE_PRINTF (1, 2);
7547 static enum packet_result
7548 remote_send_printf (const char *format, ...)
7550 struct remote_state *rs = get_remote_state ();
7551 int max_size = get_remote_packet_size ();
7554 va_start (ap, format);
7557 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
7558 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
7560 if (putpkt (rs->buf) < 0)
7561 error (_("Communication problem with target."));
7564 getpkt (&rs->buf, &rs->buf_size, 0);
7566 return packet_check_result (rs->buf);
7570 restore_remote_timeout (void *p)
7572 int value = *(int *)p;
7574 remote_timeout = value;
7577 /* Flash writing can take quite some time. We'll set
7578 effectively infinite timeout for flash operations.
7579 In future, we'll need to decide on a better approach. */
7580 static const int remote_flash_timeout = 1000;
7583 remote_flash_erase (struct target_ops *ops,
7584 ULONGEST address, LONGEST length)
7586 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
7587 int saved_remote_timeout = remote_timeout;
7588 enum packet_result ret;
7589 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7590 &saved_remote_timeout);
7592 remote_timeout = remote_flash_timeout;
7594 ret = remote_send_printf ("vFlashErase:%s,%s",
7595 phex (address, addr_size),
7599 case PACKET_UNKNOWN:
7600 error (_("Remote target does not support flash erase"));
7602 error (_("Error erasing flash with vFlashErase packet"));
7607 do_cleanups (back_to);
7610 static enum target_xfer_status
7611 remote_flash_write (struct target_ops *ops, ULONGEST address,
7612 ULONGEST length, ULONGEST *xfered_len,
7613 const gdb_byte *data)
7615 int saved_remote_timeout = remote_timeout;
7616 enum target_xfer_status ret;
7617 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7618 &saved_remote_timeout);
7620 remote_timeout = remote_flash_timeout;
7621 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
7623 do_cleanups (back_to);
7629 remote_flash_done (struct target_ops *ops)
7631 int saved_remote_timeout = remote_timeout;
7633 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7634 &saved_remote_timeout);
7636 remote_timeout = remote_flash_timeout;
7637 ret = remote_send_printf ("vFlashDone");
7638 do_cleanups (back_to);
7642 case PACKET_UNKNOWN:
7643 error (_("Remote target does not support vFlashDone"));
7645 error (_("Error finishing flash operation"));
7652 remote_files_info (struct target_ops *ignore)
7654 puts_filtered ("Debugging a target over a serial line.\n");
7657 /* Stuff for dealing with the packets which are part of this protocol.
7658 See comment at top of file for details. */
7660 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
7661 error to higher layers. Called when a serial error is detected.
7662 The exception message is STRING, followed by a colon and a blank,
7663 the system error message for errno at function entry and final dot
7664 for output compatibility with throw_perror_with_name. */
7667 unpush_and_perror (const char *string)
7669 int saved_errno = errno;
7671 remote_unpush_target ();
7672 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
7673 safe_strerror (saved_errno));
7676 /* Read a single character from the remote end. */
7679 readchar (int timeout)
7682 struct remote_state *rs = get_remote_state ();
7684 ch = serial_readchar (rs->remote_desc, timeout);
7689 switch ((enum serial_rc) ch)
7692 remote_unpush_target ();
7693 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
7696 unpush_and_perror (_("Remote communication error. "
7697 "Target disconnected."));
7699 case SERIAL_TIMEOUT:
7705 /* Wrapper for serial_write that closes the target and throws if
7709 remote_serial_write (const char *str, int len)
7711 struct remote_state *rs = get_remote_state ();
7713 if (serial_write (rs->remote_desc, str, len))
7715 unpush_and_perror (_("Remote communication error. "
7716 "Target disconnected."));
7720 /* Send the command in *BUF to the remote machine, and read the reply
7721 into *BUF. Report an error if we get an error reply. Resize
7722 *BUF using xrealloc if necessary to hold the result, and update
7726 remote_send (char **buf,
7730 getpkt (buf, sizeof_buf, 0);
7732 if ((*buf)[0] == 'E')
7733 error (_("Remote failure reply: %s"), *buf);
7736 /* Return a pointer to an xmalloc'ed string representing an escaped
7737 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
7738 etc. The caller is responsible for releasing the returned
7742 escape_buffer (const char *buf, int n)
7744 struct cleanup *old_chain;
7745 struct ui_file *stb;
7748 stb = mem_fileopen ();
7749 old_chain = make_cleanup_ui_file_delete (stb);
7751 fputstrn_unfiltered (buf, n, '\\', stb);
7752 str = ui_file_xstrdup (stb, NULL);
7753 do_cleanups (old_chain);
7757 /* Display a null-terminated packet on stdout, for debugging, using C
7761 print_packet (const char *buf)
7763 puts_filtered ("\"");
7764 fputstr_filtered (buf, '"', gdb_stdout);
7765 puts_filtered ("\"");
7769 putpkt (const char *buf)
7771 return putpkt_binary (buf, strlen (buf));
7774 /* Send a packet to the remote machine, with error checking. The data
7775 of the packet is in BUF. The string in BUF can be at most
7776 get_remote_packet_size () - 5 to account for the $, # and checksum,
7777 and for a possible /0 if we are debugging (remote_debug) and want
7778 to print the sent packet as a string. */
7781 putpkt_binary (const char *buf, int cnt)
7783 struct remote_state *rs = get_remote_state ();
7785 unsigned char csum = 0;
7786 char *buf2 = alloca (cnt + 6);
7793 /* Catch cases like trying to read memory or listing threads while
7794 we're waiting for a stop reply. The remote server wouldn't be
7795 ready to handle this request, so we'd hang and timeout. We don't
7796 have to worry about this in synchronous mode, because in that
7797 case it's not possible to issue a command while the target is
7798 running. This is not a problem in non-stop mode, because in that
7799 case, the stub is always ready to process serial input. */
7800 if (!non_stop && target_is_async_p () && rs->waiting_for_stop_reply)
7802 error (_("Cannot execute this command while the target is running.\n"
7803 "Use the \"interrupt\" command to stop the target\n"
7804 "and then try again."));
7807 /* We're sending out a new packet. Make sure we don't look at a
7808 stale cached response. */
7809 rs->cached_wait_status = 0;
7811 /* Copy the packet into buffer BUF2, encapsulating it
7812 and giving it a checksum. */
7817 for (i = 0; i < cnt; i++)
7823 *p++ = tohex ((csum >> 4) & 0xf);
7824 *p++ = tohex (csum & 0xf);
7826 /* Send it over and over until we get a positive ack. */
7830 int started_error_output = 0;
7834 struct cleanup *old_chain;
7838 str = escape_buffer (buf2, p - buf2);
7839 old_chain = make_cleanup (xfree, str);
7840 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
7841 gdb_flush (gdb_stdlog);
7842 do_cleanups (old_chain);
7844 remote_serial_write (buf2, p - buf2);
7846 /* If this is a no acks version of the remote protocol, send the
7847 packet and move on. */
7851 /* Read until either a timeout occurs (-2) or '+' is read.
7852 Handle any notification that arrives in the mean time. */
7855 ch = readchar (remote_timeout);
7863 case SERIAL_TIMEOUT:
7866 if (started_error_output)
7868 putchar_unfiltered ('\n');
7869 started_error_output = 0;
7878 fprintf_unfiltered (gdb_stdlog, "Ack\n");
7882 fprintf_unfiltered (gdb_stdlog, "Nak\n");
7884 case SERIAL_TIMEOUT:
7888 break; /* Retransmit buffer. */
7892 fprintf_unfiltered (gdb_stdlog,
7893 "Packet instead of Ack, ignoring it\n");
7894 /* It's probably an old response sent because an ACK
7895 was lost. Gobble up the packet and ack it so it
7896 doesn't get retransmitted when we resend this
7899 remote_serial_write ("+", 1);
7900 continue; /* Now, go look for +. */
7907 /* If we got a notification, handle it, and go back to looking
7909 /* We've found the start of a notification. Now
7910 collect the data. */
7911 val = read_frame (&rs->buf, &rs->buf_size);
7916 struct cleanup *old_chain;
7919 str = escape_buffer (rs->buf, val);
7920 old_chain = make_cleanup (xfree, str);
7921 fprintf_unfiltered (gdb_stdlog,
7922 " Notification received: %s\n",
7924 do_cleanups (old_chain);
7926 handle_notification (rs->notif_state, rs->buf);
7927 /* We're in sync now, rewait for the ack. */
7934 if (!started_error_output)
7936 started_error_output = 1;
7937 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7939 fputc_unfiltered (ch & 0177, gdb_stdlog);
7940 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
7949 if (!started_error_output)
7951 started_error_output = 1;
7952 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7954 fputc_unfiltered (ch & 0177, gdb_stdlog);
7958 break; /* Here to retransmit. */
7962 /* This is wrong. If doing a long backtrace, the user should be
7963 able to get out next time we call QUIT, without anything as
7964 violent as interrupt_query. If we want to provide a way out of
7965 here without getting to the next QUIT, it should be based on
7966 hitting ^C twice as in remote_wait. */
7977 /* Come here after finding the start of a frame when we expected an
7978 ack. Do our best to discard the rest of this packet. */
7987 c = readchar (remote_timeout);
7990 case SERIAL_TIMEOUT:
7991 /* Nothing we can do. */
7994 /* Discard the two bytes of checksum and stop. */
7995 c = readchar (remote_timeout);
7997 c = readchar (remote_timeout);
8000 case '*': /* Run length encoding. */
8001 /* Discard the repeat count. */
8002 c = readchar (remote_timeout);
8007 /* A regular character. */
8013 /* Come here after finding the start of the frame. Collect the rest
8014 into *BUF, verifying the checksum, length, and handling run-length
8015 compression. NUL terminate the buffer. If there is not enough room,
8016 expand *BUF using xrealloc.
8018 Returns -1 on error, number of characters in buffer (ignoring the
8019 trailing NULL) on success. (could be extended to return one of the
8020 SERIAL status indications). */
8023 read_frame (char **buf_p,
8030 struct remote_state *rs = get_remote_state ();
8037 c = readchar (remote_timeout);
8040 case SERIAL_TIMEOUT:
8042 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
8046 fputs_filtered ("Saw new packet start in middle of old one\n",
8048 return -1; /* Start a new packet, count retries. */
8051 unsigned char pktcsum;
8057 check_0 = readchar (remote_timeout);
8059 check_1 = readchar (remote_timeout);
8061 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8064 fputs_filtered ("Timeout in checksum, retrying\n",
8068 else if (check_0 < 0 || check_1 < 0)
8071 fputs_filtered ("Communication error in checksum\n",
8076 /* Don't recompute the checksum; with no ack packets we
8077 don't have any way to indicate a packet retransmission
8082 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
8083 if (csum == pktcsum)
8088 struct cleanup *old_chain;
8091 str = escape_buffer (buf, bc);
8092 old_chain = make_cleanup (xfree, str);
8093 fprintf_unfiltered (gdb_stdlog,
8094 "Bad checksum, sentsum=0x%x, "
8095 "csum=0x%x, buf=%s\n",
8096 pktcsum, csum, str);
8097 do_cleanups (old_chain);
8099 /* Number of characters in buffer ignoring trailing
8103 case '*': /* Run length encoding. */
8108 c = readchar (remote_timeout);
8110 repeat = c - ' ' + 3; /* Compute repeat count. */
8112 /* The character before ``*'' is repeated. */
8114 if (repeat > 0 && repeat <= 255 && bc > 0)
8116 if (bc + repeat - 1 >= *sizeof_buf - 1)
8118 /* Make some more room in the buffer. */
8119 *sizeof_buf += repeat;
8120 *buf_p = xrealloc (*buf_p, *sizeof_buf);
8124 memset (&buf[bc], buf[bc - 1], repeat);
8130 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
8134 if (bc >= *sizeof_buf - 1)
8136 /* Make some more room in the buffer. */
8138 *buf_p = xrealloc (*buf_p, *sizeof_buf);
8149 /* Read a packet from the remote machine, with error checking, and
8150 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8151 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8152 rather than timing out; this is used (in synchronous mode) to wait
8153 for a target that is is executing user code to stop. */
8154 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
8155 don't have to change all the calls to getpkt to deal with the
8156 return value, because at the moment I don't know what the right
8157 thing to do it for those. */
8165 timed_out = getpkt_sane (buf, sizeof_buf, forever);
8169 /* Read a packet from the remote machine, with error checking, and
8170 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8171 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8172 rather than timing out; this is used (in synchronous mode) to wait
8173 for a target that is is executing user code to stop. If FOREVER ==
8174 0, this function is allowed to time out gracefully and return an
8175 indication of this to the caller. Otherwise return the number of
8176 bytes read. If EXPECTING_NOTIF, consider receiving a notification
8177 enough reason to return to the caller. *IS_NOTIF is an output
8178 boolean that indicates whether *BUF holds a notification or not
8179 (a regular packet). */
8182 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
8183 int expecting_notif, int *is_notif)
8185 struct remote_state *rs = get_remote_state ();
8191 /* We're reading a new response. Make sure we don't look at a
8192 previously cached response. */
8193 rs->cached_wait_status = 0;
8195 strcpy (*buf, "timeout");
8198 timeout = watchdog > 0 ? watchdog : -1;
8199 else if (expecting_notif)
8200 timeout = 0; /* There should already be a char in the buffer. If
8203 timeout = remote_timeout;
8207 /* Process any number of notifications, and then return when
8211 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
8213 for (tries = 1; tries <= MAX_TRIES; tries++)
8215 /* This can loop forever if the remote side sends us
8216 characters continuously, but if it pauses, we'll get
8217 SERIAL_TIMEOUT from readchar because of timeout. Then
8218 we'll count that as a retry.
8220 Note that even when forever is set, we will only wait
8221 forever prior to the start of a packet. After that, we
8222 expect characters to arrive at a brisk pace. They should
8223 show up within remote_timeout intervals. */
8225 c = readchar (timeout);
8226 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
8228 if (c == SERIAL_TIMEOUT)
8230 if (expecting_notif)
8231 return -1; /* Don't complain, it's normal to not get
8232 anything in this case. */
8234 if (forever) /* Watchdog went off? Kill the target. */
8237 remote_unpush_target ();
8238 throw_error (TARGET_CLOSE_ERROR,
8239 _("Watchdog timeout has expired. "
8240 "Target detached."));
8243 fputs_filtered ("Timed out.\n", gdb_stdlog);
8247 /* We've found the start of a packet or notification.
8248 Now collect the data. */
8249 val = read_frame (buf, sizeof_buf);
8254 remote_serial_write ("-", 1);
8257 if (tries > MAX_TRIES)
8259 /* We have tried hard enough, and just can't receive the
8260 packet/notification. Give up. */
8261 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
8263 /* Skip the ack char if we're in no-ack mode. */
8264 if (!rs->noack_mode)
8265 remote_serial_write ("+", 1);
8269 /* If we got an ordinary packet, return that to our caller. */
8274 struct cleanup *old_chain;
8277 str = escape_buffer (*buf, val);
8278 old_chain = make_cleanup (xfree, str);
8279 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
8280 do_cleanups (old_chain);
8283 /* Skip the ack char if we're in no-ack mode. */
8284 if (!rs->noack_mode)
8285 remote_serial_write ("+", 1);
8286 if (is_notif != NULL)
8291 /* If we got a notification, handle it, and go back to looking
8295 gdb_assert (c == '%');
8299 struct cleanup *old_chain;
8302 str = escape_buffer (*buf, val);
8303 old_chain = make_cleanup (xfree, str);
8304 fprintf_unfiltered (gdb_stdlog,
8305 " Notification received: %s\n",
8307 do_cleanups (old_chain);
8309 if (is_notif != NULL)
8312 handle_notification (rs->notif_state, *buf);
8314 /* Notifications require no acknowledgement. */
8316 if (expecting_notif)
8323 getpkt_sane (char **buf, long *sizeof_buf, int forever)
8325 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
8329 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
8332 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
8336 /* Check whether EVENT is a fork event for the process specified
8337 by the pid passed in DATA, and if it is, kill the fork child. */
8340 kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
8341 QUEUE_ITER (stop_reply_p) *iter,
8345 struct queue_iter_param *param = data;
8346 int parent_pid = *(int *) param->input;
8348 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
8350 struct remote_state *rs = get_remote_state ();
8351 int child_pid = ptid_get_pid (event->ws.value.related_pid);
8354 res = remote_vkill (child_pid, rs);
8356 error (_("Can't kill fork child process %d"), child_pid);
8362 /* Kill any new fork children of process PID that haven't been
8363 processed by follow_fork. */
8366 kill_new_fork_children (int pid, struct remote_state *rs)
8368 struct thread_info *thread;
8369 struct notif_client *notif = ¬if_client_stop;
8370 struct queue_iter_param param;
8372 /* Kill the fork child threads of any threads in process PID
8373 that are stopped at a fork event. */
8374 ALL_NON_EXITED_THREADS (thread)
8376 struct target_waitstatus *ws = &thread->pending_follow;
8378 if (is_pending_fork_parent (ws, pid, thread->ptid))
8380 struct remote_state *rs = get_remote_state ();
8381 int child_pid = ptid_get_pid (ws->value.related_pid);
8384 res = remote_vkill (child_pid, rs);
8386 error (_("Can't kill fork child process %d"), child_pid);
8390 /* Check for any pending fork events (not reported or processed yet)
8391 in process PID and kill those fork child threads as well. */
8392 remote_notif_get_pending_events (notif);
8394 param.output = NULL;
8395 QUEUE_iterate (stop_reply_p, stop_reply_queue,
8396 kill_child_of_pending_fork, ¶m);
8401 remote_kill (struct target_ops *ops)
8404 /* Catch errors so the user can quit from gdb even when we
8405 aren't on speaking terms with the remote system. */
8410 CATCH (ex, RETURN_MASK_ERROR)
8412 if (ex.error == TARGET_CLOSE_ERROR)
8414 /* If we got an (EOF) error that caused the target
8415 to go away, then we're done, that's what we wanted.
8416 "k" is susceptible to cause a premature EOF, given
8417 that the remote server isn't actually required to
8418 reply to "k", and it can happen that it doesn't
8419 even get to reply ACK to the "k". */
8423 /* Otherwise, something went wrong. We didn't actually kill
8424 the target. Just propagate the exception, and let the
8425 user or higher layers decide what to do. */
8426 throw_exception (ex);
8430 /* We've killed the remote end, we get to mourn it. Since this is
8431 target remote, single-process, mourning the inferior also
8432 unpushes remote_ops. */
8433 target_mourn_inferior ();
8437 remote_vkill (int pid, struct remote_state *rs)
8439 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
8442 /* Tell the remote target to detach. */
8443 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
8445 getpkt (&rs->buf, &rs->buf_size, 0);
8447 switch (packet_ok (rs->buf,
8448 &remote_protocol_packets[PACKET_vKill]))
8454 case PACKET_UNKNOWN:
8457 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8462 extended_remote_kill (struct target_ops *ops)
8465 int pid = ptid_get_pid (inferior_ptid);
8466 struct remote_state *rs = get_remote_state ();
8468 /* If we're stopped while forking and we haven't followed yet, kill the
8469 child task. We need to do this before killing the parent task
8470 because if this is a vfork then the parent will be sleeping. */
8471 kill_new_fork_children (pid, rs);
8473 res = remote_vkill (pid, rs);
8474 if (res == -1 && !(rs->extended && remote_multi_process_p (rs)))
8476 /* Don't try 'k' on a multi-process aware stub -- it has no way
8477 to specify the pid. */
8481 getpkt (&rs->buf, &rs->buf_size, 0);
8482 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
8485 /* Don't wait for it to die. I'm not really sure it matters whether
8486 we do or not. For the existing stubs, kill is a noop. */
8492 error (_("Can't kill process"));
8494 target_mourn_inferior ();
8498 remote_mourn (struct target_ops *target)
8500 unpush_target (target);
8502 /* remote_close takes care of doing most of the clean up. */
8503 generic_mourn_inferior ();
8507 extended_remote_mourn (struct target_ops *target)
8509 struct remote_state *rs = get_remote_state ();
8511 /* In case we got here due to an error, but we're going to stay
8513 rs->waiting_for_stop_reply = 0;
8515 /* If the current general thread belonged to the process we just
8516 detached from or has exited, the remote side current general
8517 thread becomes undefined. Considering a case like this:
8519 - We just got here due to a detach.
8520 - The process that we're detaching from happens to immediately
8521 report a global breakpoint being hit in non-stop mode, in the
8522 same thread we had selected before.
8523 - GDB attaches to this process again.
8524 - This event happens to be the next event we handle.
8526 GDB would consider that the current general thread didn't need to
8527 be set on the stub side (with Hg), since for all it knew,
8528 GENERAL_THREAD hadn't changed.
8530 Notice that although in all-stop mode, the remote server always
8531 sets the current thread to the thread reporting the stop event,
8532 that doesn't happen in non-stop mode; in non-stop, the stub *must
8533 not* change the current thread when reporting a breakpoint hit,
8534 due to the decoupling of event reporting and event handling.
8536 To keep things simple, we always invalidate our notion of the
8538 record_currthread (rs, minus_one_ptid);
8540 /* Unlike "target remote", we do not want to unpush the target; then
8541 the next time the user says "run", we won't be connected. */
8543 /* Call common code to mark the inferior as not running. */
8544 generic_mourn_inferior ();
8546 if (!have_inferiors ())
8548 if (!remote_multi_process_p (rs))
8550 /* Check whether the target is running now - some remote stubs
8551 automatically restart after kill. */
8553 getpkt (&rs->buf, &rs->buf_size, 0);
8555 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
8557 /* Assume that the target has been restarted. Set
8558 inferior_ptid so that bits of core GDB realizes
8559 there's something here, e.g., so that the user can
8560 say "kill" again. */
8561 inferior_ptid = magic_null_ptid;
8568 extended_remote_supports_disable_randomization (struct target_ops *self)
8570 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
8574 extended_remote_disable_randomization (int val)
8576 struct remote_state *rs = get_remote_state ();
8579 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
8582 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
8584 error (_("Target does not support QDisableRandomization."));
8585 if (strcmp (reply, "OK") != 0)
8586 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
8590 extended_remote_run (char *args)
8592 struct remote_state *rs = get_remote_state ();
8595 /* If the user has disabled vRun support, or we have detected that
8596 support is not available, do not try it. */
8597 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
8600 strcpy (rs->buf, "vRun;");
8601 len = strlen (rs->buf);
8603 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
8604 error (_("Remote file name too long for run packet"));
8605 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
8606 strlen (remote_exec_file));
8608 gdb_assert (args != NULL);
8611 struct cleanup *back_to;
8615 argv = gdb_buildargv (args);
8616 back_to = make_cleanup_freeargv (argv);
8617 for (i = 0; argv[i] != NULL; i++)
8619 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
8620 error (_("Argument list too long for run packet"));
8621 rs->buf[len++] = ';';
8622 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
8625 do_cleanups (back_to);
8628 rs->buf[len++] = '\0';
8631 getpkt (&rs->buf, &rs->buf_size, 0);
8633 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
8636 /* We have a wait response. All is well. */
8638 case PACKET_UNKNOWN:
8641 if (remote_exec_file[0] == '\0')
8642 error (_("Running the default executable on the remote target failed; "
8643 "try \"set remote exec-file\"?"));
8645 error (_("Running \"%s\" on the remote target failed"),
8648 gdb_assert_not_reached (_("bad switch"));
8652 /* In the extended protocol we want to be able to do things like
8653 "run" and have them basically work as expected. So we need
8654 a special create_inferior function. We support changing the
8655 executable file and the command line arguments, but not the
8659 extended_remote_create_inferior (struct target_ops *ops,
8660 char *exec_file, char *args,
8661 char **env, int from_tty)
8665 struct remote_state *rs = get_remote_state ();
8667 /* If running asynchronously, register the target file descriptor
8668 with the event loop. */
8669 if (target_can_async_p ())
8672 /* Disable address space randomization if requested (and supported). */
8673 if (extended_remote_supports_disable_randomization (ops))
8674 extended_remote_disable_randomization (disable_randomization);
8676 /* Now restart the remote server. */
8677 run_worked = extended_remote_run (args) != -1;
8680 /* vRun was not supported. Fail if we need it to do what the
8682 if (remote_exec_file[0])
8683 error (_("Remote target does not support \"set remote exec-file\""));
8685 error (_("Remote target does not support \"set args\" or run <ARGS>"));
8687 /* Fall back to "R". */
8688 extended_remote_restart ();
8691 if (!have_inferiors ())
8693 /* Clean up from the last time we ran, before we mark the target
8694 running again. This will mark breakpoints uninserted, and
8695 get_offsets may insert breakpoints. */
8696 init_thread_list ();
8697 init_wait_for_inferior ();
8700 /* vRun's success return is a stop reply. */
8701 stop_reply = run_worked ? rs->buf : NULL;
8702 add_current_inferior_and_thread (stop_reply);
8704 /* Get updated offsets, if the stub uses qOffsets. */
8709 /* Given a location's target info BP_TGT and the packet buffer BUF, output
8710 the list of conditions (in agent expression bytecode format), if any, the
8711 target needs to evaluate. The output is placed into the packet buffer
8712 started from BUF and ended at BUF_END. */
8715 remote_add_target_side_condition (struct gdbarch *gdbarch,
8716 struct bp_target_info *bp_tgt, char *buf,
8719 struct agent_expr *aexpr = NULL;
8722 char *buf_start = buf;
8724 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
8727 buf += strlen (buf);
8728 xsnprintf (buf, buf_end - buf, "%s", ";");
8731 /* Send conditions to the target and free the vector. */
8733 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
8736 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
8737 buf += strlen (buf);
8738 for (i = 0; i < aexpr->len; ++i)
8739 buf = pack_hex_byte (buf, aexpr->buf[i]);
8746 remote_add_target_side_commands (struct gdbarch *gdbarch,
8747 struct bp_target_info *bp_tgt, char *buf)
8749 struct agent_expr *aexpr = NULL;
8752 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
8755 buf += strlen (buf);
8757 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
8758 buf += strlen (buf);
8760 /* Concatenate all the agent expressions that are commands into the
8763 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
8766 sprintf (buf, "X%x,", aexpr->len);
8767 buf += strlen (buf);
8768 for (i = 0; i < aexpr->len; ++i)
8769 buf = pack_hex_byte (buf, aexpr->buf[i]);
8774 /* Insert a breakpoint. On targets that have software breakpoint
8775 support, we ask the remote target to do the work; on targets
8776 which don't, we insert a traditional memory breakpoint. */
8779 remote_insert_breakpoint (struct target_ops *ops,
8780 struct gdbarch *gdbarch,
8781 struct bp_target_info *bp_tgt)
8783 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
8784 If it succeeds, then set the support to PACKET_ENABLE. If it
8785 fails, and the user has explicitly requested the Z support then
8786 report an error, otherwise, mark it disabled and go on. */
8788 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
8790 CORE_ADDR addr = bp_tgt->reqstd_address;
8791 struct remote_state *rs;
8794 struct condition_list *cond = NULL;
8796 /* Make sure the remote is pointing at the right process, if
8798 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8799 set_general_process ();
8801 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
8803 rs = get_remote_state ();
8805 endbuf = rs->buf + get_remote_packet_size ();
8810 addr = (ULONGEST) remote_address_masked (addr);
8811 p += hexnumstr (p, addr);
8812 xsnprintf (p, endbuf - p, ",%d", bpsize);
8814 if (remote_supports_cond_breakpoints (ops))
8815 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
8817 if (remote_can_run_breakpoint_commands (ops))
8818 remote_add_target_side_commands (gdbarch, bp_tgt, p);
8821 getpkt (&rs->buf, &rs->buf_size, 0);
8823 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
8828 bp_tgt->placed_address = addr;
8829 bp_tgt->placed_size = bpsize;
8831 case PACKET_UNKNOWN:
8836 /* If this breakpoint has target-side commands but this stub doesn't
8837 support Z0 packets, throw error. */
8838 if (!VEC_empty (agent_expr_p, bp_tgt->tcommands))
8839 throw_error (NOT_SUPPORTED_ERROR, _("\
8840 Target doesn't support breakpoints that have target side commands."));
8842 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
8846 remote_remove_breakpoint (struct target_ops *ops,
8847 struct gdbarch *gdbarch,
8848 struct bp_target_info *bp_tgt)
8850 CORE_ADDR addr = bp_tgt->placed_address;
8851 struct remote_state *rs = get_remote_state ();
8853 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
8856 char *endbuf = rs->buf + get_remote_packet_size ();
8858 /* Make sure the remote is pointing at the right process, if
8860 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8861 set_general_process ();
8867 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
8868 p += hexnumstr (p, addr);
8869 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
8872 getpkt (&rs->buf, &rs->buf_size, 0);
8874 return (rs->buf[0] == 'E');
8877 return memory_remove_breakpoint (ops, gdbarch, bp_tgt);
8880 static enum Z_packet_type
8881 watchpoint_to_Z_packet (int type)
8886 return Z_PACKET_WRITE_WP;
8889 return Z_PACKET_READ_WP;
8892 return Z_PACKET_ACCESS_WP;
8895 internal_error (__FILE__, __LINE__,
8896 _("hw_bp_to_z: bad watchpoint type %d"), type);
8901 remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
8902 enum target_hw_bp_type type, struct expression *cond)
8904 struct remote_state *rs = get_remote_state ();
8905 char *endbuf = rs->buf + get_remote_packet_size ();
8907 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8909 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
8912 /* Make sure the remote is pointing at the right process, if
8914 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8915 set_general_process ();
8917 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
8918 p = strchr (rs->buf, '\0');
8919 addr = remote_address_masked (addr);
8920 p += hexnumstr (p, (ULONGEST) addr);
8921 xsnprintf (p, endbuf - p, ",%x", len);
8924 getpkt (&rs->buf, &rs->buf_size, 0);
8926 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8930 case PACKET_UNKNOWN:
8935 internal_error (__FILE__, __LINE__,
8936 _("remote_insert_watchpoint: reached end of function"));
8940 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
8941 CORE_ADDR start, int length)
8943 CORE_ADDR diff = remote_address_masked (addr - start);
8945 return diff < length;
8950 remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
8951 enum target_hw_bp_type type, struct expression *cond)
8953 struct remote_state *rs = get_remote_state ();
8954 char *endbuf = rs->buf + get_remote_packet_size ();
8956 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8958 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
8961 /* Make sure the remote is pointing at the right process, if
8963 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8964 set_general_process ();
8966 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
8967 p = strchr (rs->buf, '\0');
8968 addr = remote_address_masked (addr);
8969 p += hexnumstr (p, (ULONGEST) addr);
8970 xsnprintf (p, endbuf - p, ",%x", len);
8972 getpkt (&rs->buf, &rs->buf_size, 0);
8974 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8977 case PACKET_UNKNOWN:
8982 internal_error (__FILE__, __LINE__,
8983 _("remote_remove_watchpoint: reached end of function"));
8987 int remote_hw_watchpoint_limit = -1;
8988 int remote_hw_watchpoint_length_limit = -1;
8989 int remote_hw_breakpoint_limit = -1;
8992 remote_region_ok_for_hw_watchpoint (struct target_ops *self,
8993 CORE_ADDR addr, int len)
8995 if (remote_hw_watchpoint_length_limit == 0)
8997 else if (remote_hw_watchpoint_length_limit < 0)
8999 else if (len <= remote_hw_watchpoint_length_limit)
9006 remote_check_watch_resources (struct target_ops *self,
9007 enum bptype type, int cnt, int ot)
9009 if (type == bp_hardware_breakpoint)
9011 if (remote_hw_breakpoint_limit == 0)
9013 else if (remote_hw_breakpoint_limit < 0)
9015 else if (cnt <= remote_hw_breakpoint_limit)
9020 if (remote_hw_watchpoint_limit == 0)
9022 else if (remote_hw_watchpoint_limit < 0)
9026 else if (cnt <= remote_hw_watchpoint_limit)
9032 /* The to_stopped_by_sw_breakpoint method of target remote. */
9035 remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9037 struct remote_state *rs = get_remote_state ();
9039 return rs->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT;
9042 /* The to_supports_stopped_by_sw_breakpoint method of target
9046 remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
9048 struct remote_state *rs = get_remote_state ();
9050 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
9053 /* The to_stopped_by_hw_breakpoint method of target remote. */
9056 remote_stopped_by_hw_breakpoint (struct target_ops *ops)
9058 struct remote_state *rs = get_remote_state ();
9060 return rs->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT;
9063 /* The to_supports_stopped_by_hw_breakpoint method of target
9067 remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
9069 struct remote_state *rs = get_remote_state ();
9071 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
9075 remote_stopped_by_watchpoint (struct target_ops *ops)
9077 struct remote_state *rs = get_remote_state ();
9079 return rs->stop_reason == TARGET_STOPPED_BY_WATCHPOINT;
9083 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
9085 struct remote_state *rs = get_remote_state ();
9088 if (remote_stopped_by_watchpoint (target))
9090 *addr_p = rs->remote_watch_data_address;
9099 remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9100 struct bp_target_info *bp_tgt)
9102 CORE_ADDR addr = bp_tgt->reqstd_address;
9103 struct remote_state *rs;
9108 /* The length field should be set to the size of a breakpoint
9109 instruction, even though we aren't inserting one ourselves. */
9111 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
9113 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9116 /* Make sure the remote is pointing at the right process, if
9118 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9119 set_general_process ();
9121 rs = get_remote_state ();
9123 endbuf = rs->buf + get_remote_packet_size ();
9129 addr = remote_address_masked (addr);
9130 p += hexnumstr (p, (ULONGEST) addr);
9131 xsnprintf (p, endbuf - p, ",%x", bpsize);
9133 if (remote_supports_cond_breakpoints (self))
9134 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9136 if (remote_can_run_breakpoint_commands (self))
9137 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9140 getpkt (&rs->buf, &rs->buf_size, 0);
9142 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9145 if (rs->buf[1] == '.')
9147 message = strchr (rs->buf + 2, '.');
9149 error (_("Remote failure reply: %s"), message + 1);
9152 case PACKET_UNKNOWN:
9155 bp_tgt->placed_address = addr;
9156 bp_tgt->placed_size = bpsize;
9159 internal_error (__FILE__, __LINE__,
9160 _("remote_insert_hw_breakpoint: reached end of function"));
9165 remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9166 struct bp_target_info *bp_tgt)
9169 struct remote_state *rs = get_remote_state ();
9171 char *endbuf = rs->buf + get_remote_packet_size ();
9173 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9176 /* Make sure the remote is pointing at the right process, if
9178 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9179 set_general_process ();
9185 addr = remote_address_masked (bp_tgt->placed_address);
9186 p += hexnumstr (p, (ULONGEST) addr);
9187 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
9190 getpkt (&rs->buf, &rs->buf_size, 0);
9192 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9195 case PACKET_UNKNOWN:
9200 internal_error (__FILE__, __LINE__,
9201 _("remote_remove_hw_breakpoint: reached end of function"));
9204 /* Verify memory using the "qCRC:" request. */
9207 remote_verify_memory (struct target_ops *ops,
9208 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
9210 struct remote_state *rs = get_remote_state ();
9211 unsigned long host_crc, target_crc;
9214 /* It doesn't make sense to use qCRC if the remote target is
9215 connected but not running. */
9216 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
9218 enum packet_result result;
9220 /* Make sure the remote is pointing at the right process. */
9221 set_general_process ();
9223 /* FIXME: assumes lma can fit into long. */
9224 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
9225 (long) lma, (long) size);
9228 /* Be clever; compute the host_crc before waiting for target
9230 host_crc = xcrc32 (data, size, 0xffffffff);
9232 getpkt (&rs->buf, &rs->buf_size, 0);
9234 result = packet_ok (rs->buf,
9235 &remote_protocol_packets[PACKET_qCRC]);
9236 if (result == PACKET_ERROR)
9238 else if (result == PACKET_OK)
9240 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
9241 target_crc = target_crc * 16 + fromhex (*tmp);
9243 return (host_crc == target_crc);
9247 return simple_verify_memory (ops, data, lma, size);
9250 /* compare-sections command
9252 With no arguments, compares each loadable section in the exec bfd
9253 with the same memory range on the target, and reports mismatches.
9254 Useful for verifying the image on the target against the exec file. */
9257 compare_sections_command (char *args, int from_tty)
9260 struct cleanup *old_chain;
9262 const char *sectname;
9271 error (_("command cannot be used without an exec file"));
9273 /* Make sure the remote is pointing at the right process. */
9274 set_general_process ();
9276 if (args != NULL && strcmp (args, "-r") == 0)
9282 for (s = exec_bfd->sections; s; s = s->next)
9284 if (!(s->flags & SEC_LOAD))
9285 continue; /* Skip non-loadable section. */
9287 if (read_only && (s->flags & SEC_READONLY) == 0)
9288 continue; /* Skip writeable sections */
9290 size = bfd_get_section_size (s);
9292 continue; /* Skip zero-length section. */
9294 sectname = bfd_get_section_name (exec_bfd, s);
9295 if (args && strcmp (args, sectname) != 0)
9296 continue; /* Not the section selected by user. */
9298 matched = 1; /* Do this section. */
9301 sectdata = xmalloc (size);
9302 old_chain = make_cleanup (xfree, sectdata);
9303 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
9305 res = target_verify_memory (sectdata, lma, size);
9308 error (_("target memory fault, section %s, range %s -- %s"), sectname,
9309 paddress (target_gdbarch (), lma),
9310 paddress (target_gdbarch (), lma + size));
9312 printf_filtered ("Section %s, range %s -- %s: ", sectname,
9313 paddress (target_gdbarch (), lma),
9314 paddress (target_gdbarch (), lma + size));
9316 printf_filtered ("matched.\n");
9319 printf_filtered ("MIS-MATCHED!\n");
9323 do_cleanups (old_chain);
9326 warning (_("One or more sections of the target image does not match\n\
9327 the loaded file\n"));
9328 if (args && !matched)
9329 printf_filtered (_("No loaded section named '%s'.\n"), args);
9332 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
9333 into remote target. The number of bytes written to the remote
9334 target is returned, or -1 for error. */
9336 static enum target_xfer_status
9337 remote_write_qxfer (struct target_ops *ops, const char *object_name,
9338 const char *annex, const gdb_byte *writebuf,
9339 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
9340 struct packet_config *packet)
9344 struct remote_state *rs = get_remote_state ();
9345 int max_size = get_memory_write_packet_size ();
9347 if (packet->support == PACKET_DISABLE)
9348 return TARGET_XFER_E_IO;
9350 /* Insert header. */
9351 i = snprintf (rs->buf, max_size,
9352 "qXfer:%s:write:%s:%s:",
9353 object_name, annex ? annex : "",
9354 phex_nz (offset, sizeof offset));
9355 max_size -= (i + 1);
9357 /* Escape as much data as fits into rs->buf. */
9358 buf_len = remote_escape_output
9359 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
9361 if (putpkt_binary (rs->buf, i + buf_len) < 0
9362 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9363 || packet_ok (rs->buf, packet) != PACKET_OK)
9364 return TARGET_XFER_E_IO;
9366 unpack_varlen_hex (rs->buf, &n);
9369 return TARGET_XFER_OK;
9372 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
9373 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
9374 number of bytes read is returned, or 0 for EOF, or -1 for error.
9375 The number of bytes read may be less than LEN without indicating an
9376 EOF. PACKET is checked and updated to indicate whether the remote
9377 target supports this object. */
9379 static enum target_xfer_status
9380 remote_read_qxfer (struct target_ops *ops, const char *object_name,
9382 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9383 ULONGEST *xfered_len,
9384 struct packet_config *packet)
9386 struct remote_state *rs = get_remote_state ();
9387 LONGEST i, n, packet_len;
9389 if (packet->support == PACKET_DISABLE)
9390 return TARGET_XFER_E_IO;
9392 /* Check whether we've cached an end-of-object packet that matches
9394 if (rs->finished_object)
9396 if (strcmp (object_name, rs->finished_object) == 0
9397 && strcmp (annex ? annex : "", rs->finished_annex) == 0
9398 && offset == rs->finished_offset)
9399 return TARGET_XFER_EOF;
9402 /* Otherwise, we're now reading something different. Discard
9404 xfree (rs->finished_object);
9405 xfree (rs->finished_annex);
9406 rs->finished_object = NULL;
9407 rs->finished_annex = NULL;
9410 /* Request only enough to fit in a single packet. The actual data
9411 may not, since we don't know how much of it will need to be escaped;
9412 the target is free to respond with slightly less data. We subtract
9413 five to account for the response type and the protocol frame. */
9414 n = min (get_remote_packet_size () - 5, len);
9415 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
9416 object_name, annex ? annex : "",
9417 phex_nz (offset, sizeof offset),
9418 phex_nz (n, sizeof n));
9419 i = putpkt (rs->buf);
9421 return TARGET_XFER_E_IO;
9424 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9425 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
9426 return TARGET_XFER_E_IO;
9428 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
9429 error (_("Unknown remote qXfer reply: %s"), rs->buf);
9431 /* 'm' means there is (or at least might be) more data after this
9432 batch. That does not make sense unless there's at least one byte
9433 of data in this reply. */
9434 if (rs->buf[0] == 'm' && packet_len == 1)
9435 error (_("Remote qXfer reply contained no data."));
9437 /* Got some data. */
9438 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
9439 packet_len - 1, readbuf, n);
9441 /* 'l' is an EOF marker, possibly including a final block of data,
9442 or possibly empty. If we have the final block of a non-empty
9443 object, record this fact to bypass a subsequent partial read. */
9444 if (rs->buf[0] == 'l' && offset + i > 0)
9446 rs->finished_object = xstrdup (object_name);
9447 rs->finished_annex = xstrdup (annex ? annex : "");
9448 rs->finished_offset = offset + i;
9452 return TARGET_XFER_EOF;
9456 return TARGET_XFER_OK;
9460 static enum target_xfer_status
9461 remote_xfer_partial (struct target_ops *ops, enum target_object object,
9462 const char *annex, gdb_byte *readbuf,
9463 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
9464 ULONGEST *xfered_len)
9466 struct remote_state *rs;
9470 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
9472 set_remote_traceframe ();
9473 set_general_thread (inferior_ptid);
9475 rs = get_remote_state ();
9477 /* Handle memory using the standard memory routines. */
9478 if (object == TARGET_OBJECT_MEMORY)
9480 /* If the remote target is connected but not running, we should
9481 pass this request down to a lower stratum (e.g. the executable
9483 if (!target_has_execution)
9484 return TARGET_XFER_EOF;
9486 if (writebuf != NULL)
9487 return remote_write_bytes (offset, writebuf, len, unit_size,
9490 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
9494 /* Handle SPU memory using qxfer packets. */
9495 if (object == TARGET_OBJECT_SPU)
9498 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9499 xfered_len, &remote_protocol_packets
9500 [PACKET_qXfer_spu_read]);
9502 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9503 xfered_len, &remote_protocol_packets
9504 [PACKET_qXfer_spu_write]);
9507 /* Handle extra signal info using qxfer packets. */
9508 if (object == TARGET_OBJECT_SIGNAL_INFO)
9511 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9512 xfered_len, &remote_protocol_packets
9513 [PACKET_qXfer_siginfo_read]);
9515 return remote_write_qxfer (ops, "siginfo", annex,
9516 writebuf, offset, len, xfered_len,
9517 &remote_protocol_packets
9518 [PACKET_qXfer_siginfo_write]);
9521 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
9524 return remote_read_qxfer (ops, "statictrace", annex,
9525 readbuf, offset, len, xfered_len,
9526 &remote_protocol_packets
9527 [PACKET_qXfer_statictrace_read]);
9529 return TARGET_XFER_E_IO;
9532 /* Only handle flash writes. */
9533 if (writebuf != NULL)
9539 case TARGET_OBJECT_FLASH:
9540 return remote_flash_write (ops, offset, len, xfered_len,
9544 return TARGET_XFER_E_IO;
9548 /* Map pre-existing objects onto letters. DO NOT do this for new
9549 objects!!! Instead specify new query packets. */
9552 case TARGET_OBJECT_AVR:
9556 case TARGET_OBJECT_AUXV:
9557 gdb_assert (annex == NULL);
9558 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9560 &remote_protocol_packets[PACKET_qXfer_auxv]);
9562 case TARGET_OBJECT_AVAILABLE_FEATURES:
9563 return remote_read_qxfer
9564 (ops, "features", annex, readbuf, offset, len, xfered_len,
9565 &remote_protocol_packets[PACKET_qXfer_features]);
9567 case TARGET_OBJECT_LIBRARIES:
9568 return remote_read_qxfer
9569 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
9570 &remote_protocol_packets[PACKET_qXfer_libraries]);
9572 case TARGET_OBJECT_LIBRARIES_SVR4:
9573 return remote_read_qxfer
9574 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
9575 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
9577 case TARGET_OBJECT_MEMORY_MAP:
9578 gdb_assert (annex == NULL);
9579 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9581 &remote_protocol_packets[PACKET_qXfer_memory_map]);
9583 case TARGET_OBJECT_OSDATA:
9584 /* Should only get here if we're connected. */
9585 gdb_assert (rs->remote_desc);
9586 return remote_read_qxfer
9587 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
9588 &remote_protocol_packets[PACKET_qXfer_osdata]);
9590 case TARGET_OBJECT_THREADS:
9591 gdb_assert (annex == NULL);
9592 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9594 &remote_protocol_packets[PACKET_qXfer_threads]);
9596 case TARGET_OBJECT_TRACEFRAME_INFO:
9597 gdb_assert (annex == NULL);
9598 return remote_read_qxfer
9599 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
9600 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
9602 case TARGET_OBJECT_FDPIC:
9603 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9605 &remote_protocol_packets[PACKET_qXfer_fdpic]);
9607 case TARGET_OBJECT_OPENVMS_UIB:
9608 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9610 &remote_protocol_packets[PACKET_qXfer_uib]);
9612 case TARGET_OBJECT_BTRACE:
9613 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9615 &remote_protocol_packets[PACKET_qXfer_btrace]);
9617 case TARGET_OBJECT_BTRACE_CONF:
9618 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
9620 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
9622 case TARGET_OBJECT_EXEC_FILE:
9623 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
9625 &remote_protocol_packets[PACKET_qXfer_exec_file]);
9628 return TARGET_XFER_E_IO;
9631 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
9632 large enough let the caller deal with it. */
9633 if (len < get_remote_packet_size ())
9634 return TARGET_XFER_E_IO;
9635 len = get_remote_packet_size ();
9637 /* Except for querying the minimum buffer size, target must be open. */
9638 if (!rs->remote_desc)
9639 error (_("remote query is only available after target open"));
9641 gdb_assert (annex != NULL);
9642 gdb_assert (readbuf != NULL);
9648 /* We used one buffer char for the remote protocol q command and
9649 another for the query type. As the remote protocol encapsulation
9650 uses 4 chars plus one extra in case we are debugging
9651 (remote_debug), we have PBUFZIZ - 7 left to pack the query
9654 while (annex[i] && (i < (get_remote_packet_size () - 8)))
9656 /* Bad caller may have sent forbidden characters. */
9657 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
9662 gdb_assert (annex[i] == '\0');
9664 i = putpkt (rs->buf);
9666 return TARGET_XFER_E_IO;
9668 getpkt (&rs->buf, &rs->buf_size, 0);
9669 strcpy ((char *) readbuf, rs->buf);
9671 *xfered_len = strlen ((char *) readbuf);
9672 return TARGET_XFER_OK;
9676 remote_search_memory (struct target_ops* ops,
9677 CORE_ADDR start_addr, ULONGEST search_space_len,
9678 const gdb_byte *pattern, ULONGEST pattern_len,
9679 CORE_ADDR *found_addrp)
9681 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
9682 struct remote_state *rs = get_remote_state ();
9683 int max_size = get_memory_write_packet_size ();
9684 struct packet_config *packet =
9685 &remote_protocol_packets[PACKET_qSearch_memory];
9686 /* Number of packet bytes used to encode the pattern;
9687 this could be more than PATTERN_LEN due to escape characters. */
9688 int escaped_pattern_len;
9689 /* Amount of pattern that was encodable in the packet. */
9690 int used_pattern_len;
9693 ULONGEST found_addr;
9695 /* Don't go to the target if we don't have to.
9696 This is done before checking packet->support to avoid the possibility that
9697 a success for this edge case means the facility works in general. */
9698 if (pattern_len > search_space_len)
9700 if (pattern_len == 0)
9702 *found_addrp = start_addr;
9706 /* If we already know the packet isn't supported, fall back to the simple
9707 way of searching memory. */
9709 if (packet_config_support (packet) == PACKET_DISABLE)
9711 /* Target doesn't provided special support, fall back and use the
9712 standard support (copy memory and do the search here). */
9713 return simple_search_memory (ops, start_addr, search_space_len,
9714 pattern, pattern_len, found_addrp);
9717 /* Make sure the remote is pointing at the right process. */
9718 set_general_process ();
9720 /* Insert header. */
9721 i = snprintf (rs->buf, max_size,
9722 "qSearch:memory:%s;%s;",
9723 phex_nz (start_addr, addr_size),
9724 phex_nz (search_space_len, sizeof (search_space_len)));
9725 max_size -= (i + 1);
9727 /* Escape as much data as fits into rs->buf. */
9728 escaped_pattern_len =
9729 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
9730 &used_pattern_len, max_size);
9732 /* Bail if the pattern is too large. */
9733 if (used_pattern_len != pattern_len)
9734 error (_("Pattern is too large to transmit to remote target."));
9736 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
9737 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9738 || packet_ok (rs->buf, packet) != PACKET_OK)
9740 /* The request may not have worked because the command is not
9741 supported. If so, fall back to the simple way. */
9742 if (packet->support == PACKET_DISABLE)
9744 return simple_search_memory (ops, start_addr, search_space_len,
9745 pattern, pattern_len, found_addrp);
9750 if (rs->buf[0] == '0')
9752 else if (rs->buf[0] == '1')
9755 if (rs->buf[1] != ',')
9756 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9757 unpack_varlen_hex (rs->buf + 2, &found_addr);
9758 *found_addrp = found_addr;
9761 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9767 remote_rcmd (struct target_ops *self, const char *command,
9768 struct ui_file *outbuf)
9770 struct remote_state *rs = get_remote_state ();
9773 if (!rs->remote_desc)
9774 error (_("remote rcmd is only available after target open"));
9776 /* Send a NULL command across as an empty command. */
9777 if (command == NULL)
9780 /* The query prefix. */
9781 strcpy (rs->buf, "qRcmd,");
9782 p = strchr (rs->buf, '\0');
9784 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
9785 > get_remote_packet_size ())
9786 error (_("\"monitor\" command ``%s'' is too long."), command);
9788 /* Encode the actual command. */
9789 bin2hex ((const gdb_byte *) command, p, strlen (command));
9791 if (putpkt (rs->buf) < 0)
9792 error (_("Communication problem with target."));
9794 /* get/display the response */
9799 /* XXX - see also remote_get_noisy_reply(). */
9800 QUIT; /* Allow user to bail out with ^C. */
9802 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
9804 /* Timeout. Continue to (try to) read responses.
9805 This is better than stopping with an error, assuming the stub
9806 is still executing the (long) monitor command.
9807 If needed, the user can interrupt gdb using C-c, obtaining
9808 an effect similar to stop on timeout. */
9813 error (_("Target does not support this command."));
9814 if (buf[0] == 'O' && buf[1] != 'K')
9816 remote_console_output (buf + 1); /* 'O' message from stub. */
9819 if (strcmp (buf, "OK") == 0)
9821 if (strlen (buf) == 3 && buf[0] == 'E'
9822 && isdigit (buf[1]) && isdigit (buf[2]))
9824 error (_("Protocol error with Rcmd"));
9826 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
9828 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
9830 fputc_unfiltered (c, outbuf);
9836 static VEC(mem_region_s) *
9837 remote_memory_map (struct target_ops *ops)
9839 VEC(mem_region_s) *result = NULL;
9840 char *text = target_read_stralloc (¤t_target,
9841 TARGET_OBJECT_MEMORY_MAP, NULL);
9845 struct cleanup *back_to = make_cleanup (xfree, text);
9847 result = parse_memory_map (text);
9848 do_cleanups (back_to);
9855 packet_command (char *args, int from_tty)
9857 struct remote_state *rs = get_remote_state ();
9859 if (!rs->remote_desc)
9860 error (_("command can only be used with remote target"));
9863 error (_("remote-packet command requires packet text as argument"));
9865 puts_filtered ("sending: ");
9866 print_packet (args);
9867 puts_filtered ("\n");
9870 getpkt (&rs->buf, &rs->buf_size, 0);
9871 puts_filtered ("received: ");
9872 print_packet (rs->buf);
9873 puts_filtered ("\n");
9877 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
9879 static void display_thread_info (struct gdb_ext_thread_info *info);
9881 static void threadset_test_cmd (char *cmd, int tty);
9883 static void threadalive_test (char *cmd, int tty);
9885 static void threadlist_test_cmd (char *cmd, int tty);
9887 int get_and_display_threadinfo (threadref *ref);
9889 static void threadinfo_test_cmd (char *cmd, int tty);
9891 static int thread_display_step (threadref *ref, void *context);
9893 static void threadlist_update_test_cmd (char *cmd, int tty);
9895 static void init_remote_threadtests (void);
9897 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
9900 threadset_test_cmd (char *cmd, int tty)
9902 int sample_thread = SAMPLE_THREAD;
9904 printf_filtered (_("Remote threadset test\n"));
9905 set_general_thread (sample_thread);
9910 threadalive_test (char *cmd, int tty)
9912 int sample_thread = SAMPLE_THREAD;
9913 int pid = ptid_get_pid (inferior_ptid);
9914 ptid_t ptid = ptid_build (pid, sample_thread, 0);
9916 if (remote_thread_alive (ptid))
9917 printf_filtered ("PASS: Thread alive test\n");
9919 printf_filtered ("FAIL: Thread alive test\n");
9922 void output_threadid (char *title, threadref *ref);
9925 output_threadid (char *title, threadref *ref)
9929 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
9931 printf_filtered ("%s %s\n", title, (&hexid[0]));
9935 threadlist_test_cmd (char *cmd, int tty)
9938 threadref nextthread;
9939 int done, result_count;
9940 threadref threadlist[3];
9942 printf_filtered ("Remote Threadlist test\n");
9943 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
9944 &result_count, &threadlist[0]))
9945 printf_filtered ("FAIL: threadlist test\n");
9948 threadref *scan = threadlist;
9949 threadref *limit = scan + result_count;
9951 while (scan < limit)
9952 output_threadid (" thread ", scan++);
9957 display_thread_info (struct gdb_ext_thread_info *info)
9959 output_threadid ("Threadid: ", &info->threadid);
9960 printf_filtered ("Name: %s\n ", info->shortname);
9961 printf_filtered ("State: %s\n", info->display);
9962 printf_filtered ("other: %s\n\n", info->more_display);
9966 get_and_display_threadinfo (threadref *ref)
9970 struct gdb_ext_thread_info threadinfo;
9972 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
9973 | TAG_MOREDISPLAY | TAG_DISPLAY;
9974 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
9975 display_thread_info (&threadinfo);
9980 threadinfo_test_cmd (char *cmd, int tty)
9982 int athread = SAMPLE_THREAD;
9986 int_to_threadref (&thread, athread);
9987 printf_filtered ("Remote Threadinfo test\n");
9988 if (!get_and_display_threadinfo (&thread))
9989 printf_filtered ("FAIL cannot get thread info\n");
9993 thread_display_step (threadref *ref, void *context)
9995 /* output_threadid(" threadstep ",ref); *//* simple test */
9996 return get_and_display_threadinfo (ref);
10000 threadlist_update_test_cmd (char *cmd, int tty)
10002 printf_filtered ("Remote Threadlist update test\n");
10003 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10007 init_remote_threadtests (void)
10009 add_com ("tlist", class_obscure, threadlist_test_cmd,
10010 _("Fetch and print the remote list of "
10011 "thread identifiers, one pkt only"));
10012 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
10013 _("Fetch and display info about one thread"));
10014 add_com ("tset", class_obscure, threadset_test_cmd,
10015 _("Test setting to a different thread"));
10016 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
10017 _("Iterate through updating all remote thread info"));
10018 add_com ("talive", class_obscure, threadalive_test,
10019 _(" Remote thread alive test "));
10024 /* Convert a thread ID to a string. Returns the string in a static
10028 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
10030 static char buf[64];
10031 struct remote_state *rs = get_remote_state ();
10033 if (ptid_equal (ptid, null_ptid))
10034 return normal_pid_to_str (ptid);
10035 else if (ptid_is_pid (ptid))
10037 /* Printing an inferior target id. */
10039 /* When multi-process extensions are off, there's no way in the
10040 remote protocol to know the remote process id, if there's any
10041 at all. There's one exception --- when we're connected with
10042 target extended-remote, and we manually attached to a process
10043 with "attach PID". We don't record anywhere a flag that
10044 allows us to distinguish that case from the case of
10045 connecting with extended-remote and the stub already being
10046 attached to a process, and reporting yes to qAttached, hence
10047 no smart special casing here. */
10048 if (!remote_multi_process_p (rs))
10050 xsnprintf (buf, sizeof buf, "Remote target");
10054 return normal_pid_to_str (ptid);
10058 if (ptid_equal (magic_null_ptid, ptid))
10059 xsnprintf (buf, sizeof buf, "Thread <main>");
10060 else if (rs->extended && remote_multi_process_p (rs))
10061 if (ptid_get_lwp (ptid) == 0)
10062 return normal_pid_to_str (ptid);
10064 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
10065 ptid_get_pid (ptid), ptid_get_lwp (ptid));
10067 xsnprintf (buf, sizeof buf, "Thread %ld",
10068 ptid_get_lwp (ptid));
10073 /* Get the address of the thread local variable in OBJFILE which is
10074 stored at OFFSET within the thread local storage for thread PTID. */
10077 remote_get_thread_local_address (struct target_ops *ops,
10078 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
10080 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
10082 struct remote_state *rs = get_remote_state ();
10084 char *endp = rs->buf + get_remote_packet_size ();
10085 enum packet_result result;
10087 strcpy (p, "qGetTLSAddr:");
10089 p = write_ptid (p, endp, ptid);
10091 p += hexnumstr (p, offset);
10093 p += hexnumstr (p, lm);
10097 getpkt (&rs->buf, &rs->buf_size, 0);
10098 result = packet_ok (rs->buf,
10099 &remote_protocol_packets[PACKET_qGetTLSAddr]);
10100 if (result == PACKET_OK)
10104 unpack_varlen_hex (rs->buf, &result);
10107 else if (result == PACKET_UNKNOWN)
10108 throw_error (TLS_GENERIC_ERROR,
10109 _("Remote target doesn't support qGetTLSAddr packet"));
10111 throw_error (TLS_GENERIC_ERROR,
10112 _("Remote target failed to process qGetTLSAddr request"));
10115 throw_error (TLS_GENERIC_ERROR,
10116 _("TLS not supported or disabled on this target"));
10121 /* Provide thread local base, i.e. Thread Information Block address.
10122 Returns 1 if ptid is found and thread_local_base is non zero. */
10125 remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
10127 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
10129 struct remote_state *rs = get_remote_state ();
10131 char *endp = rs->buf + get_remote_packet_size ();
10132 enum packet_result result;
10134 strcpy (p, "qGetTIBAddr:");
10136 p = write_ptid (p, endp, ptid);
10140 getpkt (&rs->buf, &rs->buf_size, 0);
10141 result = packet_ok (rs->buf,
10142 &remote_protocol_packets[PACKET_qGetTIBAddr]);
10143 if (result == PACKET_OK)
10147 unpack_varlen_hex (rs->buf, &result);
10149 *addr = (CORE_ADDR) result;
10152 else if (result == PACKET_UNKNOWN)
10153 error (_("Remote target doesn't support qGetTIBAddr packet"));
10155 error (_("Remote target failed to process qGetTIBAddr request"));
10158 error (_("qGetTIBAddr not supported or disabled on this target"));
10163 /* Support for inferring a target description based on the current
10164 architecture and the size of a 'g' packet. While the 'g' packet
10165 can have any size (since optional registers can be left off the
10166 end), some sizes are easily recognizable given knowledge of the
10167 approximate architecture. */
10169 struct remote_g_packet_guess
10172 const struct target_desc *tdesc;
10174 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
10175 DEF_VEC_O(remote_g_packet_guess_s);
10177 struct remote_g_packet_data
10179 VEC(remote_g_packet_guess_s) *guesses;
10182 static struct gdbarch_data *remote_g_packet_data_handle;
10185 remote_g_packet_data_init (struct obstack *obstack)
10187 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
10191 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
10192 const struct target_desc *tdesc)
10194 struct remote_g_packet_data *data
10195 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
10196 struct remote_g_packet_guess new_guess, *guess;
10199 gdb_assert (tdesc != NULL);
10202 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10204 if (guess->bytes == bytes)
10205 internal_error (__FILE__, __LINE__,
10206 _("Duplicate g packet description added for size %d"),
10209 new_guess.bytes = bytes;
10210 new_guess.tdesc = tdesc;
10211 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
10214 /* Return 1 if remote_read_description would do anything on this target
10215 and architecture, 0 otherwise. */
10218 remote_read_description_p (struct target_ops *target)
10220 struct remote_g_packet_data *data
10221 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
10223 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10229 static const struct target_desc *
10230 remote_read_description (struct target_ops *target)
10232 struct remote_g_packet_data *data
10233 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
10235 /* Do not try this during initial connection, when we do not know
10236 whether there is a running but stopped thread. */
10237 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
10238 return target->beneath->to_read_description (target->beneath);
10240 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10242 struct remote_g_packet_guess *guess;
10244 int bytes = send_g_packet ();
10247 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10249 if (guess->bytes == bytes)
10250 return guess->tdesc;
10252 /* We discard the g packet. A minor optimization would be to
10253 hold on to it, and fill the register cache once we have selected
10254 an architecture, but it's too tricky to do safely. */
10257 return target->beneath->to_read_description (target->beneath);
10260 /* Remote file transfer support. This is host-initiated I/O, not
10261 target-initiated; for target-initiated, see remote-fileio.c. */
10263 /* If *LEFT is at least the length of STRING, copy STRING to
10264 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10265 decrease *LEFT. Otherwise raise an error. */
10268 remote_buffer_add_string (char **buffer, int *left, char *string)
10270 int len = strlen (string);
10273 error (_("Packet too long for target."));
10275 memcpy (*buffer, string, len);
10279 /* NUL-terminate the buffer as a convenience, if there is
10285 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
10286 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10287 decrease *LEFT. Otherwise raise an error. */
10290 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
10293 if (2 * len > *left)
10294 error (_("Packet too long for target."));
10296 bin2hex (bytes, *buffer, len);
10297 *buffer += 2 * len;
10300 /* NUL-terminate the buffer as a convenience, if there is
10306 /* If *LEFT is large enough, convert VALUE to hex and add it to
10307 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10308 decrease *LEFT. Otherwise raise an error. */
10311 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
10313 int len = hexnumlen (value);
10316 error (_("Packet too long for target."));
10318 hexnumstr (*buffer, value);
10322 /* NUL-terminate the buffer as a convenience, if there is
10328 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
10329 value, *REMOTE_ERRNO to the remote error number or zero if none
10330 was included, and *ATTACHMENT to point to the start of the annex
10331 if any. The length of the packet isn't needed here; there may
10332 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
10334 Return 0 if the packet could be parsed, -1 if it could not. If
10335 -1 is returned, the other variables may not be initialized. */
10338 remote_hostio_parse_result (char *buffer, int *retcode,
10339 int *remote_errno, char **attachment)
10344 *attachment = NULL;
10346 if (buffer[0] != 'F')
10350 *retcode = strtol (&buffer[1], &p, 16);
10351 if (errno != 0 || p == &buffer[1])
10354 /* Check for ",errno". */
10358 *remote_errno = strtol (p + 1, &p2, 16);
10359 if (errno != 0 || p + 1 == p2)
10364 /* Check for ";attachment". If there is no attachment, the
10365 packet should end here. */
10368 *attachment = p + 1;
10371 else if (*p == '\0')
10377 /* Send a prepared I/O packet to the target and read its response.
10378 The prepared packet is in the global RS->BUF before this function
10379 is called, and the answer is there when we return.
10381 COMMAND_BYTES is the length of the request to send, which may include
10382 binary data. WHICH_PACKET is the packet configuration to check
10383 before attempting a packet. If an error occurs, *REMOTE_ERRNO
10384 is set to the error number and -1 is returned. Otherwise the value
10385 returned by the function is returned.
10387 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
10388 attachment is expected; an error will be reported if there's a
10389 mismatch. If one is found, *ATTACHMENT will be set to point into
10390 the packet buffer and *ATTACHMENT_LEN will be set to the
10391 attachment's length. */
10394 remote_hostio_send_command (int command_bytes, int which_packet,
10395 int *remote_errno, char **attachment,
10396 int *attachment_len)
10398 struct remote_state *rs = get_remote_state ();
10399 int ret, bytes_read;
10400 char *attachment_tmp;
10402 if (!rs->remote_desc
10403 || packet_support (which_packet) == PACKET_DISABLE)
10405 *remote_errno = FILEIO_ENOSYS;
10409 putpkt_binary (rs->buf, command_bytes);
10410 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10412 /* If it timed out, something is wrong. Don't try to parse the
10414 if (bytes_read < 0)
10416 *remote_errno = FILEIO_EINVAL;
10420 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
10423 *remote_errno = FILEIO_EINVAL;
10425 case PACKET_UNKNOWN:
10426 *remote_errno = FILEIO_ENOSYS;
10432 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
10435 *remote_errno = FILEIO_EINVAL;
10439 /* Make sure we saw an attachment if and only if we expected one. */
10440 if ((attachment_tmp == NULL && attachment != NULL)
10441 || (attachment_tmp != NULL && attachment == NULL))
10443 *remote_errno = FILEIO_EINVAL;
10447 /* If an attachment was found, it must point into the packet buffer;
10448 work out how many bytes there were. */
10449 if (attachment_tmp != NULL)
10451 *attachment = attachment_tmp;
10452 *attachment_len = bytes_read - (*attachment - rs->buf);
10458 /* Invalidate the readahead cache. */
10461 readahead_cache_invalidate (void)
10463 struct remote_state *rs = get_remote_state ();
10465 rs->readahead_cache.fd = -1;
10468 /* Invalidate the readahead cache if it is holding data for FD. */
10471 readahead_cache_invalidate_fd (int fd)
10473 struct remote_state *rs = get_remote_state ();
10475 if (rs->readahead_cache.fd == fd)
10476 rs->readahead_cache.fd = -1;
10479 /* Set the filesystem remote_hostio functions that take FILENAME
10480 arguments will use. Return 0 on success, or -1 if an error
10481 occurs (and set *REMOTE_ERRNO). */
10484 remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
10486 struct remote_state *rs = get_remote_state ();
10487 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
10489 int left = get_remote_packet_size () - 1;
10493 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
10496 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
10499 remote_buffer_add_string (&p, &left, "vFile:setfs:");
10501 xsnprintf (arg, sizeof (arg), "%x", required_pid);
10502 remote_buffer_add_string (&p, &left, arg);
10504 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
10505 remote_errno, NULL, NULL);
10507 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
10511 rs->fs_pid = required_pid;
10516 /* Implementation of to_fileio_open. */
10519 remote_hostio_open (struct target_ops *self,
10520 struct inferior *inf, const char *filename,
10521 int flags, int mode, int warn_if_slow,
10524 struct remote_state *rs = get_remote_state ();
10526 int left = get_remote_packet_size () - 1;
10530 static int warning_issued = 0;
10532 printf_unfiltered (_("Reading %s from remote target...\n"),
10535 if (!warning_issued)
10537 warning (_("File transfers from remote targets can be slow."
10538 " Use \"set sysroot\" to access files locally"
10540 warning_issued = 1;
10544 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
10547 remote_buffer_add_string (&p, &left, "vFile:open:");
10549 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
10550 strlen (filename));
10551 remote_buffer_add_string (&p, &left, ",");
10553 remote_buffer_add_int (&p, &left, flags);
10554 remote_buffer_add_string (&p, &left, ",");
10556 remote_buffer_add_int (&p, &left, mode);
10558 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
10559 remote_errno, NULL, NULL);
10562 /* Implementation of to_fileio_pwrite. */
10565 remote_hostio_pwrite (struct target_ops *self,
10566 int fd, const gdb_byte *write_buf, int len,
10567 ULONGEST offset, int *remote_errno)
10569 struct remote_state *rs = get_remote_state ();
10571 int left = get_remote_packet_size ();
10574 readahead_cache_invalidate_fd (fd);
10576 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
10578 remote_buffer_add_int (&p, &left, fd);
10579 remote_buffer_add_string (&p, &left, ",");
10581 remote_buffer_add_int (&p, &left, offset);
10582 remote_buffer_add_string (&p, &left, ",");
10584 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
10585 get_remote_packet_size () - (p - rs->buf));
10587 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
10588 remote_errno, NULL, NULL);
10591 /* Helper for the implementation of to_fileio_pread. Read the file
10592 from the remote side with vFile:pread. */
10595 remote_hostio_pread_vFile (struct target_ops *self,
10596 int fd, gdb_byte *read_buf, int len,
10597 ULONGEST offset, int *remote_errno)
10599 struct remote_state *rs = get_remote_state ();
10602 int left = get_remote_packet_size ();
10603 int ret, attachment_len;
10606 remote_buffer_add_string (&p, &left, "vFile:pread:");
10608 remote_buffer_add_int (&p, &left, fd);
10609 remote_buffer_add_string (&p, &left, ",");
10611 remote_buffer_add_int (&p, &left, len);
10612 remote_buffer_add_string (&p, &left, ",");
10614 remote_buffer_add_int (&p, &left, offset);
10616 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
10617 remote_errno, &attachment,
10623 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
10625 if (read_len != ret)
10626 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
10631 /* Serve pread from the readahead cache. Returns number of bytes
10632 read, or 0 if the request can't be served from the cache. */
10635 remote_hostio_pread_from_cache (struct remote_state *rs,
10636 int fd, gdb_byte *read_buf, size_t len,
10639 struct readahead_cache *cache = &rs->readahead_cache;
10641 if (cache->fd == fd
10642 && cache->offset <= offset
10643 && offset < cache->offset + cache->bufsize)
10645 ULONGEST max = cache->offset + cache->bufsize;
10647 if (offset + len > max)
10648 len = max - offset;
10650 memcpy (read_buf, cache->buf + offset - cache->offset, len);
10657 /* Implementation of to_fileio_pread. */
10660 remote_hostio_pread (struct target_ops *self,
10661 int fd, gdb_byte *read_buf, int len,
10662 ULONGEST offset, int *remote_errno)
10665 struct remote_state *rs = get_remote_state ();
10666 struct readahead_cache *cache = &rs->readahead_cache;
10668 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
10671 cache->hit_count++;
10674 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
10675 pulongest (cache->hit_count));
10679 cache->miss_count++;
10681 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
10682 pulongest (cache->miss_count));
10685 cache->offset = offset;
10686 cache->bufsize = get_remote_packet_size ();
10687 cache->buf = xrealloc (cache->buf, cache->bufsize);
10689 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
10690 cache->offset, remote_errno);
10693 readahead_cache_invalidate_fd (fd);
10697 cache->bufsize = ret;
10698 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
10701 /* Implementation of to_fileio_close. */
10704 remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
10706 struct remote_state *rs = get_remote_state ();
10708 int left = get_remote_packet_size () - 1;
10710 readahead_cache_invalidate_fd (fd);
10712 remote_buffer_add_string (&p, &left, "vFile:close:");
10714 remote_buffer_add_int (&p, &left, fd);
10716 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
10717 remote_errno, NULL, NULL);
10720 /* Implementation of to_fileio_unlink. */
10723 remote_hostio_unlink (struct target_ops *self,
10724 struct inferior *inf, const char *filename,
10727 struct remote_state *rs = get_remote_state ();
10729 int left = get_remote_packet_size () - 1;
10731 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
10734 remote_buffer_add_string (&p, &left, "vFile:unlink:");
10736 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
10737 strlen (filename));
10739 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
10740 remote_errno, NULL, NULL);
10743 /* Implementation of to_fileio_readlink. */
10746 remote_hostio_readlink (struct target_ops *self,
10747 struct inferior *inf, const char *filename,
10750 struct remote_state *rs = get_remote_state ();
10753 int left = get_remote_packet_size ();
10754 int len, attachment_len;
10758 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
10761 remote_buffer_add_string (&p, &left, "vFile:readlink:");
10763 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
10764 strlen (filename));
10766 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
10767 remote_errno, &attachment,
10773 ret = xmalloc (len + 1);
10775 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
10776 (gdb_byte *) ret, len);
10777 if (read_len != len)
10778 error (_("Readlink returned %d, but %d bytes."), len, read_len);
10784 /* Implementation of to_fileio_fstat. */
10787 remote_hostio_fstat (struct target_ops *self,
10788 int fd, struct stat *st,
10791 struct remote_state *rs = get_remote_state ();
10793 int left = get_remote_packet_size ();
10794 int attachment_len, ret;
10796 struct fio_stat fst;
10799 remote_buffer_add_string (&p, &left, "vFile:fstat:");
10801 remote_buffer_add_int (&p, &left, fd);
10803 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
10804 remote_errno, &attachment,
10808 if (*remote_errno != FILEIO_ENOSYS)
10811 /* Strictly we should return -1, ENOSYS here, but when
10812 "set sysroot remote:" was implemented in August 2008
10813 BFD's need for a stat function was sidestepped with
10814 this hack. This was not remedied until March 2015
10815 so we retain the previous behavior to avoid breaking
10818 Note that the memset is a March 2015 addition; older
10819 GDBs set st_size *and nothing else* so the structure
10820 would have garbage in all other fields. This might
10821 break something but retaining the previous behavior
10822 here would be just too wrong. */
10824 memset (st, 0, sizeof (struct stat));
10825 st->st_size = INT_MAX;
10829 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
10830 (gdb_byte *) &fst, sizeof (fst));
10832 if (read_len != ret)
10833 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
10835 if (read_len != sizeof (fst))
10836 error (_("vFile:fstat returned %d bytes, but expecting %d."),
10837 read_len, (int) sizeof (fst));
10839 remote_fileio_to_host_stat (&fst, st);
10844 /* Implementation of to_filesystem_is_local. */
10847 remote_filesystem_is_local (struct target_ops *self)
10849 /* Valgrind GDB presents itself as a remote target but works
10850 on the local filesystem: it does not implement remote get
10851 and users are not expected to set a sysroot. To handle
10852 this case we treat the remote filesystem as local if the
10853 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
10854 does not support vFile:open. */
10855 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
10857 enum packet_support ps = packet_support (PACKET_vFile_open);
10859 if (ps == PACKET_SUPPORT_UNKNOWN)
10861 int fd, remote_errno;
10863 /* Try opening a file to probe support. The supplied
10864 filename is irrelevant, we only care about whether
10865 the stub recognizes the packet or not. */
10866 fd = remote_hostio_open (self, NULL, "just probing",
10867 FILEIO_O_RDONLY, 0700, 0,
10871 remote_hostio_close (self, fd, &remote_errno);
10873 ps = packet_support (PACKET_vFile_open);
10876 if (ps == PACKET_DISABLE)
10878 static int warning_issued = 0;
10880 if (!warning_issued)
10882 warning (_("remote target does not support file"
10883 " transfer, attempting to access files"
10884 " from local filesystem."));
10885 warning_issued = 1;
10896 remote_fileio_errno_to_host (int errnum)
10902 case FILEIO_ENOENT:
10910 case FILEIO_EACCES:
10912 case FILEIO_EFAULT:
10916 case FILEIO_EEXIST:
10918 case FILEIO_ENODEV:
10920 case FILEIO_ENOTDIR:
10922 case FILEIO_EISDIR:
10924 case FILEIO_EINVAL:
10926 case FILEIO_ENFILE:
10928 case FILEIO_EMFILE:
10932 case FILEIO_ENOSPC:
10934 case FILEIO_ESPIPE:
10938 case FILEIO_ENOSYS:
10940 case FILEIO_ENAMETOOLONG:
10941 return ENAMETOOLONG;
10947 remote_hostio_error (int errnum)
10949 int host_error = remote_fileio_errno_to_host (errnum);
10951 if (host_error == -1)
10952 error (_("Unknown remote I/O error %d"), errnum);
10954 error (_("Remote I/O error: %s"), safe_strerror (host_error));
10958 remote_hostio_close_cleanup (void *opaque)
10960 int fd = *(int *) opaque;
10963 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
10967 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
10969 struct cleanup *back_to, *close_cleanup;
10970 int retcode, fd, remote_errno, bytes, io_size;
10973 int bytes_in_buffer;
10976 struct remote_state *rs = get_remote_state ();
10978 if (!rs->remote_desc)
10979 error (_("command can only be used with remote target"));
10981 file = gdb_fopen_cloexec (local_file, "rb");
10983 perror_with_name (local_file);
10984 back_to = make_cleanup_fclose (file);
10986 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
10987 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
10989 0700, 0, &remote_errno);
10991 remote_hostio_error (remote_errno);
10993 /* Send up to this many bytes at once. They won't all fit in the
10994 remote packet limit, so we'll transfer slightly fewer. */
10995 io_size = get_remote_packet_size ();
10996 buffer = xmalloc (io_size);
10997 make_cleanup (xfree, buffer);
10999 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11001 bytes_in_buffer = 0;
11004 while (bytes_in_buffer || !saw_eof)
11008 bytes = fread (buffer + bytes_in_buffer, 1,
11009 io_size - bytes_in_buffer,
11014 error (_("Error reading %s."), local_file);
11017 /* EOF. Unless there is something still in the
11018 buffer from the last iteration, we are done. */
11020 if (bytes_in_buffer == 0)
11028 bytes += bytes_in_buffer;
11029 bytes_in_buffer = 0;
11031 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11033 offset, &remote_errno);
11036 remote_hostio_error (remote_errno);
11037 else if (retcode == 0)
11038 error (_("Remote write of %d bytes returned 0!"), bytes);
11039 else if (retcode < bytes)
11041 /* Short write. Save the rest of the read data for the next
11043 bytes_in_buffer = bytes - retcode;
11044 memmove (buffer, buffer + retcode, bytes_in_buffer);
11050 discard_cleanups (close_cleanup);
11051 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11052 remote_hostio_error (remote_errno);
11055 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
11056 do_cleanups (back_to);
11060 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
11062 struct cleanup *back_to, *close_cleanup;
11063 int fd, remote_errno, bytes, io_size;
11067 struct remote_state *rs = get_remote_state ();
11069 if (!rs->remote_desc)
11070 error (_("command can only be used with remote target"));
11072 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11073 remote_file, FILEIO_O_RDONLY, 0, 0,
11076 remote_hostio_error (remote_errno);
11078 file = gdb_fopen_cloexec (local_file, "wb");
11080 perror_with_name (local_file);
11081 back_to = make_cleanup_fclose (file);
11083 /* Send up to this many bytes at once. They won't all fit in the
11084 remote packet limit, so we'll transfer slightly fewer. */
11085 io_size = get_remote_packet_size ();
11086 buffer = xmalloc (io_size);
11087 make_cleanup (xfree, buffer);
11089 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11094 bytes = remote_hostio_pread (find_target_at (process_stratum),
11095 fd, buffer, io_size, offset, &remote_errno);
11097 /* Success, but no bytes, means end-of-file. */
11100 remote_hostio_error (remote_errno);
11104 bytes = fwrite (buffer, 1, bytes, file);
11106 perror_with_name (local_file);
11109 discard_cleanups (close_cleanup);
11110 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11111 remote_hostio_error (remote_errno);
11114 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
11115 do_cleanups (back_to);
11119 remote_file_delete (const char *remote_file, int from_tty)
11121 int retcode, remote_errno;
11122 struct remote_state *rs = get_remote_state ();
11124 if (!rs->remote_desc)
11125 error (_("command can only be used with remote target"));
11127 retcode = remote_hostio_unlink (find_target_at (process_stratum),
11128 NULL, remote_file, &remote_errno);
11130 remote_hostio_error (remote_errno);
11133 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
11137 remote_put_command (char *args, int from_tty)
11139 struct cleanup *back_to;
11143 error_no_arg (_("file to put"));
11145 argv = gdb_buildargv (args);
11146 back_to = make_cleanup_freeargv (argv);
11147 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11148 error (_("Invalid parameters to remote put"));
11150 remote_file_put (argv[0], argv[1], from_tty);
11152 do_cleanups (back_to);
11156 remote_get_command (char *args, int from_tty)
11158 struct cleanup *back_to;
11162 error_no_arg (_("file to get"));
11164 argv = gdb_buildargv (args);
11165 back_to = make_cleanup_freeargv (argv);
11166 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11167 error (_("Invalid parameters to remote get"));
11169 remote_file_get (argv[0], argv[1], from_tty);
11171 do_cleanups (back_to);
11175 remote_delete_command (char *args, int from_tty)
11177 struct cleanup *back_to;
11181 error_no_arg (_("file to delete"));
11183 argv = gdb_buildargv (args);
11184 back_to = make_cleanup_freeargv (argv);
11185 if (argv[0] == NULL || argv[1] != NULL)
11186 error (_("Invalid parameters to remote delete"));
11188 remote_file_delete (argv[0], from_tty);
11190 do_cleanups (back_to);
11194 remote_command (char *args, int from_tty)
11196 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
11200 remote_can_execute_reverse (struct target_ops *self)
11202 if (packet_support (PACKET_bs) == PACKET_ENABLE
11203 || packet_support (PACKET_bc) == PACKET_ENABLE)
11210 remote_supports_non_stop (struct target_ops *self)
11216 remote_supports_disable_randomization (struct target_ops *self)
11218 /* Only supported in extended mode. */
11223 remote_supports_multi_process (struct target_ops *self)
11225 struct remote_state *rs = get_remote_state ();
11227 /* Only extended-remote handles being attached to multiple
11228 processes, even though plain remote can use the multi-process
11229 thread id extensions, so that GDB knows the target process's
11231 return rs->extended && remote_multi_process_p (rs);
11235 remote_supports_cond_tracepoints (void)
11237 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
11241 remote_supports_cond_breakpoints (struct target_ops *self)
11243 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
11247 remote_supports_fast_tracepoints (void)
11249 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
11253 remote_supports_static_tracepoints (void)
11255 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
11259 remote_supports_install_in_trace (void)
11261 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
11265 remote_supports_enable_disable_tracepoint (struct target_ops *self)
11267 return (packet_support (PACKET_EnableDisableTracepoints_feature)
11272 remote_supports_string_tracing (struct target_ops *self)
11274 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
11278 remote_can_run_breakpoint_commands (struct target_ops *self)
11280 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
11284 remote_trace_init (struct target_ops *self)
11287 remote_get_noisy_reply (&target_buf, &target_buf_size);
11288 if (strcmp (target_buf, "OK") != 0)
11289 error (_("Target does not support this command."));
11292 static void free_actions_list (char **actions_list);
11293 static void free_actions_list_cleanup_wrapper (void *);
11295 free_actions_list_cleanup_wrapper (void *al)
11297 free_actions_list (al);
11301 free_actions_list (char **actions_list)
11305 if (actions_list == 0)
11308 for (ndx = 0; actions_list[ndx]; ndx++)
11309 xfree (actions_list[ndx]);
11311 xfree (actions_list);
11314 /* Recursive routine to walk through command list including loops, and
11315 download packets for each command. */
11318 remote_download_command_source (int num, ULONGEST addr,
11319 struct command_line *cmds)
11321 struct remote_state *rs = get_remote_state ();
11322 struct command_line *cmd;
11324 for (cmd = cmds; cmd; cmd = cmd->next)
11326 QUIT; /* Allow user to bail out with ^C. */
11327 strcpy (rs->buf, "QTDPsrc:");
11328 encode_source_string (num, addr, "cmd", cmd->line,
11329 rs->buf + strlen (rs->buf),
11330 rs->buf_size - strlen (rs->buf));
11332 remote_get_noisy_reply (&target_buf, &target_buf_size);
11333 if (strcmp (target_buf, "OK"))
11334 warning (_("Target does not support source download."));
11336 if (cmd->control_type == while_control
11337 || cmd->control_type == while_stepping_control)
11339 remote_download_command_source (num, addr, *cmd->body_list);
11341 QUIT; /* Allow user to bail out with ^C. */
11342 strcpy (rs->buf, "QTDPsrc:");
11343 encode_source_string (num, addr, "cmd", "end",
11344 rs->buf + strlen (rs->buf),
11345 rs->buf_size - strlen (rs->buf));
11347 remote_get_noisy_reply (&target_buf, &target_buf_size);
11348 if (strcmp (target_buf, "OK"))
11349 warning (_("Target does not support source download."));
11355 remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
11357 #define BUF_SIZE 2048
11361 char buf[BUF_SIZE];
11362 char **tdp_actions;
11363 char **stepping_actions;
11365 struct cleanup *old_chain = NULL;
11366 struct agent_expr *aexpr;
11367 struct cleanup *aexpr_chain = NULL;
11369 struct breakpoint *b = loc->owner;
11370 struct tracepoint *t = (struct tracepoint *) b;
11372 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
11373 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
11375 (void) make_cleanup (free_actions_list_cleanup_wrapper,
11378 tpaddr = loc->address;
11379 sprintf_vma (addrbuf, tpaddr);
11380 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
11381 addrbuf, /* address */
11382 (b->enable_state == bp_enabled ? 'E' : 'D'),
11383 t->step_count, t->pass_count);
11384 /* Fast tracepoints are mostly handled by the target, but we can
11385 tell the target how big of an instruction block should be moved
11387 if (b->type == bp_fast_tracepoint)
11389 /* Only test for support at download time; we may not know
11390 target capabilities at definition time. */
11391 if (remote_supports_fast_tracepoints ())
11393 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
11395 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
11396 gdb_insn_length (loc->gdbarch, tpaddr));
11398 /* If it passed validation at definition but fails now,
11399 something is very wrong. */
11400 internal_error (__FILE__, __LINE__,
11401 _("Fast tracepoint not "
11402 "valid during download"));
11405 /* Fast tracepoints are functionally identical to regular
11406 tracepoints, so don't take lack of support as a reason to
11407 give up on the trace run. */
11408 warning (_("Target does not support fast tracepoints, "
11409 "downloading %d as regular tracepoint"), b->number);
11411 else if (b->type == bp_static_tracepoint)
11413 /* Only test for support at download time; we may not know
11414 target capabilities at definition time. */
11415 if (remote_supports_static_tracepoints ())
11417 struct static_tracepoint_marker marker;
11419 if (target_static_tracepoint_marker_at (tpaddr, &marker))
11420 strcat (buf, ":S");
11422 error (_("Static tracepoint not valid during download"));
11425 /* Fast tracepoints are functionally identical to regular
11426 tracepoints, so don't take lack of support as a reason
11427 to give up on the trace run. */
11428 error (_("Target does not support static tracepoints"));
11430 /* If the tracepoint has a conditional, make it into an agent
11431 expression and append to the definition. */
11434 /* Only test support at download time, we may not know target
11435 capabilities at definition time. */
11436 if (remote_supports_cond_tracepoints ())
11438 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
11439 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
11440 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
11442 pkt = buf + strlen (buf);
11443 for (ndx = 0; ndx < aexpr->len; ++ndx)
11444 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
11446 do_cleanups (aexpr_chain);
11449 warning (_("Target does not support conditional tracepoints, "
11450 "ignoring tp %d cond"), b->number);
11453 if (b->commands || *default_collect)
11456 remote_get_noisy_reply (&target_buf, &target_buf_size);
11457 if (strcmp (target_buf, "OK"))
11458 error (_("Target does not support tracepoints."));
11460 /* do_single_steps (t); */
11463 for (ndx = 0; tdp_actions[ndx]; ndx++)
11465 QUIT; /* Allow user to bail out with ^C. */
11466 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
11467 b->number, addrbuf, /* address */
11469 ((tdp_actions[ndx + 1] || stepping_actions)
11472 remote_get_noisy_reply (&target_buf,
11474 if (strcmp (target_buf, "OK"))
11475 error (_("Error on target while setting tracepoints."));
11478 if (stepping_actions)
11480 for (ndx = 0; stepping_actions[ndx]; ndx++)
11482 QUIT; /* Allow user to bail out with ^C. */
11483 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
11484 b->number, addrbuf, /* address */
11485 ((ndx == 0) ? "S" : ""),
11486 stepping_actions[ndx],
11487 (stepping_actions[ndx + 1] ? "-" : ""));
11489 remote_get_noisy_reply (&target_buf,
11491 if (strcmp (target_buf, "OK"))
11492 error (_("Error on target while setting tracepoints."));
11496 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
11498 if (b->location != NULL)
11500 strcpy (buf, "QTDPsrc:");
11501 encode_source_string (b->number, loc->address, "at",
11502 event_location_to_string (b->location),
11503 buf + strlen (buf), 2048 - strlen (buf));
11505 remote_get_noisy_reply (&target_buf, &target_buf_size);
11506 if (strcmp (target_buf, "OK"))
11507 warning (_("Target does not support source download."));
11509 if (b->cond_string)
11511 strcpy (buf, "QTDPsrc:");
11512 encode_source_string (b->number, loc->address,
11513 "cond", b->cond_string, buf + strlen (buf),
11514 2048 - strlen (buf));
11516 remote_get_noisy_reply (&target_buf, &target_buf_size);
11517 if (strcmp (target_buf, "OK"))
11518 warning (_("Target does not support source download."));
11520 remote_download_command_source (b->number, loc->address,
11521 breakpoint_commands (b));
11524 do_cleanups (old_chain);
11528 remote_can_download_tracepoint (struct target_ops *self)
11530 struct remote_state *rs = get_remote_state ();
11531 struct trace_status *ts;
11534 /* Don't try to install tracepoints until we've relocated our
11535 symbols, and fetched and merged the target's tracepoint list with
11537 if (rs->starting_up)
11540 ts = current_trace_status ();
11541 status = remote_get_trace_status (self, ts);
11543 if (status == -1 || !ts->running_known || !ts->running)
11546 /* If we are in a tracing experiment, but remote stub doesn't support
11547 installing tracepoint in trace, we have to return. */
11548 if (!remote_supports_install_in_trace ())
11556 remote_download_trace_state_variable (struct target_ops *self,
11557 struct trace_state_variable *tsv)
11559 struct remote_state *rs = get_remote_state ();
11562 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
11563 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
11565 p = rs->buf + strlen (rs->buf);
11566 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
11567 error (_("Trace state variable name too long for tsv definition packet"));
11568 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
11571 remote_get_noisy_reply (&target_buf, &target_buf_size);
11572 if (*target_buf == '\0')
11573 error (_("Target does not support this command."));
11574 if (strcmp (target_buf, "OK") != 0)
11575 error (_("Error on target while downloading trace state variable."));
11579 remote_enable_tracepoint (struct target_ops *self,
11580 struct bp_location *location)
11582 struct remote_state *rs = get_remote_state ();
11585 sprintf_vma (addr_buf, location->address);
11586 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
11587 location->owner->number, addr_buf);
11589 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
11590 if (*rs->buf == '\0')
11591 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
11592 if (strcmp (rs->buf, "OK") != 0)
11593 error (_("Error on target while enabling tracepoint."));
11597 remote_disable_tracepoint (struct target_ops *self,
11598 struct bp_location *location)
11600 struct remote_state *rs = get_remote_state ();
11603 sprintf_vma (addr_buf, location->address);
11604 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
11605 location->owner->number, addr_buf);
11607 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
11608 if (*rs->buf == '\0')
11609 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
11610 if (strcmp (rs->buf, "OK") != 0)
11611 error (_("Error on target while disabling tracepoint."));
11615 remote_trace_set_readonly_regions (struct target_ops *self)
11619 bfd_size_type size;
11625 return; /* No information to give. */
11627 strcpy (target_buf, "QTro");
11628 offset = strlen (target_buf);
11629 for (s = exec_bfd->sections; s; s = s->next)
11631 char tmp1[40], tmp2[40];
11634 if ((s->flags & SEC_LOAD) == 0 ||
11635 /* (s->flags & SEC_CODE) == 0 || */
11636 (s->flags & SEC_READONLY) == 0)
11640 vma = bfd_get_section_vma (abfd, s);
11641 size = bfd_get_section_size (s);
11642 sprintf_vma (tmp1, vma);
11643 sprintf_vma (tmp2, vma + size);
11644 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
11645 if (offset + sec_length + 1 > target_buf_size)
11647 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
11649 Too many sections for read-only sections definition packet."));
11652 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
11654 offset += sec_length;
11658 putpkt (target_buf);
11659 getpkt (&target_buf, &target_buf_size, 0);
11664 remote_trace_start (struct target_ops *self)
11666 putpkt ("QTStart");
11667 remote_get_noisy_reply (&target_buf, &target_buf_size);
11668 if (*target_buf == '\0')
11669 error (_("Target does not support this command."));
11670 if (strcmp (target_buf, "OK") != 0)
11671 error (_("Bogus reply from target: %s"), target_buf);
11675 remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
11677 /* Initialize it just to avoid a GCC false warning. */
11679 /* FIXME we need to get register block size some other way. */
11680 extern int trace_regblock_size;
11681 enum packet_result result;
11683 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
11686 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
11688 putpkt ("qTStatus");
11692 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
11694 CATCH (ex, RETURN_MASK_ERROR)
11696 if (ex.error != TARGET_CLOSE_ERROR)
11698 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
11701 throw_exception (ex);
11705 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
11707 /* If the remote target doesn't do tracing, flag it. */
11708 if (result == PACKET_UNKNOWN)
11711 /* We're working with a live target. */
11712 ts->filename = NULL;
11715 error (_("Bogus trace status reply from target: %s"), target_buf);
11717 /* Function 'parse_trace_status' sets default value of each field of
11718 'ts' at first, so we don't have to do it here. */
11719 parse_trace_status (p, ts);
11721 return ts->running;
11725 remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
11726 struct uploaded_tp *utp)
11728 struct remote_state *rs = get_remote_state ();
11730 struct bp_location *loc;
11731 struct tracepoint *tp = (struct tracepoint *) bp;
11732 size_t size = get_remote_packet_size ();
11736 tp->base.hit_count = 0;
11737 tp->traceframe_usage = 0;
11738 for (loc = tp->base.loc; loc; loc = loc->next)
11740 /* If the tracepoint was never downloaded, don't go asking for
11742 if (tp->number_on_target == 0)
11744 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
11745 phex_nz (loc->address, 0));
11747 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11748 if (reply && *reply)
11751 parse_tracepoint_status (reply + 1, bp, utp);
11757 utp->hit_count = 0;
11758 utp->traceframe_usage = 0;
11759 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
11760 phex_nz (utp->addr, 0));
11762 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11763 if (reply && *reply)
11766 parse_tracepoint_status (reply + 1, bp, utp);
11772 remote_trace_stop (struct target_ops *self)
11775 remote_get_noisy_reply (&target_buf, &target_buf_size);
11776 if (*target_buf == '\0')
11777 error (_("Target does not support this command."));
11778 if (strcmp (target_buf, "OK") != 0)
11779 error (_("Bogus reply from target: %s"), target_buf);
11783 remote_trace_find (struct target_ops *self,
11784 enum trace_find_type type, int num,
11785 CORE_ADDR addr1, CORE_ADDR addr2,
11788 struct remote_state *rs = get_remote_state ();
11789 char *endbuf = rs->buf + get_remote_packet_size ();
11791 int target_frameno = -1, target_tracept = -1;
11793 /* Lookups other than by absolute frame number depend on the current
11794 trace selected, so make sure it is correct on the remote end
11796 if (type != tfind_number)
11797 set_remote_traceframe ();
11800 strcpy (p, "QTFrame:");
11801 p = strchr (p, '\0');
11805 xsnprintf (p, endbuf - p, "%x", num);
11808 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
11811 xsnprintf (p, endbuf - p, "tdp:%x", num);
11814 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
11815 phex_nz (addr2, 0));
11817 case tfind_outside:
11818 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
11819 phex_nz (addr2, 0));
11822 error (_("Unknown trace find type %d"), type);
11826 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
11827 if (*reply == '\0')
11828 error (_("Target does not support this command."));
11830 while (reply && *reply)
11835 target_frameno = (int) strtol (p, &reply, 16);
11837 error (_("Unable to parse trace frame number"));
11838 /* Don't update our remote traceframe number cache on failure
11839 to select a remote traceframe. */
11840 if (target_frameno == -1)
11845 target_tracept = (int) strtol (p, &reply, 16);
11847 error (_("Unable to parse tracepoint number"));
11849 case 'O': /* "OK"? */
11850 if (reply[1] == 'K' && reply[2] == '\0')
11853 error (_("Bogus reply from target: %s"), reply);
11856 error (_("Bogus reply from target: %s"), reply);
11859 *tpp = target_tracept;
11861 rs->remote_traceframe_number = target_frameno;
11862 return target_frameno;
11866 remote_get_trace_state_variable_value (struct target_ops *self,
11867 int tsvnum, LONGEST *val)
11869 struct remote_state *rs = get_remote_state ();
11873 set_remote_traceframe ();
11875 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
11877 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11878 if (reply && *reply)
11882 unpack_varlen_hex (reply + 1, &uval);
11883 *val = (LONGEST) uval;
11891 remote_save_trace_data (struct target_ops *self, const char *filename)
11893 struct remote_state *rs = get_remote_state ();
11897 strcpy (p, "QTSave:");
11899 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
11900 error (_("Remote file name too long for trace save packet"));
11901 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
11904 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11905 if (*reply == '\0')
11906 error (_("Target does not support this command."));
11907 if (strcmp (reply, "OK") != 0)
11908 error (_("Bogus reply from target: %s"), reply);
11912 /* This is basically a memory transfer, but needs to be its own packet
11913 because we don't know how the target actually organizes its trace
11914 memory, plus we want to be able to ask for as much as possible, but
11915 not be unhappy if we don't get as much as we ask for. */
11918 remote_get_raw_trace_data (struct target_ops *self,
11919 gdb_byte *buf, ULONGEST offset, LONGEST len)
11921 struct remote_state *rs = get_remote_state ();
11927 strcpy (p, "qTBuffer:");
11929 p += hexnumstr (p, offset);
11931 p += hexnumstr (p, len);
11935 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11936 if (reply && *reply)
11938 /* 'l' by itself means we're at the end of the buffer and
11939 there is nothing more to get. */
11943 /* Convert the reply into binary. Limit the number of bytes to
11944 convert according to our passed-in buffer size, rather than
11945 what was returned in the packet; if the target is
11946 unexpectedly generous and gives us a bigger reply than we
11947 asked for, we don't want to crash. */
11948 rslt = hex2bin (target_buf, buf, len);
11952 /* Something went wrong, flag as an error. */
11957 remote_set_disconnected_tracing (struct target_ops *self, int val)
11959 struct remote_state *rs = get_remote_state ();
11961 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
11965 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
11967 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11968 if (*reply == '\0')
11969 error (_("Target does not support this command."));
11970 if (strcmp (reply, "OK") != 0)
11971 error (_("Bogus reply from target: %s"), reply);
11974 warning (_("Target does not support disconnected tracing."));
11978 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
11980 struct thread_info *info = find_thread_ptid (ptid);
11982 if (info && info->priv)
11983 return info->priv->core;
11988 remote_set_circular_trace_buffer (struct target_ops *self, int val)
11990 struct remote_state *rs = get_remote_state ();
11993 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
11995 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11996 if (*reply == '\0')
11997 error (_("Target does not support this command."));
11998 if (strcmp (reply, "OK") != 0)
11999 error (_("Bogus reply from target: %s"), reply);
12002 static struct traceframe_info *
12003 remote_traceframe_info (struct target_ops *self)
12007 text = target_read_stralloc (¤t_target,
12008 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12011 struct traceframe_info *info;
12012 struct cleanup *back_to = make_cleanup (xfree, text);
12014 info = parse_traceframe_info (text);
12015 do_cleanups (back_to);
12022 /* Handle the qTMinFTPILen packet. Returns the minimum length of
12023 instruction on which a fast tracepoint may be placed. Returns -1
12024 if the packet is not supported, and 0 if the minimum instruction
12025 length is unknown. */
12028 remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
12030 struct remote_state *rs = get_remote_state ();
12033 /* If we're not debugging a process yet, the IPA can't be
12035 if (!target_has_execution)
12038 /* Make sure the remote is pointing at the right process. */
12039 set_general_process ();
12041 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
12043 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12044 if (*reply == '\0')
12048 ULONGEST min_insn_len;
12050 unpack_varlen_hex (reply, &min_insn_len);
12052 return (int) min_insn_len;
12057 remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
12059 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
12061 struct remote_state *rs = get_remote_state ();
12062 char *buf = rs->buf;
12063 char *endbuf = rs->buf + get_remote_packet_size ();
12064 enum packet_result result;
12066 gdb_assert (val >= 0 || val == -1);
12067 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12068 /* Send -1 as literal "-1" to avoid host size dependency. */
12072 buf += hexnumstr (buf, (ULONGEST) -val);
12075 buf += hexnumstr (buf, (ULONGEST) val);
12078 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12079 result = packet_ok (rs->buf,
12080 &remote_protocol_packets[PACKET_QTBuffer_size]);
12082 if (result != PACKET_OK)
12083 warning (_("Bogus reply from target: %s"), rs->buf);
12088 remote_set_trace_notes (struct target_ops *self,
12089 const char *user, const char *notes,
12090 const char *stop_notes)
12092 struct remote_state *rs = get_remote_state ();
12094 char *buf = rs->buf;
12095 char *endbuf = rs->buf + get_remote_packet_size ();
12098 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
12101 buf += xsnprintf (buf, endbuf - buf, "user:");
12102 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
12108 buf += xsnprintf (buf, endbuf - buf, "notes:");
12109 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
12115 buf += xsnprintf (buf, endbuf - buf, "tstop:");
12116 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
12120 /* Ensure the buffer is terminated. */
12124 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12125 if (*reply == '\0')
12128 if (strcmp (reply, "OK") != 0)
12129 error (_("Bogus reply from target: %s"), reply);
12135 remote_use_agent (struct target_ops *self, int use)
12137 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
12139 struct remote_state *rs = get_remote_state ();
12141 /* If the stub supports QAgent. */
12142 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
12144 getpkt (&rs->buf, &rs->buf_size, 0);
12146 if (strcmp (rs->buf, "OK") == 0)
12157 remote_can_use_agent (struct target_ops *self)
12159 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
12162 struct btrace_target_info
12164 /* The ptid of the traced thread. */
12167 /* The obtained branch trace configuration. */
12168 struct btrace_config conf;
12171 /* Reset our idea of our target's btrace configuration. */
12174 remote_btrace_reset (void)
12176 struct remote_state *rs = get_remote_state ();
12178 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
12181 /* Check whether the target supports branch tracing. */
12184 remote_supports_btrace (struct target_ops *self, enum btrace_format format)
12186 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
12188 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
12193 case BTRACE_FORMAT_NONE:
12196 case BTRACE_FORMAT_BTS:
12197 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
12199 case BTRACE_FORMAT_PT:
12200 /* The trace is decoded on the host. Even if our target supports it,
12201 we still need to have libipt to decode the trace. */
12202 #if defined (HAVE_LIBIPT)
12203 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
12204 #else /* !defined (HAVE_LIBIPT) */
12206 #endif /* !defined (HAVE_LIBIPT) */
12209 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
12212 /* Synchronize the configuration with the target. */
12215 btrace_sync_conf (const struct btrace_config *conf)
12217 struct packet_config *packet;
12218 struct remote_state *rs;
12219 char *buf, *pos, *endbuf;
12221 rs = get_remote_state ();
12223 endbuf = buf + get_remote_packet_size ();
12225 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
12226 if (packet_config_support (packet) == PACKET_ENABLE
12227 && conf->bts.size != rs->btrace_config.bts.size)
12230 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12234 getpkt (&buf, &rs->buf_size, 0);
12236 if (packet_ok (buf, packet) == PACKET_ERROR)
12238 if (buf[0] == 'E' && buf[1] == '.')
12239 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
12241 error (_("Failed to configure the BTS buffer size."));
12244 rs->btrace_config.bts.size = conf->bts.size;
12247 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
12248 if (packet_config_support (packet) == PACKET_ENABLE
12249 && conf->pt.size != rs->btrace_config.pt.size)
12252 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12256 getpkt (&buf, &rs->buf_size, 0);
12258 if (packet_ok (buf, packet) == PACKET_ERROR)
12260 if (buf[0] == 'E' && buf[1] == '.')
12261 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
12263 error (_("Failed to configure the trace buffer size."));
12266 rs->btrace_config.pt.size = conf->pt.size;
12270 /* Read the current thread's btrace configuration from the target and
12271 store it into CONF. */
12274 btrace_read_config (struct btrace_config *conf)
12278 xml = target_read_stralloc (¤t_target,
12279 TARGET_OBJECT_BTRACE_CONF, "");
12282 struct cleanup *cleanup;
12284 cleanup = make_cleanup (xfree, xml);
12285 parse_xml_btrace_conf (conf, xml);
12286 do_cleanups (cleanup);
12290 /* Enable branch tracing. */
12292 static struct btrace_target_info *
12293 remote_enable_btrace (struct target_ops *self, ptid_t ptid,
12294 const struct btrace_config *conf)
12296 struct btrace_target_info *tinfo = NULL;
12297 struct packet_config *packet = NULL;
12298 struct remote_state *rs = get_remote_state ();
12299 char *buf = rs->buf;
12300 char *endbuf = rs->buf + get_remote_packet_size ();
12302 switch (conf->format)
12304 case BTRACE_FORMAT_BTS:
12305 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
12308 case BTRACE_FORMAT_PT:
12309 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
12313 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
12314 error (_("Target does not support branch tracing."));
12316 btrace_sync_conf (conf);
12318 set_general_thread (ptid);
12320 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12322 getpkt (&rs->buf, &rs->buf_size, 0);
12324 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12326 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12327 error (_("Could not enable branch tracing for %s: %s"),
12328 target_pid_to_str (ptid), rs->buf + 2);
12330 error (_("Could not enable branch tracing for %s."),
12331 target_pid_to_str (ptid));
12334 tinfo = xzalloc (sizeof (*tinfo));
12335 tinfo->ptid = ptid;
12337 /* If we fail to read the configuration, we lose some information, but the
12338 tracing itself is not impacted. */
12341 btrace_read_config (&tinfo->conf);
12343 CATCH (err, RETURN_MASK_ERROR)
12345 if (err.message != NULL)
12346 warning ("%s", err.message);
12353 /* Disable branch tracing. */
12356 remote_disable_btrace (struct target_ops *self,
12357 struct btrace_target_info *tinfo)
12359 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
12360 struct remote_state *rs = get_remote_state ();
12361 char *buf = rs->buf;
12362 char *endbuf = rs->buf + get_remote_packet_size ();
12364 if (packet_config_support (packet) != PACKET_ENABLE)
12365 error (_("Target does not support branch tracing."));
12367 set_general_thread (tinfo->ptid);
12369 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12371 getpkt (&rs->buf, &rs->buf_size, 0);
12373 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12375 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12376 error (_("Could not disable branch tracing for %s: %s"),
12377 target_pid_to_str (tinfo->ptid), rs->buf + 2);
12379 error (_("Could not disable branch tracing for %s."),
12380 target_pid_to_str (tinfo->ptid));
12386 /* Teardown branch tracing. */
12389 remote_teardown_btrace (struct target_ops *self,
12390 struct btrace_target_info *tinfo)
12392 /* We must not talk to the target during teardown. */
12396 /* Read the branch trace. */
12398 static enum btrace_error
12399 remote_read_btrace (struct target_ops *self,
12400 struct btrace_data *btrace,
12401 struct btrace_target_info *tinfo,
12402 enum btrace_read_type type)
12404 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
12405 struct remote_state *rs = get_remote_state ();
12406 struct cleanup *cleanup;
12410 if (packet_config_support (packet) != PACKET_ENABLE)
12411 error (_("Target does not support branch tracing."));
12413 #if !defined(HAVE_LIBEXPAT)
12414 error (_("Cannot process branch tracing result. XML parsing not supported."));
12419 case BTRACE_READ_ALL:
12422 case BTRACE_READ_NEW:
12425 case BTRACE_READ_DELTA:
12429 internal_error (__FILE__, __LINE__,
12430 _("Bad branch tracing read type: %u."),
12431 (unsigned int) type);
12434 xml = target_read_stralloc (¤t_target,
12435 TARGET_OBJECT_BTRACE, annex);
12437 return BTRACE_ERR_UNKNOWN;
12439 cleanup = make_cleanup (xfree, xml);
12440 parse_xml_btrace (btrace, xml);
12441 do_cleanups (cleanup);
12443 return BTRACE_ERR_NONE;
12446 static const struct btrace_config *
12447 remote_btrace_conf (struct target_ops *self,
12448 const struct btrace_target_info *tinfo)
12450 return &tinfo->conf;
12454 remote_augmented_libraries_svr4_read (struct target_ops *self)
12456 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
12460 /* Implementation of to_load. */
12463 remote_load (struct target_ops *self, const char *name, int from_tty)
12465 generic_load (name, from_tty);
12468 /* Accepts an integer PID; returns a string representing a file that
12469 can be opened on the remote side to get the symbols for the child
12470 process. Returns NULL if the operation is not supported. */
12473 remote_pid_to_exec_file (struct target_ops *self, int pid)
12475 static char *filename = NULL;
12476 struct inferior *inf;
12477 char *annex = NULL;
12479 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
12482 if (filename != NULL)
12485 inf = find_inferior_pid (pid);
12487 internal_error (__FILE__, __LINE__,
12488 _("not currently attached to process %d"), pid);
12490 if (!inf->fake_pid_p)
12492 const int annex_size = 9;
12494 annex = alloca (annex_size);
12495 xsnprintf (annex, annex_size, "%x", pid);
12498 filename = target_read_stralloc (¤t_target,
12499 TARGET_OBJECT_EXEC_FILE, annex);
12505 init_remote_ops (void)
12507 remote_ops.to_shortname = "remote";
12508 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
12509 remote_ops.to_doc =
12510 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
12511 Specify the serial device it is connected to\n\
12512 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
12513 remote_ops.to_open = remote_open;
12514 remote_ops.to_close = remote_close;
12515 remote_ops.to_detach = remote_detach;
12516 remote_ops.to_disconnect = remote_disconnect;
12517 remote_ops.to_resume = remote_resume;
12518 remote_ops.to_wait = remote_wait;
12519 remote_ops.to_fetch_registers = remote_fetch_registers;
12520 remote_ops.to_store_registers = remote_store_registers;
12521 remote_ops.to_prepare_to_store = remote_prepare_to_store;
12522 remote_ops.to_files_info = remote_files_info;
12523 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
12524 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
12525 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
12526 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
12527 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
12528 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
12529 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
12530 remote_ops.to_stopped_data_address = remote_stopped_data_address;
12531 remote_ops.to_watchpoint_addr_within_range =
12532 remote_watchpoint_addr_within_range;
12533 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
12534 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
12535 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
12536 remote_ops.to_region_ok_for_hw_watchpoint
12537 = remote_region_ok_for_hw_watchpoint;
12538 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
12539 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
12540 remote_ops.to_kill = remote_kill;
12541 remote_ops.to_load = remote_load;
12542 remote_ops.to_mourn_inferior = remote_mourn;
12543 remote_ops.to_pass_signals = remote_pass_signals;
12544 remote_ops.to_program_signals = remote_program_signals;
12545 remote_ops.to_thread_alive = remote_thread_alive;
12546 remote_ops.to_update_thread_list = remote_update_thread_list;
12547 remote_ops.to_pid_to_str = remote_pid_to_str;
12548 remote_ops.to_extra_thread_info = remote_threads_extra_info;
12549 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
12550 remote_ops.to_stop = remote_stop;
12551 remote_ops.to_interrupt = remote_interrupt;
12552 remote_ops.to_check_pending_interrupt = remote_check_pending_interrupt;
12553 remote_ops.to_xfer_partial = remote_xfer_partial;
12554 remote_ops.to_rcmd = remote_rcmd;
12555 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
12556 remote_ops.to_log_command = serial_log_command;
12557 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
12558 remote_ops.to_stratum = process_stratum;
12559 remote_ops.to_has_all_memory = default_child_has_all_memory;
12560 remote_ops.to_has_memory = default_child_has_memory;
12561 remote_ops.to_has_stack = default_child_has_stack;
12562 remote_ops.to_has_registers = default_child_has_registers;
12563 remote_ops.to_has_execution = default_child_has_execution;
12564 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
12565 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
12566 remote_ops.to_magic = OPS_MAGIC;
12567 remote_ops.to_memory_map = remote_memory_map;
12568 remote_ops.to_flash_erase = remote_flash_erase;
12569 remote_ops.to_flash_done = remote_flash_done;
12570 remote_ops.to_read_description = remote_read_description;
12571 remote_ops.to_search_memory = remote_search_memory;
12572 remote_ops.to_can_async_p = remote_can_async_p;
12573 remote_ops.to_is_async_p = remote_is_async_p;
12574 remote_ops.to_async = remote_async;
12575 remote_ops.to_terminal_inferior = remote_terminal_inferior;
12576 remote_ops.to_terminal_ours = remote_terminal_ours;
12577 remote_ops.to_supports_non_stop = remote_supports_non_stop;
12578 remote_ops.to_supports_multi_process = remote_supports_multi_process;
12579 remote_ops.to_supports_disable_randomization
12580 = remote_supports_disable_randomization;
12581 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
12582 remote_ops.to_fileio_open = remote_hostio_open;
12583 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
12584 remote_ops.to_fileio_pread = remote_hostio_pread;
12585 remote_ops.to_fileio_fstat = remote_hostio_fstat;
12586 remote_ops.to_fileio_close = remote_hostio_close;
12587 remote_ops.to_fileio_unlink = remote_hostio_unlink;
12588 remote_ops.to_fileio_readlink = remote_hostio_readlink;
12589 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
12590 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
12591 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
12592 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
12593 remote_ops.to_trace_init = remote_trace_init;
12594 remote_ops.to_download_tracepoint = remote_download_tracepoint;
12595 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
12596 remote_ops.to_download_trace_state_variable
12597 = remote_download_trace_state_variable;
12598 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
12599 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
12600 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
12601 remote_ops.to_trace_start = remote_trace_start;
12602 remote_ops.to_get_trace_status = remote_get_trace_status;
12603 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
12604 remote_ops.to_trace_stop = remote_trace_stop;
12605 remote_ops.to_trace_find = remote_trace_find;
12606 remote_ops.to_get_trace_state_variable_value
12607 = remote_get_trace_state_variable_value;
12608 remote_ops.to_save_trace_data = remote_save_trace_data;
12609 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
12610 remote_ops.to_upload_trace_state_variables
12611 = remote_upload_trace_state_variables;
12612 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
12613 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
12614 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
12615 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
12616 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
12617 remote_ops.to_set_trace_notes = remote_set_trace_notes;
12618 remote_ops.to_core_of_thread = remote_core_of_thread;
12619 remote_ops.to_verify_memory = remote_verify_memory;
12620 remote_ops.to_get_tib_address = remote_get_tib_address;
12621 remote_ops.to_set_permissions = remote_set_permissions;
12622 remote_ops.to_static_tracepoint_marker_at
12623 = remote_static_tracepoint_marker_at;
12624 remote_ops.to_static_tracepoint_markers_by_strid
12625 = remote_static_tracepoint_markers_by_strid;
12626 remote_ops.to_traceframe_info = remote_traceframe_info;
12627 remote_ops.to_use_agent = remote_use_agent;
12628 remote_ops.to_can_use_agent = remote_can_use_agent;
12629 remote_ops.to_supports_btrace = remote_supports_btrace;
12630 remote_ops.to_enable_btrace = remote_enable_btrace;
12631 remote_ops.to_disable_btrace = remote_disable_btrace;
12632 remote_ops.to_teardown_btrace = remote_teardown_btrace;
12633 remote_ops.to_read_btrace = remote_read_btrace;
12634 remote_ops.to_btrace_conf = remote_btrace_conf;
12635 remote_ops.to_augmented_libraries_svr4_read =
12636 remote_augmented_libraries_svr4_read;
12639 /* Set up the extended remote vector by making a copy of the standard
12640 remote vector and adding to it. */
12643 init_extended_remote_ops (void)
12645 extended_remote_ops = remote_ops;
12647 extended_remote_ops.to_shortname = "extended-remote";
12648 extended_remote_ops.to_longname =
12649 "Extended remote serial target in gdb-specific protocol";
12650 extended_remote_ops.to_doc =
12651 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
12652 Specify the serial device it is connected to (e.g. /dev/ttya).";
12653 extended_remote_ops.to_open = extended_remote_open;
12654 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
12655 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
12656 extended_remote_ops.to_detach = extended_remote_detach;
12657 extended_remote_ops.to_attach = extended_remote_attach;
12658 extended_remote_ops.to_post_attach = extended_remote_post_attach;
12659 extended_remote_ops.to_kill = extended_remote_kill;
12660 extended_remote_ops.to_supports_disable_randomization
12661 = extended_remote_supports_disable_randomization;
12662 extended_remote_ops.to_follow_fork = remote_follow_fork;
12663 extended_remote_ops.to_insert_fork_catchpoint
12664 = remote_insert_fork_catchpoint;
12665 extended_remote_ops.to_remove_fork_catchpoint
12666 = remote_remove_fork_catchpoint;
12667 extended_remote_ops.to_insert_vfork_catchpoint
12668 = remote_insert_vfork_catchpoint;
12669 extended_remote_ops.to_remove_vfork_catchpoint
12670 = remote_remove_vfork_catchpoint;
12674 remote_can_async_p (struct target_ops *ops)
12676 struct remote_state *rs = get_remote_state ();
12678 if (!target_async_permitted)
12679 /* We only enable async when the user specifically asks for it. */
12682 /* We're async whenever the serial device is. */
12683 return serial_can_async_p (rs->remote_desc);
12687 remote_is_async_p (struct target_ops *ops)
12689 struct remote_state *rs = get_remote_state ();
12691 if (!target_async_permitted)
12692 /* We only enable async when the user specifically asks for it. */
12695 /* We're async whenever the serial device is. */
12696 return serial_is_async_p (rs->remote_desc);
12699 /* Pass the SERIAL event on and up to the client. One day this code
12700 will be able to delay notifying the client of an event until the
12701 point where an entire packet has been received. */
12703 static serial_event_ftype remote_async_serial_handler;
12706 remote_async_serial_handler (struct serial *scb, void *context)
12708 struct remote_state *rs = context;
12710 /* Don't propogate error information up to the client. Instead let
12711 the client find out about the error by querying the target. */
12712 inferior_event_handler (INF_REG_EVENT, NULL);
12716 remote_async_inferior_event_handler (gdb_client_data data)
12718 inferior_event_handler (INF_REG_EVENT, NULL);
12722 remote_async (struct target_ops *ops, int enable)
12724 struct remote_state *rs = get_remote_state ();
12728 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
12730 /* If there are pending events in the stop reply queue tell the
12731 event loop to process them. */
12732 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
12733 mark_async_event_handler (remote_async_inferior_event_token);
12737 serial_async (rs->remote_desc, NULL, NULL);
12738 clear_async_event_handler (remote_async_inferior_event_token);
12743 set_remote_cmd (char *args, int from_tty)
12745 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
12749 show_remote_cmd (char *args, int from_tty)
12751 /* We can't just use cmd_show_list here, because we want to skip
12752 the redundant "show remote Z-packet" and the legacy aliases. */
12753 struct cleanup *showlist_chain;
12754 struct cmd_list_element *list = remote_show_cmdlist;
12755 struct ui_out *uiout = current_uiout;
12757 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
12758 for (; list != NULL; list = list->next)
12759 if (strcmp (list->name, "Z-packet") == 0)
12761 else if (list->type == not_set_cmd)
12762 /* Alias commands are exactly like the original, except they
12763 don't have the normal type. */
12767 struct cleanup *option_chain
12768 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
12770 ui_out_field_string (uiout, "name", list->name);
12771 ui_out_text (uiout, ": ");
12772 if (list->type == show_cmd)
12773 do_show_command ((char *) NULL, from_tty, list);
12775 cmd_func (list, NULL, from_tty);
12776 /* Close the tuple. */
12777 do_cleanups (option_chain);
12780 /* Close the tuple. */
12781 do_cleanups (showlist_chain);
12785 /* Function to be called whenever a new objfile (shlib) is detected. */
12787 remote_new_objfile (struct objfile *objfile)
12789 struct remote_state *rs = get_remote_state ();
12791 if (rs->remote_desc != 0) /* Have a remote connection. */
12792 remote_check_symbols ();
12795 /* Pull all the tracepoints defined on the target and create local
12796 data structures representing them. We don't want to create real
12797 tracepoints yet, we don't want to mess up the user's existing
12801 remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
12803 struct remote_state *rs = get_remote_state ();
12806 /* Ask for a first packet of tracepoint definition. */
12808 getpkt (&rs->buf, &rs->buf_size, 0);
12810 while (*p && *p != 'l')
12812 parse_tracepoint_definition (p, utpp);
12813 /* Ask for another packet of tracepoint definition. */
12815 getpkt (&rs->buf, &rs->buf_size, 0);
12822 remote_upload_trace_state_variables (struct target_ops *self,
12823 struct uploaded_tsv **utsvp)
12825 struct remote_state *rs = get_remote_state ();
12828 /* Ask for a first packet of variable definition. */
12830 getpkt (&rs->buf, &rs->buf_size, 0);
12832 while (*p && *p != 'l')
12834 parse_tsv_definition (p, utsvp);
12835 /* Ask for another packet of variable definition. */
12837 getpkt (&rs->buf, &rs->buf_size, 0);
12843 /* The "set/show range-stepping" show hook. */
12846 show_range_stepping (struct ui_file *file, int from_tty,
12847 struct cmd_list_element *c,
12850 fprintf_filtered (file,
12851 _("Debugger's willingness to use range stepping "
12852 "is %s.\n"), value);
12855 /* The "set/show range-stepping" set hook. */
12858 set_range_stepping (char *ignore_args, int from_tty,
12859 struct cmd_list_element *c)
12861 struct remote_state *rs = get_remote_state ();
12863 /* Whene enabling, check whether range stepping is actually
12864 supported by the target, and warn if not. */
12865 if (use_range_stepping)
12867 if (rs->remote_desc != NULL)
12869 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
12870 remote_vcont_probe (rs);
12872 if (packet_support (PACKET_vCont) == PACKET_ENABLE
12873 && rs->supports_vCont.r)
12877 warning (_("Range stepping is not supported by the current target"));
12882 _initialize_remote (void)
12884 struct remote_state *rs;
12885 struct cmd_list_element *cmd;
12886 const char *cmd_name;
12888 /* architecture specific data */
12889 remote_gdbarch_data_handle =
12890 gdbarch_data_register_post_init (init_remote_state);
12891 remote_g_packet_data_handle =
12892 gdbarch_data_register_pre_init (remote_g_packet_data_init);
12894 /* Initialize the per-target state. At the moment there is only one
12895 of these, not one per target. Only one target is active at a
12897 remote_state = new_remote_state ();
12899 init_remote_ops ();
12900 add_target (&remote_ops);
12902 init_extended_remote_ops ();
12903 add_target (&extended_remote_ops);
12905 /* Hook into new objfile notification. */
12906 observer_attach_new_objfile (remote_new_objfile);
12907 /* We're no longer interested in notification events of an inferior
12909 observer_attach_inferior_exit (discard_pending_stop_replies);
12911 /* Set up signal handlers. */
12912 async_sigint_remote_token =
12913 create_async_signal_handler (async_remote_interrupt, NULL);
12914 async_sigint_remote_twice_token =
12915 create_async_signal_handler (async_remote_interrupt_twice, NULL);
12918 init_remote_threadtests ();
12921 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
12922 /* set/show remote ... */
12924 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
12925 Remote protocol specific variables\n\
12926 Configure various remote-protocol specific variables such as\n\
12927 the packets being used"),
12928 &remote_set_cmdlist, "set remote ",
12929 0 /* allow-unknown */, &setlist);
12930 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
12931 Remote protocol specific variables\n\
12932 Configure various remote-protocol specific variables such as\n\
12933 the packets being used"),
12934 &remote_show_cmdlist, "show remote ",
12935 0 /* allow-unknown */, &showlist);
12937 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
12938 Compare section data on target to the exec file.\n\
12939 Argument is a single section name (default: all loaded sections).\n\
12940 To compare only read-only loaded sections, specify the -r option."),
12943 add_cmd ("packet", class_maintenance, packet_command, _("\
12944 Send an arbitrary packet to a remote target.\n\
12945 maintenance packet TEXT\n\
12946 If GDB is talking to an inferior via the GDB serial protocol, then\n\
12947 this command sends the string TEXT to the inferior, and displays the\n\
12948 response packet. GDB supplies the initial `$' character, and the\n\
12949 terminating `#' character and checksum."),
12952 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
12953 Set whether to send break if interrupted."), _("\
12954 Show whether to send break if interrupted."), _("\
12955 If set, a break, instead of a cntrl-c, is sent to the remote target."),
12956 set_remotebreak, show_remotebreak,
12957 &setlist, &showlist);
12958 cmd_name = "remotebreak";
12959 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
12960 deprecate_cmd (cmd, "set remote interrupt-sequence");
12961 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
12962 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
12963 deprecate_cmd (cmd, "show remote interrupt-sequence");
12965 add_setshow_enum_cmd ("interrupt-sequence", class_support,
12966 interrupt_sequence_modes, &interrupt_sequence_mode,
12968 Set interrupt sequence to remote target."), _("\
12969 Show interrupt sequence to remote target."), _("\
12970 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
12971 NULL, show_interrupt_sequence,
12972 &remote_set_cmdlist,
12973 &remote_show_cmdlist);
12975 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
12976 &interrupt_on_connect, _("\
12977 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
12978 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
12979 If set, interrupt sequence is sent to remote target."),
12981 &remote_set_cmdlist, &remote_show_cmdlist);
12983 /* Install commands for configuring memory read/write packets. */
12985 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
12986 Set the maximum number of bytes per memory write packet (deprecated)."),
12988 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
12989 Show the maximum number of bytes per memory write packet (deprecated)."),
12991 add_cmd ("memory-write-packet-size", no_class,
12992 set_memory_write_packet_size, _("\
12993 Set the maximum number of bytes per memory-write packet.\n\
12994 Specify the number of bytes in a packet or 0 (zero) for the\n\
12995 default packet size. The actual limit is further reduced\n\
12996 dependent on the target. Specify ``fixed'' to disable the\n\
12997 further restriction and ``limit'' to enable that restriction."),
12998 &remote_set_cmdlist);
12999 add_cmd ("memory-read-packet-size", no_class,
13000 set_memory_read_packet_size, _("\
13001 Set the maximum number of bytes per memory-read packet.\n\
13002 Specify the number of bytes in a packet or 0 (zero) for the\n\
13003 default packet size. The actual limit is further reduced\n\
13004 dependent on the target. Specify ``fixed'' to disable the\n\
13005 further restriction and ``limit'' to enable that restriction."),
13006 &remote_set_cmdlist);
13007 add_cmd ("memory-write-packet-size", no_class,
13008 show_memory_write_packet_size,
13009 _("Show the maximum number of bytes per memory-write packet."),
13010 &remote_show_cmdlist);
13011 add_cmd ("memory-read-packet-size", no_class,
13012 show_memory_read_packet_size,
13013 _("Show the maximum number of bytes per memory-read packet."),
13014 &remote_show_cmdlist);
13016 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
13017 &remote_hw_watchpoint_limit, _("\
13018 Set the maximum number of target hardware watchpoints."), _("\
13019 Show the maximum number of target hardware watchpoints."), _("\
13020 Specify a negative limit for unlimited."),
13021 NULL, NULL, /* FIXME: i18n: The maximum
13022 number of target hardware
13023 watchpoints is %s. */
13024 &remote_set_cmdlist, &remote_show_cmdlist);
13025 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
13026 &remote_hw_watchpoint_length_limit, _("\
13027 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
13028 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
13029 Specify a negative limit for unlimited."),
13030 NULL, NULL, /* FIXME: i18n: The maximum
13031 length (in bytes) of a target
13032 hardware watchpoint is %s. */
13033 &remote_set_cmdlist, &remote_show_cmdlist);
13034 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
13035 &remote_hw_breakpoint_limit, _("\
13036 Set the maximum number of target hardware breakpoints."), _("\
13037 Show the maximum number of target hardware breakpoints."), _("\
13038 Specify a negative limit for unlimited."),
13039 NULL, NULL, /* FIXME: i18n: The maximum
13040 number of target hardware
13041 breakpoints is %s. */
13042 &remote_set_cmdlist, &remote_show_cmdlist);
13044 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
13045 &remote_address_size, _("\
13046 Set the maximum size of the address (in bits) in a memory packet."), _("\
13047 Show the maximum size of the address (in bits) in a memory packet."), NULL,
13049 NULL, /* FIXME: i18n: */
13050 &setlist, &showlist);
13052 init_all_packet_configs ();
13054 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
13055 "X", "binary-download", 1);
13057 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
13058 "vCont", "verbose-resume", 0);
13060 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
13061 "QPassSignals", "pass-signals", 0);
13063 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
13064 "QProgramSignals", "program-signals", 0);
13066 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
13067 "qSymbol", "symbol-lookup", 0);
13069 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
13070 "P", "set-register", 1);
13072 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
13073 "p", "fetch-register", 1);
13075 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
13076 "Z0", "software-breakpoint", 0);
13078 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
13079 "Z1", "hardware-breakpoint", 0);
13081 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
13082 "Z2", "write-watchpoint", 0);
13084 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
13085 "Z3", "read-watchpoint", 0);
13087 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
13088 "Z4", "access-watchpoint", 0);
13090 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
13091 "qXfer:auxv:read", "read-aux-vector", 0);
13093 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
13094 "qXfer:exec-file:read", "pid-to-exec-file", 0);
13096 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
13097 "qXfer:features:read", "target-features", 0);
13099 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
13100 "qXfer:libraries:read", "library-info", 0);
13102 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
13103 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
13105 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
13106 "qXfer:memory-map:read", "memory-map", 0);
13108 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
13109 "qXfer:spu:read", "read-spu-object", 0);
13111 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
13112 "qXfer:spu:write", "write-spu-object", 0);
13114 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
13115 "qXfer:osdata:read", "osdata", 0);
13117 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
13118 "qXfer:threads:read", "threads", 0);
13120 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
13121 "qXfer:siginfo:read", "read-siginfo-object", 0);
13123 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
13124 "qXfer:siginfo:write", "write-siginfo-object", 0);
13126 add_packet_config_cmd
13127 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
13128 "qXfer:traceframe-info:read", "traceframe-info", 0);
13130 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
13131 "qXfer:uib:read", "unwind-info-block", 0);
13133 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
13134 "qGetTLSAddr", "get-thread-local-storage-address",
13137 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
13138 "qGetTIBAddr", "get-thread-information-block-address",
13141 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
13142 "bc", "reverse-continue", 0);
13144 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
13145 "bs", "reverse-step", 0);
13147 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
13148 "qSupported", "supported-packets", 0);
13150 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
13151 "qSearch:memory", "search-memory", 0);
13153 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
13154 "qTStatus", "trace-status", 0);
13156 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
13157 "vFile:setfs", "hostio-setfs", 0);
13159 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
13160 "vFile:open", "hostio-open", 0);
13162 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
13163 "vFile:pread", "hostio-pread", 0);
13165 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
13166 "vFile:pwrite", "hostio-pwrite", 0);
13168 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
13169 "vFile:close", "hostio-close", 0);
13171 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
13172 "vFile:unlink", "hostio-unlink", 0);
13174 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
13175 "vFile:readlink", "hostio-readlink", 0);
13177 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
13178 "vFile:fstat", "hostio-fstat", 0);
13180 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
13181 "vAttach", "attach", 0);
13183 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
13186 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
13187 "QStartNoAckMode", "noack", 0);
13189 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
13190 "vKill", "kill", 0);
13192 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
13193 "qAttached", "query-attached", 0);
13195 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
13196 "ConditionalTracepoints",
13197 "conditional-tracepoints", 0);
13199 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
13200 "ConditionalBreakpoints",
13201 "conditional-breakpoints", 0);
13203 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
13204 "BreakpointCommands",
13205 "breakpoint-commands", 0);
13207 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
13208 "FastTracepoints", "fast-tracepoints", 0);
13210 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
13211 "TracepointSource", "TracepointSource", 0);
13213 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
13214 "QAllow", "allow", 0);
13216 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
13217 "StaticTracepoints", "static-tracepoints", 0);
13219 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
13220 "InstallInTrace", "install-in-trace", 0);
13222 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
13223 "qXfer:statictrace:read", "read-sdata-object", 0);
13225 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
13226 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
13228 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
13229 "QDisableRandomization", "disable-randomization", 0);
13231 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
13232 "QAgent", "agent", 0);
13234 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
13235 "QTBuffer:size", "trace-buffer-size", 0);
13237 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
13238 "Qbtrace:off", "disable-btrace", 0);
13240 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
13241 "Qbtrace:bts", "enable-btrace-bts", 0);
13243 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
13244 "Qbtrace:pt", "enable-btrace-pt", 0);
13246 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
13247 "qXfer:btrace", "read-btrace", 0);
13249 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
13250 "qXfer:btrace-conf", "read-btrace-conf", 0);
13252 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
13253 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
13255 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
13256 "multiprocess-feature", "multiprocess-feature", 0);
13258 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
13259 "swbreak-feature", "swbreak-feature", 0);
13261 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
13262 "hwbreak-feature", "hwbreak-feature", 0);
13264 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
13265 "fork-event-feature", "fork-event-feature", 0);
13267 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
13268 "vfork-event-feature", "vfork-event-feature", 0);
13270 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
13271 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
13273 /* Assert that we've registered "set remote foo-packet" commands
13274 for all packet configs. */
13278 for (i = 0; i < PACKET_MAX; i++)
13280 /* Ideally all configs would have a command associated. Some
13281 still don't though. */
13286 case PACKET_QNonStop:
13287 case PACKET_EnableDisableTracepoints_feature:
13288 case PACKET_tracenz_feature:
13289 case PACKET_DisconnectedTracing_feature:
13290 case PACKET_augmented_libraries_svr4_read_feature:
13292 /* Additions to this list need to be well justified:
13293 pre-existing packets are OK; new packets are not. */
13301 /* This catches both forgetting to add a config command, and
13302 forgetting to remove a packet from the exception list. */
13303 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
13307 /* Keep the old ``set remote Z-packet ...'' working. Each individual
13308 Z sub-packet has its own set and show commands, but users may
13309 have sets to this variable in their .gdbinit files (or in their
13311 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
13312 &remote_Z_packet_detect, _("\
13313 Set use of remote protocol `Z' packets"), _("\
13314 Show use of remote protocol `Z' packets "), _("\
13315 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
13317 set_remote_protocol_Z_packet_cmd,
13318 show_remote_protocol_Z_packet_cmd,
13319 /* FIXME: i18n: Use of remote protocol
13320 `Z' packets is %s. */
13321 &remote_set_cmdlist, &remote_show_cmdlist);
13323 add_prefix_cmd ("remote", class_files, remote_command, _("\
13324 Manipulate files on the remote system\n\
13325 Transfer files to and from the remote target system."),
13326 &remote_cmdlist, "remote ",
13327 0 /* allow-unknown */, &cmdlist);
13329 add_cmd ("put", class_files, remote_put_command,
13330 _("Copy a local file to the remote system."),
13333 add_cmd ("get", class_files, remote_get_command,
13334 _("Copy a remote file to the local system."),
13337 add_cmd ("delete", class_files, remote_delete_command,
13338 _("Delete a remote file."),
13341 remote_exec_file = xstrdup ("");
13342 add_setshow_string_noescape_cmd ("exec-file", class_files,
13343 &remote_exec_file, _("\
13344 Set the remote pathname for \"run\""), _("\
13345 Show the remote pathname for \"run\""), NULL, NULL, NULL,
13346 &remote_set_cmdlist, &remote_show_cmdlist);
13348 add_setshow_boolean_cmd ("range-stepping", class_run,
13349 &use_range_stepping, _("\
13350 Enable or disable range stepping."), _("\
13351 Show whether target-assisted range stepping is enabled."), _("\
13352 If on, and the target supports it, when stepping a source line, GDB\n\
13353 tells the target to step the corresponding range of addresses itself instead\n\
13354 of issuing multiple single-steps. This speeds up source level\n\
13355 stepping. If off, GDB always issues single-steps, even if range\n\
13356 stepping is supported by the target. The default is on."),
13357 set_range_stepping,
13358 show_range_stepping,
13362 /* Eventually initialize fileio. See fileio.c */
13363 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
13365 /* Take advantage of the fact that the TID field is not used, to tag
13366 special ptids with it set to != 0. */
13367 magic_null_ptid = ptid_build (42000, -1, 1);
13368 not_sent_ptid = ptid_build (42000, -2, 1);
13369 any_thread_ptid = ptid_build (42000, 0, 1);
13371 target_buf_size = 2048;
13372 target_buf = xmalloc (target_buf_size);