1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 2010, 2011 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* See the GDB User Guide for details of the GDB remote protocol. */
25 #include "gdb_string.h"
31 #include "exceptions.h"
33 /*#include "terminal.h" */
36 #include "gdb-stabs.h"
37 #include "gdbthread.h"
41 #include "gdb_assert.h"
44 #include "cli/cli-decode.h"
45 #include "cli/cli-setshow.h"
46 #include "target-descriptions.h"
51 #include "event-loop.h"
52 #include "event-top.h"
58 #include "gdbcore.h" /* for exec_bfd */
60 #include "remote-fileio.h"
61 #include "gdb/fileio.h"
63 #include "xml-support.h"
65 #include "memory-map.h"
67 #include "tracepoint.h"
71 /* Temp hacks for tracepoint encoding migration. */
72 static char *target_buf;
73 static long target_buf_size;
75 encode_actions (struct breakpoint *t, struct bp_location *tloc,
76 char ***tdp_actions, char ***stepping_actions);
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 cleanup_sigint_signal_handler (void *dummy);
92 static void initialize_sigint_signal_handler (void);
93 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
94 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
97 static void handle_remote_sigint (int);
98 static void handle_remote_sigint_twice (int);
99 static void async_remote_interrupt (gdb_client_data);
100 void async_remote_interrupt_twice (gdb_client_data);
102 static void remote_files_info (struct target_ops *ignore);
104 static void remote_prepare_to_store (struct regcache *regcache);
106 static void remote_open (char *name, int from_tty);
108 static void extended_remote_open (char *name, int from_tty);
110 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
112 static void remote_close (int quitting);
114 static void remote_mourn (struct target_ops *ops);
116 static void extended_remote_restart (void);
118 static void extended_remote_mourn (struct target_ops *);
120 static void remote_mourn_1 (struct target_ops *);
122 static void remote_send (char **buf, long *sizeof_buf_p);
124 static int readchar (int timeout);
126 static void remote_kill (struct target_ops *ops);
128 static int tohex (int nib);
130 static int remote_can_async_p (void);
132 static int remote_is_async_p (void);
134 static void remote_async (void (*callback) (enum inferior_event_type event_type,
135 void *context), void *context);
137 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
139 static void remote_interrupt (int signo);
141 static void remote_interrupt_twice (int signo);
143 static void interrupt_query (void);
145 static void set_general_thread (struct ptid ptid);
146 static void set_continue_thread (struct ptid ptid);
148 static void get_offsets (void);
150 static void skip_frame (void);
152 static long read_frame (char **buf_p, long *sizeof_buf);
154 static int hexnumlen (ULONGEST num);
156 static void init_remote_ops (void);
158 static void init_extended_remote_ops (void);
160 static void remote_stop (ptid_t);
162 static int ishex (int ch, int *val);
164 static int stubhex (int ch);
166 static int hexnumstr (char *, ULONGEST);
168 static int hexnumnstr (char *, ULONGEST, int);
170 static CORE_ADDR remote_address_masked (CORE_ADDR);
172 static void print_packet (char *);
174 static void compare_sections_command (char *, int);
176 static void packet_command (char *, int);
178 static int stub_unpack_int (char *buff, int fieldlength);
180 static ptid_t remote_current_thread (ptid_t oldptid);
182 static void remote_find_new_threads (void);
184 static void record_currthread (ptid_t currthread);
186 static int fromhex (int a);
188 extern int hex2bin (const char *hex, gdb_byte *bin, int count);
190 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
192 static int putpkt_binary (char *buf, int cnt);
194 static void check_binary_download (CORE_ADDR addr);
196 struct packet_config;
198 static void show_packet_config_cmd (struct packet_config *config);
200 static void update_packet_config (struct packet_config *config);
202 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
203 struct cmd_list_element *c);
205 static void show_remote_protocol_packet_cmd (struct ui_file *file,
207 struct cmd_list_element *c,
210 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
211 static ptid_t read_ptid (char *buf, char **obuf);
213 static void remote_set_permissions (void);
216 static int remote_get_trace_status (struct trace_status *ts);
218 static int remote_upload_tracepoints (struct uploaded_tp **utpp);
220 static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
222 static void remote_query_supported (void);
224 static void remote_check_symbols (struct objfile *objfile);
226 void _initialize_remote (void);
229 static struct stop_reply *stop_reply_xmalloc (void);
230 static void stop_reply_xfree (struct stop_reply *);
231 static void do_stop_reply_xfree (void *arg);
232 static void remote_parse_stop_reply (char *buf, struct stop_reply *);
233 static void push_stop_reply (struct stop_reply *);
234 static void remote_get_pending_stop_replies (void);
235 static void discard_pending_stop_replies (int pid);
236 static int peek_stop_reply (ptid_t ptid);
238 static void remote_async_inferior_event_handler (gdb_client_data);
239 static void remote_async_get_pending_events_handler (gdb_client_data);
241 static void remote_terminal_ours (void);
243 static int remote_read_description_p (struct target_ops *target);
245 static void remote_console_output (char *msg);
247 /* The non-stop remote protocol provisions for one pending stop reply.
248 This is where we keep it until it is acknowledged. */
250 static struct stop_reply *pending_stop_reply = NULL;
254 static struct cmd_list_element *remote_cmdlist;
256 /* For "set remote" and "show remote". */
258 static struct cmd_list_element *remote_set_cmdlist;
259 static struct cmd_list_element *remote_show_cmdlist;
261 /* Description of the remote protocol state for the currently
262 connected target. This is per-target state, and independent of the
263 selected architecture. */
267 /* A buffer to use for incoming packets, and its current size. The
268 buffer is grown dynamically for larger incoming packets.
269 Outgoing packets may also be constructed in this buffer.
270 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
271 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
276 /* If we negotiated packet size explicitly (and thus can bypass
277 heuristics for the largest packet size that will not overflow
278 a buffer in the stub), this will be set to that packet size.
279 Otherwise zero, meaning to use the guessed size. */
280 long explicit_packet_size;
282 /* remote_wait is normally called when the target is running and
283 waits for a stop reply packet. But sometimes we need to call it
284 when the target is already stopped. We can send a "?" packet
285 and have remote_wait read the response. Or, if we already have
286 the response, we can stash it in BUF and tell remote_wait to
287 skip calling getpkt. This flag is set when BUF contains a
288 stop reply packet and the target is not waiting. */
289 int cached_wait_status;
291 /* True, if in no ack mode. That is, neither GDB nor the stub will
292 expect acks from each other. The connection is assumed to be
296 /* True if we're connected in extended remote mode. */
299 /* True if the stub reported support for multi-process
301 int multi_process_aware;
303 /* True if we resumed the target and we're waiting for the target to
304 stop. In the mean time, we can't start another command/query.
305 The remote server wouldn't be ready to process it, so we'd
306 timeout waiting for a reply that would never come and eventually
307 we'd close the connection. This can happen in asynchronous mode
308 because we allow GDB commands while the target is running. */
309 int waiting_for_stop_reply;
311 /* True if the stub reports support for non-stop mode. */
314 /* True if the stub reports support for vCont;t. */
317 /* True if the stub reports support for conditional tracepoints. */
318 int cond_tracepoints;
320 /* True if the stub reports support for fast tracepoints. */
321 int fast_tracepoints;
323 /* True if the stub reports support for static tracepoints. */
324 int static_tracepoints;
326 /* True if the stub can continue running a trace while GDB is
328 int disconnected_tracing;
330 /* True if the stub reports support for enabling and disabling
331 tracepoints while a trace experiment is running. */
332 int enable_disable_tracepoints;
334 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
335 responded to that. */
339 /* Private data that we'll store in (struct thread_info)->private. */
340 struct private_thread_info
347 free_private_thread_info (struct private_thread_info *info)
353 /* Returns true if the multi-process extensions are in effect. */
355 remote_multi_process_p (struct remote_state *rs)
357 return rs->extended && rs->multi_process_aware;
360 /* This data could be associated with a target, but we do not always
361 have access to the current target when we need it, so for now it is
362 static. This will be fine for as long as only one target is in use
364 static struct remote_state remote_state;
366 static struct remote_state *
367 get_remote_state_raw (void)
369 return &remote_state;
372 /* Description of the remote protocol for a given architecture. */
376 long offset; /* Offset into G packet. */
377 long regnum; /* GDB's internal register number. */
378 LONGEST pnum; /* Remote protocol register number. */
379 int in_g_packet; /* Always part of G packet. */
380 /* long size in bytes; == register_size (target_gdbarch, regnum);
382 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
386 struct remote_arch_state
388 /* Description of the remote protocol registers. */
389 long sizeof_g_packet;
391 /* Description of the remote protocol registers indexed by REGNUM
392 (making an array gdbarch_num_regs in size). */
393 struct packet_reg *regs;
395 /* This is the size (in chars) of the first response to the ``g''
396 packet. It is used as a heuristic when determining the maximum
397 size of memory-read and memory-write packets. A target will
398 typically only reserve a buffer large enough to hold the ``g''
399 packet. The size does not include packet overhead (headers and
401 long actual_register_packet_size;
403 /* This is the maximum size (in chars) of a non read/write packet.
404 It is also used as a cap on the size of read/write packets. */
405 long remote_packet_size;
408 long sizeof_pkt = 2000;
410 /* Utility: generate error from an incoming stub packet. */
412 trace_error (char *buf)
415 return; /* not an error msg */
418 case '1': /* malformed packet error */
419 if (*++buf == '0') /* general case: */
420 error (_("remote.c: error in outgoing packet."));
422 error (_("remote.c: error in outgoing packet at field #%ld."),
423 strtol (buf, NULL, 16));
425 error (_("trace API error 0x%s."), ++buf);
427 error (_("Target returns error code '%s'."), buf);
431 /* Utility: wait for reply from stub, while accepting "O" packets. */
433 remote_get_noisy_reply (char **buf_p,
436 do /* Loop on reply from remote stub. */
440 QUIT; /* Allow user to bail out with ^C. */
441 getpkt (buf_p, sizeof_buf, 0);
445 else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
448 CORE_ADDR from, to, org_to;
450 int adjusted_size = 0;
451 volatile struct gdb_exception ex;
453 p = buf + strlen ("qRelocInsn:");
454 pp = unpack_varlen_hex (p, &ul);
456 error (_("invalid qRelocInsn packet: %s"), buf);
460 unpack_varlen_hex (p, &ul);
465 TRY_CATCH (ex, RETURN_MASK_ALL)
467 gdbarch_relocate_instruction (target_gdbarch, &to, from);
471 adjusted_size = to - org_to;
473 sprintf (buf, "qRelocInsn:%x", adjusted_size);
476 else if (ex.reason < 0 && ex.error == MEMORY_ERROR)
478 /* Propagate memory errors silently back to the target.
479 The stub may have limited the range of addresses we
480 can write to, for example. */
485 /* Something unexpectedly bad happened. Be verbose so
486 we can tell what, and propagate the error back to the
487 stub, so it doesn't get stuck waiting for a
489 exception_fprintf (gdb_stderr, ex,
490 _("warning: relocating instruction: "));
494 else if (buf[0] == 'O' && buf[1] != 'K')
495 remote_console_output (buf + 1); /* 'O' message from stub */
497 return buf; /* Here's the actual reply. */
502 /* Handle for retreving the remote protocol data from gdbarch. */
503 static struct gdbarch_data *remote_gdbarch_data_handle;
505 static struct remote_arch_state *
506 get_remote_arch_state (void)
508 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
511 /* Fetch the global remote target state. */
513 static struct remote_state *
514 get_remote_state (void)
516 /* Make sure that the remote architecture state has been
517 initialized, because doing so might reallocate rs->buf. Any
518 function which calls getpkt also needs to be mindful of changes
519 to rs->buf, but this call limits the number of places which run
521 get_remote_arch_state ();
523 return get_remote_state_raw ();
527 compare_pnums (const void *lhs_, const void *rhs_)
529 const struct packet_reg * const *lhs = lhs_;
530 const struct packet_reg * const *rhs = rhs_;
532 if ((*lhs)->pnum < (*rhs)->pnum)
534 else if ((*lhs)->pnum == (*rhs)->pnum)
541 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
543 int regnum, num_remote_regs, offset;
544 struct packet_reg **remote_regs;
546 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
548 struct packet_reg *r = ®s[regnum];
550 if (register_size (gdbarch, regnum) == 0)
551 /* Do not try to fetch zero-sized (placeholder) registers. */
554 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
559 /* Define the g/G packet format as the contents of each register
560 with a remote protocol number, in order of ascending protocol
563 remote_regs = alloca (gdbarch_num_regs (gdbarch)
564 * sizeof (struct packet_reg *));
565 for (num_remote_regs = 0, regnum = 0;
566 regnum < gdbarch_num_regs (gdbarch);
568 if (regs[regnum].pnum != -1)
569 remote_regs[num_remote_regs++] = ®s[regnum];
571 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
574 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
576 remote_regs[regnum]->in_g_packet = 1;
577 remote_regs[regnum]->offset = offset;
578 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
584 /* Given the architecture described by GDBARCH, return the remote
585 protocol register's number and the register's offset in the g/G
586 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
587 If the target does not have a mapping for REGNUM, return false,
588 otherwise, return true. */
591 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
592 int *pnum, int *poffset)
595 struct packet_reg *regs;
596 struct cleanup *old_chain;
598 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
600 regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
601 old_chain = make_cleanup (xfree, regs);
603 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
605 *pnum = regs[regnum].pnum;
606 *poffset = regs[regnum].offset;
608 do_cleanups (old_chain);
614 init_remote_state (struct gdbarch *gdbarch)
616 struct remote_state *rs = get_remote_state_raw ();
617 struct remote_arch_state *rsa;
619 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
621 /* Use the architecture to build a regnum<->pnum table, which will be
622 1:1 unless a feature set specifies otherwise. */
623 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
624 gdbarch_num_regs (gdbarch),
627 /* Record the maximum possible size of the g packet - it may turn out
629 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
631 /* Default maximum number of characters in a packet body. Many
632 remote stubs have a hardwired buffer size of 400 bytes
633 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
634 as the maximum packet-size to ensure that the packet and an extra
635 NUL character can always fit in the buffer. This stops GDB
636 trashing stubs that try to squeeze an extra NUL into what is
637 already a full buffer (As of 1999-12-04 that was most stubs). */
638 rsa->remote_packet_size = 400 - 1;
640 /* This one is filled in when a ``g'' packet is received. */
641 rsa->actual_register_packet_size = 0;
643 /* Should rsa->sizeof_g_packet needs more space than the
644 default, adjust the size accordingly. Remember that each byte is
645 encoded as two characters. 32 is the overhead for the packet
646 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
647 (``$NN:G...#NN'') is a better guess, the below has been padded a
649 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
650 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
652 /* Make sure that the packet buffer is plenty big enough for
653 this architecture. */
654 if (rs->buf_size < rsa->remote_packet_size)
656 rs->buf_size = 2 * rsa->remote_packet_size;
657 rs->buf = xrealloc (rs->buf, rs->buf_size);
663 /* Return the current allowed size of a remote packet. This is
664 inferred from the current architecture, and should be used to
665 limit the length of outgoing packets. */
667 get_remote_packet_size (void)
669 struct remote_state *rs = get_remote_state ();
670 struct remote_arch_state *rsa = get_remote_arch_state ();
672 if (rs->explicit_packet_size)
673 return rs->explicit_packet_size;
675 return rsa->remote_packet_size;
678 static struct packet_reg *
679 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
681 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
685 struct packet_reg *r = &rsa->regs[regnum];
687 gdb_assert (r->regnum == regnum);
692 static struct packet_reg *
693 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
697 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
699 struct packet_reg *r = &rsa->regs[i];
707 /* FIXME: graces/2002-08-08: These variables should eventually be
708 bound to an instance of the target object (as in gdbarch-tdep()),
709 when such a thing exists. */
711 /* This is set to the data address of the access causing the target
712 to stop for a watchpoint. */
713 static CORE_ADDR remote_watch_data_address;
715 /* This is non-zero if target stopped for a watchpoint. */
716 static int remote_stopped_by_watchpoint_p;
718 static struct target_ops remote_ops;
720 static struct target_ops extended_remote_ops;
722 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
723 ``forever'' still use the normal timeout mechanism. This is
724 currently used by the ASYNC code to guarentee that target reads
725 during the initial connect always time-out. Once getpkt has been
726 modified to return a timeout indication and, in turn
727 remote_wait()/wait_for_inferior() have gained a timeout parameter
729 static int wait_forever_enabled_p = 1;
731 /* Allow the user to specify what sequence to send to the remote
732 when he requests a program interruption: Although ^C is usually
733 what remote systems expect (this is the default, here), it is
734 sometimes preferable to send a break. On other systems such
735 as the Linux kernel, a break followed by g, which is Magic SysRq g
736 is required in order to interrupt the execution. */
737 const char interrupt_sequence_control_c[] = "Ctrl-C";
738 const char interrupt_sequence_break[] = "BREAK";
739 const char interrupt_sequence_break_g[] = "BREAK-g";
740 static const char *interrupt_sequence_modes[] =
742 interrupt_sequence_control_c,
743 interrupt_sequence_break,
744 interrupt_sequence_break_g,
747 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
750 show_interrupt_sequence (struct ui_file *file, int from_tty,
751 struct cmd_list_element *c,
754 if (interrupt_sequence_mode == interrupt_sequence_control_c)
755 fprintf_filtered (file,
756 _("Send the ASCII ETX character (Ctrl-c) "
757 "to the remote target to interrupt the "
758 "execution of the program.\n"));
759 else if (interrupt_sequence_mode == interrupt_sequence_break)
760 fprintf_filtered (file,
761 _("send a break signal to the remote target "
762 "to interrupt the execution of the program.\n"));
763 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
764 fprintf_filtered (file,
765 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
766 "the remote target to interrupt the execution "
767 "of Linux kernel.\n"));
769 internal_error (__FILE__, __LINE__,
770 _("Invalid value for interrupt_sequence_mode: %s."),
771 interrupt_sequence_mode);
774 /* This boolean variable specifies whether interrupt_sequence is sent
775 to the remote target when gdb connects to it.
776 This is mostly needed when you debug the Linux kernel: The Linux kernel
777 expects BREAK g which is Magic SysRq g for connecting gdb. */
778 static int interrupt_on_connect = 0;
780 /* This variable is used to implement the "set/show remotebreak" commands.
781 Since these commands are now deprecated in favor of "set/show remote
782 interrupt-sequence", it no longer has any effect on the code. */
783 static int remote_break;
786 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
789 interrupt_sequence_mode = interrupt_sequence_break;
791 interrupt_sequence_mode = interrupt_sequence_control_c;
795 show_remotebreak (struct ui_file *file, int from_tty,
796 struct cmd_list_element *c,
801 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
802 remote_open knows that we don't have a file open when the program
804 static struct serial *remote_desc = NULL;
806 /* This variable sets the number of bits in an address that are to be
807 sent in a memory ("M" or "m") packet. Normally, after stripping
808 leading zeros, the entire address would be sent. This variable
809 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
810 initial implementation of remote.c restricted the address sent in
811 memory packets to ``host::sizeof long'' bytes - (typically 32
812 bits). Consequently, for 64 bit targets, the upper 32 bits of an
813 address was never sent. Since fixing this bug may cause a break in
814 some remote targets this variable is principly provided to
815 facilitate backward compatibility. */
817 static int remote_address_size;
819 /* Temporary to track who currently owns the terminal. See
820 remote_terminal_* for more details. */
822 static int remote_async_terminal_ours_p;
824 /* The executable file to use for "run" on the remote side. */
826 static char *remote_exec_file = "";
829 /* User configurable variables for the number of characters in a
830 memory read/write packet. MIN (rsa->remote_packet_size,
831 rsa->sizeof_g_packet) is the default. Some targets need smaller
832 values (fifo overruns, et.al.) and some users need larger values
833 (speed up transfers). The variables ``preferred_*'' (the user
834 request), ``current_*'' (what was actually set) and ``forced_*''
835 (Positive - a soft limit, negative - a hard limit). */
837 struct memory_packet_config
844 /* Compute the current size of a read/write packet. Since this makes
845 use of ``actual_register_packet_size'' the computation is dynamic. */
848 get_memory_packet_size (struct memory_packet_config *config)
850 struct remote_state *rs = get_remote_state ();
851 struct remote_arch_state *rsa = get_remote_arch_state ();
853 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
854 law?) that some hosts don't cope very well with large alloca()
855 calls. Eventually the alloca() code will be replaced by calls to
856 xmalloc() and make_cleanups() allowing this restriction to either
857 be lifted or removed. */
858 #ifndef MAX_REMOTE_PACKET_SIZE
859 #define MAX_REMOTE_PACKET_SIZE 16384
861 /* NOTE: 20 ensures we can write at least one byte. */
862 #ifndef MIN_REMOTE_PACKET_SIZE
863 #define MIN_REMOTE_PACKET_SIZE 20
868 if (config->size <= 0)
869 what_they_get = MAX_REMOTE_PACKET_SIZE;
871 what_they_get = config->size;
875 what_they_get = get_remote_packet_size ();
876 /* Limit the packet to the size specified by the user. */
878 && what_they_get > config->size)
879 what_they_get = config->size;
881 /* Limit it to the size of the targets ``g'' response unless we have
882 permission from the stub to use a larger packet size. */
883 if (rs->explicit_packet_size == 0
884 && rsa->actual_register_packet_size > 0
885 && what_they_get > rsa->actual_register_packet_size)
886 what_they_get = rsa->actual_register_packet_size;
888 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
889 what_they_get = MAX_REMOTE_PACKET_SIZE;
890 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
891 what_they_get = MIN_REMOTE_PACKET_SIZE;
893 /* Make sure there is room in the global buffer for this packet
894 (including its trailing NUL byte). */
895 if (rs->buf_size < what_they_get + 1)
897 rs->buf_size = 2 * what_they_get;
898 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
901 return what_they_get;
904 /* Update the size of a read/write packet. If they user wants
905 something really big then do a sanity check. */
908 set_memory_packet_size (char *args, struct memory_packet_config *config)
910 int fixed_p = config->fixed_p;
911 long size = config->size;
914 error (_("Argument required (integer, `fixed' or `limited')."));
915 else if (strcmp (args, "hard") == 0
916 || strcmp (args, "fixed") == 0)
918 else if (strcmp (args, "soft") == 0
919 || strcmp (args, "limit") == 0)
925 size = strtoul (args, &end, 0);
927 error (_("Invalid %s (bad syntax)."), config->name);
929 /* Instead of explicitly capping the size of a packet to
930 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
931 instead allowed to set the size to something arbitrarily
933 if (size > MAX_REMOTE_PACKET_SIZE)
934 error (_("Invalid %s (too large)."), config->name);
938 if (fixed_p && !config->fixed_p)
940 if (! query (_("The target may not be able to correctly handle a %s\n"
941 "of %ld bytes. Change the packet size? "),
943 error (_("Packet size not changed."));
945 /* Update the config. */
946 config->fixed_p = fixed_p;
951 show_memory_packet_size (struct memory_packet_config *config)
953 printf_filtered (_("The %s is %ld. "), config->name, config->size);
955 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
956 get_memory_packet_size (config));
958 printf_filtered (_("Packets are limited to %ld bytes.\n"),
959 get_memory_packet_size (config));
962 static struct memory_packet_config memory_write_packet_config =
964 "memory-write-packet-size",
968 set_memory_write_packet_size (char *args, int from_tty)
970 set_memory_packet_size (args, &memory_write_packet_config);
974 show_memory_write_packet_size (char *args, int from_tty)
976 show_memory_packet_size (&memory_write_packet_config);
980 get_memory_write_packet_size (void)
982 return get_memory_packet_size (&memory_write_packet_config);
985 static struct memory_packet_config memory_read_packet_config =
987 "memory-read-packet-size",
991 set_memory_read_packet_size (char *args, int from_tty)
993 set_memory_packet_size (args, &memory_read_packet_config);
997 show_memory_read_packet_size (char *args, int from_tty)
999 show_memory_packet_size (&memory_read_packet_config);
1003 get_memory_read_packet_size (void)
1005 long size = get_memory_packet_size (&memory_read_packet_config);
1007 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1008 extra buffer size argument before the memory read size can be
1009 increased beyond this. */
1010 if (size > get_remote_packet_size ())
1011 size = get_remote_packet_size ();
1016 /* Generic configuration support for packets the stub optionally
1017 supports. Allows the user to specify the use of the packet as well
1018 as allowing GDB to auto-detect support in the remote stub. */
1022 PACKET_SUPPORT_UNKNOWN = 0,
1027 struct packet_config
1031 enum auto_boolean detect;
1032 enum packet_support support;
1035 /* Analyze a packet's return value and update the packet config
1046 update_packet_config (struct packet_config *config)
1048 switch (config->detect)
1050 case AUTO_BOOLEAN_TRUE:
1051 config->support = PACKET_ENABLE;
1053 case AUTO_BOOLEAN_FALSE:
1054 config->support = PACKET_DISABLE;
1056 case AUTO_BOOLEAN_AUTO:
1057 config->support = PACKET_SUPPORT_UNKNOWN;
1063 show_packet_config_cmd (struct packet_config *config)
1065 char *support = "internal-error";
1067 switch (config->support)
1070 support = "enabled";
1072 case PACKET_DISABLE:
1073 support = "disabled";
1075 case PACKET_SUPPORT_UNKNOWN:
1076 support = "unknown";
1079 switch (config->detect)
1081 case AUTO_BOOLEAN_AUTO:
1082 printf_filtered (_("Support for the `%s' packet "
1083 "is auto-detected, currently %s.\n"),
1084 config->name, support);
1086 case AUTO_BOOLEAN_TRUE:
1087 case AUTO_BOOLEAN_FALSE:
1088 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1089 config->name, support);
1095 add_packet_config_cmd (struct packet_config *config, const char *name,
1096 const char *title, int legacy)
1102 config->name = name;
1103 config->title = title;
1104 config->detect = AUTO_BOOLEAN_AUTO;
1105 config->support = PACKET_SUPPORT_UNKNOWN;
1106 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1108 show_doc = xstrprintf ("Show current use of remote "
1109 "protocol `%s' (%s) packet",
1111 /* set/show TITLE-packet {auto,on,off} */
1112 cmd_name = xstrprintf ("%s-packet", title);
1113 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1114 &config->detect, set_doc,
1115 show_doc, NULL, /* help_doc */
1116 set_remote_protocol_packet_cmd,
1117 show_remote_protocol_packet_cmd,
1118 &remote_set_cmdlist, &remote_show_cmdlist);
1119 /* The command code copies the documentation strings. */
1122 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1127 legacy_name = xstrprintf ("%s-packet", name);
1128 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1129 &remote_set_cmdlist);
1130 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1131 &remote_show_cmdlist);
1135 static enum packet_result
1136 packet_check_result (const char *buf)
1140 /* The stub recognized the packet request. Check that the
1141 operation succeeded. */
1143 && isxdigit (buf[1]) && isxdigit (buf[2])
1145 /* "Enn" - definitly an error. */
1146 return PACKET_ERROR;
1148 /* Always treat "E." as an error. This will be used for
1149 more verbose error messages, such as E.memtypes. */
1150 if (buf[0] == 'E' && buf[1] == '.')
1151 return PACKET_ERROR;
1153 /* The packet may or may not be OK. Just assume it is. */
1157 /* The stub does not support the packet. */
1158 return PACKET_UNKNOWN;
1161 static enum packet_result
1162 packet_ok (const char *buf, struct packet_config *config)
1164 enum packet_result result;
1166 result = packet_check_result (buf);
1171 /* The stub recognized the packet request. */
1172 switch (config->support)
1174 case PACKET_SUPPORT_UNKNOWN:
1176 fprintf_unfiltered (gdb_stdlog,
1177 "Packet %s (%s) is supported\n",
1178 config->name, config->title);
1179 config->support = PACKET_ENABLE;
1181 case PACKET_DISABLE:
1182 internal_error (__FILE__, __LINE__,
1183 _("packet_ok: attempt to use a disabled packet"));
1189 case PACKET_UNKNOWN:
1190 /* The stub does not support the packet. */
1191 switch (config->support)
1194 if (config->detect == AUTO_BOOLEAN_AUTO)
1195 /* If the stub previously indicated that the packet was
1196 supported then there is a protocol error.. */
1197 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1198 config->name, config->title);
1200 /* The user set it wrong. */
1201 error (_("Enabled packet %s (%s) not recognized by stub"),
1202 config->name, config->title);
1204 case PACKET_SUPPORT_UNKNOWN:
1206 fprintf_unfiltered (gdb_stdlog,
1207 "Packet %s (%s) is NOT supported\n",
1208 config->name, config->title);
1209 config->support = PACKET_DISABLE;
1211 case PACKET_DISABLE:
1233 PACKET_vFile_pwrite,
1235 PACKET_vFile_unlink,
1237 PACKET_qXfer_features,
1238 PACKET_qXfer_libraries,
1239 PACKET_qXfer_memory_map,
1240 PACKET_qXfer_spu_read,
1241 PACKET_qXfer_spu_write,
1242 PACKET_qXfer_osdata,
1243 PACKET_qXfer_threads,
1244 PACKET_qXfer_statictrace_read,
1245 PACKET_qXfer_traceframe_info,
1249 PACKET_QPassSignals,
1250 PACKET_qSearch_memory,
1253 PACKET_QStartNoAckMode,
1255 PACKET_qXfer_siginfo_read,
1256 PACKET_qXfer_siginfo_write,
1258 PACKET_ConditionalTracepoints,
1259 PACKET_FastTracepoints,
1260 PACKET_StaticTracepoints,
1263 PACKET_TracepointSource,
1268 static struct packet_config remote_protocol_packets[PACKET_MAX];
1271 set_remote_protocol_packet_cmd (char *args, int from_tty,
1272 struct cmd_list_element *c)
1274 struct packet_config *packet;
1276 for (packet = remote_protocol_packets;
1277 packet < &remote_protocol_packets[PACKET_MAX];
1280 if (&packet->detect == c->var)
1282 update_packet_config (packet);
1286 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1291 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1292 struct cmd_list_element *c,
1295 struct packet_config *packet;
1297 for (packet = remote_protocol_packets;
1298 packet < &remote_protocol_packets[PACKET_MAX];
1301 if (&packet->detect == c->var)
1303 show_packet_config_cmd (packet);
1307 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1311 /* Should we try one of the 'Z' requests? */
1315 Z_PACKET_SOFTWARE_BP,
1316 Z_PACKET_HARDWARE_BP,
1323 /* For compatibility with older distributions. Provide a ``set remote
1324 Z-packet ...'' command that updates all the Z packet types. */
1326 static enum auto_boolean remote_Z_packet_detect;
1329 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1330 struct cmd_list_element *c)
1334 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1336 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1337 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1342 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1343 struct cmd_list_element *c,
1348 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1350 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1354 /* Should we try the 'ThreadInfo' query packet?
1356 This variable (NOT available to the user: auto-detect only!)
1357 determines whether GDB will use the new, simpler "ThreadInfo"
1358 query or the older, more complex syntax for thread queries.
1359 This is an auto-detect variable (set to true at each connect,
1360 and set to false when the target fails to recognize it). */
1362 static int use_threadinfo_query;
1363 static int use_threadextra_query;
1365 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1366 static struct async_signal_handler *sigint_remote_twice_token;
1367 static struct async_signal_handler *sigint_remote_token;
1370 /* Asynchronous signal handle registered as event loop source for
1371 when we have pending events ready to be passed to the core. */
1373 static struct async_event_handler *remote_async_inferior_event_token;
1375 /* Asynchronous signal handle registered as event loop source for when
1376 the remote sent us a %Stop notification. The registered callback
1377 will do a vStopped sequence to pull the rest of the events out of
1378 the remote side into our event queue. */
1380 static struct async_event_handler *remote_async_get_pending_events_token;
1383 static ptid_t magic_null_ptid;
1384 static ptid_t not_sent_ptid;
1385 static ptid_t any_thread_ptid;
1387 /* These are the threads which we last sent to the remote system. The
1388 TID member will be -1 for all or -2 for not sent yet. */
1390 static ptid_t general_thread;
1391 static ptid_t continue_thread;
1393 /* This the traceframe which we last selected on the remote system.
1394 It will be -1 if no traceframe is selected. */
1395 static int remote_traceframe_number = -1;
1397 /* Find out if the stub attached to PID (and hence GDB should offer to
1398 detach instead of killing it when bailing out). */
1401 remote_query_attached (int pid)
1403 struct remote_state *rs = get_remote_state ();
1405 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1408 if (remote_multi_process_p (rs))
1409 sprintf (rs->buf, "qAttached:%x", pid);
1411 sprintf (rs->buf, "qAttached");
1414 getpkt (&rs->buf, &rs->buf_size, 0);
1416 switch (packet_ok (rs->buf,
1417 &remote_protocol_packets[PACKET_qAttached]))
1420 if (strcmp (rs->buf, "1") == 0)
1424 warning (_("Remote failure reply: %s"), rs->buf);
1426 case PACKET_UNKNOWN:
1433 /* Add PID to GDB's inferior table. Since we can be connected to a
1434 remote system before before knowing about any inferior, mark the
1435 target with execution when we find the first inferior. If ATTACHED
1436 is 1, then we had just attached to this inferior. If it is 0, then
1437 we just created this inferior. If it is -1, then try querying the
1438 remote stub to find out if it had attached to the inferior or
1441 static struct inferior *
1442 remote_add_inferior (int pid, int attached)
1444 struct inferior *inf;
1446 /* Check whether this process we're learning about is to be
1447 considered attached, or if is to be considered to have been
1448 spawned by the stub. */
1450 attached = remote_query_attached (pid);
1452 if (gdbarch_has_global_solist (target_gdbarch))
1454 /* If the target shares code across all inferiors, then every
1455 attach adds a new inferior. */
1456 inf = add_inferior (pid);
1458 /* ... and every inferior is bound to the same program space.
1459 However, each inferior may still have its own address
1461 inf->aspace = maybe_new_address_space ();
1462 inf->pspace = current_program_space;
1466 /* In the traditional debugging scenario, there's a 1-1 match
1467 between program/address spaces. We simply bind the inferior
1468 to the program space's address space. */
1469 inf = current_inferior ();
1470 inferior_appeared (inf, pid);
1473 inf->attach_flag = attached;
1478 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1479 according to RUNNING. */
1482 remote_add_thread (ptid_t ptid, int running)
1486 set_executing (ptid, running);
1487 set_running (ptid, running);
1490 /* Come here when we learn about a thread id from the remote target.
1491 It may be the first time we hear about such thread, so take the
1492 opportunity to add it to GDB's thread list. In case this is the
1493 first time we're noticing its corresponding inferior, add it to
1494 GDB's inferior list as well. */
1497 remote_notice_new_inferior (ptid_t currthread, int running)
1499 /* If this is a new thread, add it to GDB's thread list.
1500 If we leave it up to WFI to do this, bad things will happen. */
1502 if (in_thread_list (currthread) && is_exited (currthread))
1504 /* We're seeing an event on a thread id we knew had exited.
1505 This has to be a new thread reusing the old id. Add it. */
1506 remote_add_thread (currthread, running);
1510 if (!in_thread_list (currthread))
1512 struct inferior *inf = NULL;
1513 int pid = ptid_get_pid (currthread);
1515 if (ptid_is_pid (inferior_ptid)
1516 && pid == ptid_get_pid (inferior_ptid))
1518 /* inferior_ptid has no thread member yet. This can happen
1519 with the vAttach -> remote_wait,"TAAthread:" path if the
1520 stub doesn't support qC. This is the first stop reported
1521 after an attach, so this is the main thread. Update the
1522 ptid in the thread list. */
1523 if (in_thread_list (pid_to_ptid (pid)))
1524 thread_change_ptid (inferior_ptid, currthread);
1527 remote_add_thread (currthread, running);
1528 inferior_ptid = currthread;
1533 if (ptid_equal (magic_null_ptid, inferior_ptid))
1535 /* inferior_ptid is not set yet. This can happen with the
1536 vRun -> remote_wait,"TAAthread:" path if the stub
1537 doesn't support qC. This is the first stop reported
1538 after an attach, so this is the main thread. Update the
1539 ptid in the thread list. */
1540 thread_change_ptid (inferior_ptid, currthread);
1544 /* When connecting to a target remote, or to a target
1545 extended-remote which already was debugging an inferior, we
1546 may not know about it yet. Add it before adding its child
1547 thread, so notifications are emitted in a sensible order. */
1548 if (!in_inferior_list (ptid_get_pid (currthread)))
1549 inf = remote_add_inferior (ptid_get_pid (currthread), -1);
1551 /* This is really a new thread. Add it. */
1552 remote_add_thread (currthread, running);
1554 /* If we found a new inferior, let the common code do whatever
1555 it needs to with it (e.g., read shared libraries, insert
1558 notice_new_inferior (currthread, running, 0);
1562 /* Return the private thread data, creating it if necessary. */
1564 struct private_thread_info *
1565 demand_private_info (ptid_t ptid)
1567 struct thread_info *info = find_thread_ptid (ptid);
1573 info->private = xmalloc (sizeof (*(info->private)));
1574 info->private_dtor = free_private_thread_info;
1575 info->private->core = -1;
1576 info->private->extra = 0;
1579 return info->private;
1582 /* Call this function as a result of
1583 1) A halt indication (T packet) containing a thread id
1584 2) A direct query of currthread
1585 3) Successful execution of set thread */
1588 record_currthread (ptid_t currthread)
1590 general_thread = currthread;
1593 static char *last_pass_packet;
1595 /* If 'QPassSignals' is supported, tell the remote stub what signals
1596 it can simply pass through to the inferior without reporting. */
1599 remote_pass_signals (int numsigs, unsigned char *pass_signals)
1601 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1603 char *pass_packet, *p;
1606 gdb_assert (numsigs < 256);
1607 for (i = 0; i < numsigs; i++)
1609 if (pass_signals[i])
1612 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1613 strcpy (pass_packet, "QPassSignals:");
1614 p = pass_packet + strlen (pass_packet);
1615 for (i = 0; i < numsigs; i++)
1617 if (pass_signals[i])
1620 *p++ = tohex (i >> 4);
1621 *p++ = tohex (i & 15);
1630 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1632 struct remote_state *rs = get_remote_state ();
1633 char *buf = rs->buf;
1635 putpkt (pass_packet);
1636 getpkt (&rs->buf, &rs->buf_size, 0);
1637 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1638 if (last_pass_packet)
1639 xfree (last_pass_packet);
1640 last_pass_packet = pass_packet;
1643 xfree (pass_packet);
1647 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1648 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1649 thread. If GEN is set, set the general thread, if not, then set
1650 the step/continue thread. */
1652 set_thread (struct ptid ptid, int gen)
1654 struct remote_state *rs = get_remote_state ();
1655 ptid_t state = gen ? general_thread : continue_thread;
1656 char *buf = rs->buf;
1657 char *endbuf = rs->buf + get_remote_packet_size ();
1659 if (ptid_equal (state, ptid))
1663 *buf++ = gen ? 'g' : 'c';
1664 if (ptid_equal (ptid, magic_null_ptid))
1665 xsnprintf (buf, endbuf - buf, "0");
1666 else if (ptid_equal (ptid, any_thread_ptid))
1667 xsnprintf (buf, endbuf - buf, "0");
1668 else if (ptid_equal (ptid, minus_one_ptid))
1669 xsnprintf (buf, endbuf - buf, "-1");
1671 write_ptid (buf, endbuf, ptid);
1673 getpkt (&rs->buf, &rs->buf_size, 0);
1675 general_thread = ptid;
1677 continue_thread = ptid;
1681 set_general_thread (struct ptid ptid)
1683 set_thread (ptid, 1);
1687 set_continue_thread (struct ptid ptid)
1689 set_thread (ptid, 0);
1692 /* Change the remote current process. Which thread within the process
1693 ends up selected isn't important, as long as it is the same process
1694 as what INFERIOR_PTID points to.
1696 This comes from that fact that there is no explicit notion of
1697 "selected process" in the protocol. The selected process for
1698 general operations is the process the selected general thread
1702 set_general_process (void)
1704 struct remote_state *rs = get_remote_state ();
1706 /* If the remote can't handle multiple processes, don't bother. */
1707 if (!remote_multi_process_p (rs))
1710 /* We only need to change the remote current thread if it's pointing
1711 at some other process. */
1712 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1713 set_general_thread (inferior_ptid);
1717 /* Return nonzero if the thread PTID is still alive on the remote
1721 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1723 struct remote_state *rs = get_remote_state ();
1726 if (ptid_equal (ptid, magic_null_ptid))
1727 /* The main thread is always alive. */
1730 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1731 /* The main thread is always alive. This can happen after a
1732 vAttach, if the remote side doesn't support
1737 endp = rs->buf + get_remote_packet_size ();
1740 write_ptid (p, endp, ptid);
1743 getpkt (&rs->buf, &rs->buf_size, 0);
1744 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1747 /* About these extended threadlist and threadinfo packets. They are
1748 variable length packets but, the fields within them are often fixed
1749 length. They are redundent enough to send over UDP as is the
1750 remote protocol in general. There is a matching unit test module
1753 #define OPAQUETHREADBYTES 8
1755 /* a 64 bit opaque identifier */
1756 typedef unsigned char threadref[OPAQUETHREADBYTES];
1758 /* WARNING: This threadref data structure comes from the remote O.S.,
1759 libstub protocol encoding, and remote.c. It is not particularly
1762 /* Right now, the internal structure is int. We want it to be bigger.
1763 Plan to fix this. */
1765 typedef int gdb_threadref; /* Internal GDB thread reference. */
1767 /* gdb_ext_thread_info is an internal GDB data structure which is
1768 equivalent to the reply of the remote threadinfo packet. */
1770 struct gdb_ext_thread_info
1772 threadref threadid; /* External form of thread reference. */
1773 int active; /* Has state interesting to GDB?
1775 char display[256]; /* Brief state display, name,
1776 blocked/suspended. */
1777 char shortname[32]; /* To be used to name threads. */
1778 char more_display[256]; /* Long info, statistics, queue depth,
1782 /* The volume of remote transfers can be limited by submitting
1783 a mask containing bits specifying the desired information.
1784 Use a union of these values as the 'selection' parameter to
1785 get_thread_info. FIXME: Make these TAG names more thread specific. */
1787 #define TAG_THREADID 1
1788 #define TAG_EXISTS 2
1789 #define TAG_DISPLAY 4
1790 #define TAG_THREADNAME 8
1791 #define TAG_MOREDISPLAY 16
1793 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1795 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1797 static char *unpack_nibble (char *buf, int *val);
1799 static char *pack_nibble (char *buf, int nibble);
1801 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1803 static char *unpack_byte (char *buf, int *value);
1805 static char *pack_int (char *buf, int value);
1807 static char *unpack_int (char *buf, int *value);
1809 static char *unpack_string (char *src, char *dest, int length);
1811 static char *pack_threadid (char *pkt, threadref *id);
1813 static char *unpack_threadid (char *inbuf, threadref *id);
1815 void int_to_threadref (threadref *id, int value);
1817 static int threadref_to_int (threadref *ref);
1819 static void copy_threadref (threadref *dest, threadref *src);
1821 static int threadmatch (threadref *dest, threadref *src);
1823 static char *pack_threadinfo_request (char *pkt, int mode,
1826 static int remote_unpack_thread_info_response (char *pkt,
1827 threadref *expectedref,
1828 struct gdb_ext_thread_info
1832 static int remote_get_threadinfo (threadref *threadid,
1833 int fieldset, /*TAG mask */
1834 struct gdb_ext_thread_info *info);
1836 static char *pack_threadlist_request (char *pkt, int startflag,
1838 threadref *nextthread);
1840 static int parse_threadlist_response (char *pkt,
1842 threadref *original_echo,
1843 threadref *resultlist,
1846 static int remote_get_threadlist (int startflag,
1847 threadref *nextthread,
1851 threadref *threadlist);
1853 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1855 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1856 void *context, int looplimit);
1858 static int remote_newthread_step (threadref *ref, void *context);
1861 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1862 buffer we're allowed to write to. Returns
1863 BUF+CHARACTERS_WRITTEN. */
1866 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1869 struct remote_state *rs = get_remote_state ();
1871 if (remote_multi_process_p (rs))
1873 pid = ptid_get_pid (ptid);
1875 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1877 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1879 tid = ptid_get_tid (ptid);
1881 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1883 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1888 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1889 passed the last parsed char. Returns null_ptid on error. */
1892 read_ptid (char *buf, char **obuf)
1896 ULONGEST pid = 0, tid = 0;
1900 /* Multi-process ptid. */
1901 pp = unpack_varlen_hex (p + 1, &pid);
1903 error (_("invalid remote ptid: %s"), p);
1906 pp = unpack_varlen_hex (p + 1, &tid);
1909 return ptid_build (pid, 0, tid);
1912 /* No multi-process. Just a tid. */
1913 pp = unpack_varlen_hex (p, &tid);
1915 /* Since the stub is not sending a process id, then default to
1916 what's in inferior_ptid, unless it's null at this point. If so,
1917 then since there's no way to know the pid of the reported
1918 threads, use the magic number. */
1919 if (ptid_equal (inferior_ptid, null_ptid))
1920 pid = ptid_get_pid (magic_null_ptid);
1922 pid = ptid_get_pid (inferior_ptid);
1926 return ptid_build (pid, 0, tid);
1929 /* Encode 64 bits in 16 chars of hex. */
1931 static const char hexchars[] = "0123456789abcdef";
1934 ishex (int ch, int *val)
1936 if ((ch >= 'a') && (ch <= 'f'))
1938 *val = ch - 'a' + 10;
1941 if ((ch >= 'A') && (ch <= 'F'))
1943 *val = ch - 'A' + 10;
1946 if ((ch >= '0') && (ch <= '9'))
1957 if (ch >= 'a' && ch <= 'f')
1958 return ch - 'a' + 10;
1959 if (ch >= '0' && ch <= '9')
1961 if (ch >= 'A' && ch <= 'F')
1962 return ch - 'A' + 10;
1967 stub_unpack_int (char *buff, int fieldlength)
1974 nibble = stubhex (*buff++);
1978 retval = retval << 4;
1984 unpack_varlen_hex (char *buff, /* packet to parse */
1988 ULONGEST retval = 0;
1990 while (ishex (*buff, &nibble))
1993 retval = retval << 4;
1994 retval |= nibble & 0x0f;
2001 unpack_nibble (char *buf, int *val)
2003 *val = fromhex (*buf++);
2008 pack_nibble (char *buf, int nibble)
2010 *buf++ = hexchars[(nibble & 0x0f)];
2015 pack_hex_byte (char *pkt, int byte)
2017 *pkt++ = hexchars[(byte >> 4) & 0xf];
2018 *pkt++ = hexchars[(byte & 0xf)];
2023 unpack_byte (char *buf, int *value)
2025 *value = stub_unpack_int (buf, 2);
2030 pack_int (char *buf, int value)
2032 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2033 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2034 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2035 buf = pack_hex_byte (buf, (value & 0xff));
2040 unpack_int (char *buf, int *value)
2042 *value = stub_unpack_int (buf, 8);
2046 #if 0 /* Currently unused, uncomment when needed. */
2047 static char *pack_string (char *pkt, char *string);
2050 pack_string (char *pkt, char *string)
2055 len = strlen (string);
2057 len = 200; /* Bigger than most GDB packets, junk??? */
2058 pkt = pack_hex_byte (pkt, len);
2062 if ((ch == '\0') || (ch == '#'))
2063 ch = '*'; /* Protect encapsulation. */
2068 #endif /* 0 (unused) */
2071 unpack_string (char *src, char *dest, int length)
2080 pack_threadid (char *pkt, threadref *id)
2083 unsigned char *altid;
2085 altid = (unsigned char *) id;
2086 limit = pkt + BUF_THREAD_ID_SIZE;
2088 pkt = pack_hex_byte (pkt, *altid++);
2094 unpack_threadid (char *inbuf, threadref *id)
2097 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2100 altref = (char *) id;
2102 while (inbuf < limit)
2104 x = stubhex (*inbuf++);
2105 y = stubhex (*inbuf++);
2106 *altref++ = (x << 4) | y;
2111 /* Externally, threadrefs are 64 bits but internally, they are still
2112 ints. This is due to a mismatch of specifications. We would like
2113 to use 64bit thread references internally. This is an adapter
2117 int_to_threadref (threadref *id, int value)
2119 unsigned char *scan;
2121 scan = (unsigned char *) id;
2127 *scan++ = (value >> 24) & 0xff;
2128 *scan++ = (value >> 16) & 0xff;
2129 *scan++ = (value >> 8) & 0xff;
2130 *scan++ = (value & 0xff);
2134 threadref_to_int (threadref *ref)
2137 unsigned char *scan;
2143 value = (value << 8) | ((*scan++) & 0xff);
2148 copy_threadref (threadref *dest, threadref *src)
2151 unsigned char *csrc, *cdest;
2153 csrc = (unsigned char *) src;
2154 cdest = (unsigned char *) dest;
2161 threadmatch (threadref *dest, threadref *src)
2163 /* Things are broken right now, so just assume we got a match. */
2165 unsigned char *srcp, *destp;
2167 srcp = (char *) src;
2168 destp = (char *) dest;
2172 result &= (*srcp++ == *destp++) ? 1 : 0;
2179 threadid:1, # always request threadid
2186 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2189 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2191 *pkt++ = 'q'; /* Info Query */
2192 *pkt++ = 'P'; /* process or thread info */
2193 pkt = pack_int (pkt, mode); /* mode */
2194 pkt = pack_threadid (pkt, id); /* threadid */
2195 *pkt = '\0'; /* terminate */
2199 /* These values tag the fields in a thread info response packet. */
2200 /* Tagging the fields allows us to request specific fields and to
2201 add more fields as time goes by. */
2203 #define TAG_THREADID 1 /* Echo the thread identifier. */
2204 #define TAG_EXISTS 2 /* Is this process defined enough to
2205 fetch registers and its stack? */
2206 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2207 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2208 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2212 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2213 struct gdb_ext_thread_info *info)
2215 struct remote_state *rs = get_remote_state ();
2219 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2222 /* info->threadid = 0; FIXME: implement zero_threadref. */
2224 info->display[0] = '\0';
2225 info->shortname[0] = '\0';
2226 info->more_display[0] = '\0';
2228 /* Assume the characters indicating the packet type have been
2230 pkt = unpack_int (pkt, &mask); /* arg mask */
2231 pkt = unpack_threadid (pkt, &ref);
2234 warning (_("Incomplete response to threadinfo request."));
2235 if (!threadmatch (&ref, expectedref))
2236 { /* This is an answer to a different request. */
2237 warning (_("ERROR RMT Thread info mismatch."));
2240 copy_threadref (&info->threadid, &ref);
2242 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2244 /* Packets are terminated with nulls. */
2245 while ((pkt < limit) && mask && *pkt)
2247 pkt = unpack_int (pkt, &tag); /* tag */
2248 pkt = unpack_byte (pkt, &length); /* length */
2249 if (!(tag & mask)) /* Tags out of synch with mask. */
2251 warning (_("ERROR RMT: threadinfo tag mismatch."));
2255 if (tag == TAG_THREADID)
2259 warning (_("ERROR RMT: length of threadid is not 16."));
2263 pkt = unpack_threadid (pkt, &ref);
2264 mask = mask & ~TAG_THREADID;
2267 if (tag == TAG_EXISTS)
2269 info->active = stub_unpack_int (pkt, length);
2271 mask = mask & ~(TAG_EXISTS);
2274 warning (_("ERROR RMT: 'exists' length too long."));
2280 if (tag == TAG_THREADNAME)
2282 pkt = unpack_string (pkt, &info->shortname[0], length);
2283 mask = mask & ~TAG_THREADNAME;
2286 if (tag == TAG_DISPLAY)
2288 pkt = unpack_string (pkt, &info->display[0], length);
2289 mask = mask & ~TAG_DISPLAY;
2292 if (tag == TAG_MOREDISPLAY)
2294 pkt = unpack_string (pkt, &info->more_display[0], length);
2295 mask = mask & ~TAG_MOREDISPLAY;
2298 warning (_("ERROR RMT: unknown thread info tag."));
2299 break; /* Not a tag we know about. */
2305 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2306 struct gdb_ext_thread_info *info)
2308 struct remote_state *rs = get_remote_state ();
2311 pack_threadinfo_request (rs->buf, fieldset, threadid);
2313 getpkt (&rs->buf, &rs->buf_size, 0);
2315 if (rs->buf[0] == '\0')
2318 result = remote_unpack_thread_info_response (rs->buf + 2,
2323 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2326 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2327 threadref *nextthread)
2329 *pkt++ = 'q'; /* info query packet */
2330 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2331 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2332 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2333 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2338 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2341 parse_threadlist_response (char *pkt, int result_limit,
2342 threadref *original_echo, threadref *resultlist,
2345 struct remote_state *rs = get_remote_state ();
2347 int count, resultcount, done;
2350 /* Assume the 'q' and 'M chars have been stripped. */
2351 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2352 /* done parse past here */
2353 pkt = unpack_byte (pkt, &count); /* count field */
2354 pkt = unpack_nibble (pkt, &done);
2355 /* The first threadid is the argument threadid. */
2356 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2357 while ((count-- > 0) && (pkt < limit))
2359 pkt = unpack_threadid (pkt, resultlist++);
2360 if (resultcount++ >= result_limit)
2369 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2370 int *done, int *result_count, threadref *threadlist)
2372 struct remote_state *rs = get_remote_state ();
2373 static threadref echo_nextthread;
2376 /* Trancate result limit to be smaller than the packet size. */
2377 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2378 >= get_remote_packet_size ())
2379 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2381 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2383 getpkt (&rs->buf, &rs->buf_size, 0);
2385 if (*rs->buf == '\0')
2389 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2392 if (!threadmatch (&echo_nextthread, nextthread))
2394 /* FIXME: This is a good reason to drop the packet. */
2395 /* Possably, there is a duplicate response. */
2397 retransmit immediatly - race conditions
2398 retransmit after timeout - yes
2400 wait for packet, then exit
2402 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2403 return 0; /* I choose simply exiting. */
2405 if (*result_count <= 0)
2409 warning (_("RMT ERROR : failed to get remote thread list."));
2412 return result; /* break; */
2414 if (*result_count > result_limit)
2417 warning (_("RMT ERROR: threadlist response longer than requested."));
2423 /* This is the interface between remote and threads, remotes upper
2426 /* remote_find_new_threads retrieves the thread list and for each
2427 thread in the list, looks up the thread in GDB's internal list,
2428 adding the thread if it does not already exist. This involves
2429 getting partial thread lists from the remote target so, polling the
2430 quit_flag is required. */
2433 /* About this many threadisds fit in a packet. */
2435 #define MAXTHREADLISTRESULTS 32
2438 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2441 int done, i, result_count;
2445 static threadref nextthread;
2446 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2451 if (loopcount++ > looplimit)
2454 warning (_("Remote fetch threadlist -infinite loop-."));
2457 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2458 &done, &result_count, resultthreadlist))
2463 /* Clear for later iterations. */
2465 /* Setup to resume next batch of thread references, set nextthread. */
2466 if (result_count >= 1)
2467 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2469 while (result_count--)
2470 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2477 remote_newthread_step (threadref *ref, void *context)
2479 int pid = ptid_get_pid (inferior_ptid);
2480 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2482 if (!in_thread_list (ptid))
2484 return 1; /* continue iterator */
2487 #define CRAZY_MAX_THREADS 1000
2490 remote_current_thread (ptid_t oldpid)
2492 struct remote_state *rs = get_remote_state ();
2495 getpkt (&rs->buf, &rs->buf_size, 0);
2496 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2497 return read_ptid (&rs->buf[2], NULL);
2502 /* Find new threads for info threads command.
2503 * Original version, using John Metzler's thread protocol.
2507 remote_find_new_threads (void)
2509 remote_threadlist_iterator (remote_newthread_step, 0,
2513 #if defined(HAVE_LIBEXPAT)
2515 typedef struct thread_item
2521 DEF_VEC_O(thread_item_t);
2523 struct threads_parsing_context
2525 VEC (thread_item_t) *items;
2529 start_thread (struct gdb_xml_parser *parser,
2530 const struct gdb_xml_element *element,
2531 void *user_data, VEC(gdb_xml_value_s) *attributes)
2533 struct threads_parsing_context *data = user_data;
2535 struct thread_item item;
2537 struct gdb_xml_value *attr;
2539 id = xml_find_attribute (attributes, "id")->value;
2540 item.ptid = read_ptid (id, NULL);
2542 attr = xml_find_attribute (attributes, "core");
2544 item.core = *(ULONGEST *) attr->value;
2550 VEC_safe_push (thread_item_t, data->items, &item);
2554 end_thread (struct gdb_xml_parser *parser,
2555 const struct gdb_xml_element *element,
2556 void *user_data, const char *body_text)
2558 struct threads_parsing_context *data = user_data;
2560 if (body_text && *body_text)
2561 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
2564 const struct gdb_xml_attribute thread_attributes[] = {
2565 { "id", GDB_XML_AF_NONE, NULL, NULL },
2566 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2567 { NULL, GDB_XML_AF_NONE, NULL, NULL }
2570 const struct gdb_xml_element thread_children[] = {
2571 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2574 const struct gdb_xml_element threads_children[] = {
2575 { "thread", thread_attributes, thread_children,
2576 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2577 start_thread, end_thread },
2578 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2581 const struct gdb_xml_element threads_elements[] = {
2582 { "threads", NULL, threads_children,
2583 GDB_XML_EF_NONE, NULL, NULL },
2584 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2587 /* Discard the contents of the constructed thread info context. */
2590 clear_threads_parsing_context (void *p)
2592 struct threads_parsing_context *context = p;
2594 struct thread_item *item;
2596 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2597 xfree (item->extra);
2599 VEC_free (thread_item_t, context->items);
2605 * Find all threads for info threads command.
2606 * Uses new thread protocol contributed by Cisco.
2607 * Falls back and attempts to use the older method (above)
2608 * if the target doesn't respond to the new method.
2612 remote_threads_info (struct target_ops *ops)
2614 struct remote_state *rs = get_remote_state ();
2618 if (remote_desc == 0) /* paranoia */
2619 error (_("Command can only be used when connected to the remote target."));
2621 #if defined(HAVE_LIBEXPAT)
2622 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2624 char *xml = target_read_stralloc (¤t_target,
2625 TARGET_OBJECT_THREADS, NULL);
2627 struct cleanup *back_to = make_cleanup (xfree, xml);
2631 struct threads_parsing_context context;
2633 context.items = NULL;
2634 make_cleanup (clear_threads_parsing_context, &context);
2636 if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2637 threads_elements, xml, &context) == 0)
2640 struct thread_item *item;
2643 VEC_iterate (thread_item_t, context.items, i, item);
2646 if (!ptid_equal (item->ptid, null_ptid))
2648 struct private_thread_info *info;
2649 /* In non-stop mode, we assume new found threads
2650 are running until proven otherwise with a
2651 stop reply. In all-stop, we can only get
2652 here if all threads are stopped. */
2653 int running = non_stop ? 1 : 0;
2655 remote_notice_new_inferior (item->ptid, running);
2657 info = demand_private_info (item->ptid);
2658 info->core = item->core;
2659 info->extra = item->extra;
2666 do_cleanups (back_to);
2671 if (use_threadinfo_query)
2673 putpkt ("qfThreadInfo");
2674 getpkt (&rs->buf, &rs->buf_size, 0);
2676 if (bufp[0] != '\0') /* q packet recognized */
2678 while (*bufp++ == 'm') /* reply contains one or more TID */
2682 new_thread = read_ptid (bufp, &bufp);
2683 if (!ptid_equal (new_thread, null_ptid))
2685 /* In non-stop mode, we assume new found threads
2686 are running until proven otherwise with a
2687 stop reply. In all-stop, we can only get
2688 here if all threads are stopped. */
2689 int running = non_stop ? 1 : 0;
2691 remote_notice_new_inferior (new_thread, running);
2694 while (*bufp++ == ','); /* comma-separated list */
2695 putpkt ("qsThreadInfo");
2696 getpkt (&rs->buf, &rs->buf_size, 0);
2703 /* Only qfThreadInfo is supported in non-stop mode. */
2707 /* Else fall back to old method based on jmetzler protocol. */
2708 use_threadinfo_query = 0;
2709 remote_find_new_threads ();
2714 * Collect a descriptive string about the given thread.
2715 * The target may say anything it wants to about the thread
2716 * (typically info about its blocked / runnable state, name, etc.).
2717 * This string will appear in the info threads display.
2719 * Optional: targets are not required to implement this function.
2723 remote_threads_extra_info (struct thread_info *tp)
2725 struct remote_state *rs = get_remote_state ();
2729 struct gdb_ext_thread_info threadinfo;
2730 static char display_buf[100]; /* arbitrary... */
2731 int n = 0; /* position in display_buf */
2733 if (remote_desc == 0) /* paranoia */
2734 internal_error (__FILE__, __LINE__,
2735 _("remote_threads_extra_info"));
2737 if (ptid_equal (tp->ptid, magic_null_ptid)
2738 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2739 /* This is the main thread which was added by GDB. The remote
2740 server doesn't know about it. */
2743 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2745 struct thread_info *info = find_thread_ptid (tp->ptid);
2747 if (info && info->private)
2748 return info->private->extra;
2753 if (use_threadextra_query)
2756 char *endb = rs->buf + get_remote_packet_size ();
2758 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2760 write_ptid (b, endb, tp->ptid);
2763 getpkt (&rs->buf, &rs->buf_size, 0);
2764 if (rs->buf[0] != 0)
2766 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2767 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2768 display_buf [result] = '\0';
2773 /* If the above query fails, fall back to the old method. */
2774 use_threadextra_query = 0;
2775 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2776 | TAG_MOREDISPLAY | TAG_DISPLAY;
2777 int_to_threadref (&id, ptid_get_tid (tp->ptid));
2778 if (remote_get_threadinfo (&id, set, &threadinfo))
2779 if (threadinfo.active)
2781 if (*threadinfo.shortname)
2782 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2783 " Name: %s,", threadinfo.shortname);
2784 if (*threadinfo.display)
2785 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2786 " State: %s,", threadinfo.display);
2787 if (*threadinfo.more_display)
2788 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2789 " Priority: %s", threadinfo.more_display);
2793 /* For purely cosmetic reasons, clear up trailing commas. */
2794 if (',' == display_buf[n-1])
2795 display_buf[n-1] = ' ';
2804 remote_static_tracepoint_marker_at (CORE_ADDR addr,
2805 struct static_tracepoint_marker *marker)
2807 struct remote_state *rs = get_remote_state ();
2810 sprintf (p, "qTSTMat:");
2812 p += hexnumstr (p, addr);
2814 getpkt (&rs->buf, &rs->buf_size, 0);
2818 error (_("Remote failure reply: %s"), p);
2822 parse_static_tracepoint_marker_definition (p, &p, marker);
2830 free_current_marker (void *arg)
2832 struct static_tracepoint_marker **marker_p = arg;
2834 if (*marker_p != NULL)
2836 release_static_tracepoint_marker (*marker_p);
2843 static VEC(static_tracepoint_marker_p) *
2844 remote_static_tracepoint_markers_by_strid (const char *strid)
2846 struct remote_state *rs = get_remote_state ();
2847 VEC(static_tracepoint_marker_p) *markers = NULL;
2848 struct static_tracepoint_marker *marker = NULL;
2849 struct cleanup *old_chain;
2852 /* Ask for a first packet of static tracepoint marker
2855 getpkt (&rs->buf, &rs->buf_size, 0);
2858 error (_("Remote failure reply: %s"), p);
2860 old_chain = make_cleanup (free_current_marker, &marker);
2865 marker = XCNEW (struct static_tracepoint_marker);
2869 parse_static_tracepoint_marker_definition (p, &p, marker);
2871 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
2873 VEC_safe_push (static_tracepoint_marker_p,
2879 release_static_tracepoint_marker (marker);
2880 memset (marker, 0, sizeof (*marker));
2883 while (*p++ == ','); /* comma-separated list */
2884 /* Ask for another packet of static tracepoint definition. */
2886 getpkt (&rs->buf, &rs->buf_size, 0);
2890 do_cleanups (old_chain);
2895 /* Implement the to_get_ada_task_ptid function for the remote targets. */
2898 remote_get_ada_task_ptid (long lwp, long thread)
2900 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2904 /* Restart the remote side; this is an extended protocol operation. */
2907 extended_remote_restart (void)
2909 struct remote_state *rs = get_remote_state ();
2911 /* Send the restart command; for reasons I don't understand the
2912 remote side really expects a number after the "R". */
2913 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
2916 remote_fileio_reset ();
2919 /* Clean up connection to a remote debugger. */
2922 remote_close (int quitting)
2924 if (remote_desc == NULL)
2925 return; /* already closed */
2927 /* Make sure we leave stdin registered in the event loop, and we
2928 don't leave the async SIGINT signal handler installed. */
2929 remote_terminal_ours ();
2931 serial_close (remote_desc);
2934 /* We don't have a connection to the remote stub anymore. Get rid
2935 of all the inferiors and their threads we were controlling.
2936 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
2937 will be unable to find the thread corresponding to (pid, 0, 0). */
2938 inferior_ptid = null_ptid;
2939 discard_all_inferiors ();
2941 /* We're no longer interested in any of these events. */
2942 discard_pending_stop_replies (-1);
2944 if (remote_async_inferior_event_token)
2945 delete_async_event_handler (&remote_async_inferior_event_token);
2946 if (remote_async_get_pending_events_token)
2947 delete_async_event_handler (&remote_async_get_pending_events_token);
2950 /* Query the remote side for the text, data and bss offsets. */
2955 struct remote_state *rs = get_remote_state ();
2958 int lose, num_segments = 0, do_sections, do_segments;
2959 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
2960 struct section_offsets *offs;
2961 struct symfile_segment_data *data;
2963 if (symfile_objfile == NULL)
2966 putpkt ("qOffsets");
2967 getpkt (&rs->buf, &rs->buf_size, 0);
2970 if (buf[0] == '\000')
2971 return; /* Return silently. Stub doesn't support
2975 warning (_("Remote failure reply: %s"), buf);
2979 /* Pick up each field in turn. This used to be done with scanf, but
2980 scanf will make trouble if CORE_ADDR size doesn't match
2981 conversion directives correctly. The following code will work
2982 with any size of CORE_ADDR. */
2983 text_addr = data_addr = bss_addr = 0;
2987 if (strncmp (ptr, "Text=", 5) == 0)
2990 /* Don't use strtol, could lose on big values. */
2991 while (*ptr && *ptr != ';')
2992 text_addr = (text_addr << 4) + fromhex (*ptr++);
2994 if (strncmp (ptr, ";Data=", 6) == 0)
2997 while (*ptr && *ptr != ';')
2998 data_addr = (data_addr << 4) + fromhex (*ptr++);
3003 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
3006 while (*ptr && *ptr != ';')
3007 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3009 if (bss_addr != data_addr)
3010 warning (_("Target reported unsupported offsets: %s"), buf);
3015 else if (strncmp (ptr, "TextSeg=", 8) == 0)
3018 /* Don't use strtol, could lose on big values. */
3019 while (*ptr && *ptr != ';')
3020 text_addr = (text_addr << 4) + fromhex (*ptr++);
3023 if (strncmp (ptr, ";DataSeg=", 9) == 0)
3026 while (*ptr && *ptr != ';')
3027 data_addr = (data_addr << 4) + fromhex (*ptr++);
3035 error (_("Malformed response to offset query, %s"), buf);
3036 else if (*ptr != '\0')
3037 warning (_("Target reported unsupported offsets: %s"), buf);
3039 offs = ((struct section_offsets *)
3040 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3041 memcpy (offs, symfile_objfile->section_offsets,
3042 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3044 data = get_symfile_segment_data (symfile_objfile->obfd);
3045 do_segments = (data != NULL);
3046 do_sections = num_segments == 0;
3048 if (num_segments > 0)
3050 segments[0] = text_addr;
3051 segments[1] = data_addr;
3053 /* If we have two segments, we can still try to relocate everything
3054 by assuming that the .text and .data offsets apply to the whole
3055 text and data segments. Convert the offsets given in the packet
3056 to base addresses for symfile_map_offsets_to_segments. */
3057 else if (data && data->num_segments == 2)
3059 segments[0] = data->segment_bases[0] + text_addr;
3060 segments[1] = data->segment_bases[1] + data_addr;
3063 /* If the object file has only one segment, assume that it is text
3064 rather than data; main programs with no writable data are rare,
3065 but programs with no code are useless. Of course the code might
3066 have ended up in the data segment... to detect that we would need
3067 the permissions here. */
3068 else if (data && data->num_segments == 1)
3070 segments[0] = data->segment_bases[0] + text_addr;
3073 /* There's no way to relocate by segment. */
3079 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3080 offs, num_segments, segments);
3082 if (ret == 0 && !do_sections)
3083 error (_("Can not handle qOffsets TextSeg "
3084 "response with this symbol file"));
3091 free_symfile_segment_data (data);
3095 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3097 /* This is a temporary kludge to force data and bss to use the
3098 same offsets because that's what nlmconv does now. The real
3099 solution requires changes to the stub and remote.c that I
3100 don't have time to do right now. */
3102 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3103 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3106 objfile_relocate (symfile_objfile, offs);
3109 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
3110 threads we know are stopped already. This is used during the
3111 initial remote connection in non-stop mode --- threads that are
3112 reported as already being stopped are left stopped. */
3115 set_stop_requested_callback (struct thread_info *thread, void *data)
3117 /* If we have a stop reply for this thread, it must be stopped. */
3118 if (peek_stop_reply (thread->ptid))
3119 set_stop_requested (thread->ptid, 1);
3124 /* Send interrupt_sequence to remote target. */
3126 send_interrupt_sequence (void)
3128 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3129 serial_write (remote_desc, "\x03", 1);
3130 else if (interrupt_sequence_mode == interrupt_sequence_break)
3131 serial_send_break (remote_desc);
3132 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3134 serial_send_break (remote_desc);
3135 serial_write (remote_desc, "g", 1);
3138 internal_error (__FILE__, __LINE__,
3139 _("Invalid value for interrupt_sequence_mode: %s."),
3140 interrupt_sequence_mode);
3144 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
3146 struct remote_state *rs = get_remote_state ();
3147 struct packet_config *noack_config;
3148 char *wait_status = NULL;
3150 immediate_quit++; /* Allow user to interrupt it. */
3152 if (interrupt_on_connect)
3153 send_interrupt_sequence ();
3155 /* Ack any packet which the remote side has already sent. */
3156 serial_write (remote_desc, "+", 1);
3158 /* The first packet we send to the target is the optional "supported
3159 packets" request. If the target can answer this, it will tell us
3160 which later probes to skip. */
3161 remote_query_supported ();
3163 /* If the stub wants to get a QAllow, compose one and send it. */
3164 if (remote_protocol_packets[PACKET_QAllow].support != PACKET_DISABLE)
3165 remote_set_permissions ();
3167 /* Next, we possibly activate noack mode.
3169 If the QStartNoAckMode packet configuration is set to AUTO,
3170 enable noack mode if the stub reported a wish for it with
3173 If set to TRUE, then enable noack mode even if the stub didn't
3174 report it in qSupported. If the stub doesn't reply OK, the
3175 session ends with an error.
3177 If FALSE, then don't activate noack mode, regardless of what the
3178 stub claimed should be the default with qSupported. */
3180 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3182 if (noack_config->detect == AUTO_BOOLEAN_TRUE
3183 || (noack_config->detect == AUTO_BOOLEAN_AUTO
3184 && noack_config->support == PACKET_ENABLE))
3186 putpkt ("QStartNoAckMode");
3187 getpkt (&rs->buf, &rs->buf_size, 0);
3188 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3194 /* Tell the remote that we are using the extended protocol. */
3196 getpkt (&rs->buf, &rs->buf_size, 0);
3199 /* Next, if the target can specify a description, read it. We do
3200 this before anything involving memory or registers. */
3201 target_find_description ();
3203 /* Next, now that we know something about the target, update the
3204 address spaces in the program spaces. */
3205 update_address_spaces ();
3207 /* On OSs where the list of libraries is global to all
3208 processes, we fetch them early. */
3209 if (gdbarch_has_global_solist (target_gdbarch))
3210 solib_add (NULL, from_tty, target, auto_solib_add);
3214 if (!rs->non_stop_aware)
3215 error (_("Non-stop mode requested, but remote "
3216 "does not support non-stop"));
3218 putpkt ("QNonStop:1");
3219 getpkt (&rs->buf, &rs->buf_size, 0);
3221 if (strcmp (rs->buf, "OK") != 0)
3222 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
3224 /* Find about threads and processes the stub is already
3225 controlling. We default to adding them in the running state.
3226 The '?' query below will then tell us about which threads are
3228 remote_threads_info (target);
3230 else if (rs->non_stop_aware)
3232 /* Don't assume that the stub can operate in all-stop mode.
3233 Request it explicitely. */
3234 putpkt ("QNonStop:0");
3235 getpkt (&rs->buf, &rs->buf_size, 0);
3237 if (strcmp (rs->buf, "OK") != 0)
3238 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
3241 /* Check whether the target is running now. */
3243 getpkt (&rs->buf, &rs->buf_size, 0);
3247 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
3250 error (_("The target is not running (try extended-remote?)"));
3252 /* We're connected, but not running. Drop out before we
3253 call start_remote. */
3258 /* Save the reply for later. */
3259 wait_status = alloca (strlen (rs->buf) + 1);
3260 strcpy (wait_status, rs->buf);
3263 /* Let the stub know that we want it to return the thread. */
3264 set_continue_thread (minus_one_ptid);
3266 /* Without this, some commands which require an active target
3267 (such as kill) won't work. This variable serves (at least)
3268 double duty as both the pid of the target process (if it has
3269 such), and as a flag indicating that a target is active.
3270 These functions should be split out into seperate variables,
3271 especially since GDB will someday have a notion of debugging
3272 several processes. */
3273 inferior_ptid = magic_null_ptid;
3275 /* Now, if we have thread information, update inferior_ptid. */
3276 inferior_ptid = remote_current_thread (inferior_ptid);
3278 remote_add_inferior (ptid_get_pid (inferior_ptid), -1);
3280 /* Always add the main thread. */
3281 add_thread_silent (inferior_ptid);
3283 get_offsets (); /* Get text, data & bss offsets. */
3285 /* If we could not find a description using qXfer, and we know
3286 how to do it some other way, try again. This is not
3287 supported for non-stop; it could be, but it is tricky if
3288 there are no stopped threads when we connect. */
3289 if (remote_read_description_p (target)
3290 && gdbarch_target_desc (target_gdbarch) == NULL)
3292 target_clear_description ();
3293 target_find_description ();
3296 /* Use the previously fetched status. */
3297 gdb_assert (wait_status != NULL);
3298 strcpy (rs->buf, wait_status);
3299 rs->cached_wait_status = 1;
3302 start_remote (from_tty); /* Initialize gdb process mechanisms. */
3306 /* Clear WFI global state. Do this before finding about new
3307 threads and inferiors, and setting the current inferior.
3308 Otherwise we would clear the proceed status of the current
3309 inferior when we want its stop_soon state to be preserved
3310 (see notice_new_inferior). */
3311 init_wait_for_inferior ();
3313 /* In non-stop, we will either get an "OK", meaning that there
3314 are no stopped threads at this time; or, a regular stop
3315 reply. In the latter case, there may be more than one thread
3316 stopped --- we pull them all out using the vStopped
3318 if (strcmp (rs->buf, "OK") != 0)
3320 struct stop_reply *stop_reply;
3321 struct cleanup *old_chain;
3323 stop_reply = stop_reply_xmalloc ();
3324 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3326 remote_parse_stop_reply (rs->buf, stop_reply);
3327 discard_cleanups (old_chain);
3329 /* get_pending_stop_replies acks this one, and gets the rest
3331 pending_stop_reply = stop_reply;
3332 remote_get_pending_stop_replies ();
3334 /* Make sure that threads that were stopped remain
3336 iterate_over_threads (set_stop_requested_callback, NULL);
3339 if (target_can_async_p ())
3340 target_async (inferior_event_handler, 0);
3342 if (thread_count () == 0)
3345 error (_("The target is not running (try extended-remote?)"));
3347 /* We're connected, but not running. Drop out before we
3348 call start_remote. */
3352 /* Let the stub know that we want it to return the thread. */
3354 /* Force the stub to choose a thread. */
3355 set_general_thread (null_ptid);
3358 inferior_ptid = remote_current_thread (minus_one_ptid);
3359 if (ptid_equal (inferior_ptid, minus_one_ptid))
3360 error (_("remote didn't report the current thread in non-stop mode"));
3362 get_offsets (); /* Get text, data & bss offsets. */
3364 /* In non-stop mode, any cached wait status will be stored in
3365 the stop reply queue. */
3366 gdb_assert (wait_status == NULL);
3368 /* Report all signals during attach/startup. */
3369 remote_pass_signals (0, NULL);
3372 /* If we connected to a live target, do some additional setup. */
3373 if (target_has_execution)
3375 if (exec_bfd) /* No use without an exec file. */
3376 remote_check_symbols (symfile_objfile);
3379 /* Possibly the target has been engaged in a trace run started
3380 previously; find out where things are at. */
3381 if (remote_get_trace_status (current_trace_status ()) != -1)
3383 struct uploaded_tp *uploaded_tps = NULL;
3384 struct uploaded_tsv *uploaded_tsvs = NULL;
3386 if (current_trace_status ()->running)
3387 printf_filtered (_("Trace is already running on the target.\n"));
3389 /* Get trace state variables first, they may be checked when
3390 parsing uploaded commands. */
3392 remote_upload_trace_state_variables (&uploaded_tsvs);
3394 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3396 remote_upload_tracepoints (&uploaded_tps);
3398 merge_uploaded_tracepoints (&uploaded_tps);
3401 /* If breakpoints are global, insert them now. */
3402 if (gdbarch_has_global_breakpoints (target_gdbarch)
3403 && breakpoints_always_inserted_mode ())
3404 insert_breakpoints ();
3407 /* Open a connection to a remote debugger.
3408 NAME is the filename used for communication. */
3411 remote_open (char *name, int from_tty)
3413 remote_open_1 (name, from_tty, &remote_ops, 0);
3416 /* Open a connection to a remote debugger using the extended
3417 remote gdb protocol. NAME is the filename used for communication. */
3420 extended_remote_open (char *name, int from_tty)
3422 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
3425 /* Generic code for opening a connection to a remote target. */
3428 init_all_packet_configs (void)
3432 for (i = 0; i < PACKET_MAX; i++)
3433 update_packet_config (&remote_protocol_packets[i]);
3436 /* Symbol look-up. */
3439 remote_check_symbols (struct objfile *objfile)
3441 struct remote_state *rs = get_remote_state ();
3442 char *msg, *reply, *tmp;
3443 struct minimal_symbol *sym;
3446 /* The remote side has no concept of inferiors that aren't running
3447 yet, it only knows about running processes. If we're connected
3448 but our current inferior is not running, we should not invite the
3449 remote target to request symbol lookups related to its
3450 (unrelated) current process. */
3451 if (!target_has_execution)
3454 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
3457 /* Make sure the remote is pointing at the right process. Note
3458 there's no way to select "no process". */
3459 set_general_process ();
3461 /* Allocate a message buffer. We can't reuse the input buffer in RS,
3462 because we need both at the same time. */
3463 msg = alloca (get_remote_packet_size ());
3465 /* Invite target to request symbol lookups. */
3467 putpkt ("qSymbol::");
3468 getpkt (&rs->buf, &rs->buf_size, 0);
3469 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
3472 while (strncmp (reply, "qSymbol:", 8) == 0)
3475 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
3477 sym = lookup_minimal_symbol (msg, NULL, NULL);
3479 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
3482 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
3483 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
3485 /* If this is a function address, return the start of code
3486 instead of any data function descriptor. */
3487 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
3491 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
3492 phex_nz (sym_addr, addr_size), &reply[8]);
3496 getpkt (&rs->buf, &rs->buf_size, 0);
3501 static struct serial *
3502 remote_serial_open (char *name)
3504 static int udp_warning = 0;
3506 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
3507 of in ser-tcp.c, because it is the remote protocol assuming that the
3508 serial connection is reliable and not the serial connection promising
3510 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
3512 warning (_("The remote protocol may be unreliable over UDP.\n"
3513 "Some events may be lost, rendering further debugging "
3518 return serial_open (name);
3521 /* Inform the target of our permission settings. The permission flags
3522 work without this, but if the target knows the settings, it can do
3523 a couple things. First, it can add its own check, to catch cases
3524 that somehow manage to get by the permissions checks in target
3525 methods. Second, if the target is wired to disallow particular
3526 settings (for instance, a system in the field that is not set up to
3527 be able to stop at a breakpoint), it can object to any unavailable
3531 remote_set_permissions (void)
3533 struct remote_state *rs = get_remote_state ();
3535 sprintf (rs->buf, "QAllow:"
3536 "WriteReg:%x;WriteMem:%x;"
3537 "InsertBreak:%x;InsertTrace:%x;"
3538 "InsertFastTrace:%x;Stop:%x",
3539 may_write_registers, may_write_memory,
3540 may_insert_breakpoints, may_insert_tracepoints,
3541 may_insert_fast_tracepoints, may_stop);
3543 getpkt (&rs->buf, &rs->buf_size, 0);
3545 /* If the target didn't like the packet, warn the user. Do not try
3546 to undo the user's settings, that would just be maddening. */
3547 if (strcmp (rs->buf, "OK") != 0)
3548 warning (_("Remote refused setting permissions with: %s"), rs->buf);
3551 /* This type describes each known response to the qSupported
3553 struct protocol_feature
3555 /* The name of this protocol feature. */
3558 /* The default for this protocol feature. */
3559 enum packet_support default_support;
3561 /* The function to call when this feature is reported, or after
3562 qSupported processing if the feature is not supported.
3563 The first argument points to this structure. The second
3564 argument indicates whether the packet requested support be
3565 enabled, disabled, or probed (or the default, if this function
3566 is being called at the end of processing and this feature was
3567 not reported). The third argument may be NULL; if not NULL, it
3568 is a NUL-terminated string taken from the packet following
3569 this feature's name and an equals sign. */
3570 void (*func) (const struct protocol_feature *, enum packet_support,
3573 /* The corresponding packet for this feature. Only used if
3574 FUNC is remote_supported_packet. */
3579 remote_supported_packet (const struct protocol_feature *feature,
3580 enum packet_support support,
3581 const char *argument)
3585 warning (_("Remote qSupported response supplied an unexpected value for"
3586 " \"%s\"."), feature->name);
3590 if (remote_protocol_packets[feature->packet].support
3591 == PACKET_SUPPORT_UNKNOWN)
3592 remote_protocol_packets[feature->packet].support = support;
3596 remote_packet_size (const struct protocol_feature *feature,
3597 enum packet_support support, const char *value)
3599 struct remote_state *rs = get_remote_state ();
3604 if (support != PACKET_ENABLE)
3607 if (value == NULL || *value == '\0')
3609 warning (_("Remote target reported \"%s\" without a size."),
3615 packet_size = strtol (value, &value_end, 16);
3616 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3618 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3619 feature->name, value);
3623 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3625 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3626 packet_size, MAX_REMOTE_PACKET_SIZE);
3627 packet_size = MAX_REMOTE_PACKET_SIZE;
3630 /* Record the new maximum packet size. */
3631 rs->explicit_packet_size = packet_size;
3635 remote_multi_process_feature (const struct protocol_feature *feature,
3636 enum packet_support support, const char *value)
3638 struct remote_state *rs = get_remote_state ();
3640 rs->multi_process_aware = (support == PACKET_ENABLE);
3644 remote_non_stop_feature (const struct protocol_feature *feature,
3645 enum packet_support support, const char *value)
3647 struct remote_state *rs = get_remote_state ();
3649 rs->non_stop_aware = (support == PACKET_ENABLE);
3653 remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3654 enum packet_support support,
3657 struct remote_state *rs = get_remote_state ();
3659 rs->cond_tracepoints = (support == PACKET_ENABLE);
3663 remote_fast_tracepoint_feature (const struct protocol_feature *feature,
3664 enum packet_support support,
3667 struct remote_state *rs = get_remote_state ();
3669 rs->fast_tracepoints = (support == PACKET_ENABLE);
3673 remote_static_tracepoint_feature (const struct protocol_feature *feature,
3674 enum packet_support support,
3677 struct remote_state *rs = get_remote_state ();
3679 rs->static_tracepoints = (support == PACKET_ENABLE);
3683 remote_disconnected_tracing_feature (const struct protocol_feature *feature,
3684 enum packet_support support,
3687 struct remote_state *rs = get_remote_state ();
3689 rs->disconnected_tracing = (support == PACKET_ENABLE);
3693 remote_enable_disable_tracepoint_feature (const struct protocol_feature *feature,
3694 enum packet_support support,
3697 struct remote_state *rs = get_remote_state ();
3699 rs->enable_disable_tracepoints = (support == PACKET_ENABLE);
3702 static struct protocol_feature remote_protocol_features[] = {
3703 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
3704 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
3705 PACKET_qXfer_auxv },
3706 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3707 PACKET_qXfer_features },
3708 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3709 PACKET_qXfer_libraries },
3710 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
3711 PACKET_qXfer_memory_map },
3712 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3713 PACKET_qXfer_spu_read },
3714 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3715 PACKET_qXfer_spu_write },
3716 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3717 PACKET_qXfer_osdata },
3718 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
3719 PACKET_qXfer_threads },
3720 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
3721 PACKET_qXfer_traceframe_info },
3722 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3723 PACKET_QPassSignals },
3724 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3725 PACKET_QStartNoAckMode },
3726 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
3727 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
3728 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3729 PACKET_qXfer_siginfo_read },
3730 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
3731 PACKET_qXfer_siginfo_write },
3732 { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
3733 PACKET_ConditionalTracepoints },
3734 { "FastTracepoints", PACKET_DISABLE, remote_fast_tracepoint_feature,
3735 PACKET_FastTracepoints },
3736 { "StaticTracepoints", PACKET_DISABLE, remote_static_tracepoint_feature,
3737 PACKET_StaticTracepoints },
3738 { "DisconnectedTracing", PACKET_DISABLE, remote_disconnected_tracing_feature,
3740 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
3742 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
3744 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
3745 PACKET_TracepointSource },
3746 { "QAllow", PACKET_DISABLE, remote_supported_packet,
3748 { "EnableDisableTracepoints", PACKET_DISABLE,
3749 remote_enable_disable_tracepoint_feature, -1 },
3752 static char *remote_support_xml;
3754 /* Register string appended to "xmlRegisters=" in qSupported query. */
3757 register_remote_support_xml (const char *xml)
3759 #if defined(HAVE_LIBEXPAT)
3760 if (remote_support_xml == NULL)
3761 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
3764 char *copy = xstrdup (remote_support_xml + 13);
3765 char *p = strtok (copy, ",");
3769 if (strcmp (p, xml) == 0)
3776 while ((p = strtok (NULL, ",")) != NULL);
3779 remote_support_xml = reconcat (remote_support_xml,
3780 remote_support_xml, ",", xml,
3787 remote_query_supported_append (char *msg, const char *append)
3790 return reconcat (msg, msg, ";", append, (char *) NULL);
3792 return xstrdup (append);
3796 remote_query_supported (void)
3798 struct remote_state *rs = get_remote_state ();
3801 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3803 /* The packet support flags are handled differently for this packet
3804 than for most others. We treat an error, a disabled packet, and
3805 an empty response identically: any features which must be reported
3806 to be used will be automatically disabled. An empty buffer
3807 accomplishes this, since that is also the representation for a list
3808 containing no features. */
3811 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3814 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
3817 q = remote_query_supported_append (q, "multiprocess+");
3819 if (remote_support_xml)
3820 q = remote_query_supported_append (q, remote_support_xml);
3822 q = remote_query_supported_append (q, "qRelocInsn+");
3824 q = reconcat (q, "qSupported:", q, (char *) NULL);
3827 do_cleanups (old_chain);
3829 getpkt (&rs->buf, &rs->buf_size, 0);
3831 /* If an error occured, warn, but do not return - just reset the
3832 buffer to empty and go on to disable features. */
3833 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3836 warning (_("Remote failure reply: %s"), rs->buf);
3841 memset (seen, 0, sizeof (seen));
3846 enum packet_support is_supported;
3847 char *p, *end, *name_end, *value;
3849 /* First separate out this item from the rest of the packet. If
3850 there's another item after this, we overwrite the separator
3851 (terminated strings are much easier to work with). */
3853 end = strchr (p, ';');
3856 end = p + strlen (p);
3866 warning (_("empty item in \"qSupported\" response"));
3871 name_end = strchr (p, '=');
3874 /* This is a name=value entry. */
3875 is_supported = PACKET_ENABLE;
3876 value = name_end + 1;
3885 is_supported = PACKET_ENABLE;
3889 is_supported = PACKET_DISABLE;
3893 is_supported = PACKET_SUPPORT_UNKNOWN;
3897 warning (_("unrecognized item \"%s\" "
3898 "in \"qSupported\" response"), p);
3904 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3905 if (strcmp (remote_protocol_features[i].name, p) == 0)
3907 const struct protocol_feature *feature;
3910 feature = &remote_protocol_features[i];
3911 feature->func (feature, is_supported, value);
3916 /* If we increased the packet size, make sure to increase the global
3917 buffer size also. We delay this until after parsing the entire
3918 qSupported packet, because this is the same buffer we were
3920 if (rs->buf_size < rs->explicit_packet_size)
3922 rs->buf_size = rs->explicit_packet_size;
3923 rs->buf = xrealloc (rs->buf, rs->buf_size);
3926 /* Handle the defaults for unmentioned features. */
3927 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3930 const struct protocol_feature *feature;
3932 feature = &remote_protocol_features[i];
3933 feature->func (feature, feature->default_support, NULL);
3939 remote_open_1 (char *name, int from_tty,
3940 struct target_ops *target, int extended_p)
3942 struct remote_state *rs = get_remote_state ();
3945 error (_("To open a remote debug connection, you need to specify what\n"
3946 "serial device is attached to the remote system\n"
3947 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
3949 /* See FIXME above. */
3950 if (!target_async_permitted)
3951 wait_forever_enabled_p = 1;
3953 /* If we're connected to a running target, target_preopen will kill it.
3954 But if we're connected to a target system with no running process,
3955 then we will still be connected when it returns. Ask this question
3956 first, before target_preopen has a chance to kill anything. */
3957 if (remote_desc != NULL && !have_inferiors ())
3960 || query (_("Already connected to a remote target. Disconnect? ")))
3963 error (_("Still connected."));
3966 target_preopen (from_tty);
3968 unpush_target (target);
3970 /* This time without a query. If we were connected to an
3971 extended-remote target and target_preopen killed the running
3972 process, we may still be connected. If we are starting "target
3973 remote" now, the extended-remote target will not have been
3974 removed by unpush_target. */
3975 if (remote_desc != NULL && !have_inferiors ())
3978 /* Make sure we send the passed signals list the next time we resume. */
3979 xfree (last_pass_packet);
3980 last_pass_packet = NULL;
3982 remote_fileio_reset ();
3983 reopen_exec_file ();
3986 remote_desc = remote_serial_open (name);
3988 perror_with_name (name);
3990 if (baud_rate != -1)
3992 if (serial_setbaudrate (remote_desc, baud_rate))
3994 /* The requested speed could not be set. Error out to
3995 top level after closing remote_desc. Take care to
3996 set remote_desc to NULL to avoid closing remote_desc
3998 serial_close (remote_desc);
4000 perror_with_name (name);
4004 serial_raw (remote_desc);
4006 /* If there is something sitting in the buffer we might take it as a
4007 response to a command, which would be bad. */
4008 serial_flush_input (remote_desc);
4012 puts_filtered ("Remote debugging using ");
4013 puts_filtered (name);
4014 puts_filtered ("\n");
4016 push_target (target); /* Switch to using remote target now. */
4018 /* Register extra event sources in the event loop. */
4019 remote_async_inferior_event_token
4020 = create_async_event_handler (remote_async_inferior_event_handler,
4022 remote_async_get_pending_events_token
4023 = create_async_event_handler (remote_async_get_pending_events_handler,
4026 /* Reset the target state; these things will be queried either by
4027 remote_query_supported or as they are needed. */
4028 init_all_packet_configs ();
4029 rs->cached_wait_status = 0;
4030 rs->explicit_packet_size = 0;
4032 rs->multi_process_aware = 0;
4033 rs->extended = extended_p;
4034 rs->non_stop_aware = 0;
4035 rs->waiting_for_stop_reply = 0;
4036 rs->ctrlc_pending_p = 0;
4038 general_thread = not_sent_ptid;
4039 continue_thread = not_sent_ptid;
4040 remote_traceframe_number = -1;
4042 /* Probe for ability to use "ThreadInfo" query, as required. */
4043 use_threadinfo_query = 1;
4044 use_threadextra_query = 1;
4046 if (target_async_permitted)
4048 /* With this target we start out by owning the terminal. */
4049 remote_async_terminal_ours_p = 1;
4051 /* FIXME: cagney/1999-09-23: During the initial connection it is
4052 assumed that the target is already ready and able to respond to
4053 requests. Unfortunately remote_start_remote() eventually calls
4054 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4055 around this. Eventually a mechanism that allows
4056 wait_for_inferior() to expect/get timeouts will be
4058 wait_forever_enabled_p = 0;
4061 /* First delete any symbols previously loaded from shared libraries. */
4062 no_shared_libraries (NULL, 0);
4065 init_thread_list ();
4067 /* Start the remote connection. If error() or QUIT, discard this
4068 target (we'd otherwise be in an inconsistent state) and then
4069 propogate the error on up the exception chain. This ensures that
4070 the caller doesn't stumble along blindly assuming that the
4071 function succeeded. The CLI doesn't have this problem but other
4072 UI's, such as MI do.
4074 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4075 this function should return an error indication letting the
4076 caller restore the previous state. Unfortunately the command
4077 ``target remote'' is directly wired to this function making that
4078 impossible. On a positive note, the CLI side of this problem has
4079 been fixed - the function set_cmd_context() makes it possible for
4080 all the ``target ....'' commands to share a common callback
4081 function. See cli-dump.c. */
4083 volatile struct gdb_exception ex;
4085 TRY_CATCH (ex, RETURN_MASK_ALL)
4087 remote_start_remote (from_tty, target, extended_p);
4091 /* Pop the partially set up target - unless something else did
4092 already before throwing the exception. */
4093 if (remote_desc != NULL)
4095 if (target_async_permitted)
4096 wait_forever_enabled_p = 1;
4097 throw_exception (ex);
4101 if (target_async_permitted)
4102 wait_forever_enabled_p = 1;
4105 /* This takes a program previously attached to and detaches it. After
4106 this is done, GDB can be used to debug some other program. We
4107 better not have left any breakpoints in the target program or it'll
4108 die when it hits one. */
4111 remote_detach_1 (char *args, int from_tty, int extended)
4113 int pid = ptid_get_pid (inferior_ptid);
4114 struct remote_state *rs = get_remote_state ();
4117 error (_("Argument given to \"detach\" when remotely debugging."));
4119 if (!target_has_execution)
4120 error (_("No process to detach from."));
4122 /* Tell the remote target to detach. */
4123 if (remote_multi_process_p (rs))
4124 sprintf (rs->buf, "D;%x", pid);
4126 strcpy (rs->buf, "D");
4129 getpkt (&rs->buf, &rs->buf_size, 0);
4131 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4133 else if (rs->buf[0] == '\0')
4134 error (_("Remote doesn't know how to detach"));
4136 error (_("Can't detach process."));
4140 if (remote_multi_process_p (rs))
4141 printf_filtered (_("Detached from remote %s.\n"),
4142 target_pid_to_str (pid_to_ptid (pid)));
4146 puts_filtered (_("Detached from remote process.\n"));
4148 puts_filtered (_("Ending remote debugging.\n"));
4152 discard_pending_stop_replies (pid);
4153 target_mourn_inferior ();
4157 remote_detach (struct target_ops *ops, char *args, int from_tty)
4159 remote_detach_1 (args, from_tty, 0);
4163 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
4165 remote_detach_1 (args, from_tty, 1);
4168 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4171 remote_disconnect (struct target_ops *target, char *args, int from_tty)
4174 error (_("Argument given to \"disconnect\" when remotely debugging."));
4176 /* Make sure we unpush even the extended remote targets; mourn
4177 won't do it. So call remote_mourn_1 directly instead of
4178 target_mourn_inferior. */
4179 remote_mourn_1 (target);
4182 puts_filtered ("Ending remote debugging.\n");
4185 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4186 be chatty about it. */
4189 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
4191 struct remote_state *rs = get_remote_state ();
4193 char *wait_status = NULL;
4195 pid = parse_pid_to_attach (args);
4197 /* Remote PID can be freely equal to getpid, do not check it here the same
4198 way as in other targets. */
4200 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4201 error (_("This target does not support attaching to a process"));
4203 sprintf (rs->buf, "vAttach;%x", pid);
4205 getpkt (&rs->buf, &rs->buf_size, 0);
4207 if (packet_ok (rs->buf,
4208 &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
4211 printf_unfiltered (_("Attached to %s\n"),
4212 target_pid_to_str (pid_to_ptid (pid)));
4216 /* Save the reply for later. */
4217 wait_status = alloca (strlen (rs->buf) + 1);
4218 strcpy (wait_status, rs->buf);
4220 else if (strcmp (rs->buf, "OK") != 0)
4221 error (_("Attaching to %s failed with: %s"),
4222 target_pid_to_str (pid_to_ptid (pid)),
4225 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4226 error (_("This target does not support attaching to a process"));
4228 error (_("Attaching to %s failed"),
4229 target_pid_to_str (pid_to_ptid (pid)));
4231 set_current_inferior (remote_add_inferior (pid, 1));
4233 inferior_ptid = pid_to_ptid (pid);
4237 struct thread_info *thread;
4239 /* Get list of threads. */
4240 remote_threads_info (target);
4242 thread = first_thread_of_process (pid);
4244 inferior_ptid = thread->ptid;
4246 inferior_ptid = pid_to_ptid (pid);
4248 /* Invalidate our notion of the remote current thread. */
4249 record_currthread (minus_one_ptid);
4253 /* Now, if we have thread information, update inferior_ptid. */
4254 inferior_ptid = remote_current_thread (inferior_ptid);
4256 /* Add the main thread to the thread list. */
4257 add_thread_silent (inferior_ptid);
4260 /* Next, if the target can specify a description, read it. We do
4261 this before anything involving memory or registers. */
4262 target_find_description ();
4266 /* Use the previously fetched status. */
4267 gdb_assert (wait_status != NULL);
4269 if (target_can_async_p ())
4271 struct stop_reply *stop_reply;
4272 struct cleanup *old_chain;
4274 stop_reply = stop_reply_xmalloc ();
4275 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4276 remote_parse_stop_reply (wait_status, stop_reply);
4277 discard_cleanups (old_chain);
4278 push_stop_reply (stop_reply);
4280 target_async (inferior_event_handler, 0);
4284 gdb_assert (wait_status != NULL);
4285 strcpy (rs->buf, wait_status);
4286 rs->cached_wait_status = 1;
4290 gdb_assert (wait_status == NULL);
4294 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
4296 extended_remote_attach_1 (ops, args, from_tty);
4299 /* Convert hex digit A to a number. */
4304 if (a >= '0' && a <= '9')
4306 else if (a >= 'a' && a <= 'f')
4307 return a - 'a' + 10;
4308 else if (a >= 'A' && a <= 'F')
4309 return a - 'A' + 10;
4311 error (_("Reply contains invalid hex digit %d"), a);
4315 hex2bin (const char *hex, gdb_byte *bin, int count)
4319 for (i = 0; i < count; i++)
4321 if (hex[0] == 0 || hex[1] == 0)
4323 /* Hex string is short, or of uneven length.
4324 Return the count that has been converted so far. */
4327 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
4333 /* Convert number NIB to a hex digit. */
4341 return 'a' + nib - 10;
4345 bin2hex (const gdb_byte *bin, char *hex, int count)
4349 /* May use a length, or a nul-terminated string as input. */
4351 count = strlen ((char *) bin);
4353 for (i = 0; i < count; i++)
4355 *hex++ = tohex ((*bin >> 4) & 0xf);
4356 *hex++ = tohex (*bin++ & 0xf);
4362 /* Check for the availability of vCont. This function should also check
4366 remote_vcont_probe (struct remote_state *rs)
4370 strcpy (rs->buf, "vCont?");
4372 getpkt (&rs->buf, &rs->buf_size, 0);
4375 /* Make sure that the features we assume are supported. */
4376 if (strncmp (buf, "vCont", 5) == 0)
4379 int support_s, support_S, support_c, support_C;
4385 rs->support_vCont_t = 0;
4386 while (p && *p == ';')
4389 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4391 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4393 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4395 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4397 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
4398 rs->support_vCont_t = 1;
4400 p = strchr (p, ';');
4403 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4404 BUF will make packet_ok disable the packet. */
4405 if (!support_s || !support_S || !support_c || !support_C)
4409 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
4412 /* Helper function for building "vCont" resumptions. Write a
4413 resumption to P. ENDP points to one-passed-the-end of the buffer
4414 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4415 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4416 resumed thread should be single-stepped and/or signalled. If PTID
4417 equals minus_one_ptid, then all threads are resumed; if PTID
4418 represents a process, then all threads of the process are resumed;
4419 the thread to be stepped and/or signalled is given in the global
4423 append_resumption (char *p, char *endp,
4424 ptid_t ptid, int step, enum target_signal siggnal)
4426 struct remote_state *rs = get_remote_state ();
4428 if (step && siggnal != TARGET_SIGNAL_0)
4429 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
4431 p += xsnprintf (p, endp - p, ";s");
4432 else if (siggnal != TARGET_SIGNAL_0)
4433 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
4435 p += xsnprintf (p, endp - p, ";c");
4437 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
4441 /* All (-1) threads of process. */
4442 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4444 p += xsnprintf (p, endp - p, ":");
4445 p = write_ptid (p, endp, nptid);
4447 else if (!ptid_equal (ptid, minus_one_ptid))
4449 p += xsnprintf (p, endp - p, ":");
4450 p = write_ptid (p, endp, ptid);
4456 /* Resume the remote inferior by using a "vCont" packet. The thread
4457 to be resumed is PTID; STEP and SIGGNAL indicate whether the
4458 resumed thread should be single-stepped and/or signalled. If PTID
4459 equals minus_one_ptid, then all threads are resumed; the thread to
4460 be stepped and/or signalled is given in the global INFERIOR_PTID.
4461 This function returns non-zero iff it resumes the inferior.
4463 This function issues a strict subset of all possible vCont commands at the
4467 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
4469 struct remote_state *rs = get_remote_state ();
4473 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4474 remote_vcont_probe (rs);
4476 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
4480 endp = rs->buf + get_remote_packet_size ();
4482 /* If we could generate a wider range of packets, we'd have to worry
4483 about overflowing BUF. Should there be a generic
4484 "multi-part-packet" packet? */
4486 p += xsnprintf (p, endp - p, "vCont");
4488 if (ptid_equal (ptid, magic_null_ptid))
4490 /* MAGIC_NULL_PTID means that we don't have any active threads,
4491 so we don't have any TID numbers the inferior will
4492 understand. Make sure to only send forms that do not specify
4494 append_resumption (p, endp, minus_one_ptid, step, siggnal);
4496 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
4498 /* Resume all threads (of all processes, or of a single
4499 process), with preference for INFERIOR_PTID. This assumes
4500 inferior_ptid belongs to the set of all threads we are about
4502 if (step || siggnal != TARGET_SIGNAL_0)
4504 /* Step inferior_ptid, with or without signal. */
4505 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
4508 /* And continue others without a signal. */
4509 append_resumption (p, endp, ptid, /*step=*/ 0, TARGET_SIGNAL_0);
4513 /* Scheduler locking; resume only PTID. */
4514 append_resumption (p, endp, ptid, step, siggnal);
4517 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
4522 /* In non-stop, the stub replies to vCont with "OK". The stop
4523 reply will be reported asynchronously by means of a `%Stop'
4525 getpkt (&rs->buf, &rs->buf_size, 0);
4526 if (strcmp (rs->buf, "OK") != 0)
4527 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
4533 /* Tell the remote machine to resume. */
4535 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
4537 static int last_sent_step;
4540 remote_resume (struct target_ops *ops,
4541 ptid_t ptid, int step, enum target_signal siggnal)
4543 struct remote_state *rs = get_remote_state ();
4546 last_sent_signal = siggnal;
4547 last_sent_step = step;
4549 /* The vCont packet doesn't need to specify threads via Hc. */
4550 /* No reverse support (yet) for vCont. */
4551 if (execution_direction != EXEC_REVERSE)
4552 if (remote_vcont_resume (ptid, step, siggnal))
4555 /* All other supported resume packets do use Hc, so set the continue
4557 if (ptid_equal (ptid, minus_one_ptid))
4558 set_continue_thread (any_thread_ptid);
4560 set_continue_thread (ptid);
4563 if (execution_direction == EXEC_REVERSE)
4565 /* We don't pass signals to the target in reverse exec mode. */
4566 if (info_verbose && siggnal != TARGET_SIGNAL_0)
4567 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
4571 && remote_protocol_packets[PACKET_bs].support == PACKET_DISABLE)
4572 error (_("Remote reverse-step not supported."));
4574 && remote_protocol_packets[PACKET_bc].support == PACKET_DISABLE)
4575 error (_("Remote reverse-continue not supported."));
4577 strcpy (buf, step ? "bs" : "bc");
4579 else if (siggnal != TARGET_SIGNAL_0)
4581 buf[0] = step ? 'S' : 'C';
4582 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
4583 buf[2] = tohex (((int) siggnal) & 0xf);
4587 strcpy (buf, step ? "s" : "c");
4592 /* We are about to start executing the inferior, let's register it
4593 with the event loop. NOTE: this is the one place where all the
4594 execution commands end up. We could alternatively do this in each
4595 of the execution commands in infcmd.c. */
4596 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4597 into infcmd.c in order to allow inferior function calls to work
4598 NOT asynchronously. */
4599 if (target_can_async_p ())
4600 target_async (inferior_event_handler, 0);
4602 /* We've just told the target to resume. The remote server will
4603 wait for the inferior to stop, and then send a stop reply. In
4604 the mean time, we can't start another command/query ourselves
4605 because the stub wouldn't be ready to process it. This applies
4606 only to the base all-stop protocol, however. In non-stop (which
4607 only supports vCont), the stub replies with an "OK", and is
4608 immediate able to process further serial input. */
4610 rs->waiting_for_stop_reply = 1;
4614 /* Set up the signal handler for SIGINT, while the target is
4615 executing, ovewriting the 'regular' SIGINT signal handler. */
4617 initialize_sigint_signal_handler (void)
4619 signal (SIGINT, handle_remote_sigint);
4622 /* Signal handler for SIGINT, while the target is executing. */
4624 handle_remote_sigint (int sig)
4626 signal (sig, handle_remote_sigint_twice);
4627 mark_async_signal_handler_wrapper (sigint_remote_token);
4630 /* Signal handler for SIGINT, installed after SIGINT has already been
4631 sent once. It will take effect the second time that the user sends
4634 handle_remote_sigint_twice (int sig)
4636 signal (sig, handle_remote_sigint);
4637 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
4640 /* Perform the real interruption of the target execution, in response
4643 async_remote_interrupt (gdb_client_data arg)
4646 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
4648 target_stop (inferior_ptid);
4651 /* Perform interrupt, if the first attempt did not succeed. Just give
4652 up on the target alltogether. */
4654 async_remote_interrupt_twice (gdb_client_data arg)
4657 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
4662 /* Reinstall the usual SIGINT handlers, after the target has
4665 cleanup_sigint_signal_handler (void *dummy)
4667 signal (SIGINT, handle_sigint);
4670 /* Send ^C to target to halt it. Target will respond, and send us a
4672 static void (*ofunc) (int);
4674 /* The command line interface's stop routine. This function is installed
4675 as a signal handler for SIGINT. The first time a user requests a
4676 stop, we call remote_stop to send a break or ^C. If there is no
4677 response from the target (it didn't stop when the user requested it),
4678 we ask the user if he'd like to detach from the target. */
4680 remote_interrupt (int signo)
4682 /* If this doesn't work, try more severe steps. */
4683 signal (signo, remote_interrupt_twice);
4685 gdb_call_async_signal_handler (sigint_remote_token, 1);
4688 /* The user typed ^C twice. */
4691 remote_interrupt_twice (int signo)
4693 signal (signo, ofunc);
4694 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
4695 signal (signo, remote_interrupt);
4698 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
4699 thread, all threads of a remote process, or all threads of all
4703 remote_stop_ns (ptid_t ptid)
4705 struct remote_state *rs = get_remote_state ();
4707 char *endp = rs->buf + get_remote_packet_size ();
4709 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4710 remote_vcont_probe (rs);
4712 if (!rs->support_vCont_t)
4713 error (_("Remote server does not support stopping threads"));
4715 if (ptid_equal (ptid, minus_one_ptid)
4716 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
4717 p += xsnprintf (p, endp - p, "vCont;t");
4722 p += xsnprintf (p, endp - p, "vCont;t:");
4724 if (ptid_is_pid (ptid))
4725 /* All (-1) threads of process. */
4726 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4729 /* Small optimization: if we already have a stop reply for
4730 this thread, no use in telling the stub we want this
4732 if (peek_stop_reply (ptid))
4738 write_ptid (p, endp, nptid);
4741 /* In non-stop, we get an immediate OK reply. The stop reply will
4742 come in asynchronously by notification. */
4744 getpkt (&rs->buf, &rs->buf_size, 0);
4745 if (strcmp (rs->buf, "OK") != 0)
4746 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
4749 /* All-stop version of target_stop. Sends a break or a ^C to stop the
4750 remote target. It is undefined which thread of which process
4751 reports the stop. */
4754 remote_stop_as (ptid_t ptid)
4756 struct remote_state *rs = get_remote_state ();
4758 rs->ctrlc_pending_p = 1;
4760 /* If the inferior is stopped already, but the core didn't know
4761 about it yet, just ignore the request. The cached wait status
4762 will be collected in remote_wait. */
4763 if (rs->cached_wait_status)
4766 /* Send interrupt_sequence to remote target. */
4767 send_interrupt_sequence ();
4770 /* This is the generic stop called via the target vector. When a target
4771 interrupt is requested, either by the command line or the GUI, we
4772 will eventually end up here. */
4775 remote_stop (ptid_t ptid)
4778 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
4781 remote_stop_ns (ptid);
4783 remote_stop_as (ptid);
4786 /* Ask the user what to do when an interrupt is received. */
4789 interrupt_query (void)
4791 target_terminal_ours ();
4793 if (target_can_async_p ())
4795 signal (SIGINT, handle_sigint);
4796 deprecated_throw_reason (RETURN_QUIT);
4800 if (query (_("Interrupted while waiting for the program.\n\
4801 Give up (and stop debugging it)? ")))
4804 deprecated_throw_reason (RETURN_QUIT);
4808 target_terminal_inferior ();
4811 /* Enable/disable target terminal ownership. Most targets can use
4812 terminal groups to control terminal ownership. Remote targets are
4813 different in that explicit transfer of ownership to/from GDB/target
4817 remote_terminal_inferior (void)
4819 if (!target_async_permitted)
4820 /* Nothing to do. */
4823 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
4824 idempotent. The event-loop GDB talking to an asynchronous target
4825 with a synchronous command calls this function from both
4826 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
4827 transfer the terminal to the target when it shouldn't this guard
4829 if (!remote_async_terminal_ours_p)
4831 delete_file_handler (input_fd);
4832 remote_async_terminal_ours_p = 0;
4833 initialize_sigint_signal_handler ();
4834 /* NOTE: At this point we could also register our selves as the
4835 recipient of all input. Any characters typed could then be
4836 passed on down to the target. */
4840 remote_terminal_ours (void)
4842 if (!target_async_permitted)
4843 /* Nothing to do. */
4846 /* See FIXME in remote_terminal_inferior. */
4847 if (remote_async_terminal_ours_p)
4849 cleanup_sigint_signal_handler (NULL);
4850 add_file_handler (input_fd, stdin_event_handler, 0);
4851 remote_async_terminal_ours_p = 1;
4855 remote_console_output (char *msg)
4859 for (p = msg; p[0] && p[1]; p += 2)
4862 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4866 fputs_unfiltered (tb, gdb_stdtarg);
4868 gdb_flush (gdb_stdtarg);
4871 typedef struct cached_reg
4874 gdb_byte data[MAX_REGISTER_SIZE];
4877 DEF_VEC_O(cached_reg_t);
4881 struct stop_reply *next;
4885 struct target_waitstatus ws;
4887 VEC(cached_reg_t) *regcache;
4889 int stopped_by_watchpoint_p;
4890 CORE_ADDR watch_data_address;
4898 /* The list of already fetched and acknowledged stop events. */
4899 static struct stop_reply *stop_reply_queue;
4901 static struct stop_reply *
4902 stop_reply_xmalloc (void)
4904 struct stop_reply *r = XMALLOC (struct stop_reply);
4911 stop_reply_xfree (struct stop_reply *r)
4915 VEC_free (cached_reg_t, r->regcache);
4920 /* Discard all pending stop replies of inferior PID. If PID is -1,
4921 discard everything. */
4924 discard_pending_stop_replies (int pid)
4926 struct stop_reply *prev = NULL, *reply, *next;
4928 /* Discard the in-flight notification. */
4929 if (pending_stop_reply != NULL
4931 || ptid_get_pid (pending_stop_reply->ptid) == pid))
4933 stop_reply_xfree (pending_stop_reply);
4934 pending_stop_reply = NULL;
4937 /* Discard the stop replies we have already pulled with
4939 for (reply = stop_reply_queue; reply; reply = next)
4943 || ptid_get_pid (reply->ptid) == pid)
4945 if (reply == stop_reply_queue)
4946 stop_reply_queue = reply->next;
4948 prev->next = reply->next;
4950 stop_reply_xfree (reply);
4957 /* Cleanup wrapper. */
4960 do_stop_reply_xfree (void *arg)
4962 struct stop_reply *r = arg;
4964 stop_reply_xfree (r);
4967 /* Look for a queued stop reply belonging to PTID. If one is found,
4968 remove it from the queue, and return it. Returns NULL if none is
4969 found. If there are still queued events left to process, tell the
4970 event loop to get back to target_wait soon. */
4972 static struct stop_reply *
4973 queued_stop_reply (ptid_t ptid)
4975 struct stop_reply *it;
4976 struct stop_reply **it_link;
4978 it = stop_reply_queue;
4979 it_link = &stop_reply_queue;
4982 if (ptid_match (it->ptid, ptid))
4984 *it_link = it->next;
4989 it_link = &it->next;
4993 if (stop_reply_queue)
4994 /* There's still at least an event left. */
4995 mark_async_event_handler (remote_async_inferior_event_token);
5000 /* Push a fully parsed stop reply in the stop reply queue. Since we
5001 know that we now have at least one queued event left to pass to the
5002 core side, tell the event loop to get back to target_wait soon. */
5005 push_stop_reply (struct stop_reply *new_event)
5007 struct stop_reply *event;
5009 if (stop_reply_queue)
5011 for (event = stop_reply_queue;
5012 event && event->next;
5013 event = event->next)
5016 event->next = new_event;
5019 stop_reply_queue = new_event;
5021 mark_async_event_handler (remote_async_inferior_event_token);
5024 /* Returns true if we have a stop reply for PTID. */
5027 peek_stop_reply (ptid_t ptid)
5029 struct stop_reply *it;
5031 for (it = stop_reply_queue; it; it = it->next)
5032 if (ptid_equal (ptid, it->ptid))
5034 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
5041 /* Parse the stop reply in BUF. Either the function succeeds, and the
5042 result is stored in EVENT, or throws an error. */
5045 remote_parse_stop_reply (char *buf, struct stop_reply *event)
5047 struct remote_arch_state *rsa = get_remote_arch_state ();
5051 event->ptid = null_ptid;
5052 event->ws.kind = TARGET_WAITKIND_IGNORE;
5053 event->ws.value.integer = 0;
5054 event->solibs_changed = 0;
5055 event->replay_event = 0;
5056 event->stopped_by_watchpoint_p = 0;
5057 event->regcache = NULL;
5062 case 'T': /* Status with PC, SP, FP, ... */
5063 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5064 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
5066 n... = register number
5067 r... = register contents
5070 p = &buf[3]; /* after Txx */
5078 /* If the packet contains a register number, save it in
5079 pnum and set p1 to point to the character following it.
5080 Otherwise p1 points to p. */
5082 /* If this packet is an awatch packet, don't parse the 'a'
5083 as a register number. */
5085 if (strncmp (p, "awatch", strlen("awatch")) != 0
5086 && strncmp (p, "core", strlen ("core") != 0))
5088 /* Read the ``P'' register number. */
5089 pnum = strtol (p, &p_temp, 16);
5095 if (p1 == p) /* No register number present here. */
5097 p1 = strchr (p, ':');
5099 error (_("Malformed packet(a) (missing colon): %s\n\
5102 if (strncmp (p, "thread", p1 - p) == 0)
5103 event->ptid = read_ptid (++p1, &p);
5104 else if ((strncmp (p, "watch", p1 - p) == 0)
5105 || (strncmp (p, "rwatch", p1 - p) == 0)
5106 || (strncmp (p, "awatch", p1 - p) == 0))
5108 event->stopped_by_watchpoint_p = 1;
5109 p = unpack_varlen_hex (++p1, &addr);
5110 event->watch_data_address = (CORE_ADDR) addr;
5112 else if (strncmp (p, "library", p1 - p) == 0)
5116 while (*p_temp && *p_temp != ';')
5119 event->solibs_changed = 1;
5122 else if (strncmp (p, "replaylog", p1 - p) == 0)
5124 /* NO_HISTORY event.
5125 p1 will indicate "begin" or "end", but
5126 it makes no difference for now, so ignore it. */
5127 event->replay_event = 1;
5128 p_temp = strchr (p1 + 1, ';');
5132 else if (strncmp (p, "core", p1 - p) == 0)
5136 p = unpack_varlen_hex (++p1, &c);
5141 /* Silently skip unknown optional info. */
5142 p_temp = strchr (p1 + 1, ';');
5149 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
5150 cached_reg_t cached_reg;
5155 error (_("Malformed packet(b) (missing colon): %s\n\
5161 error (_("Remote sent bad register number %s: %s\n\
5163 hex_string (pnum), p, buf);
5165 cached_reg.num = reg->regnum;
5167 fieldsize = hex2bin (p, cached_reg.data,
5168 register_size (target_gdbarch,
5171 if (fieldsize < register_size (target_gdbarch,
5173 warning (_("Remote reply is too short: %s"), buf);
5175 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
5179 error (_("Remote register badly formatted: %s\nhere: %s"),
5184 case 'S': /* Old style status, just signal only. */
5185 if (event->solibs_changed)
5186 event->ws.kind = TARGET_WAITKIND_LOADED;
5187 else if (event->replay_event)
5188 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
5191 event->ws.kind = TARGET_WAITKIND_STOPPED;
5192 event->ws.value.sig = (enum target_signal)
5193 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
5196 case 'W': /* Target exited. */
5203 /* GDB used to accept only 2 hex chars here. Stubs should
5204 only send more if they detect GDB supports multi-process
5206 p = unpack_varlen_hex (&buf[1], &value);
5210 /* The remote process exited. */
5211 event->ws.kind = TARGET_WAITKIND_EXITED;
5212 event->ws.value.integer = value;
5216 /* The remote process exited with a signal. */
5217 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
5218 event->ws.value.sig = (enum target_signal) value;
5221 /* If no process is specified, assume inferior_ptid. */
5222 pid = ptid_get_pid (inferior_ptid);
5231 else if (strncmp (p,
5232 "process:", sizeof ("process:") - 1) == 0)
5236 p += sizeof ("process:") - 1;
5237 unpack_varlen_hex (p, &upid);
5241 error (_("unknown stop reply packet: %s"), buf);
5244 error (_("unknown stop reply packet: %s"), buf);
5245 event->ptid = pid_to_ptid (pid);
5250 if (non_stop && ptid_equal (event->ptid, null_ptid))
5251 error (_("No process or thread specified in stop reply: %s"), buf);
5254 /* When the stub wants to tell GDB about a new stop reply, it sends a
5255 stop notification (%Stop). Those can come it at any time, hence,
5256 we have to make sure that any pending putpkt/getpkt sequence we're
5257 making is finished, before querying the stub for more events with
5258 vStopped. E.g., if we started a vStopped sequence immediatelly
5259 upon receiving the %Stop notification, something like this could
5267 1.6) <-- (registers reply to step #1.3)
5269 Obviously, the reply in step #1.6 would be unexpected to a vStopped
5272 To solve this, whenever we parse a %Stop notification sucessfully,
5273 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5274 doing whatever we were doing:
5280 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5281 2.5) <-- (registers reply to step #2.3)
5283 Eventualy after step #2.5, we return to the event loop, which
5284 notices there's an event on the
5285 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5286 associated callback --- the function below. At this point, we're
5287 always safe to start a vStopped sequence. :
5290 2.7) <-- T05 thread:2
5296 remote_get_pending_stop_replies (void)
5298 struct remote_state *rs = get_remote_state ();
5300 if (pending_stop_reply)
5303 putpkt ("vStopped");
5305 /* Now we can rely on it. */
5306 push_stop_reply (pending_stop_reply);
5307 pending_stop_reply = NULL;
5311 getpkt (&rs->buf, &rs->buf_size, 0);
5312 if (strcmp (rs->buf, "OK") == 0)
5316 struct cleanup *old_chain;
5317 struct stop_reply *stop_reply = stop_reply_xmalloc ();
5319 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
5320 remote_parse_stop_reply (rs->buf, stop_reply);
5323 putpkt ("vStopped");
5325 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
5327 /* Now we can rely on it. */
5328 discard_cleanups (old_chain);
5329 push_stop_reply (stop_reply);
5332 /* We got an unknown stop reply. */
5333 do_cleanups (old_chain);
5340 /* Called when it is decided that STOP_REPLY holds the info of the
5341 event that is to be returned to the core. This function always
5342 destroys STOP_REPLY. */
5345 process_stop_reply (struct stop_reply *stop_reply,
5346 struct target_waitstatus *status)
5350 *status = stop_reply->ws;
5351 ptid = stop_reply->ptid;
5353 /* If no thread/process was reported by the stub, assume the current
5355 if (ptid_equal (ptid, null_ptid))
5356 ptid = inferior_ptid;
5358 if (status->kind != TARGET_WAITKIND_EXITED
5359 && status->kind != TARGET_WAITKIND_SIGNALLED)
5361 /* Expedited registers. */
5362 if (stop_reply->regcache)
5364 struct regcache *regcache
5365 = get_thread_arch_regcache (ptid, target_gdbarch);
5370 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
5372 regcache_raw_supply (regcache, reg->num, reg->data);
5373 VEC_free (cached_reg_t, stop_reply->regcache);
5376 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
5377 remote_watch_data_address = stop_reply->watch_data_address;
5379 remote_notice_new_inferior (ptid, 0);
5380 demand_private_info (ptid)->core = stop_reply->core;
5383 stop_reply_xfree (stop_reply);
5387 /* The non-stop mode version of target_wait. */
5390 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
5392 struct remote_state *rs = get_remote_state ();
5393 struct stop_reply *stop_reply;
5396 /* If in non-stop mode, get out of getpkt even if a
5397 notification is received. */
5399 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5406 case 'E': /* Error of some sort. */
5407 /* We're out of sync with the target now. Did it continue
5408 or not? We can't tell which thread it was in non-stop,
5409 so just ignore this. */
5410 warning (_("Remote failure reply: %s"), rs->buf);
5412 case 'O': /* Console output. */
5413 remote_console_output (rs->buf + 1);
5416 warning (_("Invalid remote reply: %s"), rs->buf);
5420 /* Acknowledge a pending stop reply that may have arrived in the
5422 if (pending_stop_reply != NULL)
5423 remote_get_pending_stop_replies ();
5425 /* If indeed we noticed a stop reply, we're done. */
5426 stop_reply = queued_stop_reply (ptid);
5427 if (stop_reply != NULL)
5428 return process_stop_reply (stop_reply, status);
5430 /* Still no event. If we're just polling for an event, then
5431 return to the event loop. */
5432 if (options & TARGET_WNOHANG)
5434 status->kind = TARGET_WAITKIND_IGNORE;
5435 return minus_one_ptid;
5438 /* Otherwise do a blocking wait. */
5439 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5444 /* Wait until the remote machine stops, then return, storing status in
5445 STATUS just as `wait' would. */
5448 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
5450 struct remote_state *rs = get_remote_state ();
5451 ptid_t event_ptid = null_ptid;
5453 struct stop_reply *stop_reply;
5457 status->kind = TARGET_WAITKIND_IGNORE;
5458 status->value.integer = 0;
5460 stop_reply = queued_stop_reply (ptid);
5461 if (stop_reply != NULL)
5462 return process_stop_reply (stop_reply, status);
5464 if (rs->cached_wait_status)
5465 /* Use the cached wait status, but only once. */
5466 rs->cached_wait_status = 0;
5471 if (!target_is_async_p ())
5473 ofunc = signal (SIGINT, remote_interrupt);
5474 /* If the user hit C-c before this packet, or between packets,
5475 pretend that it was hit right here. */
5479 remote_interrupt (SIGINT);
5483 /* FIXME: cagney/1999-09-27: If we're in async mode we should
5484 _never_ wait for ever -> test on target_is_async_p().
5485 However, before we do that we need to ensure that the caller
5486 knows how to take the target into/out of async mode. */
5487 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
5488 if (!target_is_async_p ())
5489 signal (SIGINT, ofunc);
5494 remote_stopped_by_watchpoint_p = 0;
5496 /* We got something. */
5497 rs->waiting_for_stop_reply = 0;
5499 /* Assume that the target has acknowledged Ctrl-C unless we receive
5500 an 'F' or 'O' packet. */
5501 if (buf[0] != 'F' && buf[0] != 'O')
5502 rs->ctrlc_pending_p = 0;
5506 case 'E': /* Error of some sort. */
5507 /* We're out of sync with the target now. Did it continue or
5508 not? Not is more likely, so report a stop. */
5509 warning (_("Remote failure reply: %s"), buf);
5510 status->kind = TARGET_WAITKIND_STOPPED;
5511 status->value.sig = TARGET_SIGNAL_0;
5513 case 'F': /* File-I/O request. */
5514 remote_fileio_request (buf, rs->ctrlc_pending_p);
5515 rs->ctrlc_pending_p = 0;
5517 case 'T': case 'S': case 'X': case 'W':
5519 struct stop_reply *stop_reply;
5520 struct cleanup *old_chain;
5522 stop_reply = stop_reply_xmalloc ();
5523 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
5524 remote_parse_stop_reply (buf, stop_reply);
5525 discard_cleanups (old_chain);
5526 event_ptid = process_stop_reply (stop_reply, status);
5529 case 'O': /* Console output. */
5530 remote_console_output (buf + 1);
5532 /* The target didn't really stop; keep waiting. */
5533 rs->waiting_for_stop_reply = 1;
5537 if (last_sent_signal != TARGET_SIGNAL_0)
5539 /* Zero length reply means that we tried 'S' or 'C' and the
5540 remote system doesn't support it. */
5541 target_terminal_ours_for_output ();
5543 ("Can't send signals to this remote system. %s not sent.\n",
5544 target_signal_to_name (last_sent_signal));
5545 last_sent_signal = TARGET_SIGNAL_0;
5546 target_terminal_inferior ();
5548 strcpy ((char *) buf, last_sent_step ? "s" : "c");
5549 putpkt ((char *) buf);
5551 /* We just told the target to resume, so a stop reply is in
5553 rs->waiting_for_stop_reply = 1;
5556 /* else fallthrough */
5558 warning (_("Invalid remote reply: %s"), buf);
5560 rs->waiting_for_stop_reply = 1;
5564 if (status->kind == TARGET_WAITKIND_IGNORE)
5566 /* Nothing interesting happened. If we're doing a non-blocking
5567 poll, we're done. Otherwise, go back to waiting. */
5568 if (options & TARGET_WNOHANG)
5569 return minus_one_ptid;
5573 else if (status->kind != TARGET_WAITKIND_EXITED
5574 && status->kind != TARGET_WAITKIND_SIGNALLED)
5576 if (!ptid_equal (event_ptid, null_ptid))
5577 record_currthread (event_ptid);
5579 event_ptid = inferior_ptid;
5582 /* A process exit. Invalidate our notion of current thread. */
5583 record_currthread (minus_one_ptid);
5588 /* Wait until the remote machine stops, then return, storing status in
5589 STATUS just as `wait' would. */
5592 remote_wait (struct target_ops *ops,
5593 ptid_t ptid, struct target_waitstatus *status, int options)
5598 event_ptid = remote_wait_ns (ptid, status, options);
5600 event_ptid = remote_wait_as (ptid, status, options);
5602 if (target_can_async_p ())
5604 /* If there are are events left in the queue tell the event loop
5606 if (stop_reply_queue)
5607 mark_async_event_handler (remote_async_inferior_event_token);
5613 /* Fetch a single register using a 'p' packet. */
5616 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
5618 struct remote_state *rs = get_remote_state ();
5620 char regp[MAX_REGISTER_SIZE];
5623 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
5626 if (reg->pnum == -1)
5631 p += hexnumstr (p, reg->pnum);
5634 getpkt (&rs->buf, &rs->buf_size, 0);
5638 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
5642 case PACKET_UNKNOWN:
5645 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
5646 gdbarch_register_name (get_regcache_arch (regcache),
5651 /* If this register is unfetchable, tell the regcache. */
5654 regcache_raw_supply (regcache, reg->regnum, NULL);
5658 /* Otherwise, parse and supply the value. */
5664 error (_("fetch_register_using_p: early buf termination"));
5666 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
5669 regcache_raw_supply (regcache, reg->regnum, regp);
5673 /* Fetch the registers included in the target's 'g' packet. */
5676 send_g_packet (void)
5678 struct remote_state *rs = get_remote_state ();
5681 sprintf (rs->buf, "g");
5682 remote_send (&rs->buf, &rs->buf_size);
5684 /* We can get out of synch in various cases. If the first character
5685 in the buffer is not a hex character, assume that has happened
5686 and try to fetch another packet to read. */
5687 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
5688 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
5689 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
5690 && rs->buf[0] != 'x') /* New: unavailable register value. */
5693 fprintf_unfiltered (gdb_stdlog,
5694 "Bad register packet; fetching a new packet\n");
5695 getpkt (&rs->buf, &rs->buf_size, 0);
5698 buf_len = strlen (rs->buf);
5700 /* Sanity check the received packet. */
5701 if (buf_len % 2 != 0)
5702 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
5708 process_g_packet (struct regcache *regcache)
5710 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5711 struct remote_state *rs = get_remote_state ();
5712 struct remote_arch_state *rsa = get_remote_arch_state ();
5717 buf_len = strlen (rs->buf);
5719 /* Further sanity checks, with knowledge of the architecture. */
5720 if (buf_len > 2 * rsa->sizeof_g_packet)
5721 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
5723 /* Save the size of the packet sent to us by the target. It is used
5724 as a heuristic when determining the max size of packets that the
5725 target can safely receive. */
5726 if (rsa->actual_register_packet_size == 0)
5727 rsa->actual_register_packet_size = buf_len;
5729 /* If this is smaller than we guessed the 'g' packet would be,
5730 update our records. A 'g' reply that doesn't include a register's
5731 value implies either that the register is not available, or that
5732 the 'p' packet must be used. */
5733 if (buf_len < 2 * rsa->sizeof_g_packet)
5735 rsa->sizeof_g_packet = buf_len / 2;
5737 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
5739 if (rsa->regs[i].pnum == -1)
5742 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
5743 rsa->regs[i].in_g_packet = 0;
5745 rsa->regs[i].in_g_packet = 1;
5749 regs = alloca (rsa->sizeof_g_packet);
5751 /* Unimplemented registers read as all bits zero. */
5752 memset (regs, 0, rsa->sizeof_g_packet);
5754 /* Reply describes registers byte by byte, each byte encoded as two
5755 hex characters. Suck them all up, then supply them to the
5756 register cacheing/storage mechanism. */
5759 for (i = 0; i < rsa->sizeof_g_packet; i++)
5761 if (p[0] == 0 || p[1] == 0)
5762 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
5763 internal_error (__FILE__, __LINE__,
5764 _("unexpected end of 'g' packet reply"));
5766 if (p[0] == 'x' && p[1] == 'x')
5767 regs[i] = 0; /* 'x' */
5769 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
5773 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
5775 struct packet_reg *r = &rsa->regs[i];
5779 if (r->offset * 2 >= strlen (rs->buf))
5780 /* This shouldn't happen - we adjusted in_g_packet above. */
5781 internal_error (__FILE__, __LINE__,
5782 _("unexpected end of 'g' packet reply"));
5783 else if (rs->buf[r->offset * 2] == 'x')
5785 gdb_assert (r->offset * 2 < strlen (rs->buf));
5786 /* The register isn't available, mark it as such (at
5787 the same time setting the value to zero). */
5788 regcache_raw_supply (regcache, r->regnum, NULL);
5791 regcache_raw_supply (regcache, r->regnum,
5798 fetch_registers_using_g (struct regcache *regcache)
5801 process_g_packet (regcache);
5804 /* Make the remote selected traceframe match GDB's selected
5808 set_remote_traceframe (void)
5812 if (remote_traceframe_number == get_traceframe_number ())
5815 /* Avoid recursion, remote_trace_find calls us again. */
5816 remote_traceframe_number = get_traceframe_number ();
5818 newnum = target_trace_find (tfind_number,
5819 get_traceframe_number (), 0, 0, NULL);
5821 /* Should not happen. If it does, all bets are off. */
5822 if (newnum != get_traceframe_number ())
5823 warning (_("could not set remote traceframe"));
5827 remote_fetch_registers (struct target_ops *ops,
5828 struct regcache *regcache, int regnum)
5830 struct remote_arch_state *rsa = get_remote_arch_state ();
5833 set_remote_traceframe ();
5834 set_general_thread (inferior_ptid);
5838 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5840 gdb_assert (reg != NULL);
5842 /* If this register might be in the 'g' packet, try that first -
5843 we are likely to read more than one register. If this is the
5844 first 'g' packet, we might be overly optimistic about its
5845 contents, so fall back to 'p'. */
5846 if (reg->in_g_packet)
5848 fetch_registers_using_g (regcache);
5849 if (reg->in_g_packet)
5853 if (fetch_register_using_p (regcache, reg))
5856 /* This register is not available. */
5857 regcache_raw_supply (regcache, reg->regnum, NULL);
5862 fetch_registers_using_g (regcache);
5864 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5865 if (!rsa->regs[i].in_g_packet)
5866 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
5868 /* This register is not available. */
5869 regcache_raw_supply (regcache, i, NULL);
5873 /* Prepare to store registers. Since we may send them all (using a
5874 'G' request), we have to read out the ones we don't want to change
5878 remote_prepare_to_store (struct regcache *regcache)
5880 struct remote_arch_state *rsa = get_remote_arch_state ();
5882 gdb_byte buf[MAX_REGISTER_SIZE];
5884 /* Make sure the entire registers array is valid. */
5885 switch (remote_protocol_packets[PACKET_P].support)
5887 case PACKET_DISABLE:
5888 case PACKET_SUPPORT_UNKNOWN:
5889 /* Make sure all the necessary registers are cached. */
5890 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5891 if (rsa->regs[i].in_g_packet)
5892 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5899 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
5900 packet was not recognized. */
5903 store_register_using_P (const struct regcache *regcache,
5904 struct packet_reg *reg)
5906 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5907 struct remote_state *rs = get_remote_state ();
5908 /* Try storing a single register. */
5909 char *buf = rs->buf;
5910 gdb_byte regp[MAX_REGISTER_SIZE];
5913 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
5916 if (reg->pnum == -1)
5919 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5920 p = buf + strlen (buf);
5921 regcache_raw_collect (regcache, reg->regnum, regp);
5922 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
5924 getpkt (&rs->buf, &rs->buf_size, 0);
5926 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
5931 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
5932 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
5933 case PACKET_UNKNOWN:
5936 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
5940 /* Store register REGNUM, or all registers if REGNUM == -1, from the
5941 contents of the register cache buffer. FIXME: ignores errors. */
5944 store_registers_using_G (const struct regcache *regcache)
5946 struct remote_state *rs = get_remote_state ();
5947 struct remote_arch_state *rsa = get_remote_arch_state ();
5951 /* Extract all the registers in the regcache copying them into a
5956 regs = alloca (rsa->sizeof_g_packet);
5957 memset (regs, 0, rsa->sizeof_g_packet);
5958 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5960 struct packet_reg *r = &rsa->regs[i];
5963 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
5967 /* Command describes registers byte by byte,
5968 each byte encoded as two hex characters. */
5971 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
5973 bin2hex (regs, p, rsa->sizeof_g_packet);
5975 getpkt (&rs->buf, &rs->buf_size, 0);
5976 if (packet_check_result (rs->buf) == PACKET_ERROR)
5977 error (_("Could not write registers; remote failure reply '%s'"),
5981 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
5982 of the register cache buffer. FIXME: ignores errors. */
5985 remote_store_registers (struct target_ops *ops,
5986 struct regcache *regcache, int regnum)
5988 struct remote_arch_state *rsa = get_remote_arch_state ();
5991 set_remote_traceframe ();
5992 set_general_thread (inferior_ptid);
5996 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5998 gdb_assert (reg != NULL);
6000 /* Always prefer to store registers using the 'P' packet if
6001 possible; we often change only a small number of registers.
6002 Sometimes we change a larger number; we'd need help from a
6003 higher layer to know to use 'G'. */
6004 if (store_register_using_P (regcache, reg))
6007 /* For now, don't complain if we have no way to write the
6008 register. GDB loses track of unavailable registers too
6009 easily. Some day, this may be an error. We don't have
6010 any way to read the register, either... */
6011 if (!reg->in_g_packet)
6014 store_registers_using_G (regcache);
6018 store_registers_using_G (regcache);
6020 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6021 if (!rsa->regs[i].in_g_packet)
6022 if (!store_register_using_P (regcache, &rsa->regs[i]))
6023 /* See above for why we do not issue an error here. */
6028 /* Return the number of hex digits in num. */
6031 hexnumlen (ULONGEST num)
6035 for (i = 0; num != 0; i++)
6041 /* Set BUF to the minimum number of hex digits representing NUM. */
6044 hexnumstr (char *buf, ULONGEST num)
6046 int len = hexnumlen (num);
6048 return hexnumnstr (buf, num, len);
6052 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
6055 hexnumnstr (char *buf, ULONGEST num, int width)
6061 for (i = width - 1; i >= 0; i--)
6063 buf[i] = "0123456789abcdef"[(num & 0xf)];
6070 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
6073 remote_address_masked (CORE_ADDR addr)
6075 int address_size = remote_address_size;
6077 /* If "remoteaddresssize" was not set, default to target address size. */
6079 address_size = gdbarch_addr_bit (target_gdbarch);
6081 if (address_size > 0
6082 && address_size < (sizeof (ULONGEST) * 8))
6084 /* Only create a mask when that mask can safely be constructed
6085 in a ULONGEST variable. */
6088 mask = (mask << address_size) - 1;
6094 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
6095 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
6096 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6097 (which may be more than *OUT_LEN due to escape characters). The
6098 total number of bytes in the output buffer will be at most
6102 remote_escape_output (const gdb_byte *buffer, int len,
6103 gdb_byte *out_buf, int *out_len,
6106 int input_index, output_index;
6109 for (input_index = 0; input_index < len; input_index++)
6111 gdb_byte b = buffer[input_index];
6113 if (b == '$' || b == '#' || b == '}')
6115 /* These must be escaped. */
6116 if (output_index + 2 > out_maxlen)
6118 out_buf[output_index++] = '}';
6119 out_buf[output_index++] = b ^ 0x20;
6123 if (output_index + 1 > out_maxlen)
6125 out_buf[output_index++] = b;
6129 *out_len = input_index;
6130 return output_index;
6133 /* Convert BUFFER, escaped data LEN bytes long, into binary data
6134 in OUT_BUF. Return the number of bytes written to OUT_BUF.
6135 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6137 This function reverses remote_escape_output. It allows more
6138 escaped characters than that function does, in particular because
6139 '*' must be escaped to avoid the run-length encoding processing
6140 in reading packets. */
6143 remote_unescape_input (const gdb_byte *buffer, int len,
6144 gdb_byte *out_buf, int out_maxlen)
6146 int input_index, output_index;
6151 for (input_index = 0; input_index < len; input_index++)
6153 gdb_byte b = buffer[input_index];
6155 if (output_index + 1 > out_maxlen)
6157 warning (_("Received too much data from remote target;"
6158 " ignoring overflow."));
6159 return output_index;
6164 out_buf[output_index++] = b ^ 0x20;
6170 out_buf[output_index++] = b;
6174 error (_("Unmatched escape character in target response."));
6176 return output_index;
6179 /* Determine whether the remote target supports binary downloading.
6180 This is accomplished by sending a no-op memory write of zero length
6181 to the target at the specified address. It does not suffice to send
6182 the whole packet, since many stubs strip the eighth bit and
6183 subsequently compute a wrong checksum, which causes real havoc with
6186 NOTE: This can still lose if the serial line is not eight-bit
6187 clean. In cases like this, the user should clear "remote
6191 check_binary_download (CORE_ADDR addr)
6193 struct remote_state *rs = get_remote_state ();
6195 switch (remote_protocol_packets[PACKET_X].support)
6197 case PACKET_DISABLE:
6201 case PACKET_SUPPORT_UNKNOWN:
6207 p += hexnumstr (p, (ULONGEST) addr);
6209 p += hexnumstr (p, (ULONGEST) 0);
6213 putpkt_binary (rs->buf, (int) (p - rs->buf));
6214 getpkt (&rs->buf, &rs->buf_size, 0);
6216 if (rs->buf[0] == '\0')
6219 fprintf_unfiltered (gdb_stdlog,
6220 "binary downloading NOT "
6221 "supported by target\n");
6222 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
6227 fprintf_unfiltered (gdb_stdlog,
6228 "binary downloading supported by target\n");
6229 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
6236 /* Write memory data directly to the remote machine.
6237 This does not inform the data cache; the data cache uses this.
6238 HEADER is the starting part of the packet.
6239 MEMADDR is the address in the remote memory space.
6240 MYADDR is the address of the buffer in our space.
6241 LEN is the number of bytes.
6242 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6243 should send data as binary ('X'), or hex-encoded ('M').
6245 The function creates packet of the form
6246 <HEADER><ADDRESS>,<LENGTH>:<DATA>
6248 where encoding of <DATA> is termined by PACKET_FORMAT.
6250 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6253 Returns the number of bytes transferred, or 0 (setting errno) for
6254 error. Only transfer a single packet. */
6257 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
6258 const gdb_byte *myaddr, int len,
6259 char packet_format, int use_length)
6261 struct remote_state *rs = get_remote_state ();
6271 if (packet_format != 'X' && packet_format != 'M')
6272 internal_error (__FILE__, __LINE__,
6273 _("remote_write_bytes_aux: bad packet format"));
6278 payload_size = get_memory_write_packet_size ();
6280 /* The packet buffer will be large enough for the payload;
6281 get_memory_packet_size ensures this. */
6284 /* Compute the size of the actual payload by subtracting out the
6285 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
6287 payload_size -= strlen ("$,:#NN");
6289 /* The comma won't be used. */
6291 header_length = strlen (header);
6292 payload_size -= header_length;
6293 payload_size -= hexnumlen (memaddr);
6295 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
6297 strcat (rs->buf, header);
6298 p = rs->buf + strlen (header);
6300 /* Compute a best guess of the number of bytes actually transfered. */
6301 if (packet_format == 'X')
6303 /* Best guess at number of bytes that will fit. */
6304 todo = min (len, payload_size);
6306 payload_size -= hexnumlen (todo);
6307 todo = min (todo, payload_size);
6311 /* Num bytes that will fit. */
6312 todo = min (len, payload_size / 2);
6314 payload_size -= hexnumlen (todo);
6315 todo = min (todo, payload_size / 2);
6319 internal_error (__FILE__, __LINE__,
6320 _("minumum packet size too small to write data"));
6322 /* If we already need another packet, then try to align the end
6323 of this packet to a useful boundary. */
6324 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
6325 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
6327 /* Append "<memaddr>". */
6328 memaddr = remote_address_masked (memaddr);
6329 p += hexnumstr (p, (ULONGEST) memaddr);
6336 /* Append <len>. Retain the location/size of <len>. It may need to
6337 be adjusted once the packet body has been created. */
6339 plenlen = hexnumstr (p, (ULONGEST) todo);
6347 /* Append the packet body. */
6348 if (packet_format == 'X')
6350 /* Binary mode. Send target system values byte by byte, in
6351 increasing byte addresses. Only escape certain critical
6353 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
6356 /* If not all TODO bytes fit, then we'll need another packet. Make
6357 a second try to keep the end of the packet aligned. Don't do
6358 this if the packet is tiny. */
6359 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6363 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
6365 if (new_nr_bytes != nr_bytes)
6366 payload_length = remote_escape_output (myaddr, new_nr_bytes,
6371 p += payload_length;
6372 if (use_length && nr_bytes < todo)
6374 /* Escape chars have filled up the buffer prematurely,
6375 and we have actually sent fewer bytes than planned.
6376 Fix-up the length field of the packet. Use the same
6377 number of characters as before. */
6378 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
6379 *plen = ':'; /* overwrite \0 from hexnumnstr() */
6384 /* Normal mode: Send target system values byte by byte, in
6385 increasing byte addresses. Each byte is encoded as a two hex
6387 nr_bytes = bin2hex (myaddr, p, todo);
6391 putpkt_binary (rs->buf, (int) (p - rs->buf));
6392 getpkt (&rs->buf, &rs->buf_size, 0);
6394 if (rs->buf[0] == 'E')
6396 /* There is no correspondance between what the remote protocol
6397 uses for errors and errno codes. We would like a cleaner way
6398 of representing errors (big enough to include errno codes,
6399 bfd_error codes, and others). But for now just return EIO. */
6404 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6405 fewer bytes than we'd planned. */
6409 /* Write memory data directly to the remote machine.
6410 This does not inform the data cache; the data cache uses this.
6411 MEMADDR is the address in the remote memory space.
6412 MYADDR is the address of the buffer in our space.
6413 LEN is the number of bytes.
6415 Returns number of bytes transferred, or 0 (setting errno) for
6416 error. Only transfer a single packet. */
6419 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
6421 char *packet_format = 0;
6423 /* Check whether the target supports binary download. */
6424 check_binary_download (memaddr);
6426 switch (remote_protocol_packets[PACKET_X].support)
6429 packet_format = "X";
6431 case PACKET_DISABLE:
6432 packet_format = "M";
6434 case PACKET_SUPPORT_UNKNOWN:
6435 internal_error (__FILE__, __LINE__,
6436 _("remote_write_bytes: bad internal state"));
6438 internal_error (__FILE__, __LINE__, _("bad switch"));
6441 return remote_write_bytes_aux (packet_format,
6442 memaddr, myaddr, len, packet_format[0], 1);
6445 /* Read memory data directly from the remote machine.
6446 This does not use the data cache; the data cache uses this.
6447 MEMADDR is the address in the remote memory space.
6448 MYADDR is the address of the buffer in our space.
6449 LEN is the number of bytes.
6451 Returns number of bytes transferred, or 0 for error. */
6454 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
6456 struct remote_state *rs = get_remote_state ();
6457 int max_buf_size; /* Max size of packet output buffer. */
6465 max_buf_size = get_memory_read_packet_size ();
6466 /* The packet buffer will be large enough for the payload;
6467 get_memory_packet_size ensures this. */
6469 /* Number if bytes that will fit. */
6470 todo = min (len, max_buf_size / 2);
6472 /* Construct "m"<memaddr>","<len>". */
6473 memaddr = remote_address_masked (memaddr);
6476 p += hexnumstr (p, (ULONGEST) memaddr);
6478 p += hexnumstr (p, (ULONGEST) todo);
6481 getpkt (&rs->buf, &rs->buf_size, 0);
6482 if (rs->buf[0] == 'E'
6483 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
6484 && rs->buf[3] == '\0')
6486 /* There is no correspondance between what the remote protocol
6487 uses for errors and errno codes. We would like a cleaner way
6488 of representing errors (big enough to include errno codes,
6489 bfd_error codes, and others). But for now just return
6494 /* Reply describes memory byte by byte, each byte encoded as two hex
6497 i = hex2bin (p, myaddr, todo);
6498 /* Return what we have. Let higher layers handle partial reads. */
6503 /* Remote notification handler. */
6506 handle_notification (char *buf, size_t length)
6508 if (strncmp (buf, "Stop:", 5) == 0)
6510 if (pending_stop_reply)
6512 /* We've already parsed the in-flight stop-reply, but the
6513 stub for some reason thought we didn't, possibly due to
6514 timeout on its side. Just ignore it. */
6516 fprintf_unfiltered (gdb_stdlog, "ignoring resent notification\n");
6520 struct cleanup *old_chain;
6521 struct stop_reply *reply = stop_reply_xmalloc ();
6523 old_chain = make_cleanup (do_stop_reply_xfree, reply);
6525 remote_parse_stop_reply (buf + 5, reply);
6527 discard_cleanups (old_chain);
6529 /* Be careful to only set it after parsing, since an error
6530 may be thrown then. */
6531 pending_stop_reply = reply;
6533 /* Notify the event loop there's a stop reply to acknowledge
6534 and that there may be more events to fetch. */
6535 mark_async_event_handler (remote_async_get_pending_events_token);
6538 fprintf_unfiltered (gdb_stdlog, "stop notification captured\n");
6542 /* We ignore notifications we don't recognize, for compatibility
6543 with newer stubs. */
6548 /* Read or write LEN bytes from inferior memory at MEMADDR,
6549 transferring to or from debugger address BUFFER. Write to inferior
6550 if SHOULD_WRITE is nonzero. Returns length of data written or
6551 read; 0 for error. TARGET is unused. */
6554 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
6555 int should_write, struct mem_attrib *attrib,
6556 struct target_ops *target)
6560 set_remote_traceframe ();
6561 set_general_thread (inferior_ptid);
6564 res = remote_write_bytes (mem_addr, buffer, mem_len);
6566 res = remote_read_bytes (mem_addr, buffer, mem_len);
6571 /* Sends a packet with content determined by the printf format string
6572 FORMAT and the remaining arguments, then gets the reply. Returns
6573 whether the packet was a success, a failure, or unknown. */
6575 static enum packet_result
6576 remote_send_printf (const char *format, ...)
6578 struct remote_state *rs = get_remote_state ();
6579 int max_size = get_remote_packet_size ();
6582 va_start (ap, format);
6585 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
6586 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
6588 if (putpkt (rs->buf) < 0)
6589 error (_("Communication problem with target."));
6592 getpkt (&rs->buf, &rs->buf_size, 0);
6594 return packet_check_result (rs->buf);
6598 restore_remote_timeout (void *p)
6600 int value = *(int *)p;
6602 remote_timeout = value;
6605 /* Flash writing can take quite some time. We'll set
6606 effectively infinite timeout for flash operations.
6607 In future, we'll need to decide on a better approach. */
6608 static const int remote_flash_timeout = 1000;
6611 remote_flash_erase (struct target_ops *ops,
6612 ULONGEST address, LONGEST length)
6614 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
6615 int saved_remote_timeout = remote_timeout;
6616 enum packet_result ret;
6617 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6618 &saved_remote_timeout);
6620 remote_timeout = remote_flash_timeout;
6622 ret = remote_send_printf ("vFlashErase:%s,%s",
6623 phex (address, addr_size),
6627 case PACKET_UNKNOWN:
6628 error (_("Remote target does not support flash erase"));
6630 error (_("Error erasing flash with vFlashErase packet"));
6635 do_cleanups (back_to);
6639 remote_flash_write (struct target_ops *ops,
6640 ULONGEST address, LONGEST length,
6641 const gdb_byte *data)
6643 int saved_remote_timeout = remote_timeout;
6645 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6646 &saved_remote_timeout);
6648 remote_timeout = remote_flash_timeout;
6649 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
6650 do_cleanups (back_to);
6656 remote_flash_done (struct target_ops *ops)
6658 int saved_remote_timeout = remote_timeout;
6660 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6661 &saved_remote_timeout);
6663 remote_timeout = remote_flash_timeout;
6664 ret = remote_send_printf ("vFlashDone");
6665 do_cleanups (back_to);
6669 case PACKET_UNKNOWN:
6670 error (_("Remote target does not support vFlashDone"));
6672 error (_("Error finishing flash operation"));
6679 remote_files_info (struct target_ops *ignore)
6681 puts_filtered ("Debugging a target over a serial line.\n");
6684 /* Stuff for dealing with the packets which are part of this protocol.
6685 See comment at top of file for details. */
6687 /* Read a single character from the remote end. */
6690 readchar (int timeout)
6694 ch = serial_readchar (remote_desc, timeout);
6699 switch ((enum serial_rc) ch)
6703 error (_("Remote connection closed"));
6707 perror_with_name (_("Remote communication error. "
6708 "Target disconnected."));
6710 case SERIAL_TIMEOUT:
6716 /* Send the command in *BUF to the remote machine, and read the reply
6717 into *BUF. Report an error if we get an error reply. Resize
6718 *BUF using xrealloc if necessary to hold the result, and update
6722 remote_send (char **buf,
6726 getpkt (buf, sizeof_buf, 0);
6728 if ((*buf)[0] == 'E')
6729 error (_("Remote failure reply: %s"), *buf);
6732 /* Return a pointer to an xmalloc'ed string representing an escaped
6733 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
6734 etc. The caller is responsible for releasing the returned
6738 escape_buffer (const char *buf, int n)
6740 struct cleanup *old_chain;
6741 struct ui_file *stb;
6744 stb = mem_fileopen ();
6745 old_chain = make_cleanup_ui_file_delete (stb);
6747 fputstrn_unfiltered (buf, n, 0, stb);
6748 str = ui_file_xstrdup (stb, NULL);
6749 do_cleanups (old_chain);
6753 /* Display a null-terminated packet on stdout, for debugging, using C
6757 print_packet (char *buf)
6759 puts_filtered ("\"");
6760 fputstr_filtered (buf, '"', gdb_stdout);
6761 puts_filtered ("\"");
6767 return putpkt_binary (buf, strlen (buf));
6770 /* Send a packet to the remote machine, with error checking. The data
6771 of the packet is in BUF. The string in BUF can be at most
6772 get_remote_packet_size () - 5 to account for the $, # and checksum,
6773 and for a possible /0 if we are debugging (remote_debug) and want
6774 to print the sent packet as a string. */
6777 putpkt_binary (char *buf, int cnt)
6779 struct remote_state *rs = get_remote_state ();
6781 unsigned char csum = 0;
6782 char *buf2 = alloca (cnt + 6);
6788 /* Catch cases like trying to read memory or listing threads while
6789 we're waiting for a stop reply. The remote server wouldn't be
6790 ready to handle this request, so we'd hang and timeout. We don't
6791 have to worry about this in synchronous mode, because in that
6792 case it's not possible to issue a command while the target is
6793 running. This is not a problem in non-stop mode, because in that
6794 case, the stub is always ready to process serial input. */
6795 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
6796 error (_("Cannot execute this command while the target is running."));
6798 /* We're sending out a new packet. Make sure we don't look at a
6799 stale cached response. */
6800 rs->cached_wait_status = 0;
6802 /* Copy the packet into buffer BUF2, encapsulating it
6803 and giving it a checksum. */
6808 for (i = 0; i < cnt; i++)
6814 *p++ = tohex ((csum >> 4) & 0xf);
6815 *p++ = tohex (csum & 0xf);
6817 /* Send it over and over until we get a positive ack. */
6821 int started_error_output = 0;
6825 struct cleanup *old_chain;
6829 str = escape_buffer (buf2, p - buf2);
6830 old_chain = make_cleanup (xfree, str);
6831 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
6832 gdb_flush (gdb_stdlog);
6833 do_cleanups (old_chain);
6835 if (serial_write (remote_desc, buf2, p - buf2))
6836 perror_with_name (_("putpkt: write failed"));
6838 /* If this is a no acks version of the remote protocol, send the
6839 packet and move on. */
6843 /* Read until either a timeout occurs (-2) or '+' is read.
6844 Handle any notification that arrives in the mean time. */
6847 ch = readchar (remote_timeout);
6855 case SERIAL_TIMEOUT:
6858 if (started_error_output)
6860 putchar_unfiltered ('\n');
6861 started_error_output = 0;
6870 fprintf_unfiltered (gdb_stdlog, "Ack\n");
6874 fprintf_unfiltered (gdb_stdlog, "Nak\n");
6876 case SERIAL_TIMEOUT:
6880 break; /* Retransmit buffer. */
6884 fprintf_unfiltered (gdb_stdlog,
6885 "Packet instead of Ack, ignoring it\n");
6886 /* It's probably an old response sent because an ACK
6887 was lost. Gobble up the packet and ack it so it
6888 doesn't get retransmitted when we resend this
6891 serial_write (remote_desc, "+", 1);
6892 continue; /* Now, go look for +. */
6899 /* If we got a notification, handle it, and go back to looking
6901 /* We've found the start of a notification. Now
6902 collect the data. */
6903 val = read_frame (&rs->buf, &rs->buf_size);
6908 struct cleanup *old_chain;
6911 str = escape_buffer (rs->buf, val);
6912 old_chain = make_cleanup (xfree, str);
6913 fprintf_unfiltered (gdb_stdlog,
6914 " Notification received: %s\n",
6916 do_cleanups (old_chain);
6918 handle_notification (rs->buf, val);
6919 /* We're in sync now, rewait for the ack. */
6926 if (!started_error_output)
6928 started_error_output = 1;
6929 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6931 fputc_unfiltered (ch & 0177, gdb_stdlog);
6932 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
6941 if (!started_error_output)
6943 started_error_output = 1;
6944 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6946 fputc_unfiltered (ch & 0177, gdb_stdlog);
6950 break; /* Here to retransmit. */
6954 /* This is wrong. If doing a long backtrace, the user should be
6955 able to get out next time we call QUIT, without anything as
6956 violent as interrupt_query. If we want to provide a way out of
6957 here without getting to the next QUIT, it should be based on
6958 hitting ^C twice as in remote_wait. */
6969 /* Come here after finding the start of a frame when we expected an
6970 ack. Do our best to discard the rest of this packet. */
6979 c = readchar (remote_timeout);
6982 case SERIAL_TIMEOUT:
6983 /* Nothing we can do. */
6986 /* Discard the two bytes of checksum and stop. */
6987 c = readchar (remote_timeout);
6989 c = readchar (remote_timeout);
6992 case '*': /* Run length encoding. */
6993 /* Discard the repeat count. */
6994 c = readchar (remote_timeout);
6999 /* A regular character. */
7005 /* Come here after finding the start of the frame. Collect the rest
7006 into *BUF, verifying the checksum, length, and handling run-length
7007 compression. NUL terminate the buffer. If there is not enough room,
7008 expand *BUF using xrealloc.
7010 Returns -1 on error, number of characters in buffer (ignoring the
7011 trailing NULL) on success. (could be extended to return one of the
7012 SERIAL status indications). */
7015 read_frame (char **buf_p,
7022 struct remote_state *rs = get_remote_state ();
7029 c = readchar (remote_timeout);
7032 case SERIAL_TIMEOUT:
7034 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
7038 fputs_filtered ("Saw new packet start in middle of old one\n",
7040 return -1; /* Start a new packet, count retries. */
7043 unsigned char pktcsum;
7049 check_0 = readchar (remote_timeout);
7051 check_1 = readchar (remote_timeout);
7053 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
7056 fputs_filtered ("Timeout in checksum, retrying\n",
7060 else if (check_0 < 0 || check_1 < 0)
7063 fputs_filtered ("Communication error in checksum\n",
7068 /* Don't recompute the checksum; with no ack packets we
7069 don't have any way to indicate a packet retransmission
7074 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
7075 if (csum == pktcsum)
7080 struct cleanup *old_chain;
7083 str = escape_buffer (buf, bc);
7084 old_chain = make_cleanup (xfree, str);
7085 fprintf_unfiltered (gdb_stdlog,
7086 "Bad checksum, sentsum=0x%x, "
7087 "csum=0x%x, buf=%s\n",
7088 pktcsum, csum, str);
7089 do_cleanups (old_chain);
7091 /* Number of characters in buffer ignoring trailing
7095 case '*': /* Run length encoding. */
7100 c = readchar (remote_timeout);
7102 repeat = c - ' ' + 3; /* Compute repeat count. */
7104 /* The character before ``*'' is repeated. */
7106 if (repeat > 0 && repeat <= 255 && bc > 0)
7108 if (bc + repeat - 1 >= *sizeof_buf - 1)
7110 /* Make some more room in the buffer. */
7111 *sizeof_buf += repeat;
7112 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7116 memset (&buf[bc], buf[bc - 1], repeat);
7122 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
7126 if (bc >= *sizeof_buf - 1)
7128 /* Make some more room in the buffer. */
7130 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7141 /* Read a packet from the remote machine, with error checking, and
7142 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7143 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7144 rather than timing out; this is used (in synchronous mode) to wait
7145 for a target that is is executing user code to stop. */
7146 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7147 don't have to change all the calls to getpkt to deal with the
7148 return value, because at the moment I don't know what the right
7149 thing to do it for those. */
7157 timed_out = getpkt_sane (buf, sizeof_buf, forever);
7161 /* Read a packet from the remote machine, with error checking, and
7162 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7163 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7164 rather than timing out; this is used (in synchronous mode) to wait
7165 for a target that is is executing user code to stop. If FOREVER ==
7166 0, this function is allowed to time out gracefully and return an
7167 indication of this to the caller. Otherwise return the number of
7168 bytes read. If EXPECTING_NOTIF, consider receiving a notification
7169 enough reason to return to the caller. */
7172 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
7173 int expecting_notif)
7175 struct remote_state *rs = get_remote_state ();
7181 /* We're reading a new response. Make sure we don't look at a
7182 previously cached response. */
7183 rs->cached_wait_status = 0;
7185 strcpy (*buf, "timeout");
7188 timeout = watchdog > 0 ? watchdog : -1;
7189 else if (expecting_notif)
7190 timeout = 0; /* There should already be a char in the buffer. If
7193 timeout = remote_timeout;
7197 /* Process any number of notifications, and then return when
7201 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7203 for (tries = 1; tries <= MAX_TRIES; tries++)
7205 /* This can loop forever if the remote side sends us
7206 characters continuously, but if it pauses, we'll get
7207 SERIAL_TIMEOUT from readchar because of timeout. Then
7208 we'll count that as a retry.
7210 Note that even when forever is set, we will only wait
7211 forever prior to the start of a packet. After that, we
7212 expect characters to arrive at a brisk pace. They should
7213 show up within remote_timeout intervals. */
7215 c = readchar (timeout);
7216 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
7218 if (c == SERIAL_TIMEOUT)
7220 if (expecting_notif)
7221 return -1; /* Don't complain, it's normal to not get
7222 anything in this case. */
7224 if (forever) /* Watchdog went off? Kill the target. */
7228 error (_("Watchdog timeout has expired. Target detached."));
7231 fputs_filtered ("Timed out.\n", gdb_stdlog);
7235 /* We've found the start of a packet or notification.
7236 Now collect the data. */
7237 val = read_frame (buf, sizeof_buf);
7242 serial_write (remote_desc, "-", 1);
7245 if (tries > MAX_TRIES)
7247 /* We have tried hard enough, and just can't receive the
7248 packet/notification. Give up. */
7249 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
7251 /* Skip the ack char if we're in no-ack mode. */
7252 if (!rs->noack_mode)
7253 serial_write (remote_desc, "+", 1);
7257 /* If we got an ordinary packet, return that to our caller. */
7262 struct cleanup *old_chain;
7265 str = escape_buffer (*buf, val);
7266 old_chain = make_cleanup (xfree, str);
7267 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
7268 do_cleanups (old_chain);
7271 /* Skip the ack char if we're in no-ack mode. */
7272 if (!rs->noack_mode)
7273 serial_write (remote_desc, "+", 1);
7277 /* If we got a notification, handle it, and go back to looking
7281 gdb_assert (c == '%');
7285 struct cleanup *old_chain;
7288 str = escape_buffer (*buf, val);
7289 old_chain = make_cleanup (xfree, str);
7290 fprintf_unfiltered (gdb_stdlog,
7291 " Notification received: %s\n",
7293 do_cleanups (old_chain);
7296 handle_notification (*buf, val);
7298 /* Notifications require no acknowledgement. */
7300 if (expecting_notif)
7307 getpkt_sane (char **buf, long *sizeof_buf, int forever)
7309 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
7313 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
7315 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
7320 remote_kill (struct target_ops *ops)
7322 /* Use catch_errors so the user can quit from gdb even when we
7323 aren't on speaking terms with the remote system. */
7324 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
7326 /* Don't wait for it to die. I'm not really sure it matters whether
7327 we do or not. For the existing stubs, kill is a noop. */
7328 target_mourn_inferior ();
7332 remote_vkill (int pid, struct remote_state *rs)
7334 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7337 /* Tell the remote target to detach. */
7338 sprintf (rs->buf, "vKill;%x", pid);
7340 getpkt (&rs->buf, &rs->buf_size, 0);
7342 if (packet_ok (rs->buf,
7343 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
7345 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7352 extended_remote_kill (struct target_ops *ops)
7355 int pid = ptid_get_pid (inferior_ptid);
7356 struct remote_state *rs = get_remote_state ();
7358 res = remote_vkill (pid, rs);
7359 if (res == -1 && !remote_multi_process_p (rs))
7361 /* Don't try 'k' on a multi-process aware stub -- it has no way
7362 to specify the pid. */
7366 getpkt (&rs->buf, &rs->buf_size, 0);
7367 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
7370 /* Don't wait for it to die. I'm not really sure it matters whether
7371 we do or not. For the existing stubs, kill is a noop. */
7377 error (_("Can't kill process"));
7379 target_mourn_inferior ();
7383 remote_mourn (struct target_ops *ops)
7385 remote_mourn_1 (ops);
7388 /* Worker function for remote_mourn. */
7390 remote_mourn_1 (struct target_ops *target)
7392 unpush_target (target);
7394 /* remote_close takes care of doing most of the clean up. */
7395 generic_mourn_inferior ();
7399 extended_remote_mourn_1 (struct target_ops *target)
7401 struct remote_state *rs = get_remote_state ();
7403 /* In case we got here due to an error, but we're going to stay
7405 rs->waiting_for_stop_reply = 0;
7407 /* We're no longer interested in these events. */
7408 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
7410 /* If the current general thread belonged to the process we just
7411 detached from or has exited, the remote side current general
7412 thread becomes undefined. Considering a case like this:
7414 - We just got here due to a detach.
7415 - The process that we're detaching from happens to immediately
7416 report a global breakpoint being hit in non-stop mode, in the
7417 same thread we had selected before.
7418 - GDB attaches to this process again.
7419 - This event happens to be the next event we handle.
7421 GDB would consider that the current general thread didn't need to
7422 be set on the stub side (with Hg), since for all it knew,
7423 GENERAL_THREAD hadn't changed.
7425 Notice that although in all-stop mode, the remote server always
7426 sets the current thread to the thread reporting the stop event,
7427 that doesn't happen in non-stop mode; in non-stop, the stub *must
7428 not* change the current thread when reporting a breakpoint hit,
7429 due to the decoupling of event reporting and event handling.
7431 To keep things simple, we always invalidate our notion of the
7433 record_currthread (minus_one_ptid);
7435 /* Unlike "target remote", we do not want to unpush the target; then
7436 the next time the user says "run", we won't be connected. */
7438 /* Call common code to mark the inferior as not running. */
7439 generic_mourn_inferior ();
7441 if (!have_inferiors ())
7443 if (!remote_multi_process_p (rs))
7445 /* Check whether the target is running now - some remote stubs
7446 automatically restart after kill. */
7448 getpkt (&rs->buf, &rs->buf_size, 0);
7450 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
7452 /* Assume that the target has been restarted. Set
7453 inferior_ptid so that bits of core GDB realizes
7454 there's something here, e.g., so that the user can
7455 say "kill" again. */
7456 inferior_ptid = magic_null_ptid;
7463 extended_remote_mourn (struct target_ops *ops)
7465 extended_remote_mourn_1 (ops);
7469 extended_remote_run (char *args)
7471 struct remote_state *rs = get_remote_state ();
7474 /* If the user has disabled vRun support, or we have detected that
7475 support is not available, do not try it. */
7476 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7479 strcpy (rs->buf, "vRun;");
7480 len = strlen (rs->buf);
7482 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
7483 error (_("Remote file name too long for run packet"));
7484 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
7486 gdb_assert (args != NULL);
7489 struct cleanup *back_to;
7493 argv = gdb_buildargv (args);
7494 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
7495 for (i = 0; argv[i] != NULL; i++)
7497 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
7498 error (_("Argument list too long for run packet"));
7499 rs->buf[len++] = ';';
7500 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
7502 do_cleanups (back_to);
7505 rs->buf[len++] = '\0';
7508 getpkt (&rs->buf, &rs->buf_size, 0);
7510 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
7512 /* We have a wait response; we don't need it, though. All is well. */
7515 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7516 /* It wasn't disabled before, but it is now. */
7520 if (remote_exec_file[0] == '\0')
7521 error (_("Running the default executable on the remote target failed; "
7522 "try \"set remote exec-file\"?"));
7524 error (_("Running \"%s\" on the remote target failed"),
7529 /* In the extended protocol we want to be able to do things like
7530 "run" and have them basically work as expected. So we need
7531 a special create_inferior function. We support changing the
7532 executable file and the command line arguments, but not the
7536 extended_remote_create_inferior_1 (char *exec_file, char *args,
7537 char **env, int from_tty)
7539 /* If running asynchronously, register the target file descriptor
7540 with the event loop. */
7541 if (target_can_async_p ())
7542 target_async (inferior_event_handler, 0);
7544 /* Now restart the remote server. */
7545 if (extended_remote_run (args) == -1)
7547 /* vRun was not supported. Fail if we need it to do what the
7549 if (remote_exec_file[0])
7550 error (_("Remote target does not support \"set remote exec-file\""));
7552 error (_("Remote target does not support \"set args\" or run <ARGS>"));
7554 /* Fall back to "R". */
7555 extended_remote_restart ();
7558 if (!have_inferiors ())
7560 /* Clean up from the last time we ran, before we mark the target
7561 running again. This will mark breakpoints uninserted, and
7562 get_offsets may insert breakpoints. */
7563 init_thread_list ();
7564 init_wait_for_inferior ();
7567 /* Now mark the inferior as running before we do anything else. */
7568 inferior_ptid = magic_null_ptid;
7570 /* Now, if we have thread information, update inferior_ptid. */
7571 inferior_ptid = remote_current_thread (inferior_ptid);
7573 remote_add_inferior (ptid_get_pid (inferior_ptid), 0);
7574 add_thread_silent (inferior_ptid);
7576 /* Get updated offsets, if the stub uses qOffsets. */
7581 extended_remote_create_inferior (struct target_ops *ops,
7582 char *exec_file, char *args,
7583 char **env, int from_tty)
7585 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
7589 /* Insert a breakpoint. On targets that have software breakpoint
7590 support, we ask the remote target to do the work; on targets
7591 which don't, we insert a traditional memory breakpoint. */
7594 remote_insert_breakpoint (struct gdbarch *gdbarch,
7595 struct bp_target_info *bp_tgt)
7597 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
7598 If it succeeds, then set the support to PACKET_ENABLE. If it
7599 fails, and the user has explicitly requested the Z support then
7600 report an error, otherwise, mark it disabled and go on. */
7602 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
7604 CORE_ADDR addr = bp_tgt->placed_address;
7605 struct remote_state *rs;
7609 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
7611 rs = get_remote_state ();
7617 addr = (ULONGEST) remote_address_masked (addr);
7618 p += hexnumstr (p, addr);
7619 sprintf (p, ",%d", bpsize);
7622 getpkt (&rs->buf, &rs->buf_size, 0);
7624 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
7629 bp_tgt->placed_address = addr;
7630 bp_tgt->placed_size = bpsize;
7632 case PACKET_UNKNOWN:
7637 return memory_insert_breakpoint (gdbarch, bp_tgt);
7641 remote_remove_breakpoint (struct gdbarch *gdbarch,
7642 struct bp_target_info *bp_tgt)
7644 CORE_ADDR addr = bp_tgt->placed_address;
7645 struct remote_state *rs = get_remote_state ();
7647 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
7655 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
7656 p += hexnumstr (p, addr);
7657 sprintf (p, ",%d", bp_tgt->placed_size);
7660 getpkt (&rs->buf, &rs->buf_size, 0);
7662 return (rs->buf[0] == 'E');
7665 return memory_remove_breakpoint (gdbarch, bp_tgt);
7669 watchpoint_to_Z_packet (int type)
7674 return Z_PACKET_WRITE_WP;
7677 return Z_PACKET_READ_WP;
7680 return Z_PACKET_ACCESS_WP;
7683 internal_error (__FILE__, __LINE__,
7684 _("hw_bp_to_z: bad watchpoint type %d"), type);
7689 remote_insert_watchpoint (CORE_ADDR addr, int len, int type,
7690 struct expression *cond)
7692 struct remote_state *rs = get_remote_state ();
7694 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
7696 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
7699 sprintf (rs->buf, "Z%x,", packet);
7700 p = strchr (rs->buf, '\0');
7701 addr = remote_address_masked (addr);
7702 p += hexnumstr (p, (ULONGEST) addr);
7703 sprintf (p, ",%x", len);
7706 getpkt (&rs->buf, &rs->buf_size, 0);
7708 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
7712 case PACKET_UNKNOWN:
7717 internal_error (__FILE__, __LINE__,
7718 _("remote_insert_watchpoint: reached end of function"));
7723 remote_remove_watchpoint (CORE_ADDR addr, int len, int type,
7724 struct expression *cond)
7726 struct remote_state *rs = get_remote_state ();
7728 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
7730 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
7733 sprintf (rs->buf, "z%x,", packet);
7734 p = strchr (rs->buf, '\0');
7735 addr = remote_address_masked (addr);
7736 p += hexnumstr (p, (ULONGEST) addr);
7737 sprintf (p, ",%x", len);
7739 getpkt (&rs->buf, &rs->buf_size, 0);
7741 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
7744 case PACKET_UNKNOWN:
7749 internal_error (__FILE__, __LINE__,
7750 _("remote_remove_watchpoint: reached end of function"));
7754 int remote_hw_watchpoint_limit = -1;
7755 int remote_hw_breakpoint_limit = -1;
7758 remote_check_watch_resources (int type, int cnt, int ot)
7760 if (type == bp_hardware_breakpoint)
7762 if (remote_hw_breakpoint_limit == 0)
7764 else if (remote_hw_breakpoint_limit < 0)
7766 else if (cnt <= remote_hw_breakpoint_limit)
7771 if (remote_hw_watchpoint_limit == 0)
7773 else if (remote_hw_watchpoint_limit < 0)
7777 else if (cnt <= remote_hw_watchpoint_limit)
7784 remote_stopped_by_watchpoint (void)
7786 return remote_stopped_by_watchpoint_p;
7790 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
7794 if (remote_stopped_by_watchpoint ())
7796 *addr_p = remote_watch_data_address;
7805 remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
7806 struct bp_target_info *bp_tgt)
7809 struct remote_state *rs;
7812 /* The length field should be set to the size of a breakpoint
7813 instruction, even though we aren't inserting one ourselves. */
7815 gdbarch_remote_breakpoint_from_pc
7816 (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
7818 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7821 rs = get_remote_state ();
7828 addr = remote_address_masked (bp_tgt->placed_address);
7829 p += hexnumstr (p, (ULONGEST) addr);
7830 sprintf (p, ",%x", bp_tgt->placed_size);
7833 getpkt (&rs->buf, &rs->buf_size, 0);
7835 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7838 case PACKET_UNKNOWN:
7843 internal_error (__FILE__, __LINE__,
7844 _("remote_insert_hw_breakpoint: reached end of function"));
7849 remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
7850 struct bp_target_info *bp_tgt)
7853 struct remote_state *rs = get_remote_state ();
7856 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7863 addr = remote_address_masked (bp_tgt->placed_address);
7864 p += hexnumstr (p, (ULONGEST) addr);
7865 sprintf (p, ",%x", bp_tgt->placed_size);
7868 getpkt (&rs->buf, &rs->buf_size, 0);
7870 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7873 case PACKET_UNKNOWN:
7878 internal_error (__FILE__, __LINE__,
7879 _("remote_remove_hw_breakpoint: reached end of function"));
7882 /* Table used by the crc32 function to calcuate the checksum. */
7884 static unsigned long crc32_table[256] =
7887 static unsigned long
7888 crc32 (const unsigned char *buf, int len, unsigned int crc)
7890 if (!crc32_table[1])
7892 /* Initialize the CRC table and the decoding table. */
7896 for (i = 0; i < 256; i++)
7898 for (c = i << 24, j = 8; j > 0; --j)
7899 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
7906 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
7912 /* Verify memory using the "qCRC:" request. */
7915 remote_verify_memory (struct target_ops *ops,
7916 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
7918 struct remote_state *rs = get_remote_state ();
7919 unsigned long host_crc, target_crc;
7922 /* FIXME: assumes lma can fit into long. */
7923 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
7924 (long) lma, (long) size);
7927 /* Be clever; compute the host_crc before waiting for target
7929 host_crc = crc32 (data, size, 0xffffffff);
7931 getpkt (&rs->buf, &rs->buf_size, 0);
7932 if (rs->buf[0] == 'E')
7935 if (rs->buf[0] != 'C')
7936 error (_("remote target does not support this operation"));
7938 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
7939 target_crc = target_crc * 16 + fromhex (*tmp);
7941 return (host_crc == target_crc);
7944 /* compare-sections command
7946 With no arguments, compares each loadable section in the exec bfd
7947 with the same memory range on the target, and reports mismatches.
7948 Useful for verifying the image on the target against the exec file. */
7951 compare_sections_command (char *args, int from_tty)
7954 struct cleanup *old_chain;
7956 const char *sectname;
7964 error (_("command cannot be used without an exec file"));
7966 for (s = exec_bfd->sections; s; s = s->next)
7968 if (!(s->flags & SEC_LOAD))
7969 continue; /* Skip non-loadable section. */
7971 size = bfd_get_section_size (s);
7973 continue; /* Skip zero-length section. */
7975 sectname = bfd_get_section_name (exec_bfd, s);
7976 if (args && strcmp (args, sectname) != 0)
7977 continue; /* Not the section selected by user. */
7979 matched = 1; /* Do this section. */
7982 sectdata = xmalloc (size);
7983 old_chain = make_cleanup (xfree, sectdata);
7984 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
7986 res = target_verify_memory (sectdata, lma, size);
7989 error (_("target memory fault, section %s, range %s -- %s"), sectname,
7990 paddress (target_gdbarch, lma),
7991 paddress (target_gdbarch, lma + size));
7993 printf_filtered ("Section %s, range %s -- %s: ", sectname,
7994 paddress (target_gdbarch, lma),
7995 paddress (target_gdbarch, lma + size));
7997 printf_filtered ("matched.\n");
8000 printf_filtered ("MIS-MATCHED!\n");
8004 do_cleanups (old_chain);
8007 warning (_("One or more sections of the remote executable does not match\n\
8008 the loaded file\n"));
8009 if (args && !matched)
8010 printf_filtered (_("No loaded section named '%s'.\n"), args);
8013 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8014 into remote target. The number of bytes written to the remote
8015 target is returned, or -1 for error. */
8018 remote_write_qxfer (struct target_ops *ops, const char *object_name,
8019 const char *annex, const gdb_byte *writebuf,
8020 ULONGEST offset, LONGEST len,
8021 struct packet_config *packet)
8025 struct remote_state *rs = get_remote_state ();
8026 int max_size = get_memory_write_packet_size ();
8028 if (packet->support == PACKET_DISABLE)
8031 /* Insert header. */
8032 i = snprintf (rs->buf, max_size,
8033 "qXfer:%s:write:%s:%s:",
8034 object_name, annex ? annex : "",
8035 phex_nz (offset, sizeof offset));
8036 max_size -= (i + 1);
8038 /* Escape as much data as fits into rs->buf. */
8039 buf_len = remote_escape_output
8040 (writebuf, len, (rs->buf + i), &max_size, max_size);
8042 if (putpkt_binary (rs->buf, i + buf_len) < 0
8043 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8044 || packet_ok (rs->buf, packet) != PACKET_OK)
8047 unpack_varlen_hex (rs->buf, &n);
8051 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8052 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8053 number of bytes read is returned, or 0 for EOF, or -1 for error.
8054 The number of bytes read may be less than LEN without indicating an
8055 EOF. PACKET is checked and updated to indicate whether the remote
8056 target supports this object. */
8059 remote_read_qxfer (struct target_ops *ops, const char *object_name,
8061 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
8062 struct packet_config *packet)
8064 static char *finished_object;
8065 static char *finished_annex;
8066 static ULONGEST finished_offset;
8068 struct remote_state *rs = get_remote_state ();
8069 LONGEST i, n, packet_len;
8071 if (packet->support == PACKET_DISABLE)
8074 /* Check whether we've cached an end-of-object packet that matches
8076 if (finished_object)
8078 if (strcmp (object_name, finished_object) == 0
8079 && strcmp (annex ? annex : "", finished_annex) == 0
8080 && offset == finished_offset)
8083 /* Otherwise, we're now reading something different. Discard
8085 xfree (finished_object);
8086 xfree (finished_annex);
8087 finished_object = NULL;
8088 finished_annex = NULL;
8091 /* Request only enough to fit in a single packet. The actual data
8092 may not, since we don't know how much of it will need to be escaped;
8093 the target is free to respond with slightly less data. We subtract
8094 five to account for the response type and the protocol frame. */
8095 n = min (get_remote_packet_size () - 5, len);
8096 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8097 object_name, annex ? annex : "",
8098 phex_nz (offset, sizeof offset),
8099 phex_nz (n, sizeof n));
8100 i = putpkt (rs->buf);
8105 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8106 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
8109 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8110 error (_("Unknown remote qXfer reply: %s"), rs->buf);
8112 /* 'm' means there is (or at least might be) more data after this
8113 batch. That does not make sense unless there's at least one byte
8114 of data in this reply. */
8115 if (rs->buf[0] == 'm' && packet_len == 1)
8116 error (_("Remote qXfer reply contained no data."));
8118 /* Got some data. */
8119 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
8121 /* 'l' is an EOF marker, possibly including a final block of data,
8122 or possibly empty. If we have the final block of a non-empty
8123 object, record this fact to bypass a subsequent partial read. */
8124 if (rs->buf[0] == 'l' && offset + i > 0)
8126 finished_object = xstrdup (object_name);
8127 finished_annex = xstrdup (annex ? annex : "");
8128 finished_offset = offset + i;
8135 remote_xfer_partial (struct target_ops *ops, enum target_object object,
8136 const char *annex, gdb_byte *readbuf,
8137 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
8139 struct remote_state *rs;
8144 set_remote_traceframe ();
8145 set_general_thread (inferior_ptid);
8147 rs = get_remote_state ();
8149 /* Handle memory using the standard memory routines. */
8150 if (object == TARGET_OBJECT_MEMORY)
8156 /* If the remote target is connected but not running, we should
8157 pass this request down to a lower stratum (e.g. the executable
8159 if (!target_has_execution)
8162 if (writebuf != NULL)
8163 xfered = remote_write_bytes (offset, writebuf, len);
8165 xfered = remote_read_bytes (offset, readbuf, len);
8169 else if (xfered == 0 && errno == 0)
8175 /* Handle SPU memory using qxfer packets. */
8176 if (object == TARGET_OBJECT_SPU)
8179 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
8180 &remote_protocol_packets
8181 [PACKET_qXfer_spu_read]);
8183 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
8184 &remote_protocol_packets
8185 [PACKET_qXfer_spu_write]);
8188 /* Handle extra signal info using qxfer packets. */
8189 if (object == TARGET_OBJECT_SIGNAL_INFO)
8192 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
8193 &remote_protocol_packets
8194 [PACKET_qXfer_siginfo_read]);
8196 return remote_write_qxfer (ops, "siginfo", annex,
8197 writebuf, offset, len,
8198 &remote_protocol_packets
8199 [PACKET_qXfer_siginfo_write]);
8202 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
8205 return remote_read_qxfer (ops, "statictrace", annex,
8206 readbuf, offset, len,
8207 &remote_protocol_packets
8208 [PACKET_qXfer_statictrace_read]);
8213 /* Only handle flash writes. */
8214 if (writebuf != NULL)
8220 case TARGET_OBJECT_FLASH:
8221 xfered = remote_flash_write (ops, offset, len, writebuf);
8225 else if (xfered == 0 && errno == 0)
8235 /* Map pre-existing objects onto letters. DO NOT do this for new
8236 objects!!! Instead specify new query packets. */
8239 case TARGET_OBJECT_AVR:
8243 case TARGET_OBJECT_AUXV:
8244 gdb_assert (annex == NULL);
8245 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
8246 &remote_protocol_packets[PACKET_qXfer_auxv]);
8248 case TARGET_OBJECT_AVAILABLE_FEATURES:
8249 return remote_read_qxfer
8250 (ops, "features", annex, readbuf, offset, len,
8251 &remote_protocol_packets[PACKET_qXfer_features]);
8253 case TARGET_OBJECT_LIBRARIES:
8254 return remote_read_qxfer
8255 (ops, "libraries", annex, readbuf, offset, len,
8256 &remote_protocol_packets[PACKET_qXfer_libraries]);
8258 case TARGET_OBJECT_MEMORY_MAP:
8259 gdb_assert (annex == NULL);
8260 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
8261 &remote_protocol_packets[PACKET_qXfer_memory_map]);
8263 case TARGET_OBJECT_OSDATA:
8264 /* Should only get here if we're connected. */
8265 gdb_assert (remote_desc);
8266 return remote_read_qxfer
8267 (ops, "osdata", annex, readbuf, offset, len,
8268 &remote_protocol_packets[PACKET_qXfer_osdata]);
8270 case TARGET_OBJECT_THREADS:
8271 gdb_assert (annex == NULL);
8272 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
8273 &remote_protocol_packets[PACKET_qXfer_threads]);
8275 case TARGET_OBJECT_TRACEFRAME_INFO:
8276 gdb_assert (annex == NULL);
8277 return remote_read_qxfer
8278 (ops, "traceframe-info", annex, readbuf, offset, len,
8279 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
8284 /* Note: a zero OFFSET and LEN can be used to query the minimum
8286 if (offset == 0 && len == 0)
8287 return (get_remote_packet_size ());
8288 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
8289 large enough let the caller deal with it. */
8290 if (len < get_remote_packet_size ())
8292 len = get_remote_packet_size ();
8294 /* Except for querying the minimum buffer size, target must be open. */
8296 error (_("remote query is only available after target open"));
8298 gdb_assert (annex != NULL);
8299 gdb_assert (readbuf != NULL);
8305 /* We used one buffer char for the remote protocol q command and
8306 another for the query type. As the remote protocol encapsulation
8307 uses 4 chars plus one extra in case we are debugging
8308 (remote_debug), we have PBUFZIZ - 7 left to pack the query
8311 while (annex[i] && (i < (get_remote_packet_size () - 8)))
8313 /* Bad caller may have sent forbidden characters. */
8314 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
8319 gdb_assert (annex[i] == '\0');
8321 i = putpkt (rs->buf);
8325 getpkt (&rs->buf, &rs->buf_size, 0);
8326 strcpy ((char *) readbuf, rs->buf);
8328 return strlen ((char *) readbuf);
8332 remote_search_memory (struct target_ops* ops,
8333 CORE_ADDR start_addr, ULONGEST search_space_len,
8334 const gdb_byte *pattern, ULONGEST pattern_len,
8335 CORE_ADDR *found_addrp)
8337 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
8338 struct remote_state *rs = get_remote_state ();
8339 int max_size = get_memory_write_packet_size ();
8340 struct packet_config *packet =
8341 &remote_protocol_packets[PACKET_qSearch_memory];
8342 /* Number of packet bytes used to encode the pattern;
8343 this could be more than PATTERN_LEN due to escape characters. */
8344 int escaped_pattern_len;
8345 /* Amount of pattern that was encodable in the packet. */
8346 int used_pattern_len;
8349 ULONGEST found_addr;
8351 /* Don't go to the target if we don't have to.
8352 This is done before checking packet->support to avoid the possibility that
8353 a success for this edge case means the facility works in general. */
8354 if (pattern_len > search_space_len)
8356 if (pattern_len == 0)
8358 *found_addrp = start_addr;
8362 /* If we already know the packet isn't supported, fall back to the simple
8363 way of searching memory. */
8365 if (packet->support == PACKET_DISABLE)
8367 /* Target doesn't provided special support, fall back and use the
8368 standard support (copy memory and do the search here). */
8369 return simple_search_memory (ops, start_addr, search_space_len,
8370 pattern, pattern_len, found_addrp);
8373 /* Insert header. */
8374 i = snprintf (rs->buf, max_size,
8375 "qSearch:memory:%s;%s;",
8376 phex_nz (start_addr, addr_size),
8377 phex_nz (search_space_len, sizeof (search_space_len)));
8378 max_size -= (i + 1);
8380 /* Escape as much data as fits into rs->buf. */
8381 escaped_pattern_len =
8382 remote_escape_output (pattern, pattern_len, (rs->buf + i),
8383 &used_pattern_len, max_size);
8385 /* Bail if the pattern is too large. */
8386 if (used_pattern_len != pattern_len)
8387 error (_("Pattern is too large to transmit to remote target."));
8389 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
8390 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8391 || packet_ok (rs->buf, packet) != PACKET_OK)
8393 /* The request may not have worked because the command is not
8394 supported. If so, fall back to the simple way. */
8395 if (packet->support == PACKET_DISABLE)
8397 return simple_search_memory (ops, start_addr, search_space_len,
8398 pattern, pattern_len, found_addrp);
8403 if (rs->buf[0] == '0')
8405 else if (rs->buf[0] == '1')
8408 if (rs->buf[1] != ',')
8409 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
8410 unpack_varlen_hex (rs->buf + 2, &found_addr);
8411 *found_addrp = found_addr;
8414 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
8420 remote_rcmd (char *command,
8421 struct ui_file *outbuf)
8423 struct remote_state *rs = get_remote_state ();
8427 error (_("remote rcmd is only available after target open"));
8429 /* Send a NULL command across as an empty command. */
8430 if (command == NULL)
8433 /* The query prefix. */
8434 strcpy (rs->buf, "qRcmd,");
8435 p = strchr (rs->buf, '\0');
8437 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
8438 > get_remote_packet_size ())
8439 error (_("\"monitor\" command ``%s'' is too long."), command);
8441 /* Encode the actual command. */
8442 bin2hex ((gdb_byte *) command, p, 0);
8444 if (putpkt (rs->buf) < 0)
8445 error (_("Communication problem with target."));
8447 /* get/display the response */
8452 /* XXX - see also remote_get_noisy_reply(). */
8454 getpkt (&rs->buf, &rs->buf_size, 0);
8457 error (_("Target does not support this command."));
8458 if (buf[0] == 'O' && buf[1] != 'K')
8460 remote_console_output (buf + 1); /* 'O' message from stub. */
8463 if (strcmp (buf, "OK") == 0)
8465 if (strlen (buf) == 3 && buf[0] == 'E'
8466 && isdigit (buf[1]) && isdigit (buf[2]))
8468 error (_("Protocol error with Rcmd"));
8470 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
8472 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
8474 fputc_unfiltered (c, outbuf);
8480 static VEC(mem_region_s) *
8481 remote_memory_map (struct target_ops *ops)
8483 VEC(mem_region_s) *result = NULL;
8484 char *text = target_read_stralloc (¤t_target,
8485 TARGET_OBJECT_MEMORY_MAP, NULL);
8489 struct cleanup *back_to = make_cleanup (xfree, text);
8491 result = parse_memory_map (text);
8492 do_cleanups (back_to);
8499 packet_command (char *args, int from_tty)
8501 struct remote_state *rs = get_remote_state ();
8504 error (_("command can only be used with remote target"));
8507 error (_("remote-packet command requires packet text as argument"));
8509 puts_filtered ("sending: ");
8510 print_packet (args);
8511 puts_filtered ("\n");
8514 getpkt (&rs->buf, &rs->buf_size, 0);
8515 puts_filtered ("received: ");
8516 print_packet (rs->buf);
8517 puts_filtered ("\n");
8521 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
8523 static void display_thread_info (struct gdb_ext_thread_info *info);
8525 static void threadset_test_cmd (char *cmd, int tty);
8527 static void threadalive_test (char *cmd, int tty);
8529 static void threadlist_test_cmd (char *cmd, int tty);
8531 int get_and_display_threadinfo (threadref *ref);
8533 static void threadinfo_test_cmd (char *cmd, int tty);
8535 static int thread_display_step (threadref *ref, void *context);
8537 static void threadlist_update_test_cmd (char *cmd, int tty);
8539 static void init_remote_threadtests (void);
8541 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
8544 threadset_test_cmd (char *cmd, int tty)
8546 int sample_thread = SAMPLE_THREAD;
8548 printf_filtered (_("Remote threadset test\n"));
8549 set_general_thread (sample_thread);
8554 threadalive_test (char *cmd, int tty)
8556 int sample_thread = SAMPLE_THREAD;
8557 int pid = ptid_get_pid (inferior_ptid);
8558 ptid_t ptid = ptid_build (pid, 0, sample_thread);
8560 if (remote_thread_alive (ptid))
8561 printf_filtered ("PASS: Thread alive test\n");
8563 printf_filtered ("FAIL: Thread alive test\n");
8566 void output_threadid (char *title, threadref *ref);
8569 output_threadid (char *title, threadref *ref)
8573 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
8575 printf_filtered ("%s %s\n", title, (&hexid[0]));
8579 threadlist_test_cmd (char *cmd, int tty)
8582 threadref nextthread;
8583 int done, result_count;
8584 threadref threadlist[3];
8586 printf_filtered ("Remote Threadlist test\n");
8587 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
8588 &result_count, &threadlist[0]))
8589 printf_filtered ("FAIL: threadlist test\n");
8592 threadref *scan = threadlist;
8593 threadref *limit = scan + result_count;
8595 while (scan < limit)
8596 output_threadid (" thread ", scan++);
8601 display_thread_info (struct gdb_ext_thread_info *info)
8603 output_threadid ("Threadid: ", &info->threadid);
8604 printf_filtered ("Name: %s\n ", info->shortname);
8605 printf_filtered ("State: %s\n", info->display);
8606 printf_filtered ("other: %s\n\n", info->more_display);
8610 get_and_display_threadinfo (threadref *ref)
8614 struct gdb_ext_thread_info threadinfo;
8616 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
8617 | TAG_MOREDISPLAY | TAG_DISPLAY;
8618 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
8619 display_thread_info (&threadinfo);
8624 threadinfo_test_cmd (char *cmd, int tty)
8626 int athread = SAMPLE_THREAD;
8630 int_to_threadref (&thread, athread);
8631 printf_filtered ("Remote Threadinfo test\n");
8632 if (!get_and_display_threadinfo (&thread))
8633 printf_filtered ("FAIL cannot get thread info\n");
8637 thread_display_step (threadref *ref, void *context)
8639 /* output_threadid(" threadstep ",ref); *//* simple test */
8640 return get_and_display_threadinfo (ref);
8644 threadlist_update_test_cmd (char *cmd, int tty)
8646 printf_filtered ("Remote Threadlist update test\n");
8647 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
8651 init_remote_threadtests (void)
8653 add_com ("tlist", class_obscure, threadlist_test_cmd,
8654 _("Fetch and print the remote list of "
8655 "thread identifiers, one pkt only"));
8656 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
8657 _("Fetch and display info about one thread"));
8658 add_com ("tset", class_obscure, threadset_test_cmd,
8659 _("Test setting to a different thread"));
8660 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
8661 _("Iterate through updating all remote thread info"));
8662 add_com ("talive", class_obscure, threadalive_test,
8663 _(" Remote thread alive test "));
8668 /* Convert a thread ID to a string. Returns the string in a static
8672 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
8674 static char buf[64];
8675 struct remote_state *rs = get_remote_state ();
8677 if (ptid_is_pid (ptid))
8679 /* Printing an inferior target id. */
8681 /* When multi-process extensions are off, there's no way in the
8682 remote protocol to know the remote process id, if there's any
8683 at all. There's one exception --- when we're connected with
8684 target extended-remote, and we manually attached to a process
8685 with "attach PID". We don't record anywhere a flag that
8686 allows us to distinguish that case from the case of
8687 connecting with extended-remote and the stub already being
8688 attached to a process, and reporting yes to qAttached, hence
8689 no smart special casing here. */
8690 if (!remote_multi_process_p (rs))
8692 xsnprintf (buf, sizeof buf, "Remote target");
8696 return normal_pid_to_str (ptid);
8700 if (ptid_equal (magic_null_ptid, ptid))
8701 xsnprintf (buf, sizeof buf, "Thread <main>");
8702 else if (remote_multi_process_p (rs))
8703 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
8704 ptid_get_pid (ptid), ptid_get_tid (ptid));
8706 xsnprintf (buf, sizeof buf, "Thread %ld",
8707 ptid_get_tid (ptid));
8712 /* Get the address of the thread local variable in OBJFILE which is
8713 stored at OFFSET within the thread local storage for thread PTID. */
8716 remote_get_thread_local_address (struct target_ops *ops,
8717 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
8719 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
8721 struct remote_state *rs = get_remote_state ();
8723 char *endp = rs->buf + get_remote_packet_size ();
8724 enum packet_result result;
8726 strcpy (p, "qGetTLSAddr:");
8728 p = write_ptid (p, endp, ptid);
8730 p += hexnumstr (p, offset);
8732 p += hexnumstr (p, lm);
8736 getpkt (&rs->buf, &rs->buf_size, 0);
8737 result = packet_ok (rs->buf,
8738 &remote_protocol_packets[PACKET_qGetTLSAddr]);
8739 if (result == PACKET_OK)
8743 unpack_varlen_hex (rs->buf, &result);
8746 else if (result == PACKET_UNKNOWN)
8747 throw_error (TLS_GENERIC_ERROR,
8748 _("Remote target doesn't support qGetTLSAddr packet"));
8750 throw_error (TLS_GENERIC_ERROR,
8751 _("Remote target failed to process qGetTLSAddr request"));
8754 throw_error (TLS_GENERIC_ERROR,
8755 _("TLS not supported or disabled on this target"));
8760 /* Provide thread local base, i.e. Thread Information Block address.
8761 Returns 1 if ptid is found and thread_local_base is non zero. */
8764 remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
8766 if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE)
8768 struct remote_state *rs = get_remote_state ();
8770 char *endp = rs->buf + get_remote_packet_size ();
8771 enum packet_result result;
8773 strcpy (p, "qGetTIBAddr:");
8775 p = write_ptid (p, endp, ptid);
8779 getpkt (&rs->buf, &rs->buf_size, 0);
8780 result = packet_ok (rs->buf,
8781 &remote_protocol_packets[PACKET_qGetTIBAddr]);
8782 if (result == PACKET_OK)
8786 unpack_varlen_hex (rs->buf, &result);
8788 *addr = (CORE_ADDR) result;
8791 else if (result == PACKET_UNKNOWN)
8792 error (_("Remote target doesn't support qGetTIBAddr packet"));
8794 error (_("Remote target failed to process qGetTIBAddr request"));
8797 error (_("qGetTIBAddr not supported or disabled on this target"));
8802 /* Support for inferring a target description based on the current
8803 architecture and the size of a 'g' packet. While the 'g' packet
8804 can have any size (since optional registers can be left off the
8805 end), some sizes are easily recognizable given knowledge of the
8806 approximate architecture. */
8808 struct remote_g_packet_guess
8811 const struct target_desc *tdesc;
8813 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
8814 DEF_VEC_O(remote_g_packet_guess_s);
8816 struct remote_g_packet_data
8818 VEC(remote_g_packet_guess_s) *guesses;
8821 static struct gdbarch_data *remote_g_packet_data_handle;
8824 remote_g_packet_data_init (struct obstack *obstack)
8826 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
8830 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
8831 const struct target_desc *tdesc)
8833 struct remote_g_packet_data *data
8834 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
8835 struct remote_g_packet_guess new_guess, *guess;
8838 gdb_assert (tdesc != NULL);
8841 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
8843 if (guess->bytes == bytes)
8844 internal_error (__FILE__, __LINE__,
8845 _("Duplicate g packet description added for size %d"),
8848 new_guess.bytes = bytes;
8849 new_guess.tdesc = tdesc;
8850 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
8853 /* Return 1 if remote_read_description would do anything on this target
8854 and architecture, 0 otherwise. */
8857 remote_read_description_p (struct target_ops *target)
8859 struct remote_g_packet_data *data
8860 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
8862 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8868 static const struct target_desc *
8869 remote_read_description (struct target_ops *target)
8871 struct remote_g_packet_data *data
8872 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
8874 /* Do not try this during initial connection, when we do not know
8875 whether there is a running but stopped thread. */
8876 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
8879 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8881 struct remote_g_packet_guess *guess;
8883 int bytes = send_g_packet ();
8886 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
8888 if (guess->bytes == bytes)
8889 return guess->tdesc;
8891 /* We discard the g packet. A minor optimization would be to
8892 hold on to it, and fill the register cache once we have selected
8893 an architecture, but it's too tricky to do safely. */
8899 /* Remote file transfer support. This is host-initiated I/O, not
8900 target-initiated; for target-initiated, see remote-fileio.c. */
8902 /* If *LEFT is at least the length of STRING, copy STRING to
8903 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8904 decrease *LEFT. Otherwise raise an error. */
8907 remote_buffer_add_string (char **buffer, int *left, char *string)
8909 int len = strlen (string);
8912 error (_("Packet too long for target."));
8914 memcpy (*buffer, string, len);
8918 /* NUL-terminate the buffer as a convenience, if there is
8924 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
8925 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8926 decrease *LEFT. Otherwise raise an error. */
8929 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
8932 if (2 * len > *left)
8933 error (_("Packet too long for target."));
8935 bin2hex (bytes, *buffer, len);
8939 /* NUL-terminate the buffer as a convenience, if there is
8945 /* If *LEFT is large enough, convert VALUE to hex and add it to
8946 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8947 decrease *LEFT. Otherwise raise an error. */
8950 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
8952 int len = hexnumlen (value);
8955 error (_("Packet too long for target."));
8957 hexnumstr (*buffer, value);
8961 /* NUL-terminate the buffer as a convenience, if there is
8967 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
8968 value, *REMOTE_ERRNO to the remote error number or zero if none
8969 was included, and *ATTACHMENT to point to the start of the annex
8970 if any. The length of the packet isn't needed here; there may
8971 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
8973 Return 0 if the packet could be parsed, -1 if it could not. If
8974 -1 is returned, the other variables may not be initialized. */
8977 remote_hostio_parse_result (char *buffer, int *retcode,
8978 int *remote_errno, char **attachment)
8985 if (buffer[0] != 'F')
8989 *retcode = strtol (&buffer[1], &p, 16);
8990 if (errno != 0 || p == &buffer[1])
8993 /* Check for ",errno". */
8997 *remote_errno = strtol (p + 1, &p2, 16);
8998 if (errno != 0 || p + 1 == p2)
9003 /* Check for ";attachment". If there is no attachment, the
9004 packet should end here. */
9007 *attachment = p + 1;
9010 else if (*p == '\0')
9016 /* Send a prepared I/O packet to the target and read its response.
9017 The prepared packet is in the global RS->BUF before this function
9018 is called, and the answer is there when we return.
9020 COMMAND_BYTES is the length of the request to send, which may include
9021 binary data. WHICH_PACKET is the packet configuration to check
9022 before attempting a packet. If an error occurs, *REMOTE_ERRNO
9023 is set to the error number and -1 is returned. Otherwise the value
9024 returned by the function is returned.
9026 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9027 attachment is expected; an error will be reported if there's a
9028 mismatch. If one is found, *ATTACHMENT will be set to point into
9029 the packet buffer and *ATTACHMENT_LEN will be set to the
9030 attachment's length. */
9033 remote_hostio_send_command (int command_bytes, int which_packet,
9034 int *remote_errno, char **attachment,
9035 int *attachment_len)
9037 struct remote_state *rs = get_remote_state ();
9038 int ret, bytes_read;
9039 char *attachment_tmp;
9042 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
9044 *remote_errno = FILEIO_ENOSYS;
9048 putpkt_binary (rs->buf, command_bytes);
9049 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9051 /* If it timed out, something is wrong. Don't try to parse the
9055 *remote_errno = FILEIO_EINVAL;
9059 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
9062 *remote_errno = FILEIO_EINVAL;
9064 case PACKET_UNKNOWN:
9065 *remote_errno = FILEIO_ENOSYS;
9071 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
9074 *remote_errno = FILEIO_EINVAL;
9078 /* Make sure we saw an attachment if and only if we expected one. */
9079 if ((attachment_tmp == NULL && attachment != NULL)
9080 || (attachment_tmp != NULL && attachment == NULL))
9082 *remote_errno = FILEIO_EINVAL;
9086 /* If an attachment was found, it must point into the packet buffer;
9087 work out how many bytes there were. */
9088 if (attachment_tmp != NULL)
9090 *attachment = attachment_tmp;
9091 *attachment_len = bytes_read - (*attachment - rs->buf);
9097 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
9098 remote file descriptor, or -1 if an error occurs (and set
9102 remote_hostio_open (const char *filename, int flags, int mode,
9105 struct remote_state *rs = get_remote_state ();
9107 int left = get_remote_packet_size () - 1;
9109 remote_buffer_add_string (&p, &left, "vFile:open:");
9111 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9113 remote_buffer_add_string (&p, &left, ",");
9115 remote_buffer_add_int (&p, &left, flags);
9116 remote_buffer_add_string (&p, &left, ",");
9118 remote_buffer_add_int (&p, &left, mode);
9120 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
9121 remote_errno, NULL, NULL);
9124 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9125 Return the number of bytes written, or -1 if an error occurs (and
9126 set *REMOTE_ERRNO). */
9129 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
9130 ULONGEST offset, int *remote_errno)
9132 struct remote_state *rs = get_remote_state ();
9134 int left = get_remote_packet_size ();
9137 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
9139 remote_buffer_add_int (&p, &left, fd);
9140 remote_buffer_add_string (&p, &left, ",");
9142 remote_buffer_add_int (&p, &left, offset);
9143 remote_buffer_add_string (&p, &left, ",");
9145 p += remote_escape_output (write_buf, len, p, &out_len,
9146 get_remote_packet_size () - (p - rs->buf));
9148 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
9149 remote_errno, NULL, NULL);
9152 /* Read up to LEN bytes FD on the remote target into READ_BUF
9153 Return the number of bytes read, or -1 if an error occurs (and
9154 set *REMOTE_ERRNO). */
9157 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
9158 ULONGEST offset, int *remote_errno)
9160 struct remote_state *rs = get_remote_state ();
9163 int left = get_remote_packet_size ();
9164 int ret, attachment_len;
9167 remote_buffer_add_string (&p, &left, "vFile:pread:");
9169 remote_buffer_add_int (&p, &left, fd);
9170 remote_buffer_add_string (&p, &left, ",");
9172 remote_buffer_add_int (&p, &left, len);
9173 remote_buffer_add_string (&p, &left, ",");
9175 remote_buffer_add_int (&p, &left, offset);
9177 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
9178 remote_errno, &attachment,
9184 read_len = remote_unescape_input (attachment, attachment_len,
9186 if (read_len != ret)
9187 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
9192 /* Close FD on the remote target. Return 0, or -1 if an error occurs
9193 (and set *REMOTE_ERRNO). */
9196 remote_hostio_close (int fd, int *remote_errno)
9198 struct remote_state *rs = get_remote_state ();
9200 int left = get_remote_packet_size () - 1;
9202 remote_buffer_add_string (&p, &left, "vFile:close:");
9204 remote_buffer_add_int (&p, &left, fd);
9206 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
9207 remote_errno, NULL, NULL);
9210 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
9211 occurs (and set *REMOTE_ERRNO). */
9214 remote_hostio_unlink (const char *filename, int *remote_errno)
9216 struct remote_state *rs = get_remote_state ();
9218 int left = get_remote_packet_size () - 1;
9220 remote_buffer_add_string (&p, &left, "vFile:unlink:");
9222 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9225 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
9226 remote_errno, NULL, NULL);
9230 remote_fileio_errno_to_host (int errnum)
9254 case FILEIO_ENOTDIR:
9274 case FILEIO_ENAMETOOLONG:
9275 return ENAMETOOLONG;
9281 remote_hostio_error (int errnum)
9283 int host_error = remote_fileio_errno_to_host (errnum);
9285 if (host_error == -1)
9286 error (_("Unknown remote I/O error %d"), errnum);
9288 error (_("Remote I/O error: %s"), safe_strerror (host_error));
9292 remote_hostio_close_cleanup (void *opaque)
9294 int fd = *(int *) opaque;
9297 remote_hostio_close (fd, &remote_errno);
9302 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
9304 const char *filename = bfd_get_filename (abfd);
9305 int fd, remote_errno;
9308 gdb_assert (remote_filename_p (filename));
9310 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
9313 errno = remote_fileio_errno_to_host (remote_errno);
9314 bfd_set_error (bfd_error_system_call);
9318 stream = xmalloc (sizeof (int));
9324 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
9326 int fd = *(int *)stream;
9331 /* Ignore errors on close; these may happen if the remote
9332 connection was already torn down. */
9333 remote_hostio_close (fd, &remote_errno);
9339 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
9340 file_ptr nbytes, file_ptr offset)
9342 int fd = *(int *)stream;
9344 file_ptr pos, bytes;
9347 while (nbytes > pos)
9349 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
9350 offset + pos, &remote_errno);
9352 /* Success, but no bytes, means end-of-file. */
9356 errno = remote_fileio_errno_to_host (remote_errno);
9357 bfd_set_error (bfd_error_system_call);
9368 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
9370 /* FIXME: We should probably implement remote_hostio_stat. */
9371 sb->st_size = INT_MAX;
9376 remote_filename_p (const char *filename)
9378 return strncmp (filename, "remote:", 7) == 0;
9382 remote_bfd_open (const char *remote_file, const char *target)
9384 return bfd_openr_iovec (remote_file, target,
9385 remote_bfd_iovec_open, NULL,
9386 remote_bfd_iovec_pread,
9387 remote_bfd_iovec_close,
9388 remote_bfd_iovec_stat);
9392 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
9394 struct cleanup *back_to, *close_cleanup;
9395 int retcode, fd, remote_errno, bytes, io_size;
9398 int bytes_in_buffer;
9403 error (_("command can only be used with remote target"));
9405 file = fopen (local_file, "rb");
9407 perror_with_name (local_file);
9408 back_to = make_cleanup_fclose (file);
9410 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
9412 0700, &remote_errno);
9414 remote_hostio_error (remote_errno);
9416 /* Send up to this many bytes at once. They won't all fit in the
9417 remote packet limit, so we'll transfer slightly fewer. */
9418 io_size = get_remote_packet_size ();
9419 buffer = xmalloc (io_size);
9420 make_cleanup (xfree, buffer);
9422 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
9424 bytes_in_buffer = 0;
9427 while (bytes_in_buffer || !saw_eof)
9431 bytes = fread (buffer + bytes_in_buffer, 1,
9432 io_size - bytes_in_buffer,
9437 error (_("Error reading %s."), local_file);
9440 /* EOF. Unless there is something still in the
9441 buffer from the last iteration, we are done. */
9443 if (bytes_in_buffer == 0)
9451 bytes += bytes_in_buffer;
9452 bytes_in_buffer = 0;
9454 retcode = remote_hostio_pwrite (fd, buffer, bytes,
9455 offset, &remote_errno);
9458 remote_hostio_error (remote_errno);
9459 else if (retcode == 0)
9460 error (_("Remote write of %d bytes returned 0!"), bytes);
9461 else if (retcode < bytes)
9463 /* Short write. Save the rest of the read data for the next
9465 bytes_in_buffer = bytes - retcode;
9466 memmove (buffer, buffer + retcode, bytes_in_buffer);
9472 discard_cleanups (close_cleanup);
9473 if (remote_hostio_close (fd, &remote_errno))
9474 remote_hostio_error (remote_errno);
9477 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
9478 do_cleanups (back_to);
9482 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
9484 struct cleanup *back_to, *close_cleanup;
9485 int fd, remote_errno, bytes, io_size;
9491 error (_("command can only be used with remote target"));
9493 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
9495 remote_hostio_error (remote_errno);
9497 file = fopen (local_file, "wb");
9499 perror_with_name (local_file);
9500 back_to = make_cleanup_fclose (file);
9502 /* Send up to this many bytes at once. They won't all fit in the
9503 remote packet limit, so we'll transfer slightly fewer. */
9504 io_size = get_remote_packet_size ();
9505 buffer = xmalloc (io_size);
9506 make_cleanup (xfree, buffer);
9508 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
9513 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
9515 /* Success, but no bytes, means end-of-file. */
9518 remote_hostio_error (remote_errno);
9522 bytes = fwrite (buffer, 1, bytes, file);
9524 perror_with_name (local_file);
9527 discard_cleanups (close_cleanup);
9528 if (remote_hostio_close (fd, &remote_errno))
9529 remote_hostio_error (remote_errno);
9532 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
9533 do_cleanups (back_to);
9537 remote_file_delete (const char *remote_file, int from_tty)
9539 int retcode, remote_errno;
9542 error (_("command can only be used with remote target"));
9544 retcode = remote_hostio_unlink (remote_file, &remote_errno);
9546 remote_hostio_error (remote_errno);
9549 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
9553 remote_put_command (char *args, int from_tty)
9555 struct cleanup *back_to;
9559 error_no_arg (_("file to put"));
9561 argv = gdb_buildargv (args);
9562 back_to = make_cleanup_freeargv (argv);
9563 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
9564 error (_("Invalid parameters to remote put"));
9566 remote_file_put (argv[0], argv[1], from_tty);
9568 do_cleanups (back_to);
9572 remote_get_command (char *args, int from_tty)
9574 struct cleanup *back_to;
9578 error_no_arg (_("file to get"));
9580 argv = gdb_buildargv (args);
9581 back_to = make_cleanup_freeargv (argv);
9582 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
9583 error (_("Invalid parameters to remote get"));
9585 remote_file_get (argv[0], argv[1], from_tty);
9587 do_cleanups (back_to);
9591 remote_delete_command (char *args, int from_tty)
9593 struct cleanup *back_to;
9597 error_no_arg (_("file to delete"));
9599 argv = gdb_buildargv (args);
9600 back_to = make_cleanup_freeargv (argv);
9601 if (argv[0] == NULL || argv[1] != NULL)
9602 error (_("Invalid parameters to remote delete"));
9604 remote_file_delete (argv[0], from_tty);
9606 do_cleanups (back_to);
9610 remote_command (char *args, int from_tty)
9612 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
9616 remote_can_execute_reverse (void)
9618 if (remote_protocol_packets[PACKET_bs].support == PACKET_ENABLE
9619 || remote_protocol_packets[PACKET_bc].support == PACKET_ENABLE)
9626 remote_supports_non_stop (void)
9632 remote_supports_multi_process (void)
9634 struct remote_state *rs = get_remote_state ();
9636 return remote_multi_process_p (rs);
9640 remote_supports_cond_tracepoints (void)
9642 struct remote_state *rs = get_remote_state ();
9644 return rs->cond_tracepoints;
9648 remote_supports_fast_tracepoints (void)
9650 struct remote_state *rs = get_remote_state ();
9652 return rs->fast_tracepoints;
9656 remote_supports_static_tracepoints (void)
9658 struct remote_state *rs = get_remote_state ();
9660 return rs->static_tracepoints;
9664 remote_supports_enable_disable_tracepoint (void)
9666 struct remote_state *rs = get_remote_state ();
9668 return rs->enable_disable_tracepoints;
9672 remote_trace_init (void)
9675 remote_get_noisy_reply (&target_buf, &target_buf_size);
9676 if (strcmp (target_buf, "OK") != 0)
9677 error (_("Target does not support this command."));
9680 static void free_actions_list (char **actions_list);
9681 static void free_actions_list_cleanup_wrapper (void *);
9683 free_actions_list_cleanup_wrapper (void *al)
9685 free_actions_list (al);
9689 free_actions_list (char **actions_list)
9693 if (actions_list == 0)
9696 for (ndx = 0; actions_list[ndx]; ndx++)
9697 xfree (actions_list[ndx]);
9699 xfree (actions_list);
9702 /* Recursive routine to walk through command list including loops, and
9703 download packets for each command. */
9706 remote_download_command_source (int num, ULONGEST addr,
9707 struct command_line *cmds)
9709 struct remote_state *rs = get_remote_state ();
9710 struct command_line *cmd;
9712 for (cmd = cmds; cmd; cmd = cmd->next)
9714 QUIT; /* Allow user to bail out with ^C. */
9715 strcpy (rs->buf, "QTDPsrc:");
9716 encode_source_string (num, addr, "cmd", cmd->line,
9717 rs->buf + strlen (rs->buf),
9718 rs->buf_size - strlen (rs->buf));
9720 remote_get_noisy_reply (&target_buf, &target_buf_size);
9721 if (strcmp (target_buf, "OK"))
9722 warning (_("Target does not support source download."));
9724 if (cmd->control_type == while_control
9725 || cmd->control_type == while_stepping_control)
9727 remote_download_command_source (num, addr, *cmd->body_list);
9729 QUIT; /* Allow user to bail out with ^C. */
9730 strcpy (rs->buf, "QTDPsrc:");
9731 encode_source_string (num, addr, "cmd", "end",
9732 rs->buf + strlen (rs->buf),
9733 rs->buf_size - strlen (rs->buf));
9735 remote_get_noisy_reply (&target_buf, &target_buf_size);
9736 if (strcmp (target_buf, "OK"))
9737 warning (_("Target does not support source download."));
9743 remote_download_tracepoint (struct breakpoint *t)
9745 struct bp_location *loc;
9750 char **stepping_actions;
9752 struct cleanup *old_chain = NULL;
9753 struct agent_expr *aexpr;
9754 struct cleanup *aexpr_chain = NULL;
9757 /* Iterate over all the tracepoint locations. It's up to the target to
9758 notice multiple tracepoint packets with the same number but different
9759 addresses, and treat them as multiple locations. */
9760 for (loc = t->loc; loc; loc = loc->next)
9762 encode_actions (t, loc, &tdp_actions, &stepping_actions);
9763 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
9765 (void) make_cleanup (free_actions_list_cleanup_wrapper,
9768 tpaddr = loc->address;
9769 sprintf_vma (addrbuf, tpaddr);
9770 sprintf (buf, "QTDP:%x:%s:%c:%lx:%x", t->number,
9771 addrbuf, /* address */
9772 (t->enable_state == bp_enabled ? 'E' : 'D'),
9773 t->step_count, t->pass_count);
9774 /* Fast tracepoints are mostly handled by the target, but we can
9775 tell the target how big of an instruction block should be moved
9777 if (t->type == bp_fast_tracepoint)
9779 /* Only test for support at download time; we may not know
9780 target capabilities at definition time. */
9781 if (remote_supports_fast_tracepoints ())
9785 if (gdbarch_fast_tracepoint_valid_at (target_gdbarch,
9786 tpaddr, &isize, NULL))
9787 sprintf (buf + strlen (buf), ":F%x", isize);
9789 /* If it passed validation at definition but fails now,
9790 something is very wrong. */
9791 internal_error (__FILE__, __LINE__,
9792 _("Fast tracepoint not "
9793 "valid during download"));
9796 /* Fast tracepoints are functionally identical to regular
9797 tracepoints, so don't take lack of support as a reason to
9798 give up on the trace run. */
9799 warning (_("Target does not support fast tracepoints, "
9800 "downloading %d as regular tracepoint"), t->number);
9802 else if (t->type == bp_static_tracepoint)
9804 /* Only test for support at download time; we may not know
9805 target capabilities at definition time. */
9806 if (remote_supports_static_tracepoints ())
9808 struct static_tracepoint_marker marker;
9810 if (target_static_tracepoint_marker_at (tpaddr, &marker))
9813 error (_("Static tracepoint not valid during download"));
9816 /* Fast tracepoints are functionally identical to regular
9817 tracepoints, so don't take lack of support as a reason
9818 to give up on the trace run. */
9819 error (_("Target does not support static tracepoints"));
9821 /* If the tracepoint has a conditional, make it into an agent
9822 expression and append to the definition. */
9825 /* Only test support at download time, we may not know target
9826 capabilities at definition time. */
9827 if (remote_supports_cond_tracepoints ())
9829 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
9830 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
9831 sprintf (buf + strlen (buf), ":X%x,", aexpr->len);
9832 pkt = buf + strlen (buf);
9833 for (ndx = 0; ndx < aexpr->len; ++ndx)
9834 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
9836 do_cleanups (aexpr_chain);
9839 warning (_("Target does not support conditional tracepoints, "
9840 "ignoring tp %d cond"), t->number);
9843 if (t->commands || *default_collect)
9846 remote_get_noisy_reply (&target_buf, &target_buf_size);
9847 if (strcmp (target_buf, "OK"))
9848 error (_("Target does not support tracepoints."));
9850 /* do_single_steps (t); */
9853 for (ndx = 0; tdp_actions[ndx]; ndx++)
9855 QUIT; /* Allow user to bail out with ^C. */
9856 sprintf (buf, "QTDP:-%x:%s:%s%c",
9857 t->number, addrbuf, /* address */
9859 ((tdp_actions[ndx + 1] || stepping_actions)
9862 remote_get_noisy_reply (&target_buf,
9864 if (strcmp (target_buf, "OK"))
9865 error (_("Error on target while setting tracepoints."));
9868 if (stepping_actions)
9870 for (ndx = 0; stepping_actions[ndx]; ndx++)
9872 QUIT; /* Allow user to bail out with ^C. */
9873 sprintf (buf, "QTDP:-%x:%s:%s%s%s",
9874 t->number, addrbuf, /* address */
9875 ((ndx == 0) ? "S" : ""),
9876 stepping_actions[ndx],
9877 (stepping_actions[ndx + 1] ? "-" : ""));
9879 remote_get_noisy_reply (&target_buf,
9881 if (strcmp (target_buf, "OK"))
9882 error (_("Error on target while setting tracepoints."));
9886 if (remote_protocol_packets[PACKET_TracepointSource].support
9891 strcpy (buf, "QTDPsrc:");
9892 encode_source_string (t->number, loc->address,
9893 "at", t->addr_string, buf + strlen (buf),
9894 2048 - strlen (buf));
9897 remote_get_noisy_reply (&target_buf, &target_buf_size);
9898 if (strcmp (target_buf, "OK"))
9899 warning (_("Target does not support source download."));
9903 strcpy (buf, "QTDPsrc:");
9904 encode_source_string (t->number, loc->address,
9905 "cond", t->cond_string, buf + strlen (buf),
9906 2048 - strlen (buf));
9908 remote_get_noisy_reply (&target_buf, &target_buf_size);
9909 if (strcmp (target_buf, "OK"))
9910 warning (_("Target does not support source download."));
9912 remote_download_command_source (t->number, loc->address,
9913 breakpoint_commands (t));
9916 do_cleanups (old_chain);
9921 remote_download_trace_state_variable (struct trace_state_variable *tsv)
9923 struct remote_state *rs = get_remote_state ();
9926 sprintf (rs->buf, "QTDV:%x:%s:%x:",
9927 tsv->number, phex ((ULONGEST) tsv->initial_value, 8), tsv->builtin);
9928 p = rs->buf + strlen (rs->buf);
9929 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
9930 error (_("Trace state variable name too long for tsv definition packet"));
9931 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, 0);
9934 remote_get_noisy_reply (&target_buf, &target_buf_size);
9935 if (*target_buf == '\0')
9936 error (_("Target does not support this command."));
9937 if (strcmp (target_buf, "OK") != 0)
9938 error (_("Error on target while downloading trace state variable."));
9942 remote_enable_tracepoint (struct bp_location *location)
9944 struct remote_state *rs = get_remote_state ();
9947 sprintf_vma (addr_buf, location->address);
9948 sprintf (rs->buf, "QTEnable:%x:%s", location->owner->number, addr_buf);
9950 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
9951 if (*rs->buf == '\0')
9952 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
9953 if (strcmp (rs->buf, "OK") != 0)
9954 error (_("Error on target while enabling tracepoint."));
9958 remote_disable_tracepoint (struct bp_location *location)
9960 struct remote_state *rs = get_remote_state ();
9963 sprintf_vma (addr_buf, location->address);
9964 sprintf (rs->buf, "QTDisable:%x:%s", location->owner->number, addr_buf);
9966 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
9967 if (*rs->buf == '\0')
9968 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
9969 if (strcmp (rs->buf, "OK") != 0)
9970 error (_("Error on target while disabling tracepoint."));
9974 remote_trace_set_readonly_regions (void)
9983 return; /* No information to give. */
9985 strcpy (target_buf, "QTro");
9986 for (s = exec_bfd->sections; s; s = s->next)
9988 char tmp1[40], tmp2[40];
9991 if ((s->flags & SEC_LOAD) == 0 ||
9992 /* (s->flags & SEC_CODE) == 0 || */
9993 (s->flags & SEC_READONLY) == 0)
9997 vma = bfd_get_section_vma (,s);
9998 size = bfd_get_section_size (s);
9999 sprintf_vma (tmp1, vma);
10000 sprintf_vma (tmp2, vma + size);
10001 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
10002 if (offset + sec_length + 1 > target_buf_size)
10005 Too many sections for read-only sections definition packet."));
10008 sprintf (target_buf + offset, ":%s,%s", tmp1, tmp2);
10009 offset += sec_length;
10013 putpkt (target_buf);
10014 getpkt (&target_buf, &target_buf_size, 0);
10019 remote_trace_start (void)
10021 putpkt ("QTStart");
10022 remote_get_noisy_reply (&target_buf, &target_buf_size);
10023 if (*target_buf == '\0')
10024 error (_("Target does not support this command."));
10025 if (strcmp (target_buf, "OK") != 0)
10026 error (_("Bogus reply from target: %s"), target_buf);
10030 remote_get_trace_status (struct trace_status *ts)
10033 /* FIXME we need to get register block size some other way. */
10034 extern int trace_regblock_size;
10036 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
10038 putpkt ("qTStatus");
10039 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
10041 /* If the remote target doesn't do tracing, flag it. */
10045 /* We're working with a live target. */
10048 /* Set some defaults. */
10049 ts->running_known = 0;
10050 ts->stop_reason = trace_stop_reason_unknown;
10051 ts->traceframe_count = -1;
10052 ts->buffer_free = 0;
10055 error (_("Bogus trace status reply from target: %s"), target_buf);
10057 parse_trace_status (p, ts);
10059 return ts->running;
10063 remote_trace_stop (void)
10066 remote_get_noisy_reply (&target_buf, &target_buf_size);
10067 if (*target_buf == '\0')
10068 error (_("Target does not support this command."));
10069 if (strcmp (target_buf, "OK") != 0)
10070 error (_("Bogus reply from target: %s"), target_buf);
10074 remote_trace_find (enum trace_find_type type, int num,
10075 ULONGEST addr1, ULONGEST addr2,
10078 struct remote_state *rs = get_remote_state ();
10080 int target_frameno = -1, target_tracept = -1;
10082 /* Lookups other than by absolute frame number depend on the current
10083 trace selected, so make sure it is correct on the remote end
10085 if (type != tfind_number)
10086 set_remote_traceframe ();
10089 strcpy (p, "QTFrame:");
10090 p = strchr (p, '\0');
10094 sprintf (p, "%x", num);
10097 sprintf (p, "pc:%s", phex_nz (addr1, 0));
10100 sprintf (p, "tdp:%x", num);
10103 sprintf (p, "range:%s:%s", phex_nz (addr1, 0), phex_nz (addr2, 0));
10105 case tfind_outside:
10106 sprintf (p, "outside:%s:%s", phex_nz (addr1, 0), phex_nz (addr2, 0));
10109 error (_("Unknown trace find type %d"), type);
10113 reply = remote_get_noisy_reply (&(rs->buf), &sizeof_pkt);
10114 if (*reply == '\0')
10115 error (_("Target does not support this command."));
10117 while (reply && *reply)
10122 target_frameno = (int) strtol (p, &reply, 16);
10124 error (_("Unable to parse trace frame number"));
10125 /* Don't update our remote traceframe number cache on failure
10126 to select a remote traceframe. */
10127 if (target_frameno == -1)
10132 target_tracept = (int) strtol (p, &reply, 16);
10134 error (_("Unable to parse tracepoint number"));
10136 case 'O': /* "OK"? */
10137 if (reply[1] == 'K' && reply[2] == '\0')
10140 error (_("Bogus reply from target: %s"), reply);
10143 error (_("Bogus reply from target: %s"), reply);
10146 *tpp = target_tracept;
10148 remote_traceframe_number = target_frameno;
10149 return target_frameno;
10153 remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
10155 struct remote_state *rs = get_remote_state ();
10159 set_remote_traceframe ();
10161 sprintf (rs->buf, "qTV:%x", tsvnum);
10163 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10164 if (reply && *reply)
10168 unpack_varlen_hex (reply + 1, &uval);
10169 *val = (LONGEST) uval;
10177 remote_save_trace_data (const char *filename)
10179 struct remote_state *rs = get_remote_state ();
10183 strcpy (p, "QTSave:");
10185 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
10186 error (_("Remote file name too long for trace save packet"));
10187 p += 2 * bin2hex ((gdb_byte *) filename, p, 0);
10190 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10191 if (*reply != '\0')
10192 error (_("Target does not support this command."));
10193 if (strcmp (reply, "OK") != 0)
10194 error (_("Bogus reply from target: %s"), reply);
10198 /* This is basically a memory transfer, but needs to be its own packet
10199 because we don't know how the target actually organizes its trace
10200 memory, plus we want to be able to ask for as much as possible, but
10201 not be unhappy if we don't get as much as we ask for. */
10204 remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
10206 struct remote_state *rs = get_remote_state ();
10212 strcpy (p, "qTBuffer:");
10214 p += hexnumstr (p, offset);
10216 p += hexnumstr (p, len);
10220 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10221 if (reply && *reply)
10223 /* 'l' by itself means we're at the end of the buffer and
10224 there is nothing more to get. */
10228 /* Convert the reply into binary. Limit the number of bytes to
10229 convert according to our passed-in buffer size, rather than
10230 what was returned in the packet; if the target is
10231 unexpectedly generous and gives us a bigger reply than we
10232 asked for, we don't want to crash. */
10233 rslt = hex2bin (target_buf, buf, len);
10237 /* Something went wrong, flag as an error. */
10242 remote_set_disconnected_tracing (int val)
10244 struct remote_state *rs = get_remote_state ();
10246 if (rs->disconnected_tracing)
10250 sprintf (rs->buf, "QTDisconnected:%x", val);
10252 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10253 if (*reply == '\0')
10254 error (_("Target does not support this command."));
10255 if (strcmp (reply, "OK") != 0)
10256 error (_("Bogus reply from target: %s"), reply);
10259 warning (_("Target does not support disconnected tracing."));
10263 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
10265 struct thread_info *info = find_thread_ptid (ptid);
10267 if (info && info->private)
10268 return info->private->core;
10273 remote_set_circular_trace_buffer (int val)
10275 struct remote_state *rs = get_remote_state ();
10278 sprintf (rs->buf, "QTBuffer:circular:%x", val);
10280 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10281 if (*reply == '\0')
10282 error (_("Target does not support this command."));
10283 if (strcmp (reply, "OK") != 0)
10284 error (_("Bogus reply from target: %s"), reply);
10287 static struct traceframe_info *
10288 remote_traceframe_info (void)
10292 text = target_read_stralloc (¤t_target,
10293 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
10296 struct traceframe_info *info;
10297 struct cleanup *back_to = make_cleanup (xfree, text);
10299 info = parse_traceframe_info (text);
10300 do_cleanups (back_to);
10308 init_remote_ops (void)
10310 remote_ops.to_shortname = "remote";
10311 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
10312 remote_ops.to_doc =
10313 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
10314 Specify the serial device it is connected to\n\
10315 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
10316 remote_ops.to_open = remote_open;
10317 remote_ops.to_close = remote_close;
10318 remote_ops.to_detach = remote_detach;
10319 remote_ops.to_disconnect = remote_disconnect;
10320 remote_ops.to_resume = remote_resume;
10321 remote_ops.to_wait = remote_wait;
10322 remote_ops.to_fetch_registers = remote_fetch_registers;
10323 remote_ops.to_store_registers = remote_store_registers;
10324 remote_ops.to_prepare_to_store = remote_prepare_to_store;
10325 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
10326 remote_ops.to_files_info = remote_files_info;
10327 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
10328 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
10329 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
10330 remote_ops.to_stopped_data_address = remote_stopped_data_address;
10331 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
10332 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
10333 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
10334 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
10335 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
10336 remote_ops.to_kill = remote_kill;
10337 remote_ops.to_load = generic_load;
10338 remote_ops.to_mourn_inferior = remote_mourn;
10339 remote_ops.to_pass_signals = remote_pass_signals;
10340 remote_ops.to_thread_alive = remote_thread_alive;
10341 remote_ops.to_find_new_threads = remote_threads_info;
10342 remote_ops.to_pid_to_str = remote_pid_to_str;
10343 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10344 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
10345 remote_ops.to_stop = remote_stop;
10346 remote_ops.to_xfer_partial = remote_xfer_partial;
10347 remote_ops.to_rcmd = remote_rcmd;
10348 remote_ops.to_log_command = serial_log_command;
10349 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
10350 remote_ops.to_stratum = process_stratum;
10351 remote_ops.to_has_all_memory = default_child_has_all_memory;
10352 remote_ops.to_has_memory = default_child_has_memory;
10353 remote_ops.to_has_stack = default_child_has_stack;
10354 remote_ops.to_has_registers = default_child_has_registers;
10355 remote_ops.to_has_execution = default_child_has_execution;
10356 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
10357 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
10358 remote_ops.to_magic = OPS_MAGIC;
10359 remote_ops.to_memory_map = remote_memory_map;
10360 remote_ops.to_flash_erase = remote_flash_erase;
10361 remote_ops.to_flash_done = remote_flash_done;
10362 remote_ops.to_read_description = remote_read_description;
10363 remote_ops.to_search_memory = remote_search_memory;
10364 remote_ops.to_can_async_p = remote_can_async_p;
10365 remote_ops.to_is_async_p = remote_is_async_p;
10366 remote_ops.to_async = remote_async;
10367 remote_ops.to_terminal_inferior = remote_terminal_inferior;
10368 remote_ops.to_terminal_ours = remote_terminal_ours;
10369 remote_ops.to_supports_non_stop = remote_supports_non_stop;
10370 remote_ops.to_supports_multi_process = remote_supports_multi_process;
10371 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
10372 remote_ops.to_trace_init = remote_trace_init;
10373 remote_ops.to_download_tracepoint = remote_download_tracepoint;
10374 remote_ops.to_download_trace_state_variable
10375 = remote_download_trace_state_variable;
10376 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
10377 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
10378 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
10379 remote_ops.to_trace_start = remote_trace_start;
10380 remote_ops.to_get_trace_status = remote_get_trace_status;
10381 remote_ops.to_trace_stop = remote_trace_stop;
10382 remote_ops.to_trace_find = remote_trace_find;
10383 remote_ops.to_get_trace_state_variable_value
10384 = remote_get_trace_state_variable_value;
10385 remote_ops.to_save_trace_data = remote_save_trace_data;
10386 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
10387 remote_ops.to_upload_trace_state_variables
10388 = remote_upload_trace_state_variables;
10389 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
10390 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
10391 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
10392 remote_ops.to_core_of_thread = remote_core_of_thread;
10393 remote_ops.to_verify_memory = remote_verify_memory;
10394 remote_ops.to_get_tib_address = remote_get_tib_address;
10395 remote_ops.to_set_permissions = remote_set_permissions;
10396 remote_ops.to_static_tracepoint_marker_at
10397 = remote_static_tracepoint_marker_at;
10398 remote_ops.to_static_tracepoint_markers_by_strid
10399 = remote_static_tracepoint_markers_by_strid;
10400 remote_ops.to_traceframe_info = remote_traceframe_info;
10403 /* Set up the extended remote vector by making a copy of the standard
10404 remote vector and adding to it. */
10407 init_extended_remote_ops (void)
10409 extended_remote_ops = remote_ops;
10411 extended_remote_ops.to_shortname = "extended-remote";
10412 extended_remote_ops.to_longname =
10413 "Extended remote serial target in gdb-specific protocol";
10414 extended_remote_ops.to_doc =
10415 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
10416 Specify the serial device it is connected to (e.g. /dev/ttya).";
10417 extended_remote_ops.to_open = extended_remote_open;
10418 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
10419 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
10420 extended_remote_ops.to_detach = extended_remote_detach;
10421 extended_remote_ops.to_attach = extended_remote_attach;
10422 extended_remote_ops.to_kill = extended_remote_kill;
10426 remote_can_async_p (void)
10428 if (!target_async_permitted)
10429 /* We only enable async when the user specifically asks for it. */
10432 /* We're async whenever the serial device is. */
10433 return serial_can_async_p (remote_desc);
10437 remote_is_async_p (void)
10439 if (!target_async_permitted)
10440 /* We only enable async when the user specifically asks for it. */
10443 /* We're async whenever the serial device is. */
10444 return serial_is_async_p (remote_desc);
10447 /* Pass the SERIAL event on and up to the client. One day this code
10448 will be able to delay notifying the client of an event until the
10449 point where an entire packet has been received. */
10451 static void (*async_client_callback) (enum inferior_event_type event_type,
10453 static void *async_client_context;
10454 static serial_event_ftype remote_async_serial_handler;
10457 remote_async_serial_handler (struct serial *scb, void *context)
10459 /* Don't propogate error information up to the client. Instead let
10460 the client find out about the error by querying the target. */
10461 async_client_callback (INF_REG_EVENT, async_client_context);
10465 remote_async_inferior_event_handler (gdb_client_data data)
10467 inferior_event_handler (INF_REG_EVENT, NULL);
10471 remote_async_get_pending_events_handler (gdb_client_data data)
10473 remote_get_pending_stop_replies ();
10477 remote_async (void (*callback) (enum inferior_event_type event_type,
10478 void *context), void *context)
10480 if (callback != NULL)
10482 serial_async (remote_desc, remote_async_serial_handler, NULL);
10483 async_client_callback = callback;
10484 async_client_context = context;
10487 serial_async (remote_desc, NULL, NULL);
10491 set_remote_cmd (char *args, int from_tty)
10493 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
10497 show_remote_cmd (char *args, int from_tty)
10499 /* We can't just use cmd_show_list here, because we want to skip
10500 the redundant "show remote Z-packet" and the legacy aliases. */
10501 struct cleanup *showlist_chain;
10502 struct cmd_list_element *list = remote_show_cmdlist;
10504 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
10505 for (; list != NULL; list = list->next)
10506 if (strcmp (list->name, "Z-packet") == 0)
10508 else if (list->type == not_set_cmd)
10509 /* Alias commands are exactly like the original, except they
10510 don't have the normal type. */
10514 struct cleanup *option_chain
10515 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
10517 ui_out_field_string (uiout, "name", list->name);
10518 ui_out_text (uiout, ": ");
10519 if (list->type == show_cmd)
10520 do_setshow_command ((char *) NULL, from_tty, list);
10522 cmd_func (list, NULL, from_tty);
10523 /* Close the tuple. */
10524 do_cleanups (option_chain);
10527 /* Close the tuple. */
10528 do_cleanups (showlist_chain);
10532 /* Function to be called whenever a new objfile (shlib) is detected. */
10534 remote_new_objfile (struct objfile *objfile)
10536 if (remote_desc != 0) /* Have a remote connection. */
10537 remote_check_symbols (objfile);
10540 /* Pull all the tracepoints defined on the target and create local
10541 data structures representing them. We don't want to create real
10542 tracepoints yet, we don't want to mess up the user's existing
10546 remote_upload_tracepoints (struct uploaded_tp **utpp)
10548 struct remote_state *rs = get_remote_state ();
10551 /* Ask for a first packet of tracepoint definition. */
10553 getpkt (&rs->buf, &rs->buf_size, 0);
10555 while (*p && *p != 'l')
10557 parse_tracepoint_definition (p, utpp);
10558 /* Ask for another packet of tracepoint definition. */
10560 getpkt (&rs->buf, &rs->buf_size, 0);
10567 remote_upload_trace_state_variables (struct uploaded_tsv **utsvp)
10569 struct remote_state *rs = get_remote_state ();
10572 /* Ask for a first packet of variable definition. */
10574 getpkt (&rs->buf, &rs->buf_size, 0);
10576 while (*p && *p != 'l')
10578 parse_tsv_definition (p, utsvp);
10579 /* Ask for another packet of variable definition. */
10581 getpkt (&rs->buf, &rs->buf_size, 0);
10588 _initialize_remote (void)
10590 struct remote_state *rs;
10591 struct cmd_list_element *cmd;
10594 /* architecture specific data */
10595 remote_gdbarch_data_handle =
10596 gdbarch_data_register_post_init (init_remote_state);
10597 remote_g_packet_data_handle =
10598 gdbarch_data_register_pre_init (remote_g_packet_data_init);
10600 /* Initialize the per-target state. At the moment there is only one
10601 of these, not one per target. Only one target is active at a
10602 time. The default buffer size is unimportant; it will be expanded
10603 whenever a larger buffer is needed. */
10604 rs = get_remote_state_raw ();
10605 rs->buf_size = 400;
10606 rs->buf = xmalloc (rs->buf_size);
10608 init_remote_ops ();
10609 add_target (&remote_ops);
10611 init_extended_remote_ops ();
10612 add_target (&extended_remote_ops);
10614 /* Hook into new objfile notification. */
10615 observer_attach_new_objfile (remote_new_objfile);
10617 /* Set up signal handlers. */
10618 sigint_remote_token =
10619 create_async_signal_handler (async_remote_interrupt, NULL);
10620 sigint_remote_twice_token =
10621 create_async_signal_handler (async_remote_interrupt_twice, NULL);
10624 init_remote_threadtests ();
10627 /* set/show remote ... */
10629 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
10630 Remote protocol specific variables\n\
10631 Configure various remote-protocol specific variables such as\n\
10632 the packets being used"),
10633 &remote_set_cmdlist, "set remote ",
10634 0 /* allow-unknown */, &setlist);
10635 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
10636 Remote protocol specific variables\n\
10637 Configure various remote-protocol specific variables such as\n\
10638 the packets being used"),
10639 &remote_show_cmdlist, "show remote ",
10640 0 /* allow-unknown */, &showlist);
10642 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
10643 Compare section data on target to the exec file.\n\
10644 Argument is a single section name (default: all loaded sections)."),
10647 add_cmd ("packet", class_maintenance, packet_command, _("\
10648 Send an arbitrary packet to a remote target.\n\
10649 maintenance packet TEXT\n\
10650 If GDB is talking to an inferior via the GDB serial protocol, then\n\
10651 this command sends the string TEXT to the inferior, and displays the\n\
10652 response packet. GDB supplies the initial `$' character, and the\n\
10653 terminating `#' character and checksum."),
10656 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
10657 Set whether to send break if interrupted."), _("\
10658 Show whether to send break if interrupted."), _("\
10659 If set, a break, instead of a cntrl-c, is sent to the remote target."),
10660 set_remotebreak, show_remotebreak,
10661 &setlist, &showlist);
10662 cmd_name = "remotebreak";
10663 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
10664 deprecate_cmd (cmd, "set remote interrupt-sequence");
10665 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
10666 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
10667 deprecate_cmd (cmd, "show remote interrupt-sequence");
10669 add_setshow_enum_cmd ("interrupt-sequence", class_support,
10670 interrupt_sequence_modes, &interrupt_sequence_mode,
10672 Set interrupt sequence to remote target."), _("\
10673 Show interrupt sequence to remote target."), _("\
10674 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
10675 NULL, show_interrupt_sequence,
10676 &remote_set_cmdlist,
10677 &remote_show_cmdlist);
10679 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
10680 &interrupt_on_connect, _("\
10681 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
10682 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
10683 If set, interrupt sequence is sent to remote target."),
10685 &remote_set_cmdlist, &remote_show_cmdlist);
10687 /* Install commands for configuring memory read/write packets. */
10689 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
10690 Set the maximum number of bytes per memory write packet (deprecated)."),
10692 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
10693 Show the maximum number of bytes per memory write packet (deprecated)."),
10695 add_cmd ("memory-write-packet-size", no_class,
10696 set_memory_write_packet_size, _("\
10697 Set the maximum number of bytes per memory-write packet.\n\
10698 Specify the number of bytes in a packet or 0 (zero) for the\n\
10699 default packet size. The actual limit is further reduced\n\
10700 dependent on the target. Specify ``fixed'' to disable the\n\
10701 further restriction and ``limit'' to enable that restriction."),
10702 &remote_set_cmdlist);
10703 add_cmd ("memory-read-packet-size", no_class,
10704 set_memory_read_packet_size, _("\
10705 Set the maximum number of bytes per memory-read packet.\n\
10706 Specify the number of bytes in a packet or 0 (zero) for the\n\
10707 default packet size. The actual limit is further reduced\n\
10708 dependent on the target. Specify ``fixed'' to disable the\n\
10709 further restriction and ``limit'' to enable that restriction."),
10710 &remote_set_cmdlist);
10711 add_cmd ("memory-write-packet-size", no_class,
10712 show_memory_write_packet_size,
10713 _("Show the maximum number of bytes per memory-write packet."),
10714 &remote_show_cmdlist);
10715 add_cmd ("memory-read-packet-size", no_class,
10716 show_memory_read_packet_size,
10717 _("Show the maximum number of bytes per memory-read packet."),
10718 &remote_show_cmdlist);
10720 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
10721 &remote_hw_watchpoint_limit, _("\
10722 Set the maximum number of target hardware watchpoints."), _("\
10723 Show the maximum number of target hardware watchpoints."), _("\
10724 Specify a negative limit for unlimited."),
10725 NULL, NULL, /* FIXME: i18n: The maximum
10726 number of target hardware
10727 watchpoints is %s. */
10728 &remote_set_cmdlist, &remote_show_cmdlist);
10729 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
10730 &remote_hw_breakpoint_limit, _("\
10731 Set the maximum number of target hardware breakpoints."), _("\
10732 Show the maximum number of target hardware breakpoints."), _("\
10733 Specify a negative limit for unlimited."),
10734 NULL, NULL, /* FIXME: i18n: The maximum
10735 number of target hardware
10736 breakpoints is %s. */
10737 &remote_set_cmdlist, &remote_show_cmdlist);
10739 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
10740 &remote_address_size, _("\
10741 Set the maximum size of the address (in bits) in a memory packet."), _("\
10742 Show the maximum size of the address (in bits) in a memory packet."), NULL,
10744 NULL, /* FIXME: i18n: */
10745 &setlist, &showlist);
10747 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
10748 "X", "binary-download", 1);
10750 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
10751 "vCont", "verbose-resume", 0);
10753 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
10754 "QPassSignals", "pass-signals", 0);
10756 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
10757 "qSymbol", "symbol-lookup", 0);
10759 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
10760 "P", "set-register", 1);
10762 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
10763 "p", "fetch-register", 1);
10765 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
10766 "Z0", "software-breakpoint", 0);
10768 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
10769 "Z1", "hardware-breakpoint", 0);
10771 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
10772 "Z2", "write-watchpoint", 0);
10774 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
10775 "Z3", "read-watchpoint", 0);
10777 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
10778 "Z4", "access-watchpoint", 0);
10780 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
10781 "qXfer:auxv:read", "read-aux-vector", 0);
10783 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
10784 "qXfer:features:read", "target-features", 0);
10786 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
10787 "qXfer:libraries:read", "library-info", 0);
10789 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
10790 "qXfer:memory-map:read", "memory-map", 0);
10792 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
10793 "qXfer:spu:read", "read-spu-object", 0);
10795 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
10796 "qXfer:spu:write", "write-spu-object", 0);
10798 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
10799 "qXfer:osdata:read", "osdata", 0);
10801 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
10802 "qXfer:threads:read", "threads", 0);
10804 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
10805 "qXfer:siginfo:read", "read-siginfo-object", 0);
10807 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
10808 "qXfer:siginfo:write", "write-siginfo-object", 0);
10810 add_packet_config_cmd
10811 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
10812 "qXfer:trace-frame-info:read", "traceframe-info", 0);
10814 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
10815 "qGetTLSAddr", "get-thread-local-storage-address",
10818 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
10819 "qGetTIBAddr", "get-thread-information-block-address",
10822 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
10823 "bc", "reverse-continue", 0);
10825 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
10826 "bs", "reverse-step", 0);
10828 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
10829 "qSupported", "supported-packets", 0);
10831 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
10832 "qSearch:memory", "search-memory", 0);
10834 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
10835 "vFile:open", "hostio-open", 0);
10837 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
10838 "vFile:pread", "hostio-pread", 0);
10840 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
10841 "vFile:pwrite", "hostio-pwrite", 0);
10843 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
10844 "vFile:close", "hostio-close", 0);
10846 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
10847 "vFile:unlink", "hostio-unlink", 0);
10849 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
10850 "vAttach", "attach", 0);
10852 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
10855 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
10856 "QStartNoAckMode", "noack", 0);
10858 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
10859 "vKill", "kill", 0);
10861 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
10862 "qAttached", "query-attached", 0);
10864 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
10865 "ConditionalTracepoints",
10866 "conditional-tracepoints", 0);
10867 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
10868 "FastTracepoints", "fast-tracepoints", 0);
10870 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
10871 "TracepointSource", "TracepointSource", 0);
10873 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
10874 "QAllow", "allow", 0);
10876 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
10877 "StaticTracepoints", "static-tracepoints", 0);
10879 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
10880 "qXfer:statictrace:read", "read-sdata-object", 0);
10882 /* Keep the old ``set remote Z-packet ...'' working. Each individual
10883 Z sub-packet has its own set and show commands, but users may
10884 have sets to this variable in their .gdbinit files (or in their
10886 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
10887 &remote_Z_packet_detect, _("\
10888 Set use of remote protocol `Z' packets"), _("\
10889 Show use of remote protocol `Z' packets "), _("\
10890 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
10892 set_remote_protocol_Z_packet_cmd,
10893 show_remote_protocol_Z_packet_cmd,
10894 /* FIXME: i18n: Use of remote protocol
10895 `Z' packets is %s. */
10896 &remote_set_cmdlist, &remote_show_cmdlist);
10898 add_prefix_cmd ("remote", class_files, remote_command, _("\
10899 Manipulate files on the remote system\n\
10900 Transfer files to and from the remote target system."),
10901 &remote_cmdlist, "remote ",
10902 0 /* allow-unknown */, &cmdlist);
10904 add_cmd ("put", class_files, remote_put_command,
10905 _("Copy a local file to the remote system."),
10908 add_cmd ("get", class_files, remote_get_command,
10909 _("Copy a remote file to the local system."),
10912 add_cmd ("delete", class_files, remote_delete_command,
10913 _("Delete a remote file."),
10916 remote_exec_file = xstrdup ("");
10917 add_setshow_string_noescape_cmd ("exec-file", class_files,
10918 &remote_exec_file, _("\
10919 Set the remote pathname for \"run\""), _("\
10920 Show the remote pathname for \"run\""), NULL, NULL, NULL,
10921 &remote_set_cmdlist, &remote_show_cmdlist);
10923 /* Eventually initialize fileio. See fileio.c */
10924 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
10926 /* Take advantage of the fact that the LWP field is not used, to tag
10927 special ptids with it set to != 0. */
10928 magic_null_ptid = ptid_build (42000, 1, -1);
10929 not_sent_ptid = ptid_build (42000, 1, -2);
10930 any_thread_ptid = ptid_build (42000, 1, 0);
10932 target_buf_size = 2048;
10933 target_buf = xmalloc (target_buf_size);