1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2016 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
30 /*#include "terminal.h" */
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
36 #include "remote-notif.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
45 #include "filestuff.h"
50 #include "gdb_sys_time.h"
52 #include "event-loop.h"
53 #include "event-top.h"
59 #include "gdbcore.h" /* for exec_bfd */
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
74 /* Temp hacks for tracepoint encoding migration. */
75 static char *target_buf;
76 static long target_buf_size;
78 /* Per-program-space data key. */
79 static const struct program_space_data *remote_pspace_data;
81 /* The variable registered as the control variable used by the
82 remote exec-file commands. While the remote exec-file setting is
83 per-program-space, the set/show machinery uses this as the
84 location of the remote exec-file value. */
85 static char *remote_exec_file_var;
87 /* The size to align memory write packets, when practical. The protocol
88 does not guarantee any alignment, and gdb will generate short
89 writes and unaligned writes, but even as a best-effort attempt this
90 can improve bulk transfers. For instance, if a write is misaligned
91 relative to the target's data bus, the stub may need to make an extra
92 round trip fetching data from the target. This doesn't make a
93 huge difference, but it's easy to do, so we try to be helpful.
95 The alignment chosen is arbitrary; usually data bus width is
96 important here, not the possibly larger cache line size. */
97 enum { REMOTE_ALIGN_WRITES = 16 };
99 /* Prototypes for local functions. */
100 static void async_cleanup_sigint_signal_handler (void *dummy);
101 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
102 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
103 int forever, int *is_notif);
105 static void async_handle_remote_sigint (int);
106 static void async_handle_remote_sigint_twice (int);
108 static void remote_files_info (struct target_ops *ignore);
110 static void remote_prepare_to_store (struct target_ops *self,
111 struct regcache *regcache);
113 static void remote_open_1 (const char *, int, struct target_ops *,
116 static void remote_close (struct target_ops *self);
120 static int remote_vkill (int pid, struct remote_state *rs);
122 static void remote_kill_k (void);
124 static void remote_mourn (struct target_ops *ops);
126 static void extended_remote_restart (void);
128 static void remote_send (char **buf, long *sizeof_buf_p);
130 static int readchar (int timeout);
132 static void remote_serial_write (const char *str, int len);
134 static void remote_kill (struct target_ops *ops);
136 static int remote_can_async_p (struct target_ops *);
138 static int remote_is_async_p (struct target_ops *);
140 static void remote_async (struct target_ops *ops, int enable);
142 static void remote_thread_events (struct target_ops *ops, int enable);
144 static void sync_remote_interrupt_twice (int signo);
146 static void interrupt_query (void);
148 static void set_general_thread (struct ptid ptid);
149 static void set_continue_thread (struct ptid ptid);
151 static void get_offsets (void);
153 static void skip_frame (void);
155 static long read_frame (char **buf_p, long *sizeof_buf);
157 static int hexnumlen (ULONGEST num);
159 static void init_remote_ops (void);
161 static void init_extended_remote_ops (void);
163 static void remote_stop (struct target_ops *self, ptid_t);
165 static int stubhex (int ch);
167 static int hexnumstr (char *, ULONGEST);
169 static int hexnumnstr (char *, ULONGEST, int);
171 static CORE_ADDR remote_address_masked (CORE_ADDR);
173 static void print_packet (const char *);
175 static void compare_sections_command (char *, int);
177 static void packet_command (char *, int);
179 static int stub_unpack_int (char *buff, int fieldlength);
181 static ptid_t remote_current_thread (ptid_t oldptid);
183 static int putpkt_binary (const char *buf, int cnt);
185 static void check_binary_download (CORE_ADDR addr);
187 struct packet_config;
189 static void show_packet_config_cmd (struct packet_config *config);
191 static void show_remote_protocol_packet_cmd (struct ui_file *file,
193 struct cmd_list_element *c,
196 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
197 static ptid_t read_ptid (char *buf, char **obuf);
199 static void remote_set_permissions (struct target_ops *self);
201 static int remote_get_trace_status (struct target_ops *self,
202 struct trace_status *ts);
204 static int remote_upload_tracepoints (struct target_ops *self,
205 struct uploaded_tp **utpp);
207 static int remote_upload_trace_state_variables (struct target_ops *self,
208 struct uploaded_tsv **utsvp);
210 static void remote_query_supported (void);
212 static void remote_check_symbols (void);
214 void _initialize_remote (void);
217 static void stop_reply_xfree (struct stop_reply *);
218 static void remote_parse_stop_reply (char *, struct stop_reply *);
219 static void push_stop_reply (struct stop_reply *);
220 static void discard_pending_stop_replies_in_queue (struct remote_state *);
221 static int peek_stop_reply (ptid_t ptid);
223 struct threads_listing_context;
224 static void remove_new_fork_children (struct threads_listing_context *);
226 static void remote_async_inferior_event_handler (gdb_client_data);
228 static void remote_terminal_ours (struct target_ops *self);
230 static int remote_read_description_p (struct target_ops *target);
232 static void remote_console_output (char *msg);
234 static int remote_supports_cond_breakpoints (struct target_ops *self);
236 static int remote_can_run_breakpoint_commands (struct target_ops *self);
238 static void remote_btrace_reset (void);
240 static int stop_reply_queue_length (void);
242 static void readahead_cache_invalidate (void);
246 static struct cmd_list_element *remote_cmdlist;
248 /* For "set remote" and "show remote". */
250 static struct cmd_list_element *remote_set_cmdlist;
251 static struct cmd_list_element *remote_show_cmdlist;
253 /* Stub vCont actions support.
255 Each field is a boolean flag indicating whether the stub reports
256 support for the corresponding action. */
258 struct vCont_action_support
273 /* Controls whether GDB is willing to use range stepping. */
275 static int use_range_stepping = 1;
277 #define OPAQUETHREADBYTES 8
279 /* a 64 bit opaque identifier */
280 typedef unsigned char threadref[OPAQUETHREADBYTES];
282 /* About this many threadisds fit in a packet. */
284 #define MAXTHREADLISTRESULTS 32
286 /* Data for the vFile:pread readahead cache. */
288 struct readahead_cache
290 /* The file descriptor for the file that is being cached. -1 if the
294 /* The offset into the file that the cache buffer corresponds
298 /* The buffer holding the cache contents. */
300 /* The buffer's size. We try to read as much as fits into a packet
304 /* Cache hit and miss counters. */
309 /* Description of the remote protocol state for the currently
310 connected target. This is per-target state, and independent of the
311 selected architecture. */
315 /* A buffer to use for incoming packets, and its current size. The
316 buffer is grown dynamically for larger incoming packets.
317 Outgoing packets may also be constructed in this buffer.
318 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
319 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
324 /* True if we're going through initial connection setup (finding out
325 about the remote side's threads, relocating symbols, etc.). */
328 /* If we negotiated packet size explicitly (and thus can bypass
329 heuristics for the largest packet size that will not overflow
330 a buffer in the stub), this will be set to that packet size.
331 Otherwise zero, meaning to use the guessed size. */
332 long explicit_packet_size;
334 /* remote_wait is normally called when the target is running and
335 waits for a stop reply packet. But sometimes we need to call it
336 when the target is already stopped. We can send a "?" packet
337 and have remote_wait read the response. Or, if we already have
338 the response, we can stash it in BUF and tell remote_wait to
339 skip calling getpkt. This flag is set when BUF contains a
340 stop reply packet and the target is not waiting. */
341 int cached_wait_status;
343 /* True, if in no ack mode. That is, neither GDB nor the stub will
344 expect acks from each other. The connection is assumed to be
348 /* True if we're connected in extended remote mode. */
351 /* True if we resumed the target and we're waiting for the target to
352 stop. In the mean time, we can't start another command/query.
353 The remote server wouldn't be ready to process it, so we'd
354 timeout waiting for a reply that would never come and eventually
355 we'd close the connection. This can happen in asynchronous mode
356 because we allow GDB commands while the target is running. */
357 int waiting_for_stop_reply;
359 /* The status of the stub support for the various vCont actions. */
360 struct vCont_action_support supports_vCont;
362 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
363 responded to that. */
366 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
367 remote_open knows that we don't have a file open when the program
369 struct serial *remote_desc;
371 /* These are the threads which we last sent to the remote system. The
372 TID member will be -1 for all or -2 for not sent yet. */
373 ptid_t general_thread;
374 ptid_t continue_thread;
376 /* This is the traceframe which we last selected on the remote system.
377 It will be -1 if no traceframe is selected. */
378 int remote_traceframe_number;
380 char *last_pass_packet;
382 /* The last QProgramSignals packet sent to the target. We bypass
383 sending a new program signals list down to the target if the new
384 packet is exactly the same as the last we sent. IOW, we only let
385 the target know about program signals list changes. */
386 char *last_program_signals_packet;
388 enum gdb_signal last_sent_signal;
392 char *finished_object;
393 char *finished_annex;
394 ULONGEST finished_offset;
396 /* Should we try the 'ThreadInfo' query packet?
398 This variable (NOT available to the user: auto-detect only!)
399 determines whether GDB will use the new, simpler "ThreadInfo"
400 query or the older, more complex syntax for thread queries.
401 This is an auto-detect variable (set to true at each connect,
402 and set to false when the target fails to recognize it). */
403 int use_threadinfo_query;
404 int use_threadextra_query;
406 threadref echo_nextthread;
407 threadref nextthread;
408 threadref resultthreadlist[MAXTHREADLISTRESULTS];
410 /* The state of remote notification. */
411 struct remote_notif_state *notif_state;
413 /* The branch trace configuration. */
414 struct btrace_config btrace_config;
416 /* The argument to the last "vFile:setfs:" packet we sent, used
417 to avoid sending repeated unnecessary "vFile:setfs:" packets.
418 Initialized to -1 to indicate that no "vFile:setfs:" packet
419 has yet been sent. */
422 /* A readahead cache for vFile:pread. Often, reading a binary
423 involves a sequence of small reads. E.g., when parsing an ELF
424 file. A readahead cache helps mostly the case of remote
425 debugging on a connection with higher latency, due to the
426 request/reply nature of the RSP. We only cache data for a single
427 file descriptor at a time. */
428 struct readahead_cache readahead_cache;
431 /* Private data that we'll store in (struct thread_info)->private. */
432 struct private_thread_info
438 /* Whether the target stopped for a breakpoint/watchpoint. */
439 enum target_stop_reason stop_reason;
441 /* This is set to the data address of the access causing the target
442 to stop for a watchpoint. */
443 CORE_ADDR watch_data_address;
447 free_private_thread_info (struct private_thread_info *info)
454 /* This data could be associated with a target, but we do not always
455 have access to the current target when we need it, so for now it is
456 static. This will be fine for as long as only one target is in use
458 static struct remote_state *remote_state;
460 static struct remote_state *
461 get_remote_state_raw (void)
466 /* Allocate a new struct remote_state with xmalloc, initialize it, and
469 static struct remote_state *
470 new_remote_state (void)
472 struct remote_state *result = XCNEW (struct remote_state);
474 /* The default buffer size is unimportant; it will be expanded
475 whenever a larger buffer is needed. */
476 result->buf_size = 400;
477 result->buf = (char *) xmalloc (result->buf_size);
478 result->remote_traceframe_number = -1;
479 result->last_sent_signal = GDB_SIGNAL_0;
485 /* Description of the remote protocol for a given architecture. */
489 long offset; /* Offset into G packet. */
490 long regnum; /* GDB's internal register number. */
491 LONGEST pnum; /* Remote protocol register number. */
492 int in_g_packet; /* Always part of G packet. */
493 /* long size in bytes; == register_size (target_gdbarch (), regnum);
495 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
499 struct remote_arch_state
501 /* Description of the remote protocol registers. */
502 long sizeof_g_packet;
504 /* Description of the remote protocol registers indexed by REGNUM
505 (making an array gdbarch_num_regs in size). */
506 struct packet_reg *regs;
508 /* This is the size (in chars) of the first response to the ``g''
509 packet. It is used as a heuristic when determining the maximum
510 size of memory-read and memory-write packets. A target will
511 typically only reserve a buffer large enough to hold the ``g''
512 packet. The size does not include packet overhead (headers and
514 long actual_register_packet_size;
516 /* This is the maximum size (in chars) of a non read/write packet.
517 It is also used as a cap on the size of read/write packets. */
518 long remote_packet_size;
521 /* Utility: generate error from an incoming stub packet. */
523 trace_error (char *buf)
526 return; /* not an error msg */
529 case '1': /* malformed packet error */
530 if (*++buf == '0') /* general case: */
531 error (_("remote.c: error in outgoing packet."));
533 error (_("remote.c: error in outgoing packet at field #%ld."),
534 strtol (buf, NULL, 16));
536 error (_("Target returns error code '%s'."), buf);
540 /* Utility: wait for reply from stub, while accepting "O" packets. */
542 remote_get_noisy_reply (char **buf_p,
545 do /* Loop on reply from remote stub. */
549 QUIT; /* Allow user to bail out with ^C. */
550 getpkt (buf_p, sizeof_buf, 0);
554 else if (startswith (buf, "qRelocInsn:"))
557 CORE_ADDR from, to, org_to;
559 int adjusted_size = 0;
562 p = buf + strlen ("qRelocInsn:");
563 pp = unpack_varlen_hex (p, &ul);
565 error (_("invalid qRelocInsn packet: %s"), buf);
569 unpack_varlen_hex (p, &ul);
576 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
579 CATCH (ex, RETURN_MASK_ALL)
581 if (ex.error == MEMORY_ERROR)
583 /* Propagate memory errors silently back to the
584 target. The stub may have limited the range of
585 addresses we can write to, for example. */
589 /* Something unexpectedly bad happened. Be verbose
590 so we can tell what, and propagate the error back
591 to the stub, so it doesn't get stuck waiting for
593 exception_fprintf (gdb_stderr, ex,
594 _("warning: relocating instruction: "));
602 adjusted_size = to - org_to;
604 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
608 else if (buf[0] == 'O' && buf[1] != 'K')
609 remote_console_output (buf + 1); /* 'O' message from stub */
611 return buf; /* Here's the actual reply. */
616 /* Handle for retreving the remote protocol data from gdbarch. */
617 static struct gdbarch_data *remote_gdbarch_data_handle;
619 static struct remote_arch_state *
620 get_remote_arch_state (void)
622 gdb_assert (target_gdbarch () != NULL);
623 return ((struct remote_arch_state *)
624 gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle));
627 /* Fetch the global remote target state. */
629 static struct remote_state *
630 get_remote_state (void)
632 /* Make sure that the remote architecture state has been
633 initialized, because doing so might reallocate rs->buf. Any
634 function which calls getpkt also needs to be mindful of changes
635 to rs->buf, but this call limits the number of places which run
637 get_remote_arch_state ();
639 return get_remote_state_raw ();
642 /* Cleanup routine for the remote module's pspace data. */
645 remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
647 char *remote_exec_file = (char *) arg;
649 xfree (remote_exec_file);
652 /* Fetch the remote exec-file from the current program space. */
655 get_remote_exec_file (void)
657 char *remote_exec_file;
660 = (char *) program_space_data (current_program_space,
662 if (remote_exec_file == NULL)
665 return remote_exec_file;
668 /* Set the remote exec file for PSPACE. */
671 set_pspace_remote_exec_file (struct program_space *pspace,
672 char *remote_exec_file)
674 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
677 set_program_space_data (pspace, remote_pspace_data,
678 xstrdup (remote_exec_file));
681 /* The "set/show remote exec-file" set command hook. */
684 set_remote_exec_file (char *ignored, int from_tty,
685 struct cmd_list_element *c)
687 gdb_assert (remote_exec_file_var != NULL);
688 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
691 /* The "set/show remote exec-file" show command hook. */
694 show_remote_exec_file (struct ui_file *file, int from_tty,
695 struct cmd_list_element *cmd, const char *value)
697 fprintf_filtered (file, "%s\n", remote_exec_file_var);
701 compare_pnums (const void *lhs_, const void *rhs_)
703 const struct packet_reg * const *lhs
704 = (const struct packet_reg * const *) lhs_;
705 const struct packet_reg * const *rhs
706 = (const struct packet_reg * const *) rhs_;
708 if ((*lhs)->pnum < (*rhs)->pnum)
710 else if ((*lhs)->pnum == (*rhs)->pnum)
717 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
719 int regnum, num_remote_regs, offset;
720 struct packet_reg **remote_regs;
722 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
724 struct packet_reg *r = ®s[regnum];
726 if (register_size (gdbarch, regnum) == 0)
727 /* Do not try to fetch zero-sized (placeholder) registers. */
730 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
735 /* Define the g/G packet format as the contents of each register
736 with a remote protocol number, in order of ascending protocol
739 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
740 for (num_remote_regs = 0, regnum = 0;
741 regnum < gdbarch_num_regs (gdbarch);
743 if (regs[regnum].pnum != -1)
744 remote_regs[num_remote_regs++] = ®s[regnum];
746 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
749 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
751 remote_regs[regnum]->in_g_packet = 1;
752 remote_regs[regnum]->offset = offset;
753 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
759 /* Given the architecture described by GDBARCH, return the remote
760 protocol register's number and the register's offset in the g/G
761 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
762 If the target does not have a mapping for REGNUM, return false,
763 otherwise, return true. */
766 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
767 int *pnum, int *poffset)
770 struct packet_reg *regs;
771 struct cleanup *old_chain;
773 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
775 regs = XCNEWVEC (struct packet_reg, gdbarch_num_regs (gdbarch));
776 old_chain = make_cleanup (xfree, regs);
778 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
780 *pnum = regs[regnum].pnum;
781 *poffset = regs[regnum].offset;
783 do_cleanups (old_chain);
789 init_remote_state (struct gdbarch *gdbarch)
791 struct remote_state *rs = get_remote_state_raw ();
792 struct remote_arch_state *rsa;
794 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
796 /* Use the architecture to build a regnum<->pnum table, which will be
797 1:1 unless a feature set specifies otherwise. */
798 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
799 gdbarch_num_regs (gdbarch),
802 /* Record the maximum possible size of the g packet - it may turn out
804 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
806 /* Default maximum number of characters in a packet body. Many
807 remote stubs have a hardwired buffer size of 400 bytes
808 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
809 as the maximum packet-size to ensure that the packet and an extra
810 NUL character can always fit in the buffer. This stops GDB
811 trashing stubs that try to squeeze an extra NUL into what is
812 already a full buffer (As of 1999-12-04 that was most stubs). */
813 rsa->remote_packet_size = 400 - 1;
815 /* This one is filled in when a ``g'' packet is received. */
816 rsa->actual_register_packet_size = 0;
818 /* Should rsa->sizeof_g_packet needs more space than the
819 default, adjust the size accordingly. Remember that each byte is
820 encoded as two characters. 32 is the overhead for the packet
821 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
822 (``$NN:G...#NN'') is a better guess, the below has been padded a
824 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
825 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
827 /* Make sure that the packet buffer is plenty big enough for
828 this architecture. */
829 if (rs->buf_size < rsa->remote_packet_size)
831 rs->buf_size = 2 * rsa->remote_packet_size;
832 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
838 /* Return the current allowed size of a remote packet. This is
839 inferred from the current architecture, and should be used to
840 limit the length of outgoing packets. */
842 get_remote_packet_size (void)
844 struct remote_state *rs = get_remote_state ();
845 struct remote_arch_state *rsa = get_remote_arch_state ();
847 if (rs->explicit_packet_size)
848 return rs->explicit_packet_size;
850 return rsa->remote_packet_size;
853 static struct packet_reg *
854 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
856 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
860 struct packet_reg *r = &rsa->regs[regnum];
862 gdb_assert (r->regnum == regnum);
867 static struct packet_reg *
868 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
872 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
874 struct packet_reg *r = &rsa->regs[i];
882 static struct target_ops remote_ops;
884 static struct target_ops extended_remote_ops;
886 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
887 ``forever'' still use the normal timeout mechanism. This is
888 currently used by the ASYNC code to guarentee that target reads
889 during the initial connect always time-out. Once getpkt has been
890 modified to return a timeout indication and, in turn
891 remote_wait()/wait_for_inferior() have gained a timeout parameter
893 static int wait_forever_enabled_p = 1;
895 /* Allow the user to specify what sequence to send to the remote
896 when he requests a program interruption: Although ^C is usually
897 what remote systems expect (this is the default, here), it is
898 sometimes preferable to send a break. On other systems such
899 as the Linux kernel, a break followed by g, which is Magic SysRq g
900 is required in order to interrupt the execution. */
901 const char interrupt_sequence_control_c[] = "Ctrl-C";
902 const char interrupt_sequence_break[] = "BREAK";
903 const char interrupt_sequence_break_g[] = "BREAK-g";
904 static const char *const interrupt_sequence_modes[] =
906 interrupt_sequence_control_c,
907 interrupt_sequence_break,
908 interrupt_sequence_break_g,
911 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
914 show_interrupt_sequence (struct ui_file *file, int from_tty,
915 struct cmd_list_element *c,
918 if (interrupt_sequence_mode == interrupt_sequence_control_c)
919 fprintf_filtered (file,
920 _("Send the ASCII ETX character (Ctrl-c) "
921 "to the remote target to interrupt the "
922 "execution of the program.\n"));
923 else if (interrupt_sequence_mode == interrupt_sequence_break)
924 fprintf_filtered (file,
925 _("send a break signal to the remote target "
926 "to interrupt the execution of the program.\n"));
927 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
928 fprintf_filtered (file,
929 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
930 "the remote target to interrupt the execution "
931 "of Linux kernel.\n"));
933 internal_error (__FILE__, __LINE__,
934 _("Invalid value for interrupt_sequence_mode: %s."),
935 interrupt_sequence_mode);
938 /* This boolean variable specifies whether interrupt_sequence is sent
939 to the remote target when gdb connects to it.
940 This is mostly needed when you debug the Linux kernel: The Linux kernel
941 expects BREAK g which is Magic SysRq g for connecting gdb. */
942 static int interrupt_on_connect = 0;
944 /* This variable is used to implement the "set/show remotebreak" commands.
945 Since these commands are now deprecated in favor of "set/show remote
946 interrupt-sequence", it no longer has any effect on the code. */
947 static int remote_break;
950 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
953 interrupt_sequence_mode = interrupt_sequence_break;
955 interrupt_sequence_mode = interrupt_sequence_control_c;
959 show_remotebreak (struct ui_file *file, int from_tty,
960 struct cmd_list_element *c,
965 /* This variable sets the number of bits in an address that are to be
966 sent in a memory ("M" or "m") packet. Normally, after stripping
967 leading zeros, the entire address would be sent. This variable
968 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
969 initial implementation of remote.c restricted the address sent in
970 memory packets to ``host::sizeof long'' bytes - (typically 32
971 bits). Consequently, for 64 bit targets, the upper 32 bits of an
972 address was never sent. Since fixing this bug may cause a break in
973 some remote targets this variable is principly provided to
974 facilitate backward compatibility. */
976 static unsigned int remote_address_size;
978 /* Temporary to track who currently owns the terminal. See
979 remote_terminal_* for more details. */
981 static int remote_async_terminal_ours_p;
984 /* User configurable variables for the number of characters in a
985 memory read/write packet. MIN (rsa->remote_packet_size,
986 rsa->sizeof_g_packet) is the default. Some targets need smaller
987 values (fifo overruns, et.al.) and some users need larger values
988 (speed up transfers). The variables ``preferred_*'' (the user
989 request), ``current_*'' (what was actually set) and ``forced_*''
990 (Positive - a soft limit, negative - a hard limit). */
992 struct memory_packet_config
999 /* The default max memory-write-packet-size. The 16k is historical.
1000 (It came from older GDB's using alloca for buffers and the
1001 knowledge (folklore?) that some hosts don't cope very well with
1002 large alloca calls.) */
1003 #define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1005 /* The minimum remote packet size for memory transfers. Ensures we
1006 can write at least one byte. */
1007 #define MIN_MEMORY_PACKET_SIZE 20
1009 /* Compute the current size of a read/write packet. Since this makes
1010 use of ``actual_register_packet_size'' the computation is dynamic. */
1013 get_memory_packet_size (struct memory_packet_config *config)
1015 struct remote_state *rs = get_remote_state ();
1016 struct remote_arch_state *rsa = get_remote_arch_state ();
1019 if (config->fixed_p)
1021 if (config->size <= 0)
1022 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1024 what_they_get = config->size;
1028 what_they_get = get_remote_packet_size ();
1029 /* Limit the packet to the size specified by the user. */
1030 if (config->size > 0
1031 && what_they_get > config->size)
1032 what_they_get = config->size;
1034 /* Limit it to the size of the targets ``g'' response unless we have
1035 permission from the stub to use a larger packet size. */
1036 if (rs->explicit_packet_size == 0
1037 && rsa->actual_register_packet_size > 0
1038 && what_they_get > rsa->actual_register_packet_size)
1039 what_they_get = rsa->actual_register_packet_size;
1041 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1042 what_they_get = MIN_MEMORY_PACKET_SIZE;
1044 /* Make sure there is room in the global buffer for this packet
1045 (including its trailing NUL byte). */
1046 if (rs->buf_size < what_they_get + 1)
1048 rs->buf_size = 2 * what_they_get;
1049 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
1052 return what_they_get;
1055 /* Update the size of a read/write packet. If they user wants
1056 something really big then do a sanity check. */
1059 set_memory_packet_size (char *args, struct memory_packet_config *config)
1061 int fixed_p = config->fixed_p;
1062 long size = config->size;
1065 error (_("Argument required (integer, `fixed' or `limited')."));
1066 else if (strcmp (args, "hard") == 0
1067 || strcmp (args, "fixed") == 0)
1069 else if (strcmp (args, "soft") == 0
1070 || strcmp (args, "limit") == 0)
1076 size = strtoul (args, &end, 0);
1078 error (_("Invalid %s (bad syntax)."), config->name);
1080 /* Instead of explicitly capping the size of a packet to or
1081 disallowing it, the user is allowed to set the size to
1082 something arbitrarily large. */
1085 /* So that the query shows the correct value. */
1087 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1090 if (fixed_p && !config->fixed_p)
1092 if (! query (_("The target may not be able to correctly handle a %s\n"
1093 "of %ld bytes. Change the packet size? "),
1094 config->name, size))
1095 error (_("Packet size not changed."));
1097 /* Update the config. */
1098 config->fixed_p = fixed_p;
1099 config->size = size;
1103 show_memory_packet_size (struct memory_packet_config *config)
1105 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1106 if (config->fixed_p)
1107 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1108 get_memory_packet_size (config));
1110 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1111 get_memory_packet_size (config));
1114 static struct memory_packet_config memory_write_packet_config =
1116 "memory-write-packet-size",
1120 set_memory_write_packet_size (char *args, int from_tty)
1122 set_memory_packet_size (args, &memory_write_packet_config);
1126 show_memory_write_packet_size (char *args, int from_tty)
1128 show_memory_packet_size (&memory_write_packet_config);
1132 get_memory_write_packet_size (void)
1134 return get_memory_packet_size (&memory_write_packet_config);
1137 static struct memory_packet_config memory_read_packet_config =
1139 "memory-read-packet-size",
1143 set_memory_read_packet_size (char *args, int from_tty)
1145 set_memory_packet_size (args, &memory_read_packet_config);
1149 show_memory_read_packet_size (char *args, int from_tty)
1151 show_memory_packet_size (&memory_read_packet_config);
1155 get_memory_read_packet_size (void)
1157 long size = get_memory_packet_size (&memory_read_packet_config);
1159 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1160 extra buffer size argument before the memory read size can be
1161 increased beyond this. */
1162 if (size > get_remote_packet_size ())
1163 size = get_remote_packet_size ();
1168 /* Generic configuration support for packets the stub optionally
1169 supports. Allows the user to specify the use of the packet as well
1170 as allowing GDB to auto-detect support in the remote stub. */
1174 PACKET_SUPPORT_UNKNOWN = 0,
1179 struct packet_config
1184 /* If auto, GDB auto-detects support for this packet or feature,
1185 either through qSupported, or by trying the packet and looking
1186 at the response. If true, GDB assumes the target supports this
1187 packet. If false, the packet is disabled. Configs that don't
1188 have an associated command always have this set to auto. */
1189 enum auto_boolean detect;
1191 /* Does the target support this packet? */
1192 enum packet_support support;
1195 /* Analyze a packet's return value and update the packet config
1205 static enum packet_support packet_config_support (struct packet_config *config);
1206 static enum packet_support packet_support (int packet);
1209 show_packet_config_cmd (struct packet_config *config)
1211 char *support = "internal-error";
1213 switch (packet_config_support (config))
1216 support = "enabled";
1218 case PACKET_DISABLE:
1219 support = "disabled";
1221 case PACKET_SUPPORT_UNKNOWN:
1222 support = "unknown";
1225 switch (config->detect)
1227 case AUTO_BOOLEAN_AUTO:
1228 printf_filtered (_("Support for the `%s' packet "
1229 "is auto-detected, currently %s.\n"),
1230 config->name, support);
1232 case AUTO_BOOLEAN_TRUE:
1233 case AUTO_BOOLEAN_FALSE:
1234 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1235 config->name, support);
1241 add_packet_config_cmd (struct packet_config *config, const char *name,
1242 const char *title, int legacy)
1248 config->name = name;
1249 config->title = title;
1250 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1252 show_doc = xstrprintf ("Show current use of remote "
1253 "protocol `%s' (%s) packet",
1255 /* set/show TITLE-packet {auto,on,off} */
1256 cmd_name = xstrprintf ("%s-packet", title);
1257 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1258 &config->detect, set_doc,
1259 show_doc, NULL, /* help_doc */
1261 show_remote_protocol_packet_cmd,
1262 &remote_set_cmdlist, &remote_show_cmdlist);
1263 /* The command code copies the documentation strings. */
1266 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1271 legacy_name = xstrprintf ("%s-packet", name);
1272 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1273 &remote_set_cmdlist);
1274 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1275 &remote_show_cmdlist);
1279 static enum packet_result
1280 packet_check_result (const char *buf)
1284 /* The stub recognized the packet request. Check that the
1285 operation succeeded. */
1287 && isxdigit (buf[1]) && isxdigit (buf[2])
1289 /* "Enn" - definitly an error. */
1290 return PACKET_ERROR;
1292 /* Always treat "E." as an error. This will be used for
1293 more verbose error messages, such as E.memtypes. */
1294 if (buf[0] == 'E' && buf[1] == '.')
1295 return PACKET_ERROR;
1297 /* The packet may or may not be OK. Just assume it is. */
1301 /* The stub does not support the packet. */
1302 return PACKET_UNKNOWN;
1305 static enum packet_result
1306 packet_ok (const char *buf, struct packet_config *config)
1308 enum packet_result result;
1310 if (config->detect != AUTO_BOOLEAN_TRUE
1311 && config->support == PACKET_DISABLE)
1312 internal_error (__FILE__, __LINE__,
1313 _("packet_ok: attempt to use a disabled packet"));
1315 result = packet_check_result (buf);
1320 /* The stub recognized the packet request. */
1321 if (config->support == PACKET_SUPPORT_UNKNOWN)
1324 fprintf_unfiltered (gdb_stdlog,
1325 "Packet %s (%s) is supported\n",
1326 config->name, config->title);
1327 config->support = PACKET_ENABLE;
1330 case PACKET_UNKNOWN:
1331 /* The stub does not support the packet. */
1332 if (config->detect == AUTO_BOOLEAN_AUTO
1333 && config->support == PACKET_ENABLE)
1335 /* If the stub previously indicated that the packet was
1336 supported then there is a protocol error. */
1337 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1338 config->name, config->title);
1340 else if (config->detect == AUTO_BOOLEAN_TRUE)
1342 /* The user set it wrong. */
1343 error (_("Enabled packet %s (%s) not recognized by stub"),
1344 config->name, config->title);
1348 fprintf_unfiltered (gdb_stdlog,
1349 "Packet %s (%s) is NOT supported\n",
1350 config->name, config->title);
1351 config->support = PACKET_DISABLE;
1372 PACKET_vFile_pwrite,
1374 PACKET_vFile_unlink,
1375 PACKET_vFile_readlink,
1378 PACKET_qXfer_features,
1379 PACKET_qXfer_exec_file,
1380 PACKET_qXfer_libraries,
1381 PACKET_qXfer_libraries_svr4,
1382 PACKET_qXfer_memory_map,
1383 PACKET_qXfer_spu_read,
1384 PACKET_qXfer_spu_write,
1385 PACKET_qXfer_osdata,
1386 PACKET_qXfer_threads,
1387 PACKET_qXfer_statictrace_read,
1388 PACKET_qXfer_traceframe_info,
1394 PACKET_QPassSignals,
1395 PACKET_QCatchSyscalls,
1396 PACKET_QProgramSignals,
1398 PACKET_qSearch_memory,
1401 PACKET_QStartNoAckMode,
1403 PACKET_qXfer_siginfo_read,
1404 PACKET_qXfer_siginfo_write,
1407 /* Support for conditional tracepoints. */
1408 PACKET_ConditionalTracepoints,
1410 /* Support for target-side breakpoint conditions. */
1411 PACKET_ConditionalBreakpoints,
1413 /* Support for target-side breakpoint commands. */
1414 PACKET_BreakpointCommands,
1416 /* Support for fast tracepoints. */
1417 PACKET_FastTracepoints,
1419 /* Support for static tracepoints. */
1420 PACKET_StaticTracepoints,
1422 /* Support for installing tracepoints while a trace experiment is
1424 PACKET_InstallInTrace,
1428 PACKET_TracepointSource,
1431 PACKET_QDisableRandomization,
1433 PACKET_QTBuffer_size,
1437 PACKET_qXfer_btrace,
1439 /* Support for the QNonStop packet. */
1442 /* Support for the QThreadEvents packet. */
1443 PACKET_QThreadEvents,
1445 /* Support for multi-process extensions. */
1446 PACKET_multiprocess_feature,
1448 /* Support for enabling and disabling tracepoints while a trace
1449 experiment is running. */
1450 PACKET_EnableDisableTracepoints_feature,
1452 /* Support for collecting strings using the tracenz bytecode. */
1453 PACKET_tracenz_feature,
1455 /* Support for continuing to run a trace experiment while GDB is
1457 PACKET_DisconnectedTracing_feature,
1459 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1460 PACKET_augmented_libraries_svr4_read_feature,
1462 /* Support for the qXfer:btrace-conf:read packet. */
1463 PACKET_qXfer_btrace_conf,
1465 /* Support for the Qbtrace-conf:bts:size packet. */
1466 PACKET_Qbtrace_conf_bts_size,
1468 /* Support for swbreak+ feature. */
1469 PACKET_swbreak_feature,
1471 /* Support for hwbreak+ feature. */
1472 PACKET_hwbreak_feature,
1474 /* Support for fork events. */
1475 PACKET_fork_event_feature,
1477 /* Support for vfork events. */
1478 PACKET_vfork_event_feature,
1480 /* Support for the Qbtrace-conf:pt:size packet. */
1481 PACKET_Qbtrace_conf_pt_size,
1483 /* Support for exec events. */
1484 PACKET_exec_event_feature,
1486 /* Support for query supported vCont actions. */
1487 PACKET_vContSupported,
1489 /* Support remote CTRL-C. */
1492 /* Support TARGET_WAITKIND_NO_RESUMED. */
1498 static struct packet_config remote_protocol_packets[PACKET_MAX];
1500 /* Returns the packet's corresponding "set remote foo-packet" command
1501 state. See struct packet_config for more details. */
1503 static enum auto_boolean
1504 packet_set_cmd_state (int packet)
1506 return remote_protocol_packets[packet].detect;
1509 /* Returns whether a given packet or feature is supported. This takes
1510 into account the state of the corresponding "set remote foo-packet"
1511 command, which may be used to bypass auto-detection. */
1513 static enum packet_support
1514 packet_config_support (struct packet_config *config)
1516 switch (config->detect)
1518 case AUTO_BOOLEAN_TRUE:
1519 return PACKET_ENABLE;
1520 case AUTO_BOOLEAN_FALSE:
1521 return PACKET_DISABLE;
1522 case AUTO_BOOLEAN_AUTO:
1523 return config->support;
1525 gdb_assert_not_reached (_("bad switch"));
1529 /* Same as packet_config_support, but takes the packet's enum value as
1532 static enum packet_support
1533 packet_support (int packet)
1535 struct packet_config *config = &remote_protocol_packets[packet];
1537 return packet_config_support (config);
1541 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1542 struct cmd_list_element *c,
1545 struct packet_config *packet;
1547 for (packet = remote_protocol_packets;
1548 packet < &remote_protocol_packets[PACKET_MAX];
1551 if (&packet->detect == c->var)
1553 show_packet_config_cmd (packet);
1557 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1561 /* Should we try one of the 'Z' requests? */
1565 Z_PACKET_SOFTWARE_BP,
1566 Z_PACKET_HARDWARE_BP,
1573 /* For compatibility with older distributions. Provide a ``set remote
1574 Z-packet ...'' command that updates all the Z packet types. */
1576 static enum auto_boolean remote_Z_packet_detect;
1579 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1580 struct cmd_list_element *c)
1584 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1585 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1589 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1590 struct cmd_list_element *c,
1595 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1597 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1601 /* Returns true if the multi-process extensions are in effect. */
1604 remote_multi_process_p (struct remote_state *rs)
1606 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1609 /* Returns true if fork events are supported. */
1612 remote_fork_event_p (struct remote_state *rs)
1614 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1617 /* Returns true if vfork events are supported. */
1620 remote_vfork_event_p (struct remote_state *rs)
1622 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1625 /* Returns true if exec events are supported. */
1628 remote_exec_event_p (struct remote_state *rs)
1630 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1633 /* Insert fork catchpoint target routine. If fork events are enabled
1634 then return success, nothing more to do. */
1637 remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1639 struct remote_state *rs = get_remote_state ();
1641 return !remote_fork_event_p (rs);
1644 /* Remove fork catchpoint target routine. Nothing to do, just
1648 remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1653 /* Insert vfork catchpoint target routine. If vfork events are enabled
1654 then return success, nothing more to do. */
1657 remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1659 struct remote_state *rs = get_remote_state ();
1661 return !remote_vfork_event_p (rs);
1664 /* Remove vfork catchpoint target routine. Nothing to do, just
1668 remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1673 /* Insert exec catchpoint target routine. If exec events are
1674 enabled, just return success. */
1677 remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1679 struct remote_state *rs = get_remote_state ();
1681 return !remote_exec_event_p (rs);
1684 /* Remove exec catchpoint target routine. Nothing to do, just
1688 remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1693 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1694 static struct async_signal_handler *async_sigint_remote_twice_token;
1695 static struct async_signal_handler *async_sigint_remote_token;
1698 /* Asynchronous signal handle registered as event loop source for
1699 when we have pending events ready to be passed to the core. */
1701 static struct async_event_handler *remote_async_inferior_event_token;
1705 static ptid_t magic_null_ptid;
1706 static ptid_t not_sent_ptid;
1707 static ptid_t any_thread_ptid;
1709 /* Find out if the stub attached to PID (and hence GDB should offer to
1710 detach instead of killing it when bailing out). */
1713 remote_query_attached (int pid)
1715 struct remote_state *rs = get_remote_state ();
1716 size_t size = get_remote_packet_size ();
1718 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
1721 if (remote_multi_process_p (rs))
1722 xsnprintf (rs->buf, size, "qAttached:%x", pid);
1724 xsnprintf (rs->buf, size, "qAttached");
1727 getpkt (&rs->buf, &rs->buf_size, 0);
1729 switch (packet_ok (rs->buf,
1730 &remote_protocol_packets[PACKET_qAttached]))
1733 if (strcmp (rs->buf, "1") == 0)
1737 warning (_("Remote failure reply: %s"), rs->buf);
1739 case PACKET_UNKNOWN:
1746 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1747 has been invented by GDB, instead of reported by the target. Since
1748 we can be connected to a remote system before before knowing about
1749 any inferior, mark the target with execution when we find the first
1750 inferior. If ATTACHED is 1, then we had just attached to this
1751 inferior. If it is 0, then we just created this inferior. If it
1752 is -1, then try querying the remote stub to find out if it had
1753 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1754 attempt to open this inferior's executable as the main executable
1755 if no main executable is open already. */
1757 static struct inferior *
1758 remote_add_inferior (int fake_pid_p, int pid, int attached,
1761 struct inferior *inf;
1763 /* Check whether this process we're learning about is to be
1764 considered attached, or if is to be considered to have been
1765 spawned by the stub. */
1767 attached = remote_query_attached (pid);
1769 if (gdbarch_has_global_solist (target_gdbarch ()))
1771 /* If the target shares code across all inferiors, then every
1772 attach adds a new inferior. */
1773 inf = add_inferior (pid);
1775 /* ... and every inferior is bound to the same program space.
1776 However, each inferior may still have its own address
1778 inf->aspace = maybe_new_address_space ();
1779 inf->pspace = current_program_space;
1783 /* In the traditional debugging scenario, there's a 1-1 match
1784 between program/address spaces. We simply bind the inferior
1785 to the program space's address space. */
1786 inf = current_inferior ();
1787 inferior_appeared (inf, pid);
1790 inf->attach_flag = attached;
1791 inf->fake_pid_p = fake_pid_p;
1793 /* If no main executable is currently open then attempt to
1794 open the file that was executed to create this inferior. */
1795 if (try_open_exec && get_exec_file (0) == NULL)
1796 exec_file_locate_attach (pid, 1);
1801 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1802 according to RUNNING. */
1805 remote_add_thread (ptid_t ptid, int running)
1807 struct remote_state *rs = get_remote_state ();
1809 /* GDB historically didn't pull threads in the initial connection
1810 setup. If the remote target doesn't even have a concept of
1811 threads (e.g., a bare-metal target), even if internally we
1812 consider that a single-threaded target, mentioning a new thread
1813 might be confusing to the user. Be silent then, preserving the
1814 age old behavior. */
1815 if (rs->starting_up)
1816 add_thread_silent (ptid);
1820 set_executing (ptid, running);
1821 set_running (ptid, running);
1824 /* Come here when we learn about a thread id from the remote target.
1825 It may be the first time we hear about such thread, so take the
1826 opportunity to add it to GDB's thread list. In case this is the
1827 first time we're noticing its corresponding inferior, add it to
1828 GDB's inferior list as well. */
1831 remote_notice_new_inferior (ptid_t currthread, int running)
1833 /* If this is a new thread, add it to GDB's thread list.
1834 If we leave it up to WFI to do this, bad things will happen. */
1836 if (in_thread_list (currthread) && is_exited (currthread))
1838 /* We're seeing an event on a thread id we knew had exited.
1839 This has to be a new thread reusing the old id. Add it. */
1840 remote_add_thread (currthread, running);
1844 if (!in_thread_list (currthread))
1846 struct inferior *inf = NULL;
1847 int pid = ptid_get_pid (currthread);
1849 if (ptid_is_pid (inferior_ptid)
1850 && pid == ptid_get_pid (inferior_ptid))
1852 /* inferior_ptid has no thread member yet. This can happen
1853 with the vAttach -> remote_wait,"TAAthread:" path if the
1854 stub doesn't support qC. This is the first stop reported
1855 after an attach, so this is the main thread. Update the
1856 ptid in the thread list. */
1857 if (in_thread_list (pid_to_ptid (pid)))
1858 thread_change_ptid (inferior_ptid, currthread);
1861 remote_add_thread (currthread, running);
1862 inferior_ptid = currthread;
1867 if (ptid_equal (magic_null_ptid, inferior_ptid))
1869 /* inferior_ptid is not set yet. This can happen with the
1870 vRun -> remote_wait,"TAAthread:" path if the stub
1871 doesn't support qC. This is the first stop reported
1872 after an attach, so this is the main thread. Update the
1873 ptid in the thread list. */
1874 thread_change_ptid (inferior_ptid, currthread);
1878 /* When connecting to a target remote, or to a target
1879 extended-remote which already was debugging an inferior, we
1880 may not know about it yet. Add it before adding its child
1881 thread, so notifications are emitted in a sensible order. */
1882 if (!in_inferior_list (ptid_get_pid (currthread)))
1884 struct remote_state *rs = get_remote_state ();
1885 int fake_pid_p = !remote_multi_process_p (rs);
1887 inf = remote_add_inferior (fake_pid_p,
1888 ptid_get_pid (currthread), -1, 1);
1891 /* This is really a new thread. Add it. */
1892 remote_add_thread (currthread, running);
1894 /* If we found a new inferior, let the common code do whatever
1895 it needs to with it (e.g., read shared libraries, insert
1896 breakpoints), unless we're just setting up an all-stop
1900 struct remote_state *rs = get_remote_state ();
1902 if (!rs->starting_up)
1903 notice_new_inferior (currthread, running, 0);
1908 /* Return the private thread data, creating it if necessary. */
1910 static struct private_thread_info *
1911 demand_private_info (ptid_t ptid)
1913 struct thread_info *info = find_thread_ptid (ptid);
1919 info->priv = XNEW (struct private_thread_info);
1920 info->private_dtor = free_private_thread_info;
1921 info->priv->core = -1;
1922 info->priv->extra = NULL;
1923 info->priv->name = NULL;
1929 /* Call this function as a result of
1930 1) A halt indication (T packet) containing a thread id
1931 2) A direct query of currthread
1932 3) Successful execution of set thread */
1935 record_currthread (struct remote_state *rs, ptid_t currthread)
1937 rs->general_thread = currthread;
1940 /* If 'QPassSignals' is supported, tell the remote stub what signals
1941 it can simply pass through to the inferior without reporting. */
1944 remote_pass_signals (struct target_ops *self,
1945 int numsigs, unsigned char *pass_signals)
1947 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
1949 char *pass_packet, *p;
1951 struct remote_state *rs = get_remote_state ();
1953 gdb_assert (numsigs < 256);
1954 for (i = 0; i < numsigs; i++)
1956 if (pass_signals[i])
1959 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1960 strcpy (pass_packet, "QPassSignals:");
1961 p = pass_packet + strlen (pass_packet);
1962 for (i = 0; i < numsigs; i++)
1964 if (pass_signals[i])
1967 *p++ = tohex (i >> 4);
1968 *p++ = tohex (i & 15);
1977 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
1979 putpkt (pass_packet);
1980 getpkt (&rs->buf, &rs->buf_size, 0);
1981 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
1982 if (rs->last_pass_packet)
1983 xfree (rs->last_pass_packet);
1984 rs->last_pass_packet = pass_packet;
1987 xfree (pass_packet);
1991 /* If 'QCatchSyscalls' is supported, tell the remote stub
1992 to report syscalls to GDB. */
1995 remote_set_syscall_catchpoint (struct target_ops *self,
1996 int pid, int needed, int any_count,
1997 int table_size, int *table)
2000 enum packet_result result;
2003 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2005 /* Not supported. */
2009 if (needed && !any_count)
2013 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2014 for (i = 0; i < table_size; i++)
2023 fprintf_unfiltered (gdb_stdlog,
2024 "remote_set_syscall_catchpoint "
2025 "pid %d needed %d any_count %d n_sysno %d\n",
2026 pid, needed, any_count, n_sysno);
2031 /* Prepare a packet with the sysno list, assuming max 8+1
2032 characters for a sysno. If the resulting packet size is too
2033 big, fallback on the non-selective packet. */
2034 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2036 catch_packet = (char *) xmalloc (maxpktsz);
2037 strcpy (catch_packet, "QCatchSyscalls:1");
2046 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
2047 for (i = 0; i < table_size; i++)
2050 p += xsnprintf (p, catch_packet + maxpktsz - p, ";%x", i);
2053 if (strlen (catch_packet) > get_remote_packet_size ())
2055 /* catch_packet too big. Fallback to less efficient
2056 non selective mode, with GDB doing the filtering. */
2057 catch_packet[sizeof ("QCatchSyscalls:1") - 1] = 0;
2061 catch_packet = xstrdup ("QCatchSyscalls:0");
2064 struct cleanup *old_chain = make_cleanup (xfree, catch_packet);
2065 struct remote_state *rs = get_remote_state ();
2067 putpkt (catch_packet);
2068 getpkt (&rs->buf, &rs->buf_size, 0);
2069 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2070 do_cleanups (old_chain);
2071 if (result == PACKET_OK)
2078 /* If 'QProgramSignals' is supported, tell the remote stub what
2079 signals it should pass through to the inferior when detaching. */
2082 remote_program_signals (struct target_ops *self,
2083 int numsigs, unsigned char *signals)
2085 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2089 struct remote_state *rs = get_remote_state ();
2091 gdb_assert (numsigs < 256);
2092 for (i = 0; i < numsigs; i++)
2097 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2098 strcpy (packet, "QProgramSignals:");
2099 p = packet + strlen (packet);
2100 for (i = 0; i < numsigs; i++)
2102 if (signal_pass_state (i))
2105 *p++ = tohex (i >> 4);
2106 *p++ = tohex (i & 15);
2115 if (!rs->last_program_signals_packet
2116 || strcmp (rs->last_program_signals_packet, packet) != 0)
2119 getpkt (&rs->buf, &rs->buf_size, 0);
2120 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2121 xfree (rs->last_program_signals_packet);
2122 rs->last_program_signals_packet = packet;
2129 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2130 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2131 thread. If GEN is set, set the general thread, if not, then set
2132 the step/continue thread. */
2134 set_thread (struct ptid ptid, int gen)
2136 struct remote_state *rs = get_remote_state ();
2137 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2138 char *buf = rs->buf;
2139 char *endbuf = rs->buf + get_remote_packet_size ();
2141 if (ptid_equal (state, ptid))
2145 *buf++ = gen ? 'g' : 'c';
2146 if (ptid_equal (ptid, magic_null_ptid))
2147 xsnprintf (buf, endbuf - buf, "0");
2148 else if (ptid_equal (ptid, any_thread_ptid))
2149 xsnprintf (buf, endbuf - buf, "0");
2150 else if (ptid_equal (ptid, minus_one_ptid))
2151 xsnprintf (buf, endbuf - buf, "-1");
2153 write_ptid (buf, endbuf, ptid);
2155 getpkt (&rs->buf, &rs->buf_size, 0);
2157 rs->general_thread = ptid;
2159 rs->continue_thread = ptid;
2163 set_general_thread (struct ptid ptid)
2165 set_thread (ptid, 1);
2169 set_continue_thread (struct ptid ptid)
2171 set_thread (ptid, 0);
2174 /* Change the remote current process. Which thread within the process
2175 ends up selected isn't important, as long as it is the same process
2176 as what INFERIOR_PTID points to.
2178 This comes from that fact that there is no explicit notion of
2179 "selected process" in the protocol. The selected process for
2180 general operations is the process the selected general thread
2184 set_general_process (void)
2186 struct remote_state *rs = get_remote_state ();
2188 /* If the remote can't handle multiple processes, don't bother. */
2189 if (!remote_multi_process_p (rs))
2192 /* We only need to change the remote current thread if it's pointing
2193 at some other process. */
2194 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
2195 set_general_thread (inferior_ptid);
2199 /* Return nonzero if this is the main thread that we made up ourselves
2200 to model non-threaded targets as single-threaded. */
2203 remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
2205 struct remote_state *rs = get_remote_state ();
2208 if (ptid_equal (ptid, magic_null_ptid))
2209 /* The main thread is always alive. */
2212 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
2213 /* The main thread is always alive. This can happen after a
2214 vAttach, if the remote side doesn't support
2221 /* Return nonzero if the thread PTID is still alive on the remote
2225 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2227 struct remote_state *rs = get_remote_state ();
2230 /* Check if this is a thread that we made up ourselves to model
2231 non-threaded targets as single-threaded. */
2232 if (remote_thread_always_alive (ops, ptid))
2236 endp = rs->buf + get_remote_packet_size ();
2239 write_ptid (p, endp, ptid);
2242 getpkt (&rs->buf, &rs->buf_size, 0);
2243 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2246 /* Return a pointer to a thread name if we know it and NULL otherwise.
2247 The thread_info object owns the memory for the name. */
2250 remote_thread_name (struct target_ops *ops, struct thread_info *info)
2252 if (info->priv != NULL)
2253 return info->priv->name;
2258 /* About these extended threadlist and threadinfo packets. They are
2259 variable length packets but, the fields within them are often fixed
2260 length. They are redundent enough to send over UDP as is the
2261 remote protocol in general. There is a matching unit test module
2264 /* WARNING: This threadref data structure comes from the remote O.S.,
2265 libstub protocol encoding, and remote.c. It is not particularly
2268 /* Right now, the internal structure is int. We want it to be bigger.
2269 Plan to fix this. */
2271 typedef int gdb_threadref; /* Internal GDB thread reference. */
2273 /* gdb_ext_thread_info is an internal GDB data structure which is
2274 equivalent to the reply of the remote threadinfo packet. */
2276 struct gdb_ext_thread_info
2278 threadref threadid; /* External form of thread reference. */
2279 int active; /* Has state interesting to GDB?
2281 char display[256]; /* Brief state display, name,
2282 blocked/suspended. */
2283 char shortname[32]; /* To be used to name threads. */
2284 char more_display[256]; /* Long info, statistics, queue depth,
2288 /* The volume of remote transfers can be limited by submitting
2289 a mask containing bits specifying the desired information.
2290 Use a union of these values as the 'selection' parameter to
2291 get_thread_info. FIXME: Make these TAG names more thread specific. */
2293 #define TAG_THREADID 1
2294 #define TAG_EXISTS 2
2295 #define TAG_DISPLAY 4
2296 #define TAG_THREADNAME 8
2297 #define TAG_MOREDISPLAY 16
2299 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2301 static char *unpack_nibble (char *buf, int *val);
2303 static char *unpack_byte (char *buf, int *value);
2305 static char *pack_int (char *buf, int value);
2307 static char *unpack_int (char *buf, int *value);
2309 static char *unpack_string (char *src, char *dest, int length);
2311 static char *pack_threadid (char *pkt, threadref *id);
2313 static char *unpack_threadid (char *inbuf, threadref *id);
2315 void int_to_threadref (threadref *id, int value);
2317 static int threadref_to_int (threadref *ref);
2319 static void copy_threadref (threadref *dest, threadref *src);
2321 static int threadmatch (threadref *dest, threadref *src);
2323 static char *pack_threadinfo_request (char *pkt, int mode,
2326 static int remote_unpack_thread_info_response (char *pkt,
2327 threadref *expectedref,
2328 struct gdb_ext_thread_info
2332 static int remote_get_threadinfo (threadref *threadid,
2333 int fieldset, /*TAG mask */
2334 struct gdb_ext_thread_info *info);
2336 static char *pack_threadlist_request (char *pkt, int startflag,
2338 threadref *nextthread);
2340 static int parse_threadlist_response (char *pkt,
2342 threadref *original_echo,
2343 threadref *resultlist,
2346 static int remote_get_threadlist (int startflag,
2347 threadref *nextthread,
2351 threadref *threadlist);
2353 typedef int (*rmt_thread_action) (threadref *ref, void *context);
2355 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2356 void *context, int looplimit);
2358 static int remote_newthread_step (threadref *ref, void *context);
2361 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2362 buffer we're allowed to write to. Returns
2363 BUF+CHARACTERS_WRITTEN. */
2366 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2369 struct remote_state *rs = get_remote_state ();
2371 if (remote_multi_process_p (rs))
2373 pid = ptid_get_pid (ptid);
2375 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2377 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2379 tid = ptid_get_lwp (ptid);
2381 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2383 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2388 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2389 passed the last parsed char. Returns null_ptid on error. */
2392 read_ptid (char *buf, char **obuf)
2396 ULONGEST pid = 0, tid = 0;
2400 /* Multi-process ptid. */
2401 pp = unpack_varlen_hex (p + 1, &pid);
2403 error (_("invalid remote ptid: %s"), p);
2406 pp = unpack_varlen_hex (p + 1, &tid);
2409 return ptid_build (pid, tid, 0);
2412 /* No multi-process. Just a tid. */
2413 pp = unpack_varlen_hex (p, &tid);
2415 /* Return null_ptid when no thread id is found. */
2423 /* Since the stub is not sending a process id, then default to
2424 what's in inferior_ptid, unless it's null at this point. If so,
2425 then since there's no way to know the pid of the reported
2426 threads, use the magic number. */
2427 if (ptid_equal (inferior_ptid, null_ptid))
2428 pid = ptid_get_pid (magic_null_ptid);
2430 pid = ptid_get_pid (inferior_ptid);
2434 return ptid_build (pid, tid, 0);
2440 if (ch >= 'a' && ch <= 'f')
2441 return ch - 'a' + 10;
2442 if (ch >= '0' && ch <= '9')
2444 if (ch >= 'A' && ch <= 'F')
2445 return ch - 'A' + 10;
2450 stub_unpack_int (char *buff, int fieldlength)
2457 nibble = stubhex (*buff++);
2461 retval = retval << 4;
2467 unpack_nibble (char *buf, int *val)
2469 *val = fromhex (*buf++);
2474 unpack_byte (char *buf, int *value)
2476 *value = stub_unpack_int (buf, 2);
2481 pack_int (char *buf, int value)
2483 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2484 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2485 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2486 buf = pack_hex_byte (buf, (value & 0xff));
2491 unpack_int (char *buf, int *value)
2493 *value = stub_unpack_int (buf, 8);
2497 #if 0 /* Currently unused, uncomment when needed. */
2498 static char *pack_string (char *pkt, char *string);
2501 pack_string (char *pkt, char *string)
2506 len = strlen (string);
2508 len = 200; /* Bigger than most GDB packets, junk??? */
2509 pkt = pack_hex_byte (pkt, len);
2513 if ((ch == '\0') || (ch == '#'))
2514 ch = '*'; /* Protect encapsulation. */
2519 #endif /* 0 (unused) */
2522 unpack_string (char *src, char *dest, int length)
2531 pack_threadid (char *pkt, threadref *id)
2534 unsigned char *altid;
2536 altid = (unsigned char *) id;
2537 limit = pkt + BUF_THREAD_ID_SIZE;
2539 pkt = pack_hex_byte (pkt, *altid++);
2545 unpack_threadid (char *inbuf, threadref *id)
2548 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2551 altref = (char *) id;
2553 while (inbuf < limit)
2555 x = stubhex (*inbuf++);
2556 y = stubhex (*inbuf++);
2557 *altref++ = (x << 4) | y;
2562 /* Externally, threadrefs are 64 bits but internally, they are still
2563 ints. This is due to a mismatch of specifications. We would like
2564 to use 64bit thread references internally. This is an adapter
2568 int_to_threadref (threadref *id, int value)
2570 unsigned char *scan;
2572 scan = (unsigned char *) id;
2578 *scan++ = (value >> 24) & 0xff;
2579 *scan++ = (value >> 16) & 0xff;
2580 *scan++ = (value >> 8) & 0xff;
2581 *scan++ = (value & 0xff);
2585 threadref_to_int (threadref *ref)
2588 unsigned char *scan;
2594 value = (value << 8) | ((*scan++) & 0xff);
2599 copy_threadref (threadref *dest, threadref *src)
2602 unsigned char *csrc, *cdest;
2604 csrc = (unsigned char *) src;
2605 cdest = (unsigned char *) dest;
2612 threadmatch (threadref *dest, threadref *src)
2614 /* Things are broken right now, so just assume we got a match. */
2616 unsigned char *srcp, *destp;
2618 srcp = (char *) src;
2619 destp = (char *) dest;
2623 result &= (*srcp++ == *destp++) ? 1 : 0;
2630 threadid:1, # always request threadid
2637 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2640 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2642 *pkt++ = 'q'; /* Info Query */
2643 *pkt++ = 'P'; /* process or thread info */
2644 pkt = pack_int (pkt, mode); /* mode */
2645 pkt = pack_threadid (pkt, id); /* threadid */
2646 *pkt = '\0'; /* terminate */
2650 /* These values tag the fields in a thread info response packet. */
2651 /* Tagging the fields allows us to request specific fields and to
2652 add more fields as time goes by. */
2654 #define TAG_THREADID 1 /* Echo the thread identifier. */
2655 #define TAG_EXISTS 2 /* Is this process defined enough to
2656 fetch registers and its stack? */
2657 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2658 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2659 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2663 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2664 struct gdb_ext_thread_info *info)
2666 struct remote_state *rs = get_remote_state ();
2670 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2673 /* info->threadid = 0; FIXME: implement zero_threadref. */
2675 info->display[0] = '\0';
2676 info->shortname[0] = '\0';
2677 info->more_display[0] = '\0';
2679 /* Assume the characters indicating the packet type have been
2681 pkt = unpack_int (pkt, &mask); /* arg mask */
2682 pkt = unpack_threadid (pkt, &ref);
2685 warning (_("Incomplete response to threadinfo request."));
2686 if (!threadmatch (&ref, expectedref))
2687 { /* This is an answer to a different request. */
2688 warning (_("ERROR RMT Thread info mismatch."));
2691 copy_threadref (&info->threadid, &ref);
2693 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2695 /* Packets are terminated with nulls. */
2696 while ((pkt < limit) && mask && *pkt)
2698 pkt = unpack_int (pkt, &tag); /* tag */
2699 pkt = unpack_byte (pkt, &length); /* length */
2700 if (!(tag & mask)) /* Tags out of synch with mask. */
2702 warning (_("ERROR RMT: threadinfo tag mismatch."));
2706 if (tag == TAG_THREADID)
2710 warning (_("ERROR RMT: length of threadid is not 16."));
2714 pkt = unpack_threadid (pkt, &ref);
2715 mask = mask & ~TAG_THREADID;
2718 if (tag == TAG_EXISTS)
2720 info->active = stub_unpack_int (pkt, length);
2722 mask = mask & ~(TAG_EXISTS);
2725 warning (_("ERROR RMT: 'exists' length too long."));
2731 if (tag == TAG_THREADNAME)
2733 pkt = unpack_string (pkt, &info->shortname[0], length);
2734 mask = mask & ~TAG_THREADNAME;
2737 if (tag == TAG_DISPLAY)
2739 pkt = unpack_string (pkt, &info->display[0], length);
2740 mask = mask & ~TAG_DISPLAY;
2743 if (tag == TAG_MOREDISPLAY)
2745 pkt = unpack_string (pkt, &info->more_display[0], length);
2746 mask = mask & ~TAG_MOREDISPLAY;
2749 warning (_("ERROR RMT: unknown thread info tag."));
2750 break; /* Not a tag we know about. */
2756 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2757 struct gdb_ext_thread_info *info)
2759 struct remote_state *rs = get_remote_state ();
2762 pack_threadinfo_request (rs->buf, fieldset, threadid);
2764 getpkt (&rs->buf, &rs->buf_size, 0);
2766 if (rs->buf[0] == '\0')
2769 result = remote_unpack_thread_info_response (rs->buf + 2,
2774 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2777 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2778 threadref *nextthread)
2780 *pkt++ = 'q'; /* info query packet */
2781 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2782 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2783 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2784 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2789 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2792 parse_threadlist_response (char *pkt, int result_limit,
2793 threadref *original_echo, threadref *resultlist,
2796 struct remote_state *rs = get_remote_state ();
2798 int count, resultcount, done;
2801 /* Assume the 'q' and 'M chars have been stripped. */
2802 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2803 /* done parse past here */
2804 pkt = unpack_byte (pkt, &count); /* count field */
2805 pkt = unpack_nibble (pkt, &done);
2806 /* The first threadid is the argument threadid. */
2807 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2808 while ((count-- > 0) && (pkt < limit))
2810 pkt = unpack_threadid (pkt, resultlist++);
2811 if (resultcount++ >= result_limit)
2819 /* Fetch the next batch of threads from the remote. Returns -1 if the
2820 qL packet is not supported, 0 on error and 1 on success. */
2823 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2824 int *done, int *result_count, threadref *threadlist)
2826 struct remote_state *rs = get_remote_state ();
2829 /* Trancate result limit to be smaller than the packet size. */
2830 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2831 >= get_remote_packet_size ())
2832 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2834 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2836 getpkt (&rs->buf, &rs->buf_size, 0);
2837 if (*rs->buf == '\0')
2839 /* Packet not supported. */
2844 parse_threadlist_response (rs->buf + 2, result_limit,
2845 &rs->echo_nextthread, threadlist, done);
2847 if (!threadmatch (&rs->echo_nextthread, nextthread))
2849 /* FIXME: This is a good reason to drop the packet. */
2850 /* Possably, there is a duplicate response. */
2852 retransmit immediatly - race conditions
2853 retransmit after timeout - yes
2855 wait for packet, then exit
2857 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2858 return 0; /* I choose simply exiting. */
2860 if (*result_count <= 0)
2864 warning (_("RMT ERROR : failed to get remote thread list."));
2867 return result; /* break; */
2869 if (*result_count > result_limit)
2872 warning (_("RMT ERROR: threadlist response longer than requested."));
2878 /* Fetch the list of remote threads, with the qL packet, and call
2879 STEPFUNCTION for each thread found. Stops iterating and returns 1
2880 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2881 STEPFUNCTION returns false. If the packet is not supported,
2885 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2888 struct remote_state *rs = get_remote_state ();
2889 int done, i, result_count;
2897 if (loopcount++ > looplimit)
2900 warning (_("Remote fetch threadlist -infinite loop-."));
2903 result = remote_get_threadlist (startflag, &rs->nextthread,
2904 MAXTHREADLISTRESULTS,
2905 &done, &result_count,
2906 rs->resultthreadlist);
2909 /* Clear for later iterations. */
2911 /* Setup to resume next batch of thread references, set nextthread. */
2912 if (result_count >= 1)
2913 copy_threadref (&rs->nextthread,
2914 &rs->resultthreadlist[result_count - 1]);
2916 while (result_count--)
2918 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2928 /* A thread found on the remote target. */
2930 typedef struct thread_item
2932 /* The thread's PTID. */
2935 /* The thread's extra info. May be NULL. */
2938 /* The thread's name. May be NULL. */
2941 /* The core the thread was running on. -1 if not known. */
2944 DEF_VEC_O(thread_item_t);
2946 /* Context passed around to the various methods listing remote
2947 threads. As new threads are found, they're added to the ITEMS
2950 struct threads_listing_context
2952 /* The threads found on the remote target. */
2953 VEC (thread_item_t) *items;
2956 /* Discard the contents of the constructed thread listing context. */
2959 clear_threads_listing_context (void *p)
2961 struct threads_listing_context *context
2962 = (struct threads_listing_context *) p;
2964 struct thread_item *item;
2966 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2968 xfree (item->extra);
2972 VEC_free (thread_item_t, context->items);
2975 /* Remove the thread specified as the related_pid field of WS
2976 from the CONTEXT list. */
2979 threads_listing_context_remove (struct target_waitstatus *ws,
2980 struct threads_listing_context *context)
2982 struct thread_item *item;
2984 ptid_t child_ptid = ws->value.related_pid;
2986 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2988 if (ptid_equal (item->ptid, child_ptid))
2990 VEC_ordered_remove (thread_item_t, context->items, i);
2997 remote_newthread_step (threadref *ref, void *data)
2999 struct threads_listing_context *context
3000 = (struct threads_listing_context *) data;
3001 struct thread_item item;
3002 int pid = ptid_get_pid (inferior_ptid);
3004 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3009 VEC_safe_push (thread_item_t, context->items, &item);
3011 return 1; /* continue iterator */
3014 #define CRAZY_MAX_THREADS 1000
3017 remote_current_thread (ptid_t oldpid)
3019 struct remote_state *rs = get_remote_state ();
3022 getpkt (&rs->buf, &rs->buf_size, 0);
3023 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3028 result = read_ptid (&rs->buf[2], &obuf);
3029 if (*obuf != '\0' && remote_debug)
3030 fprintf_unfiltered (gdb_stdlog,
3031 "warning: garbage in qC reply\n");
3039 /* List remote threads using the deprecated qL packet. */
3042 remote_get_threads_with_ql (struct target_ops *ops,
3043 struct threads_listing_context *context)
3045 if (remote_threadlist_iterator (remote_newthread_step, context,
3046 CRAZY_MAX_THREADS) >= 0)
3052 #if defined(HAVE_LIBEXPAT)
3055 start_thread (struct gdb_xml_parser *parser,
3056 const struct gdb_xml_element *element,
3057 void *user_data, VEC(gdb_xml_value_s) *attributes)
3059 struct threads_listing_context *data
3060 = (struct threads_listing_context *) user_data;
3062 struct thread_item item;
3064 struct gdb_xml_value *attr;
3066 id = (char *) xml_find_attribute (attributes, "id")->value;
3067 item.ptid = read_ptid (id, NULL);
3069 attr = xml_find_attribute (attributes, "core");
3071 item.core = *(ULONGEST *) attr->value;
3075 attr = xml_find_attribute (attributes, "name");
3076 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
3080 VEC_safe_push (thread_item_t, data->items, &item);
3084 end_thread (struct gdb_xml_parser *parser,
3085 const struct gdb_xml_element *element,
3086 void *user_data, const char *body_text)
3088 struct threads_listing_context *data
3089 = (struct threads_listing_context *) user_data;
3091 if (body_text && *body_text)
3092 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
3095 const struct gdb_xml_attribute thread_attributes[] = {
3096 { "id", GDB_XML_AF_NONE, NULL, NULL },
3097 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3098 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3099 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3102 const struct gdb_xml_element thread_children[] = {
3103 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3106 const struct gdb_xml_element threads_children[] = {
3107 { "thread", thread_attributes, thread_children,
3108 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3109 start_thread, end_thread },
3110 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3113 const struct gdb_xml_element threads_elements[] = {
3114 { "threads", NULL, threads_children,
3115 GDB_XML_EF_NONE, NULL, NULL },
3116 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3121 /* List remote threads using qXfer:threads:read. */
3124 remote_get_threads_with_qxfer (struct target_ops *ops,
3125 struct threads_listing_context *context)
3127 #if defined(HAVE_LIBEXPAT)
3128 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3130 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
3131 struct cleanup *back_to = make_cleanup (xfree, xml);
3133 if (xml != NULL && *xml != '\0')
3135 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3136 threads_elements, xml, context);
3139 do_cleanups (back_to);
3147 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3150 remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3151 struct threads_listing_context *context)
3153 struct remote_state *rs = get_remote_state ();
3155 if (rs->use_threadinfo_query)
3159 putpkt ("qfThreadInfo");
3160 getpkt (&rs->buf, &rs->buf_size, 0);
3162 if (bufp[0] != '\0') /* q packet recognized */
3164 while (*bufp++ == 'm') /* reply contains one or more TID */
3168 struct thread_item item;
3170 item.ptid = read_ptid (bufp, &bufp);
3175 VEC_safe_push (thread_item_t, context->items, &item);
3177 while (*bufp++ == ','); /* comma-separated list */
3178 putpkt ("qsThreadInfo");
3179 getpkt (&rs->buf, &rs->buf_size, 0);
3186 /* Packet not recognized. */
3187 rs->use_threadinfo_query = 0;
3194 /* Implement the to_update_thread_list function for the remote
3198 remote_update_thread_list (struct target_ops *ops)
3200 struct remote_state *rs = get_remote_state ();
3201 struct threads_listing_context context;
3202 struct cleanup *old_chain;
3205 context.items = NULL;
3206 old_chain = make_cleanup (clear_threads_listing_context, &context);
3208 /* We have a few different mechanisms to fetch the thread list. Try
3209 them all, starting with the most preferred one first, falling
3210 back to older methods. */
3211 if (remote_get_threads_with_qxfer (ops, &context)
3212 || remote_get_threads_with_qthreadinfo (ops, &context)
3213 || remote_get_threads_with_ql (ops, &context))
3216 struct thread_item *item;
3217 struct thread_info *tp, *tmp;
3221 if (VEC_empty (thread_item_t, context.items)
3222 && remote_thread_always_alive (ops, inferior_ptid))
3224 /* Some targets don't really support threads, but still
3225 reply an (empty) thread list in response to the thread
3226 listing packets, instead of replying "packet not
3227 supported". Exit early so we don't delete the main
3229 do_cleanups (old_chain);
3233 /* CONTEXT now holds the current thread list on the remote
3234 target end. Delete GDB-side threads no longer found on the
3236 ALL_THREADS_SAFE (tp, tmp)
3239 VEC_iterate (thread_item_t, context.items, i, item);
3242 if (ptid_equal (item->ptid, tp->ptid))
3246 if (i == VEC_length (thread_item_t, context.items))
3249 delete_thread (tp->ptid);
3253 /* Remove any unreported fork child threads from CONTEXT so
3254 that we don't interfere with follow fork, which is where
3255 creation of such threads is handled. */
3256 remove_new_fork_children (&context);
3258 /* And now add threads we don't know about yet to our list. */
3260 VEC_iterate (thread_item_t, context.items, i, item);
3263 if (!ptid_equal (item->ptid, null_ptid))
3265 struct private_thread_info *info;
3266 /* In non-stop mode, we assume new found threads are
3267 running until proven otherwise with a stop reply. In
3268 all-stop, we can only get here if all threads are
3270 int running = target_is_non_stop_p () ? 1 : 0;
3272 remote_notice_new_inferior (item->ptid, running);
3274 info = demand_private_info (item->ptid);
3275 info->core = item->core;
3276 info->extra = item->extra;
3278 info->name = item->name;
3286 /* If no thread listing method is supported, then query whether
3287 each known thread is alive, one by one, with the T packet.
3288 If the target doesn't support threads at all, then this is a
3289 no-op. See remote_thread_alive. */
3293 do_cleanups (old_chain);
3297 * Collect a descriptive string about the given thread.
3298 * The target may say anything it wants to about the thread
3299 * (typically info about its blocked / runnable state, name, etc.).
3300 * This string will appear in the info threads display.
3302 * Optional: targets are not required to implement this function.
3306 remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
3308 struct remote_state *rs = get_remote_state ();
3312 struct gdb_ext_thread_info threadinfo;
3313 static char display_buf[100]; /* arbitrary... */
3314 int n = 0; /* position in display_buf */
3316 if (rs->remote_desc == 0) /* paranoia */
3317 internal_error (__FILE__, __LINE__,
3318 _("remote_threads_extra_info"));
3320 if (ptid_equal (tp->ptid, magic_null_ptid)
3321 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
3322 /* This is the main thread which was added by GDB. The remote
3323 server doesn't know about it. */
3326 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3328 struct thread_info *info = find_thread_ptid (tp->ptid);
3330 if (info && info->priv)
3331 return info->priv->extra;
3336 if (rs->use_threadextra_query)
3339 char *endb = rs->buf + get_remote_packet_size ();
3341 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3343 write_ptid (b, endb, tp->ptid);
3346 getpkt (&rs->buf, &rs->buf_size, 0);
3347 if (rs->buf[0] != 0)
3349 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
3350 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
3351 display_buf [result] = '\0';
3356 /* If the above query fails, fall back to the old method. */
3357 rs->use_threadextra_query = 0;
3358 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3359 | TAG_MOREDISPLAY | TAG_DISPLAY;
3360 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
3361 if (remote_get_threadinfo (&id, set, &threadinfo))
3362 if (threadinfo.active)
3364 if (*threadinfo.shortname)
3365 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
3366 " Name: %s,", threadinfo.shortname);
3367 if (*threadinfo.display)
3368 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3369 " State: %s,", threadinfo.display);
3370 if (*threadinfo.more_display)
3371 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3372 " Priority: %s", threadinfo.more_display);
3376 /* For purely cosmetic reasons, clear up trailing commas. */
3377 if (',' == display_buf[n-1])
3378 display_buf[n-1] = ' ';
3387 remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
3388 struct static_tracepoint_marker *marker)
3390 struct remote_state *rs = get_remote_state ();
3393 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3395 p += hexnumstr (p, addr);
3397 getpkt (&rs->buf, &rs->buf_size, 0);
3401 error (_("Remote failure reply: %s"), p);
3405 parse_static_tracepoint_marker_definition (p, &p, marker);
3412 static VEC(static_tracepoint_marker_p) *
3413 remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3416 struct remote_state *rs = get_remote_state ();
3417 VEC(static_tracepoint_marker_p) *markers = NULL;
3418 struct static_tracepoint_marker *marker = NULL;
3419 struct cleanup *old_chain;
3422 /* Ask for a first packet of static tracepoint marker
3425 getpkt (&rs->buf, &rs->buf_size, 0);
3428 error (_("Remote failure reply: %s"), p);
3430 old_chain = make_cleanup (free_current_marker, &marker);
3435 marker = XCNEW (struct static_tracepoint_marker);
3439 parse_static_tracepoint_marker_definition (p, &p, marker);
3441 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3443 VEC_safe_push (static_tracepoint_marker_p,
3449 release_static_tracepoint_marker (marker);
3450 memset (marker, 0, sizeof (*marker));
3453 while (*p++ == ','); /* comma-separated list */
3454 /* Ask for another packet of static tracepoint definition. */
3456 getpkt (&rs->buf, &rs->buf_size, 0);
3460 do_cleanups (old_chain);
3465 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3468 remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
3470 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
3474 /* Restart the remote side; this is an extended protocol operation. */
3477 extended_remote_restart (void)
3479 struct remote_state *rs = get_remote_state ();
3481 /* Send the restart command; for reasons I don't understand the
3482 remote side really expects a number after the "R". */
3483 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3486 remote_fileio_reset ();
3489 /* Clean up connection to a remote debugger. */
3492 remote_close (struct target_ops *self)
3494 struct remote_state *rs = get_remote_state ();
3496 if (rs->remote_desc == NULL)
3497 return; /* already closed */
3499 /* Make sure we leave stdin registered in the event loop, and we
3500 don't leave the async SIGINT signal handler installed. */
3501 remote_terminal_ours (self);
3503 serial_close (rs->remote_desc);
3504 rs->remote_desc = NULL;
3506 /* We don't have a connection to the remote stub anymore. Get rid
3507 of all the inferiors and their threads we were controlling.
3508 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3509 will be unable to find the thread corresponding to (pid, 0, 0). */
3510 inferior_ptid = null_ptid;
3511 discard_all_inferiors ();
3513 /* We are closing the remote target, so we should discard
3514 everything of this target. */
3515 discard_pending_stop_replies_in_queue (rs);
3517 if (remote_async_inferior_event_token)
3518 delete_async_event_handler (&remote_async_inferior_event_token);
3520 remote_notif_state_xfree (rs->notif_state);
3522 trace_reset_local_state ();
3525 /* Query the remote side for the text, data and bss offsets. */
3530 struct remote_state *rs = get_remote_state ();
3533 int lose, num_segments = 0, do_sections, do_segments;
3534 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3535 struct section_offsets *offs;
3536 struct symfile_segment_data *data;
3538 if (symfile_objfile == NULL)
3541 putpkt ("qOffsets");
3542 getpkt (&rs->buf, &rs->buf_size, 0);
3545 if (buf[0] == '\000')
3546 return; /* Return silently. Stub doesn't support
3550 warning (_("Remote failure reply: %s"), buf);
3554 /* Pick up each field in turn. This used to be done with scanf, but
3555 scanf will make trouble if CORE_ADDR size doesn't match
3556 conversion directives correctly. The following code will work
3557 with any size of CORE_ADDR. */
3558 text_addr = data_addr = bss_addr = 0;
3562 if (startswith (ptr, "Text="))
3565 /* Don't use strtol, could lose on big values. */
3566 while (*ptr && *ptr != ';')
3567 text_addr = (text_addr << 4) + fromhex (*ptr++);
3569 if (startswith (ptr, ";Data="))
3572 while (*ptr && *ptr != ';')
3573 data_addr = (data_addr << 4) + fromhex (*ptr++);
3578 if (!lose && startswith (ptr, ";Bss="))
3581 while (*ptr && *ptr != ';')
3582 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3584 if (bss_addr != data_addr)
3585 warning (_("Target reported unsupported offsets: %s"), buf);
3590 else if (startswith (ptr, "TextSeg="))
3593 /* Don't use strtol, could lose on big values. */
3594 while (*ptr && *ptr != ';')
3595 text_addr = (text_addr << 4) + fromhex (*ptr++);
3598 if (startswith (ptr, ";DataSeg="))
3601 while (*ptr && *ptr != ';')
3602 data_addr = (data_addr << 4) + fromhex (*ptr++);
3610 error (_("Malformed response to offset query, %s"), buf);
3611 else if (*ptr != '\0')
3612 warning (_("Target reported unsupported offsets: %s"), buf);
3614 offs = ((struct section_offsets *)
3615 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3616 memcpy (offs, symfile_objfile->section_offsets,
3617 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3619 data = get_symfile_segment_data (symfile_objfile->obfd);
3620 do_segments = (data != NULL);
3621 do_sections = num_segments == 0;
3623 if (num_segments > 0)
3625 segments[0] = text_addr;
3626 segments[1] = data_addr;
3628 /* If we have two segments, we can still try to relocate everything
3629 by assuming that the .text and .data offsets apply to the whole
3630 text and data segments. Convert the offsets given in the packet
3631 to base addresses for symfile_map_offsets_to_segments. */
3632 else if (data && data->num_segments == 2)
3634 segments[0] = data->segment_bases[0] + text_addr;
3635 segments[1] = data->segment_bases[1] + data_addr;
3638 /* If the object file has only one segment, assume that it is text
3639 rather than data; main programs with no writable data are rare,
3640 but programs with no code are useless. Of course the code might
3641 have ended up in the data segment... to detect that we would need
3642 the permissions here. */
3643 else if (data && data->num_segments == 1)
3645 segments[0] = data->segment_bases[0] + text_addr;
3648 /* There's no way to relocate by segment. */
3654 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3655 offs, num_segments, segments);
3657 if (ret == 0 && !do_sections)
3658 error (_("Can not handle qOffsets TextSeg "
3659 "response with this symbol file"));
3666 free_symfile_segment_data (data);
3670 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3672 /* This is a temporary kludge to force data and bss to use the
3673 same offsets because that's what nlmconv does now. The real
3674 solution requires changes to the stub and remote.c that I
3675 don't have time to do right now. */
3677 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3678 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3681 objfile_relocate (symfile_objfile, offs);
3684 /* Send interrupt_sequence to remote target. */
3686 send_interrupt_sequence (void)
3688 struct remote_state *rs = get_remote_state ();
3690 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3691 remote_serial_write ("\x03", 1);
3692 else if (interrupt_sequence_mode == interrupt_sequence_break)
3693 serial_send_break (rs->remote_desc);
3694 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3696 serial_send_break (rs->remote_desc);
3697 remote_serial_write ("g", 1);
3700 internal_error (__FILE__, __LINE__,
3701 _("Invalid value for interrupt_sequence_mode: %s."),
3702 interrupt_sequence_mode);
3706 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3707 and extract the PTID. Returns NULL_PTID if not found. */
3710 stop_reply_extract_thread (char *stop_reply)
3712 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3716 /* Txx r:val ; r:val (...) */
3719 /* Look for "register" named "thread". */
3724 p1 = strchr (p, ':');
3728 if (strncmp (p, "thread", p1 - p) == 0)
3729 return read_ptid (++p1, &p);
3731 p1 = strchr (p, ';');
3743 /* Determine the remote side's current thread. If we have a stop
3744 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3745 "thread" register we can extract the current thread from. If not,
3746 ask the remote which is the current thread with qC. The former
3747 method avoids a roundtrip. */
3750 get_current_thread (char *wait_status)
3752 ptid_t ptid = null_ptid;
3754 /* Note we don't use remote_parse_stop_reply as that makes use of
3755 the target architecture, which we haven't yet fully determined at
3757 if (wait_status != NULL)
3758 ptid = stop_reply_extract_thread (wait_status);
3759 if (ptid_equal (ptid, null_ptid))
3760 ptid = remote_current_thread (inferior_ptid);
3765 /* Query the remote target for which is the current thread/process,
3766 add it to our tables, and update INFERIOR_PTID. The caller is
3767 responsible for setting the state such that the remote end is ready
3768 to return the current thread.
3770 This function is called after handling the '?' or 'vRun' packets,
3771 whose response is a stop reply from which we can also try
3772 extracting the thread. If the target doesn't support the explicit
3773 qC query, we infer the current thread from that stop reply, passed
3774 in in WAIT_STATUS, which may be NULL. */
3777 add_current_inferior_and_thread (char *wait_status)
3779 struct remote_state *rs = get_remote_state ();
3783 inferior_ptid = null_ptid;
3785 /* Now, if we have thread information, update inferior_ptid. */
3786 ptid = get_current_thread (wait_status);
3788 if (!ptid_equal (ptid, null_ptid))
3790 if (!remote_multi_process_p (rs))
3793 inferior_ptid = ptid;
3797 /* Without this, some commands which require an active target
3798 (such as kill) won't work. This variable serves (at least)
3799 double duty as both the pid of the target process (if it has
3800 such), and as a flag indicating that a target is active. */
3801 inferior_ptid = magic_null_ptid;
3805 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1, 1);
3807 /* Add the main thread. */
3808 add_thread_silent (inferior_ptid);
3811 /* Print info about a thread that was found already stopped on
3815 print_one_stopped_thread (struct thread_info *thread)
3817 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3819 switch_to_thread (thread->ptid);
3820 stop_pc = get_frame_pc (get_current_frame ());
3821 set_current_sal_from_frame (get_current_frame ());
3823 thread->suspend.waitstatus_pending_p = 0;
3825 if (ws->kind == TARGET_WAITKIND_STOPPED)
3827 enum gdb_signal sig = ws->value.sig;
3829 if (signal_print_state (sig))
3830 observer_notify_signal_received (sig);
3832 observer_notify_normal_stop (NULL, 1);
3835 /* Process all initial stop replies the remote side sent in response
3836 to the ? packet. These indicate threads that were already stopped
3837 on initial connection. We mark these threads as stopped and print
3838 their current frame before giving the user the prompt. */
3841 process_initial_stop_replies (int from_tty)
3843 int pending_stop_replies = stop_reply_queue_length ();
3844 struct inferior *inf;
3845 struct thread_info *thread;
3846 struct thread_info *selected = NULL;
3847 struct thread_info *lowest_stopped = NULL;
3848 struct thread_info *first = NULL;
3850 /* Consume the initial pending events. */
3851 while (pending_stop_replies-- > 0)
3853 ptid_t waiton_ptid = minus_one_ptid;
3855 struct target_waitstatus ws;
3856 int ignore_event = 0;
3857 struct thread_info *thread;
3859 memset (&ws, 0, sizeof (ws));
3860 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3862 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3866 case TARGET_WAITKIND_IGNORE:
3867 case TARGET_WAITKIND_NO_RESUMED:
3868 case TARGET_WAITKIND_SIGNALLED:
3869 case TARGET_WAITKIND_EXITED:
3870 /* We shouldn't see these, but if we do, just ignore. */
3872 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3876 case TARGET_WAITKIND_EXECD:
3877 xfree (ws.value.execd_pathname);
3886 thread = find_thread_ptid (event_ptid);
3888 if (ws.kind == TARGET_WAITKIND_STOPPED)
3890 enum gdb_signal sig = ws.value.sig;
3892 /* Stubs traditionally report SIGTRAP as initial signal,
3893 instead of signal 0. Suppress it. */
3894 if (sig == GDB_SIGNAL_TRAP)
3896 thread->suspend.stop_signal = sig;
3900 thread->suspend.waitstatus = ws;
3902 if (ws.kind != TARGET_WAITKIND_STOPPED
3903 || ws.value.sig != GDB_SIGNAL_0)
3904 thread->suspend.waitstatus_pending_p = 1;
3906 set_executing (event_ptid, 0);
3907 set_running (event_ptid, 0);
3910 /* "Notice" the new inferiors before anything related to
3911 registers/memory. */
3917 inf->needs_setup = 1;
3921 thread = any_live_thread_of_process (inf->pid);
3922 notice_new_inferior (thread->ptid,
3923 thread->state == THREAD_RUNNING,
3928 /* If all-stop on top of non-stop, pause all threads. Note this
3929 records the threads' stop pc, so must be done after "noticing"
3933 stop_all_threads ();
3935 /* If all threads of an inferior were already stopped, we
3936 haven't setup the inferior yet. */
3942 if (inf->needs_setup)
3944 thread = any_live_thread_of_process (inf->pid);
3945 switch_to_thread_no_regs (thread);
3951 /* Now go over all threads that are stopped, and print their current
3952 frame. If all-stop, then if there's a signalled thread, pick
3954 ALL_NON_EXITED_THREADS (thread)
3956 struct target_waitstatus *ws;
3962 set_running (thread->ptid, 0);
3963 else if (thread->state != THREAD_STOPPED)
3966 ws = &thread->suspend.waitstatus;
3968 if (selected == NULL
3969 && thread->suspend.waitstatus_pending_p)
3972 if (lowest_stopped == NULL
3973 || thread->inf->num < lowest_stopped->inf->num
3974 || thread->per_inf_num < lowest_stopped->per_inf_num)
3975 lowest_stopped = thread;
3978 print_one_stopped_thread (thread);
3981 /* In all-stop, we only print the status of one thread, and leave
3982 others with their status pending. */
3987 thread = lowest_stopped;
3991 print_one_stopped_thread (thread);
3994 /* For "info program". */
3995 thread = inferior_thread ();
3996 if (thread->state == THREAD_STOPPED)
3997 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
4001 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
4003 struct remote_state *rs = get_remote_state ();
4004 struct packet_config *noack_config;
4005 char *wait_status = NULL;
4007 immediate_quit++; /* Allow user to interrupt it. */
4010 if (interrupt_on_connect)
4011 send_interrupt_sequence ();
4013 /* Ack any packet which the remote side has already sent. */
4014 serial_write (rs->remote_desc, "+", 1);
4016 /* Signal other parts that we're going through the initial setup,
4017 and so things may not be stable yet. */
4018 rs->starting_up = 1;
4020 /* The first packet we send to the target is the optional "supported
4021 packets" request. If the target can answer this, it will tell us
4022 which later probes to skip. */
4023 remote_query_supported ();
4025 /* If the stub wants to get a QAllow, compose one and send it. */
4026 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4027 remote_set_permissions (target);
4029 /* Next, we possibly activate noack mode.
4031 If the QStartNoAckMode packet configuration is set to AUTO,
4032 enable noack mode if the stub reported a wish for it with
4035 If set to TRUE, then enable noack mode even if the stub didn't
4036 report it in qSupported. If the stub doesn't reply OK, the
4037 session ends with an error.
4039 If FALSE, then don't activate noack mode, regardless of what the
4040 stub claimed should be the default with qSupported. */
4042 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4043 if (packet_config_support (noack_config) != PACKET_DISABLE)
4045 putpkt ("QStartNoAckMode");
4046 getpkt (&rs->buf, &rs->buf_size, 0);
4047 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4053 /* Tell the remote that we are using the extended protocol. */
4055 getpkt (&rs->buf, &rs->buf_size, 0);
4058 /* Let the target know which signals it is allowed to pass down to
4060 update_signals_program_target ();
4062 /* Next, if the target can specify a description, read it. We do
4063 this before anything involving memory or registers. */
4064 target_find_description ();
4066 /* Next, now that we know something about the target, update the
4067 address spaces in the program spaces. */
4068 update_address_spaces ();
4070 /* On OSs where the list of libraries is global to all
4071 processes, we fetch them early. */
4072 if (gdbarch_has_global_solist (target_gdbarch ()))
4073 solib_add (NULL, from_tty, target, auto_solib_add);
4075 if (target_is_non_stop_p ())
4077 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4078 error (_("Non-stop mode requested, but remote "
4079 "does not support non-stop"));
4081 putpkt ("QNonStop:1");
4082 getpkt (&rs->buf, &rs->buf_size, 0);
4084 if (strcmp (rs->buf, "OK") != 0)
4085 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
4087 /* Find about threads and processes the stub is already
4088 controlling. We default to adding them in the running state.
4089 The '?' query below will then tell us about which threads are
4091 remote_update_thread_list (target);
4093 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4095 /* Don't assume that the stub can operate in all-stop mode.
4096 Request it explicitly. */
4097 putpkt ("QNonStop:0");
4098 getpkt (&rs->buf, &rs->buf_size, 0);
4100 if (strcmp (rs->buf, "OK") != 0)
4101 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
4104 /* Upload TSVs regardless of whether the target is running or not. The
4105 remote stub, such as GDBserver, may have some predefined or builtin
4106 TSVs, even if the target is not running. */
4107 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4109 struct uploaded_tsv *uploaded_tsvs = NULL;
4111 remote_upload_trace_state_variables (target, &uploaded_tsvs);
4112 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4115 /* Check whether the target is running now. */
4117 getpkt (&rs->buf, &rs->buf_size, 0);
4119 if (!target_is_non_stop_p ())
4123 struct inferior *inf;
4125 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4128 error (_("The target is not running (try extended-remote?)"));
4130 /* We're connected, but not running. Drop out before we
4131 call start_remote. */
4132 rs->starting_up = 0;
4137 /* Save the reply for later. */
4138 wait_status = (char *) alloca (strlen (rs->buf) + 1);
4139 strcpy (wait_status, rs->buf);
4142 /* Fetch thread list. */
4143 target_update_thread_list ();
4145 /* Let the stub know that we want it to return the thread. */
4146 set_continue_thread (minus_one_ptid);
4148 if (thread_count () == 0)
4150 /* Target has no concept of threads at all. GDB treats
4151 non-threaded target as single-threaded; add a main
4153 add_current_inferior_and_thread (wait_status);
4157 /* We have thread information; select the thread the target
4158 says should be current. If we're reconnecting to a
4159 multi-threaded program, this will ideally be the thread
4160 that last reported an event before GDB disconnected. */
4161 inferior_ptid = get_current_thread (wait_status);
4162 if (ptid_equal (inferior_ptid, null_ptid))
4164 /* Odd... The target was able to list threads, but not
4165 tell us which thread was current (no "thread"
4166 register in T stop reply?). Just pick the first
4167 thread in the thread list then. */
4170 fprintf_unfiltered (gdb_stdlog,
4171 "warning: couldn't determine remote "
4172 "current thread; picking first in list.\n");
4174 inferior_ptid = thread_list->ptid;
4178 /* init_wait_for_inferior should be called before get_offsets in order
4179 to manage `inserted' flag in bp loc in a correct state.
4180 breakpoint_init_inferior, called from init_wait_for_inferior, set
4181 `inserted' flag to 0, while before breakpoint_re_set, called from
4182 start_remote, set `inserted' flag to 1. In the initialization of
4183 inferior, breakpoint_init_inferior should be called first, and then
4184 breakpoint_re_set can be called. If this order is broken, state of
4185 `inserted' flag is wrong, and cause some problems on breakpoint
4187 init_wait_for_inferior ();
4189 get_offsets (); /* Get text, data & bss offsets. */
4191 /* If we could not find a description using qXfer, and we know
4192 how to do it some other way, try again. This is not
4193 supported for non-stop; it could be, but it is tricky if
4194 there are no stopped threads when we connect. */
4195 if (remote_read_description_p (target)
4196 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4198 target_clear_description ();
4199 target_find_description ();
4202 /* Use the previously fetched status. */
4203 gdb_assert (wait_status != NULL);
4204 strcpy (rs->buf, wait_status);
4205 rs->cached_wait_status = 1;
4208 start_remote (from_tty); /* Initialize gdb process mechanisms. */
4212 /* Clear WFI global state. Do this before finding about new
4213 threads and inferiors, and setting the current inferior.
4214 Otherwise we would clear the proceed status of the current
4215 inferior when we want its stop_soon state to be preserved
4216 (see notice_new_inferior). */
4217 init_wait_for_inferior ();
4219 /* In non-stop, we will either get an "OK", meaning that there
4220 are no stopped threads at this time; or, a regular stop
4221 reply. In the latter case, there may be more than one thread
4222 stopped --- we pull them all out using the vStopped
4224 if (strcmp (rs->buf, "OK") != 0)
4226 struct notif_client *notif = ¬if_client_stop;
4228 /* remote_notif_get_pending_replies acks this one, and gets
4230 rs->notif_state->pending_event[notif_client_stop.id]
4231 = remote_notif_parse (notif, rs->buf);
4232 remote_notif_get_pending_events (notif);
4235 if (thread_count () == 0)
4238 error (_("The target is not running (try extended-remote?)"));
4240 /* We're connected, but not running. Drop out before we
4241 call start_remote. */
4242 rs->starting_up = 0;
4246 /* In non-stop mode, any cached wait status will be stored in
4247 the stop reply queue. */
4248 gdb_assert (wait_status == NULL);
4250 /* Report all signals during attach/startup. */
4251 remote_pass_signals (target, 0, NULL);
4253 /* If there are already stopped threads, mark them stopped and
4254 report their stops before giving the prompt to the user. */
4255 process_initial_stop_replies (from_tty);
4257 if (target_can_async_p ())
4261 /* If we connected to a live target, do some additional setup. */
4262 if (target_has_execution)
4264 if (symfile_objfile) /* No use without a symbol-file. */
4265 remote_check_symbols ();
4268 /* Possibly the target has been engaged in a trace run started
4269 previously; find out where things are at. */
4270 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4272 struct uploaded_tp *uploaded_tps = NULL;
4274 if (current_trace_status ()->running)
4275 printf_filtered (_("Trace is already running on the target.\n"));
4277 remote_upload_tracepoints (target, &uploaded_tps);
4279 merge_uploaded_tracepoints (&uploaded_tps);
4282 /* The thread and inferior lists are now synchronized with the
4283 target, our symbols have been relocated, and we're merged the
4284 target's tracepoints with ours. We're done with basic start
4286 rs->starting_up = 0;
4288 /* Maybe breakpoints are global and need to be inserted now. */
4289 if (breakpoints_should_be_inserted_now ())
4290 insert_breakpoints ();
4293 /* Open a connection to a remote debugger.
4294 NAME is the filename used for communication. */
4297 remote_open (const char *name, int from_tty)
4299 remote_open_1 (name, from_tty, &remote_ops, 0);
4302 /* Open a connection to a remote debugger using the extended
4303 remote gdb protocol. NAME is the filename used for communication. */
4306 extended_remote_open (const char *name, int from_tty)
4308 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
4311 /* Reset all packets back to "unknown support". Called when opening a
4312 new connection to a remote target. */
4315 reset_all_packet_configs_support (void)
4319 for (i = 0; i < PACKET_MAX; i++)
4320 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4323 /* Initialize all packet configs. */
4326 init_all_packet_configs (void)
4330 for (i = 0; i < PACKET_MAX; i++)
4332 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4333 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4337 /* Symbol look-up. */
4340 remote_check_symbols (void)
4342 struct remote_state *rs = get_remote_state ();
4343 char *msg, *reply, *tmp;
4344 struct bound_minimal_symbol sym;
4346 struct cleanup *old_chain;
4348 /* The remote side has no concept of inferiors that aren't running
4349 yet, it only knows about running processes. If we're connected
4350 but our current inferior is not running, we should not invite the
4351 remote target to request symbol lookups related to its
4352 (unrelated) current process. */
4353 if (!target_has_execution)
4356 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4359 /* Make sure the remote is pointing at the right process. Note
4360 there's no way to select "no process". */
4361 set_general_process ();
4363 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4364 because we need both at the same time. */
4365 msg = (char *) xmalloc (get_remote_packet_size ());
4366 old_chain = make_cleanup (xfree, msg);
4368 /* Invite target to request symbol lookups. */
4370 putpkt ("qSymbol::");
4371 getpkt (&rs->buf, &rs->buf_size, 0);
4372 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
4375 while (startswith (reply, "qSymbol:"))
4377 struct bound_minimal_symbol sym;
4380 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
4382 sym = lookup_minimal_symbol (msg, NULL, NULL);
4383 if (sym.minsym == NULL)
4384 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
4387 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4388 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4390 /* If this is a function address, return the start of code
4391 instead of any data function descriptor. */
4392 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4396 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
4397 phex_nz (sym_addr, addr_size), &reply[8]);
4401 getpkt (&rs->buf, &rs->buf_size, 0);
4405 do_cleanups (old_chain);
4408 static struct serial *
4409 remote_serial_open (const char *name)
4411 static int udp_warning = 0;
4413 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4414 of in ser-tcp.c, because it is the remote protocol assuming that the
4415 serial connection is reliable and not the serial connection promising
4417 if (!udp_warning && startswith (name, "udp:"))
4419 warning (_("The remote protocol may be unreliable over UDP.\n"
4420 "Some events may be lost, rendering further debugging "
4425 return serial_open (name);
4428 /* Inform the target of our permission settings. The permission flags
4429 work without this, but if the target knows the settings, it can do
4430 a couple things. First, it can add its own check, to catch cases
4431 that somehow manage to get by the permissions checks in target
4432 methods. Second, if the target is wired to disallow particular
4433 settings (for instance, a system in the field that is not set up to
4434 be able to stop at a breakpoint), it can object to any unavailable
4438 remote_set_permissions (struct target_ops *self)
4440 struct remote_state *rs = get_remote_state ();
4442 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4443 "WriteReg:%x;WriteMem:%x;"
4444 "InsertBreak:%x;InsertTrace:%x;"
4445 "InsertFastTrace:%x;Stop:%x",
4446 may_write_registers, may_write_memory,
4447 may_insert_breakpoints, may_insert_tracepoints,
4448 may_insert_fast_tracepoints, may_stop);
4450 getpkt (&rs->buf, &rs->buf_size, 0);
4452 /* If the target didn't like the packet, warn the user. Do not try
4453 to undo the user's settings, that would just be maddening. */
4454 if (strcmp (rs->buf, "OK") != 0)
4455 warning (_("Remote refused setting permissions with: %s"), rs->buf);
4458 /* This type describes each known response to the qSupported
4460 struct protocol_feature
4462 /* The name of this protocol feature. */
4465 /* The default for this protocol feature. */
4466 enum packet_support default_support;
4468 /* The function to call when this feature is reported, or after
4469 qSupported processing if the feature is not supported.
4470 The first argument points to this structure. The second
4471 argument indicates whether the packet requested support be
4472 enabled, disabled, or probed (or the default, if this function
4473 is being called at the end of processing and this feature was
4474 not reported). The third argument may be NULL; if not NULL, it
4475 is a NUL-terminated string taken from the packet following
4476 this feature's name and an equals sign. */
4477 void (*func) (const struct protocol_feature *, enum packet_support,
4480 /* The corresponding packet for this feature. Only used if
4481 FUNC is remote_supported_packet. */
4486 remote_supported_packet (const struct protocol_feature *feature,
4487 enum packet_support support,
4488 const char *argument)
4492 warning (_("Remote qSupported response supplied an unexpected value for"
4493 " \"%s\"."), feature->name);
4497 remote_protocol_packets[feature->packet].support = support;
4501 remote_packet_size (const struct protocol_feature *feature,
4502 enum packet_support support, const char *value)
4504 struct remote_state *rs = get_remote_state ();
4509 if (support != PACKET_ENABLE)
4512 if (value == NULL || *value == '\0')
4514 warning (_("Remote target reported \"%s\" without a size."),
4520 packet_size = strtol (value, &value_end, 16);
4521 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4523 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4524 feature->name, value);
4528 /* Record the new maximum packet size. */
4529 rs->explicit_packet_size = packet_size;
4532 static const struct protocol_feature remote_protocol_features[] = {
4533 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
4534 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
4535 PACKET_qXfer_auxv },
4536 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4537 PACKET_qXfer_exec_file },
4538 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4539 PACKET_qXfer_features },
4540 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4541 PACKET_qXfer_libraries },
4542 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4543 PACKET_qXfer_libraries_svr4 },
4544 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4545 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
4546 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
4547 PACKET_qXfer_memory_map },
4548 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4549 PACKET_qXfer_spu_read },
4550 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4551 PACKET_qXfer_spu_write },
4552 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4553 PACKET_qXfer_osdata },
4554 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4555 PACKET_qXfer_threads },
4556 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4557 PACKET_qXfer_traceframe_info },
4558 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4559 PACKET_QPassSignals },
4560 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4561 PACKET_QCatchSyscalls },
4562 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4563 PACKET_QProgramSignals },
4564 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4565 PACKET_QStartNoAckMode },
4566 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4567 PACKET_multiprocess_feature },
4568 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4569 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4570 PACKET_qXfer_siginfo_read },
4571 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4572 PACKET_qXfer_siginfo_write },
4573 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
4574 PACKET_ConditionalTracepoints },
4575 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
4576 PACKET_ConditionalBreakpoints },
4577 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
4578 PACKET_BreakpointCommands },
4579 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
4580 PACKET_FastTracepoints },
4581 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
4582 PACKET_StaticTracepoints },
4583 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
4584 PACKET_InstallInTrace},
4585 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4586 PACKET_DisconnectedTracing_feature },
4587 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4589 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4591 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4592 PACKET_TracepointSource },
4593 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4595 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4596 PACKET_EnableDisableTracepoints_feature },
4597 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4598 PACKET_qXfer_fdpic },
4599 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4601 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4602 PACKET_QDisableRandomization },
4603 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4604 { "QTBuffer:size", PACKET_DISABLE,
4605 remote_supported_packet, PACKET_QTBuffer_size},
4606 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
4607 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4608 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4609 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
4610 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4611 PACKET_qXfer_btrace },
4612 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
4613 PACKET_qXfer_btrace_conf },
4614 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
4615 PACKET_Qbtrace_conf_bts_size },
4616 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
4617 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
4618 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4619 PACKET_fork_event_feature },
4620 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4621 PACKET_vfork_event_feature },
4622 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4623 PACKET_exec_event_feature },
4624 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
4625 PACKET_Qbtrace_conf_pt_size },
4626 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4627 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
4628 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
4631 static char *remote_support_xml;
4633 /* Register string appended to "xmlRegisters=" in qSupported query. */
4636 register_remote_support_xml (const char *xml)
4638 #if defined(HAVE_LIBEXPAT)
4639 if (remote_support_xml == NULL)
4640 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4643 char *copy = xstrdup (remote_support_xml + 13);
4644 char *p = strtok (copy, ",");
4648 if (strcmp (p, xml) == 0)
4655 while ((p = strtok (NULL, ",")) != NULL);
4658 remote_support_xml = reconcat (remote_support_xml,
4659 remote_support_xml, ",", xml,
4666 remote_query_supported_append (char *msg, const char *append)
4669 return reconcat (msg, msg, ";", append, (char *) NULL);
4671 return xstrdup (append);
4675 remote_query_supported (void)
4677 struct remote_state *rs = get_remote_state ();
4680 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4682 /* The packet support flags are handled differently for this packet
4683 than for most others. We treat an error, a disabled packet, and
4684 an empty response identically: any features which must be reported
4685 to be used will be automatically disabled. An empty buffer
4686 accomplishes this, since that is also the representation for a list
4687 containing no features. */
4690 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
4693 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4695 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4696 q = remote_query_supported_append (q, "multiprocess+");
4698 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4699 q = remote_query_supported_append (q, "swbreak+");
4700 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4701 q = remote_query_supported_append (q, "hwbreak+");
4703 q = remote_query_supported_append (q, "qRelocInsn+");
4705 if (packet_set_cmd_state (PACKET_fork_event_feature)
4706 != AUTO_BOOLEAN_FALSE)
4707 q = remote_query_supported_append (q, "fork-events+");
4708 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4709 != AUTO_BOOLEAN_FALSE)
4710 q = remote_query_supported_append (q, "vfork-events+");
4711 if (packet_set_cmd_state (PACKET_exec_event_feature)
4712 != AUTO_BOOLEAN_FALSE)
4713 q = remote_query_supported_append (q, "exec-events+");
4715 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4716 q = remote_query_supported_append (q, "vContSupported+");
4718 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4719 q = remote_query_supported_append (q, "QThreadEvents+");
4721 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4722 q = remote_query_supported_append (q, "no-resumed+");
4724 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4725 the qSupported:xmlRegisters=i386 handling. */
4726 if (remote_support_xml != NULL)
4727 q = remote_query_supported_append (q, remote_support_xml);
4729 q = reconcat (q, "qSupported:", q, (char *) NULL);
4732 do_cleanups (old_chain);
4734 getpkt (&rs->buf, &rs->buf_size, 0);
4736 /* If an error occured, warn, but do not return - just reset the
4737 buffer to empty and go on to disable features. */
4738 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4741 warning (_("Remote failure reply: %s"), rs->buf);
4746 memset (seen, 0, sizeof (seen));
4751 enum packet_support is_supported;
4752 char *p, *end, *name_end, *value;
4754 /* First separate out this item from the rest of the packet. If
4755 there's another item after this, we overwrite the separator
4756 (terminated strings are much easier to work with). */
4758 end = strchr (p, ';');
4761 end = p + strlen (p);
4771 warning (_("empty item in \"qSupported\" response"));
4776 name_end = strchr (p, '=');
4779 /* This is a name=value entry. */
4780 is_supported = PACKET_ENABLE;
4781 value = name_end + 1;
4790 is_supported = PACKET_ENABLE;
4794 is_supported = PACKET_DISABLE;
4798 is_supported = PACKET_SUPPORT_UNKNOWN;
4802 warning (_("unrecognized item \"%s\" "
4803 "in \"qSupported\" response"), p);
4809 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4810 if (strcmp (remote_protocol_features[i].name, p) == 0)
4812 const struct protocol_feature *feature;
4815 feature = &remote_protocol_features[i];
4816 feature->func (feature, is_supported, value);
4821 /* If we increased the packet size, make sure to increase the global
4822 buffer size also. We delay this until after parsing the entire
4823 qSupported packet, because this is the same buffer we were
4825 if (rs->buf_size < rs->explicit_packet_size)
4827 rs->buf_size = rs->explicit_packet_size;
4828 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
4831 /* Handle the defaults for unmentioned features. */
4832 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4835 const struct protocol_feature *feature;
4837 feature = &remote_protocol_features[i];
4838 feature->func (feature, feature->default_support, NULL);
4842 /* Remove any of the remote.c targets from target stack. Upper targets depend
4843 on it so remove them first. */
4846 remote_unpush_target (void)
4848 pop_all_targets_at_and_above (process_stratum);
4852 remote_open_1 (const char *name, int from_tty,
4853 struct target_ops *target, int extended_p)
4855 struct remote_state *rs = get_remote_state ();
4858 error (_("To open a remote debug connection, you need to specify what\n"
4859 "serial device is attached to the remote system\n"
4860 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4862 /* See FIXME above. */
4863 if (!target_async_permitted)
4864 wait_forever_enabled_p = 1;
4866 /* If we're connected to a running target, target_preopen will kill it.
4867 Ask this question first, before target_preopen has a chance to kill
4869 if (rs->remote_desc != NULL && !have_inferiors ())
4872 && !query (_("Already connected to a remote target. Disconnect? ")))
4873 error (_("Still connected."));
4876 /* Here the possibly existing remote target gets unpushed. */
4877 target_preopen (from_tty);
4879 /* Make sure we send the passed signals list the next time we resume. */
4880 xfree (rs->last_pass_packet);
4881 rs->last_pass_packet = NULL;
4883 /* Make sure we send the program signals list the next time we
4885 xfree (rs->last_program_signals_packet);
4886 rs->last_program_signals_packet = NULL;
4888 remote_fileio_reset ();
4889 reopen_exec_file ();
4892 rs->remote_desc = remote_serial_open (name);
4893 if (!rs->remote_desc)
4894 perror_with_name (name);
4896 if (baud_rate != -1)
4898 if (serial_setbaudrate (rs->remote_desc, baud_rate))
4900 /* The requested speed could not be set. Error out to
4901 top level after closing remote_desc. Take care to
4902 set remote_desc to NULL to avoid closing remote_desc
4904 serial_close (rs->remote_desc);
4905 rs->remote_desc = NULL;
4906 perror_with_name (name);
4910 serial_setparity (rs->remote_desc, serial_parity);
4911 serial_raw (rs->remote_desc);
4913 /* If there is something sitting in the buffer we might take it as a
4914 response to a command, which would be bad. */
4915 serial_flush_input (rs->remote_desc);
4919 puts_filtered ("Remote debugging using ");
4920 puts_filtered (name);
4921 puts_filtered ("\n");
4923 push_target (target); /* Switch to using remote target now. */
4925 /* Register extra event sources in the event loop. */
4926 remote_async_inferior_event_token
4927 = create_async_event_handler (remote_async_inferior_event_handler,
4929 rs->notif_state = remote_notif_state_allocate ();
4931 /* Reset the target state; these things will be queried either by
4932 remote_query_supported or as they are needed. */
4933 reset_all_packet_configs_support ();
4934 rs->cached_wait_status = 0;
4935 rs->explicit_packet_size = 0;
4937 rs->extended = extended_p;
4938 rs->waiting_for_stop_reply = 0;
4939 rs->ctrlc_pending_p = 0;
4941 rs->general_thread = not_sent_ptid;
4942 rs->continue_thread = not_sent_ptid;
4943 rs->remote_traceframe_number = -1;
4945 /* Probe for ability to use "ThreadInfo" query, as required. */
4946 rs->use_threadinfo_query = 1;
4947 rs->use_threadextra_query = 1;
4949 readahead_cache_invalidate ();
4951 if (target_async_permitted)
4953 /* With this target we start out by owning the terminal. */
4954 remote_async_terminal_ours_p = 1;
4956 /* FIXME: cagney/1999-09-23: During the initial connection it is
4957 assumed that the target is already ready and able to respond to
4958 requests. Unfortunately remote_start_remote() eventually calls
4959 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4960 around this. Eventually a mechanism that allows
4961 wait_for_inferior() to expect/get timeouts will be
4963 wait_forever_enabled_p = 0;
4966 /* First delete any symbols previously loaded from shared libraries. */
4967 no_shared_libraries (NULL, 0);
4970 init_thread_list ();
4972 /* Start the remote connection. If error() or QUIT, discard this
4973 target (we'd otherwise be in an inconsistent state) and then
4974 propogate the error on up the exception chain. This ensures that
4975 the caller doesn't stumble along blindly assuming that the
4976 function succeeded. The CLI doesn't have this problem but other
4977 UI's, such as MI do.
4979 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4980 this function should return an error indication letting the
4981 caller restore the previous state. Unfortunately the command
4982 ``target remote'' is directly wired to this function making that
4983 impossible. On a positive note, the CLI side of this problem has
4984 been fixed - the function set_cmd_context() makes it possible for
4985 all the ``target ....'' commands to share a common callback
4986 function. See cli-dump.c. */
4991 remote_start_remote (from_tty, target, extended_p);
4993 CATCH (ex, RETURN_MASK_ALL)
4995 /* Pop the partially set up target - unless something else did
4996 already before throwing the exception. */
4997 if (rs->remote_desc != NULL)
4998 remote_unpush_target ();
4999 if (target_async_permitted)
5000 wait_forever_enabled_p = 1;
5001 throw_exception (ex);
5006 remote_btrace_reset ();
5008 if (target_async_permitted)
5009 wait_forever_enabled_p = 1;
5012 /* Detach the specified process. */
5015 remote_detach_pid (int pid)
5017 struct remote_state *rs = get_remote_state ();
5019 if (remote_multi_process_p (rs))
5020 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5022 strcpy (rs->buf, "D");
5025 getpkt (&rs->buf, &rs->buf_size, 0);
5027 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5029 else if (rs->buf[0] == '\0')
5030 error (_("Remote doesn't know how to detach"));
5032 error (_("Can't detach process."));
5035 /* This detaches a program to which we previously attached, using
5036 inferior_ptid to identify the process. After this is done, GDB
5037 can be used to debug some other program. We better not have left
5038 any breakpoints in the target program or it'll die when it hits
5042 remote_detach_1 (const char *args, int from_tty)
5044 int pid = ptid_get_pid (inferior_ptid);
5045 struct remote_state *rs = get_remote_state ();
5046 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5050 error (_("Argument given to \"detach\" when remotely debugging."));
5052 if (!target_has_execution)
5053 error (_("No process to detach from."));
5057 char *exec_file = get_exec_file (0);
5058 if (exec_file == NULL)
5060 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
5061 target_pid_to_str (pid_to_ptid (pid)));
5062 gdb_flush (gdb_stdout);
5065 /* Tell the remote target to detach. */
5066 remote_detach_pid (pid);
5068 /* Exit only if this is the only active inferior. */
5069 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5070 puts_filtered (_("Ending remote debugging.\n"));
5072 /* Check to see if we are detaching a fork parent. Note that if we
5073 are detaching a fork child, tp == NULL. */
5074 is_fork_parent = (tp != NULL
5075 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5077 /* If doing detach-on-fork, we don't mourn, because that will delete
5078 breakpoints that should be available for the followed inferior. */
5079 if (!is_fork_parent)
5080 target_mourn_inferior ();
5083 inferior_ptid = null_ptid;
5084 detach_inferior (pid);
5089 remote_detach (struct target_ops *ops, const char *args, int from_tty)
5091 remote_detach_1 (args, from_tty);
5095 extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
5097 remote_detach_1 (args, from_tty);
5100 /* Target follow-fork function for remote targets. On entry, and
5101 at return, the current inferior is the fork parent.
5103 Note that although this is currently only used for extended-remote,
5104 it is named remote_follow_fork in anticipation of using it for the
5105 remote target as well. */
5108 remote_follow_fork (struct target_ops *ops, int follow_child,
5111 struct remote_state *rs = get_remote_state ();
5112 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5114 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5115 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5117 /* When following the parent and detaching the child, we detach
5118 the child here. For the case of following the child and
5119 detaching the parent, the detach is done in the target-
5120 independent follow fork code in infrun.c. We can't use
5121 target_detach when detaching an unfollowed child because
5122 the client side doesn't know anything about the child. */
5123 if (detach_fork && !follow_child)
5125 /* Detach the fork child. */
5129 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5130 child_pid = ptid_get_pid (child_ptid);
5132 remote_detach_pid (child_pid);
5133 detach_inferior (child_pid);
5139 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5140 in the program space of the new inferior. On entry and at return the
5141 current inferior is the exec'ing inferior. INF is the new exec'd
5142 inferior, which may be the same as the exec'ing inferior unless
5143 follow-exec-mode is "new". */
5146 remote_follow_exec (struct target_ops *ops,
5147 struct inferior *inf, char *execd_pathname)
5149 /* We know that this is a target file name, so if it has the "target:"
5150 prefix we strip it off before saving it in the program space. */
5151 if (is_target_filename (execd_pathname))
5152 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5154 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5157 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5160 remote_disconnect (struct target_ops *target, const char *args, int from_tty)
5163 error (_("Argument given to \"disconnect\" when remotely debugging."));
5165 /* Make sure we unpush even the extended remote targets. Calling
5166 target_mourn_inferior won't unpush, and remote_mourn won't
5167 unpush if there is more than one inferior left. */
5168 unpush_target (target);
5169 generic_mourn_inferior ();
5172 puts_filtered ("Ending remote debugging.\n");
5175 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5176 be chatty about it. */
5179 extended_remote_attach (struct target_ops *target, const char *args,
5182 struct remote_state *rs = get_remote_state ();
5184 char *wait_status = NULL;
5186 pid = parse_pid_to_attach (args);
5188 /* Remote PID can be freely equal to getpid, do not check it here the same
5189 way as in other targets. */
5191 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5192 error (_("This target does not support attaching to a process"));
5196 char *exec_file = get_exec_file (0);
5199 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5200 target_pid_to_str (pid_to_ptid (pid)));
5202 printf_unfiltered (_("Attaching to %s\n"),
5203 target_pid_to_str (pid_to_ptid (pid)));
5205 gdb_flush (gdb_stdout);
5208 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
5210 getpkt (&rs->buf, &rs->buf_size, 0);
5212 switch (packet_ok (rs->buf,
5213 &remote_protocol_packets[PACKET_vAttach]))
5216 if (!target_is_non_stop_p ())
5218 /* Save the reply for later. */
5219 wait_status = (char *) alloca (strlen (rs->buf) + 1);
5220 strcpy (wait_status, rs->buf);
5222 else if (strcmp (rs->buf, "OK") != 0)
5223 error (_("Attaching to %s failed with: %s"),
5224 target_pid_to_str (pid_to_ptid (pid)),
5227 case PACKET_UNKNOWN:
5228 error (_("This target does not support attaching to a process"));
5230 error (_("Attaching to %s failed"),
5231 target_pid_to_str (pid_to_ptid (pid)));
5234 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
5236 inferior_ptid = pid_to_ptid (pid);
5238 if (target_is_non_stop_p ())
5240 struct thread_info *thread;
5242 /* Get list of threads. */
5243 remote_update_thread_list (target);
5245 thread = first_thread_of_process (pid);
5247 inferior_ptid = thread->ptid;
5249 inferior_ptid = pid_to_ptid (pid);
5251 /* Invalidate our notion of the remote current thread. */
5252 record_currthread (rs, minus_one_ptid);
5256 /* Now, if we have thread information, update inferior_ptid. */
5257 inferior_ptid = remote_current_thread (inferior_ptid);
5259 /* Add the main thread to the thread list. */
5260 add_thread_silent (inferior_ptid);
5263 /* Next, if the target can specify a description, read it. We do
5264 this before anything involving memory or registers. */
5265 target_find_description ();
5267 if (!target_is_non_stop_p ())
5269 /* Use the previously fetched status. */
5270 gdb_assert (wait_status != NULL);
5272 if (target_can_async_p ())
5274 struct notif_event *reply
5275 = remote_notif_parse (¬if_client_stop, wait_status);
5277 push_stop_reply ((struct stop_reply *) reply);
5283 gdb_assert (wait_status != NULL);
5284 strcpy (rs->buf, wait_status);
5285 rs->cached_wait_status = 1;
5289 gdb_assert (wait_status == NULL);
5292 /* Implementation of the to_post_attach method. */
5295 extended_remote_post_attach (struct target_ops *ops, int pid)
5297 /* Get text, data & bss offsets. */
5300 /* In certain cases GDB might not have had the chance to start
5301 symbol lookup up until now. This could happen if the debugged
5302 binary is not using shared libraries, the vsyscall page is not
5303 present (on Linux) and the binary itself hadn't changed since the
5304 debugging process was started. */
5305 if (symfile_objfile != NULL)
5306 remote_check_symbols();
5310 /* Check for the availability of vCont. This function should also check
5314 remote_vcont_probe (struct remote_state *rs)
5318 strcpy (rs->buf, "vCont?");
5320 getpkt (&rs->buf, &rs->buf_size, 0);
5323 /* Make sure that the features we assume are supported. */
5324 if (startswith (buf, "vCont"))
5327 int support_c, support_C;
5329 rs->supports_vCont.s = 0;
5330 rs->supports_vCont.S = 0;
5333 rs->supports_vCont.t = 0;
5334 rs->supports_vCont.r = 0;
5335 while (p && *p == ';')
5338 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5339 rs->supports_vCont.s = 1;
5340 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5341 rs->supports_vCont.S = 1;
5342 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5344 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5346 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5347 rs->supports_vCont.t = 1;
5348 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5349 rs->supports_vCont.r = 1;
5351 p = strchr (p, ';');
5354 /* If c, and C are not all supported, we can't use vCont. Clearing
5355 BUF will make packet_ok disable the packet. */
5356 if (!support_c || !support_C)
5360 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
5363 /* Helper function for building "vCont" resumptions. Write a
5364 resumption to P. ENDP points to one-passed-the-end of the buffer
5365 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5366 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5367 resumed thread should be single-stepped and/or signalled. If PTID
5368 equals minus_one_ptid, then all threads are resumed; if PTID
5369 represents a process, then all threads of the process are resumed;
5370 the thread to be stepped and/or signalled is given in the global
5374 append_resumption (char *p, char *endp,
5375 ptid_t ptid, int step, enum gdb_signal siggnal)
5377 struct remote_state *rs = get_remote_state ();
5379 if (step && siggnal != GDB_SIGNAL_0)
5380 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
5382 /* GDB is willing to range step. */
5383 && use_range_stepping
5384 /* Target supports range stepping. */
5385 && rs->supports_vCont.r
5386 /* We don't currently support range stepping multiple
5387 threads with a wildcard (though the protocol allows it,
5388 so stubs shouldn't make an active effort to forbid
5390 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5392 struct thread_info *tp;
5394 if (ptid_equal (ptid, minus_one_ptid))
5396 /* If we don't know about the target thread's tid, then
5397 we're resuming magic_null_ptid (see caller). */
5398 tp = find_thread_ptid (magic_null_ptid);
5401 tp = find_thread_ptid (ptid);
5402 gdb_assert (tp != NULL);
5404 if (tp->control.may_range_step)
5406 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5408 p += xsnprintf (p, endp - p, ";r%s,%s",
5409 phex_nz (tp->control.step_range_start,
5411 phex_nz (tp->control.step_range_end,
5415 p += xsnprintf (p, endp - p, ";s");
5418 p += xsnprintf (p, endp - p, ";s");
5419 else if (siggnal != GDB_SIGNAL_0)
5420 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5422 p += xsnprintf (p, endp - p, ";c");
5424 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5428 /* All (-1) threads of process. */
5429 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5431 p += xsnprintf (p, endp - p, ":");
5432 p = write_ptid (p, endp, nptid);
5434 else if (!ptid_equal (ptid, minus_one_ptid))
5436 p += xsnprintf (p, endp - p, ":");
5437 p = write_ptid (p, endp, ptid);
5443 /* Clear the thread's private info on resume. */
5446 resume_clear_thread_private_info (struct thread_info *thread)
5448 if (thread->priv != NULL)
5450 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5451 thread->priv->watch_data_address = 0;
5455 /* Append a vCont continue-with-signal action for threads that have a
5456 non-zero stop signal. */
5459 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5461 struct thread_info *thread;
5463 ALL_NON_EXITED_THREADS (thread)
5464 if (ptid_match (thread->ptid, ptid)
5465 && !ptid_equal (inferior_ptid, thread->ptid)
5466 && thread->suspend.stop_signal != GDB_SIGNAL_0)
5468 p = append_resumption (p, endp, thread->ptid,
5469 0, thread->suspend.stop_signal);
5470 thread->suspend.stop_signal = GDB_SIGNAL_0;
5471 resume_clear_thread_private_info (thread);
5477 /* Resume the remote inferior by using a "vCont" packet. The thread
5478 to be resumed is PTID; STEP and SIGGNAL indicate whether the
5479 resumed thread should be single-stepped and/or signalled. If PTID
5480 equals minus_one_ptid, then all threads are resumed; the thread to
5481 be stepped and/or signalled is given in the global INFERIOR_PTID.
5482 This function returns non-zero iff it resumes the inferior.
5484 This function issues a strict subset of all possible vCont commands at the
5488 remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
5490 struct remote_state *rs = get_remote_state ();
5494 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5495 remote_vcont_probe (rs);
5497 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
5501 endp = rs->buf + get_remote_packet_size ();
5503 /* If we could generate a wider range of packets, we'd have to worry
5504 about overflowing BUF. Should there be a generic
5505 "multi-part-packet" packet? */
5507 p += xsnprintf (p, endp - p, "vCont");
5509 if (ptid_equal (ptid, magic_null_ptid))
5511 /* MAGIC_NULL_PTID means that we don't have any active threads,
5512 so we don't have any TID numbers the inferior will
5513 understand. Make sure to only send forms that do not specify
5515 append_resumption (p, endp, minus_one_ptid, step, siggnal);
5517 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
5519 /* Resume all threads (of all processes, or of a single
5520 process), with preference for INFERIOR_PTID. This assumes
5521 inferior_ptid belongs to the set of all threads we are about
5523 if (step || siggnal != GDB_SIGNAL_0)
5525 /* Step inferior_ptid, with or without signal. */
5526 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
5529 /* Also pass down any pending signaled resumption for other
5530 threads not the current. */
5531 p = append_pending_thread_resumptions (p, endp, ptid);
5533 /* And continue others without a signal. */
5534 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
5538 /* Scheduler locking; resume only PTID. */
5539 append_resumption (p, endp, ptid, step, siggnal);
5542 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5545 if (target_is_non_stop_p ())
5547 /* In non-stop, the stub replies to vCont with "OK". The stop
5548 reply will be reported asynchronously by means of a `%Stop'
5550 getpkt (&rs->buf, &rs->buf_size, 0);
5551 if (strcmp (rs->buf, "OK") != 0)
5552 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5558 /* Tell the remote machine to resume. */
5561 remote_resume (struct target_ops *ops,
5562 ptid_t ptid, int step, enum gdb_signal siggnal)
5564 struct remote_state *rs = get_remote_state ();
5566 struct thread_info *thread;
5568 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5569 (explained in remote-notif.c:handle_notification) so
5570 remote_notif_process is not called. We need find a place where
5571 it is safe to start a 'vNotif' sequence. It is good to do it
5572 before resuming inferior, because inferior was stopped and no RSP
5573 traffic at that moment. */
5574 if (!target_is_non_stop_p ())
5575 remote_notif_process (rs->notif_state, ¬if_client_stop);
5577 rs->last_sent_signal = siggnal;
5578 rs->last_sent_step = step;
5580 /* The vCont packet doesn't need to specify threads via Hc. */
5581 /* No reverse support (yet) for vCont. */
5582 if (execution_direction != EXEC_REVERSE)
5583 if (remote_vcont_resume (ptid, step, siggnal))
5586 /* All other supported resume packets do use Hc, so set the continue
5588 if (ptid_equal (ptid, minus_one_ptid))
5589 set_continue_thread (any_thread_ptid);
5591 set_continue_thread (ptid);
5593 ALL_NON_EXITED_THREADS (thread)
5594 resume_clear_thread_private_info (thread);
5597 if (execution_direction == EXEC_REVERSE)
5599 /* We don't pass signals to the target in reverse exec mode. */
5600 if (info_verbose && siggnal != GDB_SIGNAL_0)
5601 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5604 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5605 error (_("Remote reverse-step not supported."));
5606 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5607 error (_("Remote reverse-continue not supported."));
5609 strcpy (buf, step ? "bs" : "bc");
5611 else if (siggnal != GDB_SIGNAL_0)
5613 buf[0] = step ? 'S' : 'C';
5614 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5615 buf[2] = tohex (((int) siggnal) & 0xf);
5619 strcpy (buf, step ? "s" : "c");
5624 /* We are about to start executing the inferior, let's register it
5625 with the event loop. NOTE: this is the one place where all the
5626 execution commands end up. We could alternatively do this in each
5627 of the execution commands in infcmd.c. */
5628 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5629 into infcmd.c in order to allow inferior function calls to work
5630 NOT asynchronously. */
5631 if (target_can_async_p ())
5634 /* We've just told the target to resume. The remote server will
5635 wait for the inferior to stop, and then send a stop reply. In
5636 the mean time, we can't start another command/query ourselves
5637 because the stub wouldn't be ready to process it. This applies
5638 only to the base all-stop protocol, however. In non-stop (which
5639 only supports vCont), the stub replies with an "OK", and is
5640 immediate able to process further serial input. */
5641 if (!target_is_non_stop_p ())
5642 rs->waiting_for_stop_reply = 1;
5646 /* Set up the signal handler for SIGINT, while the target is
5647 executing, ovewriting the 'regular' SIGINT signal handler. */
5649 async_initialize_sigint_signal_handler (void)
5651 signal (SIGINT, async_handle_remote_sigint);
5654 /* Signal handler for SIGINT, while the target is executing. */
5656 async_handle_remote_sigint (int sig)
5658 signal (sig, async_handle_remote_sigint_twice);
5659 /* Note we need to go through gdb_call_async_signal_handler in order
5660 to wake up the event loop on Windows. */
5661 gdb_call_async_signal_handler (async_sigint_remote_token, 0);
5664 /* Signal handler for SIGINT, installed after SIGINT has already been
5665 sent once. It will take effect the second time that the user sends
5668 async_handle_remote_sigint_twice (int sig)
5670 signal (sig, async_handle_remote_sigint);
5671 /* See note in async_handle_remote_sigint. */
5672 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 0);
5675 /* Implementation of to_check_pending_interrupt. */
5678 remote_check_pending_interrupt (struct target_ops *self)
5680 struct async_signal_handler *token = async_sigint_remote_twice_token;
5682 if (async_signal_handler_is_marked (token))
5684 clear_async_signal_handler (token);
5685 call_async_signal_handler (token);
5689 /* Perform the real interruption of the target execution, in response
5692 async_remote_interrupt (gdb_client_data arg)
5695 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
5697 target_interrupt (inferior_ptid);
5700 /* Perform interrupt, if the first attempt did not succeed. Just give
5701 up on the target alltogether. */
5703 async_remote_interrupt_twice (gdb_client_data arg)
5706 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
5711 /* Reinstall the usual SIGINT handlers, after the target has
5714 async_cleanup_sigint_signal_handler (void *dummy)
5716 signal (SIGINT, handle_sigint);
5719 /* Send ^C to target to halt it. Target will respond, and send us a
5721 static void (*ofunc) (int);
5723 /* The command line interface's interrupt routine. This function is installed
5724 as a signal handler for SIGINT. The first time a user requests an
5725 interrupt, we call remote_interrupt to send a break or ^C. If there is no
5726 response from the target (it didn't stop when the user requested it),
5727 we ask the user if he'd like to detach from the target. */
5730 sync_remote_interrupt (int signo)
5732 /* If this doesn't work, try more severe steps. */
5733 signal (signo, sync_remote_interrupt_twice);
5735 gdb_call_async_signal_handler (async_sigint_remote_token, 1);
5738 /* The user typed ^C twice. */
5741 sync_remote_interrupt_twice (int signo)
5743 signal (signo, ofunc);
5744 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5745 signal (signo, sync_remote_interrupt);
5748 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5749 thread, all threads of a remote process, or all threads of all
5753 remote_stop_ns (ptid_t ptid)
5755 struct remote_state *rs = get_remote_state ();
5757 char *endp = rs->buf + get_remote_packet_size ();
5759 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5760 remote_vcont_probe (rs);
5762 if (!rs->supports_vCont.t)
5763 error (_("Remote server does not support stopping threads"));
5765 if (ptid_equal (ptid, minus_one_ptid)
5766 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5767 p += xsnprintf (p, endp - p, "vCont;t");
5772 p += xsnprintf (p, endp - p, "vCont;t:");
5774 if (ptid_is_pid (ptid))
5775 /* All (-1) threads of process. */
5776 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5779 /* Small optimization: if we already have a stop reply for
5780 this thread, no use in telling the stub we want this
5782 if (peek_stop_reply (ptid))
5788 write_ptid (p, endp, nptid);
5791 /* In non-stop, we get an immediate OK reply. The stop reply will
5792 come in asynchronously by notification. */
5794 getpkt (&rs->buf, &rs->buf_size, 0);
5795 if (strcmp (rs->buf, "OK") != 0)
5796 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5799 /* All-stop version of target_interrupt. Sends a break or a ^C to
5800 interrupt the remote target. It is undefined which thread of which
5801 process reports the interrupt. */
5804 remote_interrupt_as (void)
5806 struct remote_state *rs = get_remote_state ();
5808 rs->ctrlc_pending_p = 1;
5810 /* If the inferior is stopped already, but the core didn't know
5811 about it yet, just ignore the request. The cached wait status
5812 will be collected in remote_wait. */
5813 if (rs->cached_wait_status)
5816 /* Send interrupt_sequence to remote target. */
5817 send_interrupt_sequence ();
5820 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
5821 the remote target. It is undefined which thread of which process
5822 reports the interrupt. Returns true if the packet is supported by
5823 the server, false otherwise. */
5826 remote_interrupt_ns (void)
5828 struct remote_state *rs = get_remote_state ();
5830 char *endp = rs->buf + get_remote_packet_size ();
5832 xsnprintf (p, endp - p, "vCtrlC");
5834 /* In non-stop, we get an immediate OK reply. The stop reply will
5835 come in asynchronously by notification. */
5837 getpkt (&rs->buf, &rs->buf_size, 0);
5839 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
5843 case PACKET_UNKNOWN:
5846 error (_("Interrupting target failed: %s"), rs->buf);
5852 /* Implement the to_stop function for the remote targets. */
5855 remote_stop (struct target_ops *self, ptid_t ptid)
5858 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
5860 if (target_is_non_stop_p ())
5861 remote_stop_ns (ptid);
5864 /* We don't currently have a way to transparently pause the
5865 remote target in all-stop mode. Interrupt it instead. */
5866 remote_interrupt_as ();
5870 /* Implement the to_interrupt function for the remote targets. */
5873 remote_interrupt (struct target_ops *self, ptid_t ptid)
5876 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
5880 /* In non-stop mode, we always stop with no signal instead. */
5881 remote_stop_ns (ptid);
5885 /* In all-stop, we emulate ^C-ing the remote target's
5887 if (target_is_non_stop_p ())
5889 if (!remote_interrupt_ns ())
5891 /* No support for ^C-ing the remote target. Stop it
5892 (with no signal) instead. */
5893 remote_stop_ns (ptid);
5897 remote_interrupt_as ();
5901 /* Ask the user what to do when an interrupt is received. */
5904 interrupt_query (void)
5906 struct remote_state *rs = get_remote_state ();
5907 struct cleanup *old_chain;
5909 old_chain = make_cleanup_restore_target_terminal ();
5910 target_terminal_ours ();
5912 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
5914 if (query (_("The target is not responding to interrupt requests.\n"
5915 "Stop debugging it? ")))
5917 remote_unpush_target ();
5918 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5923 if (query (_("Interrupted while waiting for the program.\n"
5924 "Give up waiting? ")))
5928 do_cleanups (old_chain);
5931 /* Enable/disable target terminal ownership. Most targets can use
5932 terminal groups to control terminal ownership. Remote targets are
5933 different in that explicit transfer of ownership to/from GDB/target
5937 remote_terminal_inferior (struct target_ops *self)
5939 if (!target_async_permitted)
5940 /* Nothing to do. */
5943 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5944 idempotent. The event-loop GDB talking to an asynchronous target
5945 with a synchronous command calls this function from both
5946 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5947 transfer the terminal to the target when it shouldn't this guard
5949 if (!remote_async_terminal_ours_p)
5951 delete_file_handler (input_fd);
5952 remote_async_terminal_ours_p = 0;
5953 async_initialize_sigint_signal_handler ();
5954 /* NOTE: At this point we could also register our selves as the
5955 recipient of all input. Any characters typed could then be
5956 passed on down to the target. */
5960 remote_terminal_ours (struct target_ops *self)
5962 if (!target_async_permitted)
5963 /* Nothing to do. */
5966 /* See FIXME in remote_terminal_inferior. */
5967 if (remote_async_terminal_ours_p)
5969 async_cleanup_sigint_signal_handler (NULL);
5970 add_file_handler (input_fd, stdin_event_handler, 0);
5971 remote_async_terminal_ours_p = 1;
5975 remote_console_output (char *msg)
5979 for (p = msg; p[0] && p[1]; p += 2)
5982 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
5986 fputs_unfiltered (tb, gdb_stdtarg);
5988 gdb_flush (gdb_stdtarg);
5991 typedef struct cached_reg
5994 gdb_byte data[MAX_REGISTER_SIZE];
5997 DEF_VEC_O(cached_reg_t);
5999 typedef struct stop_reply
6001 struct notif_event base;
6003 /* The identifier of the thread about this event */
6006 /* The remote state this event is associated with. When the remote
6007 connection, represented by a remote_state object, is closed,
6008 all the associated stop_reply events should be released. */
6009 struct remote_state *rs;
6011 struct target_waitstatus ws;
6013 /* Expedited registers. This makes remote debugging a bit more
6014 efficient for those targets that provide critical registers as
6015 part of their normal status mechanism (as another roundtrip to
6016 fetch them is avoided). */
6017 VEC(cached_reg_t) *regcache;
6019 enum target_stop_reason stop_reason;
6021 CORE_ADDR watch_data_address;
6026 DECLARE_QUEUE_P (stop_reply_p);
6027 DEFINE_QUEUE_P (stop_reply_p);
6028 /* The list of already fetched and acknowledged stop events. This
6029 queue is used for notification Stop, and other notifications
6030 don't need queue for their events, because the notification events
6031 of Stop can't be consumed immediately, so that events should be
6032 queued first, and be consumed by remote_wait_{ns,as} one per
6033 time. Other notifications can consume their events immediately,
6034 so queue is not needed for them. */
6035 static QUEUE (stop_reply_p) *stop_reply_queue;
6038 stop_reply_xfree (struct stop_reply *r)
6040 notif_event_xfree ((struct notif_event *) r);
6043 /* Return the length of the stop reply queue. */
6046 stop_reply_queue_length (void)
6048 return QUEUE_length (stop_reply_p, stop_reply_queue);
6052 remote_notif_stop_parse (struct notif_client *self, char *buf,
6053 struct notif_event *event)
6055 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6059 remote_notif_stop_ack (struct notif_client *self, char *buf,
6060 struct notif_event *event)
6062 struct stop_reply *stop_reply = (struct stop_reply *) event;
6065 putpkt ((char *) self->ack_command);
6067 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6068 /* We got an unknown stop reply. */
6069 error (_("Unknown stop reply"));
6071 push_stop_reply (stop_reply);
6075 remote_notif_stop_can_get_pending_events (struct notif_client *self)
6077 /* We can't get pending events in remote_notif_process for
6078 notification stop, and we have to do this in remote_wait_ns
6079 instead. If we fetch all queued events from stub, remote stub
6080 may exit and we have no chance to process them back in
6082 mark_async_event_handler (remote_async_inferior_event_token);
6087 stop_reply_dtr (struct notif_event *event)
6089 struct stop_reply *r = (struct stop_reply *) event;
6091 VEC_free (cached_reg_t, r->regcache);
6094 static struct notif_event *
6095 remote_notif_stop_alloc_reply (void)
6097 /* We cast to a pointer to the "base class". */
6098 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
6100 r->dtr = stop_reply_dtr;
6105 /* A client of notification Stop. */
6107 struct notif_client notif_client_stop =
6111 remote_notif_stop_parse,
6112 remote_notif_stop_ack,
6113 remote_notif_stop_can_get_pending_events,
6114 remote_notif_stop_alloc_reply,
6118 /* A parameter to pass data in and out. */
6120 struct queue_iter_param
6123 struct stop_reply *output;
6126 /* Determine if THREAD is a pending fork parent thread. ARG contains
6127 the pid of the process that owns the threads we want to check, or
6128 -1 if we want to check all threads. */
6131 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6134 if (ws->kind == TARGET_WAITKIND_FORKED
6135 || ws->kind == TARGET_WAITKIND_VFORKED)
6137 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6144 /* Check whether EVENT is a fork event, and if it is, remove the
6145 fork child from the context list passed in DATA. */
6148 remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6149 QUEUE_ITER (stop_reply_p) *iter,
6153 struct queue_iter_param *param = (struct queue_iter_param *) data;
6154 struct threads_listing_context *context
6155 = (struct threads_listing_context *) param->input;
6157 if (event->ws.kind == TARGET_WAITKIND_FORKED
6158 || event->ws.kind == TARGET_WAITKIND_VFORKED
6159 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6160 threads_listing_context_remove (&event->ws, context);
6165 /* If CONTEXT contains any fork child threads that have not been
6166 reported yet, remove them from the CONTEXT list. If such a
6167 thread exists it is because we are stopped at a fork catchpoint
6168 and have not yet called follow_fork, which will set up the
6169 host-side data structures for the new process. */
6172 remove_new_fork_children (struct threads_listing_context *context)
6174 struct thread_info * thread;
6176 struct notif_client *notif = ¬if_client_stop;
6177 struct queue_iter_param param;
6179 /* For any threads stopped at a fork event, remove the corresponding
6180 fork child threads from the CONTEXT list. */
6181 ALL_NON_EXITED_THREADS (thread)
6183 struct target_waitstatus *ws = &thread->pending_follow;
6185 if (is_pending_fork_parent (ws, pid, thread->ptid))
6187 threads_listing_context_remove (ws, context);
6191 /* Check for any pending fork events (not reported or processed yet)
6192 in process PID and remove those fork child threads from the
6193 CONTEXT list as well. */
6194 remote_notif_get_pending_events (notif);
6195 param.input = context;
6196 param.output = NULL;
6197 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6198 remove_child_of_pending_fork, ¶m);
6201 /* Remove stop replies in the queue if its pid is equal to the given
6205 remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6206 QUEUE_ITER (stop_reply_p) *iter,
6210 struct queue_iter_param *param = (struct queue_iter_param *) data;
6211 struct inferior *inf = (struct inferior *) param->input;
6213 if (ptid_get_pid (event->ptid) == inf->pid)
6215 stop_reply_xfree (event);
6216 QUEUE_remove_elem (stop_reply_p, q, iter);
6222 /* Discard all pending stop replies of inferior INF. */
6225 discard_pending_stop_replies (struct inferior *inf)
6228 struct queue_iter_param param;
6229 struct stop_reply *reply;
6230 struct remote_state *rs = get_remote_state ();
6231 struct remote_notif_state *rns = rs->notif_state;
6233 /* This function can be notified when an inferior exists. When the
6234 target is not remote, the notification state is NULL. */
6235 if (rs->remote_desc == NULL)
6238 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
6240 /* Discard the in-flight notification. */
6241 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
6243 stop_reply_xfree (reply);
6244 rns->pending_event[notif_client_stop.id] = NULL;
6248 param.output = NULL;
6249 /* Discard the stop replies we have already pulled with
6251 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6252 remove_stop_reply_for_inferior, ¶m);
6255 /* If its remote state is equal to the given remote state,
6256 remove EVENT from the stop reply queue. */
6259 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6260 QUEUE_ITER (stop_reply_p) *iter,
6264 struct queue_iter_param *param = (struct queue_iter_param *) data;
6265 struct remote_state *rs = (struct remote_state *) param->input;
6267 if (event->rs == rs)
6269 stop_reply_xfree (event);
6270 QUEUE_remove_elem (stop_reply_p, q, iter);
6276 /* Discard the stop replies for RS in stop_reply_queue. */
6279 discard_pending_stop_replies_in_queue (struct remote_state *rs)
6281 struct queue_iter_param param;
6284 param.output = NULL;
6285 /* Discard the stop replies we have already pulled with
6287 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6288 remove_stop_reply_of_remote_state, ¶m);
6291 /* A parameter to pass data in and out. */
6294 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6295 QUEUE_ITER (stop_reply_p) *iter,
6299 struct queue_iter_param *param = (struct queue_iter_param *) data;
6300 ptid_t *ptid = (ptid_t *) param->input;
6302 if (ptid_match (event->ptid, *ptid))
6304 param->output = event;
6305 QUEUE_remove_elem (stop_reply_p, q, iter);
6312 /* Remove the first reply in 'stop_reply_queue' which matches
6315 static struct stop_reply *
6316 remote_notif_remove_queued_reply (ptid_t ptid)
6318 struct queue_iter_param param;
6320 param.input = &ptid;
6321 param.output = NULL;
6323 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6324 remote_notif_remove_once_on_match, ¶m);
6326 fprintf_unfiltered (gdb_stdlog,
6327 "notif: discard queued event: 'Stop' in %s\n",
6328 target_pid_to_str (ptid));
6330 return param.output;
6333 /* Look for a queued stop reply belonging to PTID. If one is found,
6334 remove it from the queue, and return it. Returns NULL if none is
6335 found. If there are still queued events left to process, tell the
6336 event loop to get back to target_wait soon. */
6338 static struct stop_reply *
6339 queued_stop_reply (ptid_t ptid)
6341 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
6343 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6344 /* There's still at least an event left. */
6345 mark_async_event_handler (remote_async_inferior_event_token);
6350 /* Push a fully parsed stop reply in the stop reply queue. Since we
6351 know that we now have at least one queued event left to pass to the
6352 core side, tell the event loop to get back to target_wait soon. */
6355 push_stop_reply (struct stop_reply *new_event)
6357 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
6360 fprintf_unfiltered (gdb_stdlog,
6361 "notif: push 'Stop' %s to queue %d\n",
6362 target_pid_to_str (new_event->ptid),
6363 QUEUE_length (stop_reply_p,
6366 mark_async_event_handler (remote_async_inferior_event_token);
6370 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6371 QUEUE_ITER (stop_reply_p) *iter,
6372 struct stop_reply *event,
6375 ptid_t *ptid = (ptid_t *) data;
6377 return !(ptid_equal (*ptid, event->ptid)
6378 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6381 /* Returns true if we have a stop reply for PTID. */
6384 peek_stop_reply (ptid_t ptid)
6386 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6387 stop_reply_match_ptid_and_ws, &ptid);
6390 /* Skip PACKET until the next semi-colon (or end of string). */
6393 skip_to_semicolon (char *p)
6395 while (*p != '\0' && *p != ';')
6400 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
6401 starting with P and ending with PEND matches PREFIX. */
6404 strprefix (const char *p, const char *pend, const char *prefix)
6406 for ( ; p < pend; p++, prefix++)
6409 return *prefix == '\0';
6412 /* Parse the stop reply in BUF. Either the function succeeds, and the
6413 result is stored in EVENT, or throws an error. */
6416 remote_parse_stop_reply (char *buf, struct stop_reply *event)
6418 struct remote_arch_state *rsa = get_remote_arch_state ();
6423 event->ptid = null_ptid;
6424 event->rs = get_remote_state ();
6425 event->ws.kind = TARGET_WAITKIND_IGNORE;
6426 event->ws.value.integer = 0;
6427 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6428 event->regcache = NULL;
6433 case 'T': /* Status with PC, SP, FP, ... */
6434 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6435 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6437 n... = register number
6438 r... = register contents
6441 p = &buf[3]; /* after Txx */
6447 p1 = strchr (p, ':');
6449 error (_("Malformed packet(a) (missing colon): %s\n\
6453 error (_("Malformed packet(a) (missing register number): %s\n\
6457 /* Some "registers" are actually extended stop information.
6458 Note if you're adding a new entry here: GDB 7.9 and
6459 earlier assume that all register "numbers" that start
6460 with an hex digit are real register numbers. Make sure
6461 the server only sends such a packet if it knows the
6462 client understands it. */
6464 if (strprefix (p, p1, "thread"))
6465 event->ptid = read_ptid (++p1, &p);
6466 else if (strprefix (p, p1, "syscall_entry"))
6470 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6471 p = unpack_varlen_hex (++p1, &sysno);
6472 event->ws.value.syscall_number = (int) sysno;
6474 else if (strprefix (p, p1, "syscall_return"))
6478 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6479 p = unpack_varlen_hex (++p1, &sysno);
6480 event->ws.value.syscall_number = (int) sysno;
6482 else if (strprefix (p, p1, "watch")
6483 || strprefix (p, p1, "rwatch")
6484 || strprefix (p, p1, "awatch"))
6486 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
6487 p = unpack_varlen_hex (++p1, &addr);
6488 event->watch_data_address = (CORE_ADDR) addr;
6490 else if (strprefix (p, p1, "swbreak"))
6492 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6494 /* Make sure the stub doesn't forget to indicate support
6496 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6497 error (_("Unexpected swbreak stop reason"));
6499 /* The value part is documented as "must be empty",
6500 though we ignore it, in case we ever decide to make
6501 use of it in a backward compatible way. */
6502 p = skip_to_semicolon (p1 + 1);
6504 else if (strprefix (p, p1, "hwbreak"))
6506 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6508 /* Make sure the stub doesn't forget to indicate support
6510 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6511 error (_("Unexpected hwbreak stop reason"));
6514 p = skip_to_semicolon (p1 + 1);
6516 else if (strprefix (p, p1, "library"))
6518 event->ws.kind = TARGET_WAITKIND_LOADED;
6519 p = skip_to_semicolon (p1 + 1);
6521 else if (strprefix (p, p1, "replaylog"))
6523 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6524 /* p1 will indicate "begin" or "end", but it makes
6525 no difference for now, so ignore it. */
6526 p = skip_to_semicolon (p1 + 1);
6528 else if (strprefix (p, p1, "core"))
6532 p = unpack_varlen_hex (++p1, &c);
6535 else if (strprefix (p, p1, "fork"))
6537 event->ws.value.related_pid = read_ptid (++p1, &p);
6538 event->ws.kind = TARGET_WAITKIND_FORKED;
6540 else if (strprefix (p, p1, "vfork"))
6542 event->ws.value.related_pid = read_ptid (++p1, &p);
6543 event->ws.kind = TARGET_WAITKIND_VFORKED;
6545 else if (strprefix (p, p1, "vforkdone"))
6547 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
6548 p = skip_to_semicolon (p1 + 1);
6550 else if (strprefix (p, p1, "exec"))
6553 char pathname[PATH_MAX];
6556 /* Determine the length of the execd pathname. */
6557 p = unpack_varlen_hex (++p1, &ignored);
6558 pathlen = (p - p1) / 2;
6560 /* Save the pathname for event reporting and for
6561 the next run command. */
6562 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6563 pathname[pathlen] = '\0';
6565 /* This is freed during event handling. */
6566 event->ws.value.execd_pathname = xstrdup (pathname);
6567 event->ws.kind = TARGET_WAITKIND_EXECD;
6569 /* Skip the registers included in this packet, since
6570 they may be for an architecture different from the
6571 one used by the original program. */
6574 else if (strprefix (p, p1, "create"))
6576 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
6577 p = skip_to_semicolon (p1 + 1);
6586 p = skip_to_semicolon (p1 + 1);
6591 /* Maybe a real ``P'' register number. */
6592 p_temp = unpack_varlen_hex (p, &pnum);
6593 /* If the first invalid character is the colon, we got a
6594 register number. Otherwise, it's an unknown stop
6598 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6599 cached_reg_t cached_reg;
6602 error (_("Remote sent bad register number %s: %s\n\
6604 hex_string (pnum), p, buf);
6606 cached_reg.num = reg->regnum;
6609 fieldsize = hex2bin (p, cached_reg.data,
6610 register_size (target_gdbarch (),
6613 if (fieldsize < register_size (target_gdbarch (),
6615 warning (_("Remote reply is too short: %s"), buf);
6617 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6621 /* Not a number. Silently skip unknown optional
6623 p = skip_to_semicolon (p1 + 1);
6628 error (_("Remote register badly formatted: %s\nhere: %s"),
6633 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
6637 case 'S': /* Old style status, just signal only. */
6641 event->ws.kind = TARGET_WAITKIND_STOPPED;
6642 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
6643 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
6644 event->ws.value.sig = (enum gdb_signal) sig;
6646 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6649 case 'w': /* Thread exited. */
6654 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
6655 p = unpack_varlen_hex (&buf[1], &value);
6656 event->ws.value.integer = value;
6658 error (_("stop reply packet badly formatted: %s"), buf);
6659 event->ptid = read_ptid (++p, NULL);
6662 case 'W': /* Target exited. */
6669 /* GDB used to accept only 2 hex chars here. Stubs should
6670 only send more if they detect GDB supports multi-process
6672 p = unpack_varlen_hex (&buf[1], &value);
6676 /* The remote process exited. */
6677 event->ws.kind = TARGET_WAITKIND_EXITED;
6678 event->ws.value.integer = value;
6682 /* The remote process exited with a signal. */
6683 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
6684 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
6685 event->ws.value.sig = (enum gdb_signal) value;
6687 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6690 /* If no process is specified, assume inferior_ptid. */
6691 pid = ptid_get_pid (inferior_ptid);
6700 else if (startswith (p, "process:"))
6704 p += sizeof ("process:") - 1;
6705 unpack_varlen_hex (p, &upid);
6709 error (_("unknown stop reply packet: %s"), buf);
6712 error (_("unknown stop reply packet: %s"), buf);
6713 event->ptid = pid_to_ptid (pid);
6717 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
6718 event->ptid = minus_one_ptid;
6722 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
6723 error (_("No process or thread specified in stop reply: %s"), buf);
6726 /* When the stub wants to tell GDB about a new notification reply, it
6727 sends a notification (%Stop, for example). Those can come it at
6728 any time, hence, we have to make sure that any pending
6729 putpkt/getpkt sequence we're making is finished, before querying
6730 the stub for more events with the corresponding ack command
6731 (vStopped, for example). E.g., if we started a vStopped sequence
6732 immediately upon receiving the notification, something like this
6740 1.6) <-- (registers reply to step #1.3)
6742 Obviously, the reply in step #1.6 would be unexpected to a vStopped
6745 To solve this, whenever we parse a %Stop notification successfully,
6746 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
6747 doing whatever we were doing:
6753 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
6754 2.5) <-- (registers reply to step #2.3)
6756 Eventualy after step #2.5, we return to the event loop, which
6757 notices there's an event on the
6758 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
6759 associated callback --- the function below. At this point, we're
6760 always safe to start a vStopped sequence. :
6763 2.7) <-- T05 thread:2
6769 remote_notif_get_pending_events (struct notif_client *nc)
6771 struct remote_state *rs = get_remote_state ();
6773 if (rs->notif_state->pending_event[nc->id] != NULL)
6776 fprintf_unfiltered (gdb_stdlog,
6777 "notif: process: '%s' ack pending event\n",
6781 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
6782 rs->notif_state->pending_event[nc->id] = NULL;
6786 getpkt (&rs->buf, &rs->buf_size, 0);
6787 if (strcmp (rs->buf, "OK") == 0)
6790 remote_notif_ack (nc, rs->buf);
6796 fprintf_unfiltered (gdb_stdlog,
6797 "notif: process: '%s' no pending reply\n",
6802 /* Called when it is decided that STOP_REPLY holds the info of the
6803 event that is to be returned to the core. This function always
6804 destroys STOP_REPLY. */
6807 process_stop_reply (struct stop_reply *stop_reply,
6808 struct target_waitstatus *status)
6812 *status = stop_reply->ws;
6813 ptid = stop_reply->ptid;
6815 /* If no thread/process was reported by the stub, assume the current
6817 if (ptid_equal (ptid, null_ptid))
6818 ptid = inferior_ptid;
6820 if (status->kind != TARGET_WAITKIND_EXITED
6821 && status->kind != TARGET_WAITKIND_SIGNALLED
6822 && status->kind != TARGET_WAITKIND_NO_RESUMED)
6824 struct remote_state *rs = get_remote_state ();
6825 struct private_thread_info *remote_thr;
6827 /* Expedited registers. */
6828 if (stop_reply->regcache)
6830 struct regcache *regcache
6831 = get_thread_arch_regcache (ptid, target_gdbarch ());
6836 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
6838 regcache_raw_supply (regcache, reg->num, reg->data);
6839 VEC_free (cached_reg_t, stop_reply->regcache);
6842 remote_notice_new_inferior (ptid, 0);
6843 remote_thr = demand_private_info (ptid);
6844 remote_thr->core = stop_reply->core;
6845 remote_thr->stop_reason = stop_reply->stop_reason;
6846 remote_thr->watch_data_address = stop_reply->watch_data_address;
6849 stop_reply_xfree (stop_reply);
6853 /* The non-stop mode version of target_wait. */
6856 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
6858 struct remote_state *rs = get_remote_state ();
6859 struct stop_reply *stop_reply;
6863 /* If in non-stop mode, get out of getpkt even if a
6864 notification is received. */
6866 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6867 0 /* forever */, &is_notif);
6870 if (ret != -1 && !is_notif)
6873 case 'E': /* Error of some sort. */
6874 /* We're out of sync with the target now. Did it continue
6875 or not? We can't tell which thread it was in non-stop,
6876 so just ignore this. */
6877 warning (_("Remote failure reply: %s"), rs->buf);
6879 case 'O': /* Console output. */
6880 remote_console_output (rs->buf + 1);
6883 warning (_("Invalid remote reply: %s"), rs->buf);
6887 /* Acknowledge a pending stop reply that may have arrived in the
6889 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
6890 remote_notif_get_pending_events (¬if_client_stop);
6892 /* If indeed we noticed a stop reply, we're done. */
6893 stop_reply = queued_stop_reply (ptid);
6894 if (stop_reply != NULL)
6895 return process_stop_reply (stop_reply, status);
6897 /* Still no event. If we're just polling for an event, then
6898 return to the event loop. */
6899 if (options & TARGET_WNOHANG)
6901 status->kind = TARGET_WAITKIND_IGNORE;
6902 return minus_one_ptid;
6905 /* Otherwise do a blocking wait. */
6906 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6907 1 /* forever */, &is_notif);
6911 /* Wait until the remote machine stops, then return, storing status in
6912 STATUS just as `wait' would. */
6915 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
6917 struct remote_state *rs = get_remote_state ();
6918 ptid_t event_ptid = null_ptid;
6920 struct stop_reply *stop_reply;
6924 status->kind = TARGET_WAITKIND_IGNORE;
6925 status->value.integer = 0;
6927 stop_reply = queued_stop_reply (ptid);
6928 if (stop_reply != NULL)
6929 return process_stop_reply (stop_reply, status);
6931 if (rs->cached_wait_status)
6932 /* Use the cached wait status, but only once. */
6933 rs->cached_wait_status = 0;
6938 int forever = ((options & TARGET_WNOHANG) == 0
6939 && wait_forever_enabled_p);
6941 if (!rs->waiting_for_stop_reply)
6943 status->kind = TARGET_WAITKIND_NO_RESUMED;
6944 return minus_one_ptid;
6947 if (!target_is_async_p ())
6949 ofunc = signal (SIGINT, sync_remote_interrupt);
6950 /* If the user hit C-c before this packet, or between packets,
6951 pretend that it was hit right here. */
6952 if (check_quit_flag ())
6955 sync_remote_interrupt (SIGINT);
6959 /* FIXME: cagney/1999-09-27: If we're in async mode we should
6960 _never_ wait for ever -> test on target_is_async_p().
6961 However, before we do that we need to ensure that the caller
6962 knows how to take the target into/out of async mode. */
6963 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6964 forever, &is_notif);
6966 if (!target_is_async_p ())
6967 signal (SIGINT, ofunc);
6969 /* GDB gets a notification. Return to core as this event is
6971 if (ret != -1 && is_notif)
6972 return minus_one_ptid;
6974 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
6975 return minus_one_ptid;
6980 /* Assume that the target has acknowledged Ctrl-C unless we receive
6981 an 'F' or 'O' packet. */
6982 if (buf[0] != 'F' && buf[0] != 'O')
6983 rs->ctrlc_pending_p = 0;
6987 case 'E': /* Error of some sort. */
6988 /* We're out of sync with the target now. Did it continue or
6989 not? Not is more likely, so report a stop. */
6990 rs->waiting_for_stop_reply = 0;
6992 warning (_("Remote failure reply: %s"), buf);
6993 status->kind = TARGET_WAITKIND_STOPPED;
6994 status->value.sig = GDB_SIGNAL_0;
6996 case 'F': /* File-I/O request. */
6997 remote_fileio_request (buf, rs->ctrlc_pending_p);
6998 rs->ctrlc_pending_p = 0;
7000 case 'N': case 'T': case 'S': case 'X': case 'W':
7002 struct stop_reply *stop_reply;
7004 /* There is a stop reply to handle. */
7005 rs->waiting_for_stop_reply = 0;
7008 = (struct stop_reply *) remote_notif_parse (¬if_client_stop,
7011 event_ptid = process_stop_reply (stop_reply, status);
7014 case 'O': /* Console output. */
7015 remote_console_output (buf + 1);
7018 if (rs->last_sent_signal != GDB_SIGNAL_0)
7020 /* Zero length reply means that we tried 'S' or 'C' and the
7021 remote system doesn't support it. */
7022 target_terminal_ours_for_output ();
7024 ("Can't send signals to this remote system. %s not sent.\n",
7025 gdb_signal_to_name (rs->last_sent_signal));
7026 rs->last_sent_signal = GDB_SIGNAL_0;
7027 target_terminal_inferior ();
7029 strcpy ((char *) buf, rs->last_sent_step ? "s" : "c");
7030 putpkt ((char *) buf);
7033 /* else fallthrough */
7035 warning (_("Invalid remote reply: %s"), buf);
7039 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7040 return minus_one_ptid;
7041 else if (status->kind == TARGET_WAITKIND_IGNORE)
7043 /* Nothing interesting happened. If we're doing a non-blocking
7044 poll, we're done. Otherwise, go back to waiting. */
7045 if (options & TARGET_WNOHANG)
7046 return minus_one_ptid;
7050 else if (status->kind != TARGET_WAITKIND_EXITED
7051 && status->kind != TARGET_WAITKIND_SIGNALLED)
7053 if (!ptid_equal (event_ptid, null_ptid))
7054 record_currthread (rs, event_ptid);
7056 event_ptid = inferior_ptid;
7059 /* A process exit. Invalidate our notion of current thread. */
7060 record_currthread (rs, minus_one_ptid);
7065 /* Wait until the remote machine stops, then return, storing status in
7066 STATUS just as `wait' would. */
7069 remote_wait (struct target_ops *ops,
7070 ptid_t ptid, struct target_waitstatus *status, int options)
7074 if (target_is_non_stop_p ())
7075 event_ptid = remote_wait_ns (ptid, status, options);
7077 event_ptid = remote_wait_as (ptid, status, options);
7079 if (target_is_async_p ())
7081 /* If there are are events left in the queue tell the event loop
7083 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
7084 mark_async_event_handler (remote_async_inferior_event_token);
7090 /* Fetch a single register using a 'p' packet. */
7093 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
7095 struct remote_state *rs = get_remote_state ();
7097 char regp[MAX_REGISTER_SIZE];
7100 if (packet_support (PACKET_p) == PACKET_DISABLE)
7103 if (reg->pnum == -1)
7108 p += hexnumstr (p, reg->pnum);
7111 getpkt (&rs->buf, &rs->buf_size, 0);
7115 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7119 case PACKET_UNKNOWN:
7122 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7123 gdbarch_register_name (get_regcache_arch (regcache),
7128 /* If this register is unfetchable, tell the regcache. */
7131 regcache_raw_supply (regcache, reg->regnum, NULL);
7135 /* Otherwise, parse and supply the value. */
7141 error (_("fetch_register_using_p: early buf termination"));
7143 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7146 regcache_raw_supply (regcache, reg->regnum, regp);
7150 /* Fetch the registers included in the target's 'g' packet. */
7153 send_g_packet (void)
7155 struct remote_state *rs = get_remote_state ();
7158 xsnprintf (rs->buf, get_remote_packet_size (), "g");
7159 remote_send (&rs->buf, &rs->buf_size);
7161 /* We can get out of synch in various cases. If the first character
7162 in the buffer is not a hex character, assume that has happened
7163 and try to fetch another packet to read. */
7164 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7165 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7166 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7167 && rs->buf[0] != 'x') /* New: unavailable register value. */
7170 fprintf_unfiltered (gdb_stdlog,
7171 "Bad register packet; fetching a new packet\n");
7172 getpkt (&rs->buf, &rs->buf_size, 0);
7175 buf_len = strlen (rs->buf);
7177 /* Sanity check the received packet. */
7178 if (buf_len % 2 != 0)
7179 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
7185 process_g_packet (struct regcache *regcache)
7187 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7188 struct remote_state *rs = get_remote_state ();
7189 struct remote_arch_state *rsa = get_remote_arch_state ();
7194 buf_len = strlen (rs->buf);
7196 /* Further sanity checks, with knowledge of the architecture. */
7197 if (buf_len > 2 * rsa->sizeof_g_packet)
7198 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
7200 /* Save the size of the packet sent to us by the target. It is used
7201 as a heuristic when determining the max size of packets that the
7202 target can safely receive. */
7203 if (rsa->actual_register_packet_size == 0)
7204 rsa->actual_register_packet_size = buf_len;
7206 /* If this is smaller than we guessed the 'g' packet would be,
7207 update our records. A 'g' reply that doesn't include a register's
7208 value implies either that the register is not available, or that
7209 the 'p' packet must be used. */
7210 if (buf_len < 2 * rsa->sizeof_g_packet)
7212 rsa->sizeof_g_packet = buf_len / 2;
7214 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7216 if (rsa->regs[i].pnum == -1)
7219 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
7220 rsa->regs[i].in_g_packet = 0;
7222 rsa->regs[i].in_g_packet = 1;
7226 regs = (char *) alloca (rsa->sizeof_g_packet);
7228 /* Unimplemented registers read as all bits zero. */
7229 memset (regs, 0, rsa->sizeof_g_packet);
7231 /* Reply describes registers byte by byte, each byte encoded as two
7232 hex characters. Suck them all up, then supply them to the
7233 register cacheing/storage mechanism. */
7236 for (i = 0; i < rsa->sizeof_g_packet; i++)
7238 if (p[0] == 0 || p[1] == 0)
7239 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7240 internal_error (__FILE__, __LINE__,
7241 _("unexpected end of 'g' packet reply"));
7243 if (p[0] == 'x' && p[1] == 'x')
7244 regs[i] = 0; /* 'x' */
7246 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7250 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7252 struct packet_reg *r = &rsa->regs[i];
7256 if (r->offset * 2 >= strlen (rs->buf))
7257 /* This shouldn't happen - we adjusted in_g_packet above. */
7258 internal_error (__FILE__, __LINE__,
7259 _("unexpected end of 'g' packet reply"));
7260 else if (rs->buf[r->offset * 2] == 'x')
7262 gdb_assert (r->offset * 2 < strlen (rs->buf));
7263 /* The register isn't available, mark it as such (at
7264 the same time setting the value to zero). */
7265 regcache_raw_supply (regcache, r->regnum, NULL);
7268 regcache_raw_supply (regcache, r->regnum,
7275 fetch_registers_using_g (struct regcache *regcache)
7278 process_g_packet (regcache);
7281 /* Make the remote selected traceframe match GDB's selected
7285 set_remote_traceframe (void)
7288 struct remote_state *rs = get_remote_state ();
7290 if (rs->remote_traceframe_number == get_traceframe_number ())
7293 /* Avoid recursion, remote_trace_find calls us again. */
7294 rs->remote_traceframe_number = get_traceframe_number ();
7296 newnum = target_trace_find (tfind_number,
7297 get_traceframe_number (), 0, 0, NULL);
7299 /* Should not happen. If it does, all bets are off. */
7300 if (newnum != get_traceframe_number ())
7301 warning (_("could not set remote traceframe"));
7305 remote_fetch_registers (struct target_ops *ops,
7306 struct regcache *regcache, int regnum)
7308 struct remote_arch_state *rsa = get_remote_arch_state ();
7311 set_remote_traceframe ();
7312 set_general_thread (inferior_ptid);
7316 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7318 gdb_assert (reg != NULL);
7320 /* If this register might be in the 'g' packet, try that first -
7321 we are likely to read more than one register. If this is the
7322 first 'g' packet, we might be overly optimistic about its
7323 contents, so fall back to 'p'. */
7324 if (reg->in_g_packet)
7326 fetch_registers_using_g (regcache);
7327 if (reg->in_g_packet)
7331 if (fetch_register_using_p (regcache, reg))
7334 /* This register is not available. */
7335 regcache_raw_supply (regcache, reg->regnum, NULL);
7340 fetch_registers_using_g (regcache);
7342 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7343 if (!rsa->regs[i].in_g_packet)
7344 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
7346 /* This register is not available. */
7347 regcache_raw_supply (regcache, i, NULL);
7351 /* Prepare to store registers. Since we may send them all (using a
7352 'G' request), we have to read out the ones we don't want to change
7356 remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
7358 struct remote_arch_state *rsa = get_remote_arch_state ();
7360 gdb_byte buf[MAX_REGISTER_SIZE];
7362 /* Make sure the entire registers array is valid. */
7363 switch (packet_support (PACKET_P))
7365 case PACKET_DISABLE:
7366 case PACKET_SUPPORT_UNKNOWN:
7367 /* Make sure all the necessary registers are cached. */
7368 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7369 if (rsa->regs[i].in_g_packet)
7370 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
7377 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
7378 packet was not recognized. */
7381 store_register_using_P (const struct regcache *regcache,
7382 struct packet_reg *reg)
7384 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7385 struct remote_state *rs = get_remote_state ();
7386 /* Try storing a single register. */
7387 char *buf = rs->buf;
7388 gdb_byte regp[MAX_REGISTER_SIZE];
7391 if (packet_support (PACKET_P) == PACKET_DISABLE)
7394 if (reg->pnum == -1)
7397 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
7398 p = buf + strlen (buf);
7399 regcache_raw_collect (regcache, reg->regnum, regp);
7400 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
7402 getpkt (&rs->buf, &rs->buf_size, 0);
7404 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7409 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7410 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
7411 case PACKET_UNKNOWN:
7414 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7418 /* Store register REGNUM, or all registers if REGNUM == -1, from the
7419 contents of the register cache buffer. FIXME: ignores errors. */
7422 store_registers_using_G (const struct regcache *regcache)
7424 struct remote_state *rs = get_remote_state ();
7425 struct remote_arch_state *rsa = get_remote_arch_state ();
7429 /* Extract all the registers in the regcache copying them into a
7434 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
7435 memset (regs, 0, rsa->sizeof_g_packet);
7436 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7438 struct packet_reg *r = &rsa->regs[i];
7441 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
7445 /* Command describes registers byte by byte,
7446 each byte encoded as two hex characters. */
7449 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
7451 bin2hex (regs, p, rsa->sizeof_g_packet);
7453 getpkt (&rs->buf, &rs->buf_size, 0);
7454 if (packet_check_result (rs->buf) == PACKET_ERROR)
7455 error (_("Could not write registers; remote failure reply '%s'"),
7459 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7460 of the register cache buffer. FIXME: ignores errors. */
7463 remote_store_registers (struct target_ops *ops,
7464 struct regcache *regcache, int regnum)
7466 struct remote_arch_state *rsa = get_remote_arch_state ();
7469 set_remote_traceframe ();
7470 set_general_thread (inferior_ptid);
7474 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7476 gdb_assert (reg != NULL);
7478 /* Always prefer to store registers using the 'P' packet if
7479 possible; we often change only a small number of registers.
7480 Sometimes we change a larger number; we'd need help from a
7481 higher layer to know to use 'G'. */
7482 if (store_register_using_P (regcache, reg))
7485 /* For now, don't complain if we have no way to write the
7486 register. GDB loses track of unavailable registers too
7487 easily. Some day, this may be an error. We don't have
7488 any way to read the register, either... */
7489 if (!reg->in_g_packet)
7492 store_registers_using_G (regcache);
7496 store_registers_using_G (regcache);
7498 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7499 if (!rsa->regs[i].in_g_packet)
7500 if (!store_register_using_P (regcache, &rsa->regs[i]))
7501 /* See above for why we do not issue an error here. */
7506 /* Return the number of hex digits in num. */
7509 hexnumlen (ULONGEST num)
7513 for (i = 0; num != 0; i++)
7519 /* Set BUF to the minimum number of hex digits representing NUM. */
7522 hexnumstr (char *buf, ULONGEST num)
7524 int len = hexnumlen (num);
7526 return hexnumnstr (buf, num, len);
7530 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
7533 hexnumnstr (char *buf, ULONGEST num, int width)
7539 for (i = width - 1; i >= 0; i--)
7541 buf[i] = "0123456789abcdef"[(num & 0xf)];
7548 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
7551 remote_address_masked (CORE_ADDR addr)
7553 unsigned int address_size = remote_address_size;
7555 /* If "remoteaddresssize" was not set, default to target address size. */
7557 address_size = gdbarch_addr_bit (target_gdbarch ());
7559 if (address_size > 0
7560 && address_size < (sizeof (ULONGEST) * 8))
7562 /* Only create a mask when that mask can safely be constructed
7563 in a ULONGEST variable. */
7566 mask = (mask << address_size) - 1;
7572 /* Determine whether the remote target supports binary downloading.
7573 This is accomplished by sending a no-op memory write of zero length
7574 to the target at the specified address. It does not suffice to send
7575 the whole packet, since many stubs strip the eighth bit and
7576 subsequently compute a wrong checksum, which causes real havoc with
7579 NOTE: This can still lose if the serial line is not eight-bit
7580 clean. In cases like this, the user should clear "remote
7584 check_binary_download (CORE_ADDR addr)
7586 struct remote_state *rs = get_remote_state ();
7588 switch (packet_support (PACKET_X))
7590 case PACKET_DISABLE:
7594 case PACKET_SUPPORT_UNKNOWN:
7600 p += hexnumstr (p, (ULONGEST) addr);
7602 p += hexnumstr (p, (ULONGEST) 0);
7606 putpkt_binary (rs->buf, (int) (p - rs->buf));
7607 getpkt (&rs->buf, &rs->buf_size, 0);
7609 if (rs->buf[0] == '\0')
7612 fprintf_unfiltered (gdb_stdlog,
7613 "binary downloading NOT "
7614 "supported by target\n");
7615 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
7620 fprintf_unfiltered (gdb_stdlog,
7621 "binary downloading supported by target\n");
7622 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
7629 /* Helper function to resize the payload in order to try to get a good
7630 alignment. We try to write an amount of data such that the next write will
7631 start on an address aligned on REMOTE_ALIGN_WRITES. */
7634 align_for_efficient_write (int todo, CORE_ADDR memaddr)
7636 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
7639 /* Write memory data directly to the remote machine.
7640 This does not inform the data cache; the data cache uses this.
7641 HEADER is the starting part of the packet.
7642 MEMADDR is the address in the remote memory space.
7643 MYADDR is the address of the buffer in our space.
7644 LEN_UNITS is the number of addressable units to write.
7645 UNIT_SIZE is the length in bytes of an addressable unit.
7646 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
7647 should send data as binary ('X'), or hex-encoded ('M').
7649 The function creates packet of the form
7650 <HEADER><ADDRESS>,<LENGTH>:<DATA>
7652 where encoding of <DATA> is terminated by PACKET_FORMAT.
7654 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
7657 Return the transferred status, error or OK (an
7658 'enum target_xfer_status' value). Save the number of addressable units
7659 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
7661 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
7662 exchange between gdb and the stub could look like (?? in place of the
7668 -> $M1000,3:eeeeffffeeee#??
7672 <- eeeeffffeeeedddd */
7674 static enum target_xfer_status
7675 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
7676 const gdb_byte *myaddr, ULONGEST len_units,
7677 int unit_size, ULONGEST *xfered_len_units,
7678 char packet_format, int use_length)
7680 struct remote_state *rs = get_remote_state ();
7686 int payload_capacity_bytes;
7687 int payload_length_bytes;
7689 if (packet_format != 'X' && packet_format != 'M')
7690 internal_error (__FILE__, __LINE__,
7691 _("remote_write_bytes_aux: bad packet format"));
7694 return TARGET_XFER_EOF;
7696 payload_capacity_bytes = get_memory_write_packet_size ();
7698 /* The packet buffer will be large enough for the payload;
7699 get_memory_packet_size ensures this. */
7702 /* Compute the size of the actual payload by subtracting out the
7703 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
7705 payload_capacity_bytes -= strlen ("$,:#NN");
7707 /* The comma won't be used. */
7708 payload_capacity_bytes += 1;
7709 payload_capacity_bytes -= strlen (header);
7710 payload_capacity_bytes -= hexnumlen (memaddr);
7712 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
7714 strcat (rs->buf, header);
7715 p = rs->buf + strlen (header);
7717 /* Compute a best guess of the number of bytes actually transfered. */
7718 if (packet_format == 'X')
7720 /* Best guess at number of bytes that will fit. */
7721 todo_units = min (len_units, payload_capacity_bytes / unit_size);
7723 payload_capacity_bytes -= hexnumlen (todo_units);
7724 todo_units = min (todo_units, payload_capacity_bytes / unit_size);
7728 /* Number of bytes that will fit. */
7729 todo_units = min (len_units, (payload_capacity_bytes / unit_size) / 2);
7731 payload_capacity_bytes -= hexnumlen (todo_units);
7732 todo_units = min (todo_units, (payload_capacity_bytes / unit_size) / 2);
7735 if (todo_units <= 0)
7736 internal_error (__FILE__, __LINE__,
7737 _("minimum packet size too small to write data"));
7739 /* If we already need another packet, then try to align the end
7740 of this packet to a useful boundary. */
7741 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
7742 todo_units = align_for_efficient_write (todo_units, memaddr);
7744 /* Append "<memaddr>". */
7745 memaddr = remote_address_masked (memaddr);
7746 p += hexnumstr (p, (ULONGEST) memaddr);
7753 /* Append the length and retain its location and size. It may need to be
7754 adjusted once the packet body has been created. */
7756 plenlen = hexnumstr (p, (ULONGEST) todo_units);
7764 /* Append the packet body. */
7765 if (packet_format == 'X')
7767 /* Binary mode. Send target system values byte by byte, in
7768 increasing byte addresses. Only escape certain critical
7770 payload_length_bytes =
7771 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
7772 &units_written, payload_capacity_bytes);
7774 /* If not all TODO units fit, then we'll need another packet. Make
7775 a second try to keep the end of the packet aligned. Don't do
7776 this if the packet is tiny. */
7777 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
7781 new_todo_units = align_for_efficient_write (units_written, memaddr);
7783 if (new_todo_units != units_written)
7784 payload_length_bytes =
7785 remote_escape_output (myaddr, new_todo_units, unit_size,
7786 (gdb_byte *) p, &units_written,
7787 payload_capacity_bytes);
7790 p += payload_length_bytes;
7791 if (use_length && units_written < todo_units)
7793 /* Escape chars have filled up the buffer prematurely,
7794 and we have actually sent fewer units than planned.
7795 Fix-up the length field of the packet. Use the same
7796 number of characters as before. */
7797 plen += hexnumnstr (plen, (ULONGEST) units_written,
7799 *plen = ':'; /* overwrite \0 from hexnumnstr() */
7804 /* Normal mode: Send target system values byte by byte, in
7805 increasing byte addresses. Each byte is encoded as a two hex
7807 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
7808 units_written = todo_units;
7811 putpkt_binary (rs->buf, (int) (p - rs->buf));
7812 getpkt (&rs->buf, &rs->buf_size, 0);
7814 if (rs->buf[0] == 'E')
7815 return TARGET_XFER_E_IO;
7817 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
7818 send fewer units than we'd planned. */
7819 *xfered_len_units = (ULONGEST) units_written;
7820 return TARGET_XFER_OK;
7823 /* Write memory data directly to the remote machine.
7824 This does not inform the data cache; the data cache uses this.
7825 MEMADDR is the address in the remote memory space.
7826 MYADDR is the address of the buffer in our space.
7827 LEN is the number of bytes.
7829 Return the transferred status, error or OK (an
7830 'enum target_xfer_status' value). Save the number of bytes
7831 transferred in *XFERED_LEN. Only transfer a single packet. */
7833 static enum target_xfer_status
7834 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
7835 int unit_size, ULONGEST *xfered_len)
7837 char *packet_format = 0;
7839 /* Check whether the target supports binary download. */
7840 check_binary_download (memaddr);
7842 switch (packet_support (PACKET_X))
7845 packet_format = "X";
7847 case PACKET_DISABLE:
7848 packet_format = "M";
7850 case PACKET_SUPPORT_UNKNOWN:
7851 internal_error (__FILE__, __LINE__,
7852 _("remote_write_bytes: bad internal state"));
7854 internal_error (__FILE__, __LINE__, _("bad switch"));
7857 return remote_write_bytes_aux (packet_format,
7858 memaddr, myaddr, len, unit_size, xfered_len,
7859 packet_format[0], 1);
7862 /* Read memory data directly from the remote machine.
7863 This does not use the data cache; the data cache uses this.
7864 MEMADDR is the address in the remote memory space.
7865 MYADDR is the address of the buffer in our space.
7866 LEN_UNITS is the number of addressable memory units to read..
7867 UNIT_SIZE is the length in bytes of an addressable unit.
7869 Return the transferred status, error or OK (an
7870 'enum target_xfer_status' value). Save the number of bytes
7871 transferred in *XFERED_LEN_UNITS.
7873 See the comment of remote_write_bytes_aux for an example of
7874 memory read/write exchange between gdb and the stub. */
7876 static enum target_xfer_status
7877 remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
7878 int unit_size, ULONGEST *xfered_len_units)
7880 struct remote_state *rs = get_remote_state ();
7881 int buf_size_bytes; /* Max size of packet output buffer. */
7886 buf_size_bytes = get_memory_read_packet_size ();
7887 /* The packet buffer will be large enough for the payload;
7888 get_memory_packet_size ensures this. */
7890 /* Number of units that will fit. */
7891 todo_units = min (len_units, (buf_size_bytes / unit_size) / 2);
7893 /* Construct "m"<memaddr>","<len>". */
7894 memaddr = remote_address_masked (memaddr);
7897 p += hexnumstr (p, (ULONGEST) memaddr);
7899 p += hexnumstr (p, (ULONGEST) todo_units);
7902 getpkt (&rs->buf, &rs->buf_size, 0);
7903 if (rs->buf[0] == 'E'
7904 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
7905 && rs->buf[3] == '\0')
7906 return TARGET_XFER_E_IO;
7907 /* Reply describes memory byte by byte, each byte encoded as two hex
7910 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
7911 /* Return what we have. Let higher layers handle partial reads. */
7912 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
7913 return TARGET_XFER_OK;
7916 /* Using the set of read-only target sections of remote, read live
7919 For interface/parameters/return description see target.h,
7922 static enum target_xfer_status
7923 remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
7924 ULONGEST memaddr, ULONGEST len,
7925 int unit_size, ULONGEST *xfered_len)
7927 struct target_section *secp;
7928 struct target_section_table *table;
7930 secp = target_section_by_addr (ops, memaddr);
7932 && (bfd_get_section_flags (secp->the_bfd_section->owner,
7933 secp->the_bfd_section)
7936 struct target_section *p;
7937 ULONGEST memend = memaddr + len;
7939 table = target_get_section_table (ops);
7941 for (p = table->sections; p < table->sections_end; p++)
7943 if (memaddr >= p->addr)
7945 if (memend <= p->endaddr)
7947 /* Entire transfer is within this section. */
7948 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7951 else if (memaddr >= p->endaddr)
7953 /* This section ends before the transfer starts. */
7958 /* This section overlaps the transfer. Just do half. */
7959 len = p->endaddr - memaddr;
7960 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7967 return TARGET_XFER_EOF;
7970 /* Similar to remote_read_bytes_1, but it reads from the remote stub
7971 first if the requested memory is unavailable in traceframe.
7972 Otherwise, fall back to remote_read_bytes_1. */
7974 static enum target_xfer_status
7975 remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
7976 gdb_byte *myaddr, ULONGEST len, int unit_size,
7977 ULONGEST *xfered_len)
7980 return TARGET_XFER_EOF;
7982 if (get_traceframe_number () != -1)
7984 VEC(mem_range_s) *available;
7986 /* If we fail to get the set of available memory, then the
7987 target does not support querying traceframe info, and so we
7988 attempt reading from the traceframe anyway (assuming the
7989 target implements the old QTro packet then). */
7990 if (traceframe_available_memory (&available, memaddr, len))
7992 struct cleanup *old_chain;
7994 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
7996 if (VEC_empty (mem_range_s, available)
7997 || VEC_index (mem_range_s, available, 0)->start != memaddr)
7999 enum target_xfer_status res;
8001 /* Don't read into the traceframe's available
8003 if (!VEC_empty (mem_range_s, available))
8005 LONGEST oldlen = len;
8007 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
8008 gdb_assert (len <= oldlen);
8011 do_cleanups (old_chain);
8013 /* This goes through the topmost target again. */
8014 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
8015 len, unit_size, xfered_len);
8016 if (res == TARGET_XFER_OK)
8017 return TARGET_XFER_OK;
8020 /* No use trying further, we know some memory starting
8021 at MEMADDR isn't available. */
8023 return TARGET_XFER_UNAVAILABLE;
8027 /* Don't try to read more than how much is available, in
8028 case the target implements the deprecated QTro packet to
8029 cater for older GDBs (the target's knowledge of read-only
8030 sections may be outdated by now). */
8031 len = VEC_index (mem_range_s, available, 0)->length;
8033 do_cleanups (old_chain);
8037 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
8042 /* Sends a packet with content determined by the printf format string
8043 FORMAT and the remaining arguments, then gets the reply. Returns
8044 whether the packet was a success, a failure, or unknown. */
8046 static enum packet_result remote_send_printf (const char *format, ...)
8047 ATTRIBUTE_PRINTF (1, 2);
8049 static enum packet_result
8050 remote_send_printf (const char *format, ...)
8052 struct remote_state *rs = get_remote_state ();
8053 int max_size = get_remote_packet_size ();
8056 va_start (ap, format);
8059 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
8060 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8062 if (putpkt (rs->buf) < 0)
8063 error (_("Communication problem with target."));
8066 getpkt (&rs->buf, &rs->buf_size, 0);
8068 return packet_check_result (rs->buf);
8072 restore_remote_timeout (void *p)
8074 int value = *(int *)p;
8076 remote_timeout = value;
8079 /* Flash writing can take quite some time. We'll set
8080 effectively infinite timeout for flash operations.
8081 In future, we'll need to decide on a better approach. */
8082 static const int remote_flash_timeout = 1000;
8085 remote_flash_erase (struct target_ops *ops,
8086 ULONGEST address, LONGEST length)
8088 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8089 int saved_remote_timeout = remote_timeout;
8090 enum packet_result ret;
8091 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8092 &saved_remote_timeout);
8094 remote_timeout = remote_flash_timeout;
8096 ret = remote_send_printf ("vFlashErase:%s,%s",
8097 phex (address, addr_size),
8101 case PACKET_UNKNOWN:
8102 error (_("Remote target does not support flash erase"));
8104 error (_("Error erasing flash with vFlashErase packet"));
8109 do_cleanups (back_to);
8112 static enum target_xfer_status
8113 remote_flash_write (struct target_ops *ops, ULONGEST address,
8114 ULONGEST length, ULONGEST *xfered_len,
8115 const gdb_byte *data)
8117 int saved_remote_timeout = remote_timeout;
8118 enum target_xfer_status ret;
8119 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8120 &saved_remote_timeout);
8122 remote_timeout = remote_flash_timeout;
8123 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8125 do_cleanups (back_to);
8131 remote_flash_done (struct target_ops *ops)
8133 int saved_remote_timeout = remote_timeout;
8135 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8136 &saved_remote_timeout);
8138 remote_timeout = remote_flash_timeout;
8139 ret = remote_send_printf ("vFlashDone");
8140 do_cleanups (back_to);
8144 case PACKET_UNKNOWN:
8145 error (_("Remote target does not support vFlashDone"));
8147 error (_("Error finishing flash operation"));
8154 remote_files_info (struct target_ops *ignore)
8156 puts_filtered ("Debugging a target over a serial line.\n");
8159 /* Stuff for dealing with the packets which are part of this protocol.
8160 See comment at top of file for details. */
8162 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8163 error to higher layers. Called when a serial error is detected.
8164 The exception message is STRING, followed by a colon and a blank,
8165 the system error message for errno at function entry and final dot
8166 for output compatibility with throw_perror_with_name. */
8169 unpush_and_perror (const char *string)
8171 int saved_errno = errno;
8173 remote_unpush_target ();
8174 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8175 safe_strerror (saved_errno));
8178 /* Read a single character from the remote end. */
8181 readchar (int timeout)
8184 struct remote_state *rs = get_remote_state ();
8186 ch = serial_readchar (rs->remote_desc, timeout);
8191 switch ((enum serial_rc) ch)
8194 remote_unpush_target ();
8195 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
8198 unpush_and_perror (_("Remote communication error. "
8199 "Target disconnected."));
8201 case SERIAL_TIMEOUT:
8207 /* Wrapper for serial_write that closes the target and throws if
8211 remote_serial_write (const char *str, int len)
8213 struct remote_state *rs = get_remote_state ();
8215 if (serial_write (rs->remote_desc, str, len))
8217 unpush_and_perror (_("Remote communication error. "
8218 "Target disconnected."));
8222 /* Send the command in *BUF to the remote machine, and read the reply
8223 into *BUF. Report an error if we get an error reply. Resize
8224 *BUF using xrealloc if necessary to hold the result, and update
8228 remote_send (char **buf,
8232 getpkt (buf, sizeof_buf, 0);
8234 if ((*buf)[0] == 'E')
8235 error (_("Remote failure reply: %s"), *buf);
8238 /* Return a pointer to an xmalloc'ed string representing an escaped
8239 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
8240 etc. The caller is responsible for releasing the returned
8244 escape_buffer (const char *buf, int n)
8246 struct cleanup *old_chain;
8247 struct ui_file *stb;
8250 stb = mem_fileopen ();
8251 old_chain = make_cleanup_ui_file_delete (stb);
8253 fputstrn_unfiltered (buf, n, '\\', stb);
8254 str = ui_file_xstrdup (stb, NULL);
8255 do_cleanups (old_chain);
8259 /* Display a null-terminated packet on stdout, for debugging, using C
8263 print_packet (const char *buf)
8265 puts_filtered ("\"");
8266 fputstr_filtered (buf, '"', gdb_stdout);
8267 puts_filtered ("\"");
8271 putpkt (const char *buf)
8273 return putpkt_binary (buf, strlen (buf));
8276 /* Send a packet to the remote machine, with error checking. The data
8277 of the packet is in BUF. The string in BUF can be at most
8278 get_remote_packet_size () - 5 to account for the $, # and checksum,
8279 and for a possible /0 if we are debugging (remote_debug) and want
8280 to print the sent packet as a string. */
8283 putpkt_binary (const char *buf, int cnt)
8285 struct remote_state *rs = get_remote_state ();
8287 unsigned char csum = 0;
8288 char *buf2 = (char *) xmalloc (cnt + 6);
8289 struct cleanup *old_chain = make_cleanup (xfree, buf2);
8296 /* Catch cases like trying to read memory or listing threads while
8297 we're waiting for a stop reply. The remote server wouldn't be
8298 ready to handle this request, so we'd hang and timeout. We don't
8299 have to worry about this in synchronous mode, because in that
8300 case it's not possible to issue a command while the target is
8301 running. This is not a problem in non-stop mode, because in that
8302 case, the stub is always ready to process serial input. */
8303 if (!target_is_non_stop_p ()
8304 && target_is_async_p ()
8305 && rs->waiting_for_stop_reply)
8307 error (_("Cannot execute this command while the target is running.\n"
8308 "Use the \"interrupt\" command to stop the target\n"
8309 "and then try again."));
8312 /* We're sending out a new packet. Make sure we don't look at a
8313 stale cached response. */
8314 rs->cached_wait_status = 0;
8316 /* Copy the packet into buffer BUF2, encapsulating it
8317 and giving it a checksum. */
8322 for (i = 0; i < cnt; i++)
8328 *p++ = tohex ((csum >> 4) & 0xf);
8329 *p++ = tohex (csum & 0xf);
8331 /* Send it over and over until we get a positive ack. */
8335 int started_error_output = 0;
8339 struct cleanup *old_chain;
8343 str = escape_buffer (buf2, p - buf2);
8344 old_chain = make_cleanup (xfree, str);
8345 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
8346 gdb_flush (gdb_stdlog);
8347 do_cleanups (old_chain);
8349 remote_serial_write (buf2, p - buf2);
8351 /* If this is a no acks version of the remote protocol, send the
8352 packet and move on. */
8356 /* Read until either a timeout occurs (-2) or '+' is read.
8357 Handle any notification that arrives in the mean time. */
8360 ch = readchar (remote_timeout);
8368 case SERIAL_TIMEOUT:
8371 if (started_error_output)
8373 putchar_unfiltered ('\n');
8374 started_error_output = 0;
8383 fprintf_unfiltered (gdb_stdlog, "Ack\n");
8384 do_cleanups (old_chain);
8388 fprintf_unfiltered (gdb_stdlog, "Nak\n");
8390 case SERIAL_TIMEOUT:
8394 do_cleanups (old_chain);
8397 break; /* Retransmit buffer. */
8401 fprintf_unfiltered (gdb_stdlog,
8402 "Packet instead of Ack, ignoring it\n");
8403 /* It's probably an old response sent because an ACK
8404 was lost. Gobble up the packet and ack it so it
8405 doesn't get retransmitted when we resend this
8408 remote_serial_write ("+", 1);
8409 continue; /* Now, go look for +. */
8416 /* If we got a notification, handle it, and go back to looking
8418 /* We've found the start of a notification. Now
8419 collect the data. */
8420 val = read_frame (&rs->buf, &rs->buf_size);
8425 struct cleanup *old_chain;
8428 str = escape_buffer (rs->buf, val);
8429 old_chain = make_cleanup (xfree, str);
8430 fprintf_unfiltered (gdb_stdlog,
8431 " Notification received: %s\n",
8433 do_cleanups (old_chain);
8435 handle_notification (rs->notif_state, rs->buf);
8436 /* We're in sync now, rewait for the ack. */
8443 if (!started_error_output)
8445 started_error_output = 1;
8446 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8448 fputc_unfiltered (ch & 0177, gdb_stdlog);
8449 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8458 if (!started_error_output)
8460 started_error_output = 1;
8461 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8463 fputc_unfiltered (ch & 0177, gdb_stdlog);
8467 break; /* Here to retransmit. */
8471 /* This is wrong. If doing a long backtrace, the user should be
8472 able to get out next time we call QUIT, without anything as
8473 violent as interrupt_query. If we want to provide a way out of
8474 here without getting to the next QUIT, it should be based on
8475 hitting ^C twice as in remote_wait. */
8484 do_cleanups (old_chain);
8488 /* Come here after finding the start of a frame when we expected an
8489 ack. Do our best to discard the rest of this packet. */
8498 c = readchar (remote_timeout);
8501 case SERIAL_TIMEOUT:
8502 /* Nothing we can do. */
8505 /* Discard the two bytes of checksum and stop. */
8506 c = readchar (remote_timeout);
8508 c = readchar (remote_timeout);
8511 case '*': /* Run length encoding. */
8512 /* Discard the repeat count. */
8513 c = readchar (remote_timeout);
8518 /* A regular character. */
8524 /* Come here after finding the start of the frame. Collect the rest
8525 into *BUF, verifying the checksum, length, and handling run-length
8526 compression. NUL terminate the buffer. If there is not enough room,
8527 expand *BUF using xrealloc.
8529 Returns -1 on error, number of characters in buffer (ignoring the
8530 trailing NULL) on success. (could be extended to return one of the
8531 SERIAL status indications). */
8534 read_frame (char **buf_p,
8541 struct remote_state *rs = get_remote_state ();
8548 c = readchar (remote_timeout);
8551 case SERIAL_TIMEOUT:
8553 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
8557 fputs_filtered ("Saw new packet start in middle of old one\n",
8559 return -1; /* Start a new packet, count retries. */
8562 unsigned char pktcsum;
8568 check_0 = readchar (remote_timeout);
8570 check_1 = readchar (remote_timeout);
8572 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8575 fputs_filtered ("Timeout in checksum, retrying\n",
8579 else if (check_0 < 0 || check_1 < 0)
8582 fputs_filtered ("Communication error in checksum\n",
8587 /* Don't recompute the checksum; with no ack packets we
8588 don't have any way to indicate a packet retransmission
8593 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
8594 if (csum == pktcsum)
8599 struct cleanup *old_chain;
8602 str = escape_buffer (buf, bc);
8603 old_chain = make_cleanup (xfree, str);
8604 fprintf_unfiltered (gdb_stdlog,
8605 "Bad checksum, sentsum=0x%x, "
8606 "csum=0x%x, buf=%s\n",
8607 pktcsum, csum, str);
8608 do_cleanups (old_chain);
8610 /* Number of characters in buffer ignoring trailing
8614 case '*': /* Run length encoding. */
8619 c = readchar (remote_timeout);
8621 repeat = c - ' ' + 3; /* Compute repeat count. */
8623 /* The character before ``*'' is repeated. */
8625 if (repeat > 0 && repeat <= 255 && bc > 0)
8627 if (bc + repeat - 1 >= *sizeof_buf - 1)
8629 /* Make some more room in the buffer. */
8630 *sizeof_buf += repeat;
8631 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
8635 memset (&buf[bc], buf[bc - 1], repeat);
8641 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
8645 if (bc >= *sizeof_buf - 1)
8647 /* Make some more room in the buffer. */
8649 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
8660 /* Read a packet from the remote machine, with error checking, and
8661 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8662 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8663 rather than timing out; this is used (in synchronous mode) to wait
8664 for a target that is is executing user code to stop. */
8665 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
8666 don't have to change all the calls to getpkt to deal with the
8667 return value, because at the moment I don't know what the right
8668 thing to do it for those. */
8676 timed_out = getpkt_sane (buf, sizeof_buf, forever);
8680 /* Read a packet from the remote machine, with error checking, and
8681 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8682 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8683 rather than timing out; this is used (in synchronous mode) to wait
8684 for a target that is is executing user code to stop. If FOREVER ==
8685 0, this function is allowed to time out gracefully and return an
8686 indication of this to the caller. Otherwise return the number of
8687 bytes read. If EXPECTING_NOTIF, consider receiving a notification
8688 enough reason to return to the caller. *IS_NOTIF is an output
8689 boolean that indicates whether *BUF holds a notification or not
8690 (a regular packet). */
8693 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
8694 int expecting_notif, int *is_notif)
8696 struct remote_state *rs = get_remote_state ();
8702 /* We're reading a new response. Make sure we don't look at a
8703 previously cached response. */
8704 rs->cached_wait_status = 0;
8706 strcpy (*buf, "timeout");
8709 timeout = watchdog > 0 ? watchdog : -1;
8710 else if (expecting_notif)
8711 timeout = 0; /* There should already be a char in the buffer. If
8714 timeout = remote_timeout;
8718 /* Process any number of notifications, and then return when
8722 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
8724 for (tries = 1; tries <= MAX_TRIES; tries++)
8726 /* This can loop forever if the remote side sends us
8727 characters continuously, but if it pauses, we'll get
8728 SERIAL_TIMEOUT from readchar because of timeout. Then
8729 we'll count that as a retry.
8731 Note that even when forever is set, we will only wait
8732 forever prior to the start of a packet. After that, we
8733 expect characters to arrive at a brisk pace. They should
8734 show up within remote_timeout intervals. */
8736 c = readchar (timeout);
8737 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
8739 if (c == SERIAL_TIMEOUT)
8741 if (expecting_notif)
8742 return -1; /* Don't complain, it's normal to not get
8743 anything in this case. */
8745 if (forever) /* Watchdog went off? Kill the target. */
8748 remote_unpush_target ();
8749 throw_error (TARGET_CLOSE_ERROR,
8750 _("Watchdog timeout has expired. "
8751 "Target detached."));
8754 fputs_filtered ("Timed out.\n", gdb_stdlog);
8758 /* We've found the start of a packet or notification.
8759 Now collect the data. */
8760 val = read_frame (buf, sizeof_buf);
8765 remote_serial_write ("-", 1);
8768 if (tries > MAX_TRIES)
8770 /* We have tried hard enough, and just can't receive the
8771 packet/notification. Give up. */
8772 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
8774 /* Skip the ack char if we're in no-ack mode. */
8775 if (!rs->noack_mode)
8776 remote_serial_write ("+", 1);
8780 /* If we got an ordinary packet, return that to our caller. */
8785 struct cleanup *old_chain;
8788 str = escape_buffer (*buf, val);
8789 old_chain = make_cleanup (xfree, str);
8790 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
8791 do_cleanups (old_chain);
8794 /* Skip the ack char if we're in no-ack mode. */
8795 if (!rs->noack_mode)
8796 remote_serial_write ("+", 1);
8797 if (is_notif != NULL)
8802 /* If we got a notification, handle it, and go back to looking
8806 gdb_assert (c == '%');
8810 struct cleanup *old_chain;
8813 str = escape_buffer (*buf, val);
8814 old_chain = make_cleanup (xfree, str);
8815 fprintf_unfiltered (gdb_stdlog,
8816 " Notification received: %s\n",
8818 do_cleanups (old_chain);
8820 if (is_notif != NULL)
8823 handle_notification (rs->notif_state, *buf);
8825 /* Notifications require no acknowledgement. */
8827 if (expecting_notif)
8834 getpkt_sane (char **buf, long *sizeof_buf, int forever)
8836 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
8840 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
8843 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
8847 /* Check whether EVENT is a fork event for the process specified
8848 by the pid passed in DATA, and if it is, kill the fork child. */
8851 kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
8852 QUEUE_ITER (stop_reply_p) *iter,
8856 struct queue_iter_param *param = (struct queue_iter_param *) data;
8857 int parent_pid = *(int *) param->input;
8859 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
8861 struct remote_state *rs = get_remote_state ();
8862 int child_pid = ptid_get_pid (event->ws.value.related_pid);
8865 res = remote_vkill (child_pid, rs);
8867 error (_("Can't kill fork child process %d"), child_pid);
8873 /* Kill any new fork children of process PID that haven't been
8874 processed by follow_fork. */
8877 kill_new_fork_children (int pid, struct remote_state *rs)
8879 struct thread_info *thread;
8880 struct notif_client *notif = ¬if_client_stop;
8881 struct queue_iter_param param;
8883 /* Kill the fork child threads of any threads in process PID
8884 that are stopped at a fork event. */
8885 ALL_NON_EXITED_THREADS (thread)
8887 struct target_waitstatus *ws = &thread->pending_follow;
8889 if (is_pending_fork_parent (ws, pid, thread->ptid))
8891 struct remote_state *rs = get_remote_state ();
8892 int child_pid = ptid_get_pid (ws->value.related_pid);
8895 res = remote_vkill (child_pid, rs);
8897 error (_("Can't kill fork child process %d"), child_pid);
8901 /* Check for any pending fork events (not reported or processed yet)
8902 in process PID and kill those fork child threads as well. */
8903 remote_notif_get_pending_events (notif);
8905 param.output = NULL;
8906 QUEUE_iterate (stop_reply_p, stop_reply_queue,
8907 kill_child_of_pending_fork, ¶m);
8911 /* Target hook to kill the current inferior. */
8914 remote_kill (struct target_ops *ops)
8917 int pid = ptid_get_pid (inferior_ptid);
8918 struct remote_state *rs = get_remote_state ();
8920 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
8922 /* If we're stopped while forking and we haven't followed yet,
8923 kill the child task. We need to do this before killing the
8924 parent task because if this is a vfork then the parent will
8926 kill_new_fork_children (pid, rs);
8928 res = remote_vkill (pid, rs);
8931 target_mourn_inferior ();
8936 /* If we are in 'target remote' mode and we are killing the only
8937 inferior, then we will tell gdbserver to exit and unpush the
8939 if (res == -1 && !remote_multi_process_p (rs)
8940 && number_of_live_inferiors () == 1)
8944 /* We've killed the remote end, we get to mourn it. If we are
8945 not in extended mode, mourning the inferior also unpushes
8946 remote_ops from the target stack, which closes the remote
8948 target_mourn_inferior ();
8953 error (_("Can't kill process"));
8956 /* Send a kill request to the target using the 'vKill' packet. */
8959 remote_vkill (int pid, struct remote_state *rs)
8961 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
8964 /* Tell the remote target to detach. */
8965 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
8967 getpkt (&rs->buf, &rs->buf_size, 0);
8969 switch (packet_ok (rs->buf,
8970 &remote_protocol_packets[PACKET_vKill]))
8976 case PACKET_UNKNOWN:
8979 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8983 /* Send a kill request to the target using the 'k' packet. */
8986 remote_kill_k (void)
8988 /* Catch errors so the user can quit from gdb even when we
8989 aren't on speaking terms with the remote system. */
8994 CATCH (ex, RETURN_MASK_ERROR)
8996 if (ex.error == TARGET_CLOSE_ERROR)
8998 /* If we got an (EOF) error that caused the target
8999 to go away, then we're done, that's what we wanted.
9000 "k" is susceptible to cause a premature EOF, given
9001 that the remote server isn't actually required to
9002 reply to "k", and it can happen that it doesn't
9003 even get to reply ACK to the "k". */
9007 /* Otherwise, something went wrong. We didn't actually kill
9008 the target. Just propagate the exception, and let the
9009 user or higher layers decide what to do. */
9010 throw_exception (ex);
9016 remote_mourn (struct target_ops *target)
9018 struct remote_state *rs = get_remote_state ();
9020 /* In 'target remote' mode with one inferior, we close the connection. */
9021 if (!rs->extended && number_of_live_inferiors () <= 1)
9023 unpush_target (target);
9025 /* remote_close takes care of doing most of the clean up. */
9026 generic_mourn_inferior ();
9030 /* In case we got here due to an error, but we're going to stay
9032 rs->waiting_for_stop_reply = 0;
9034 /* If the current general thread belonged to the process we just
9035 detached from or has exited, the remote side current general
9036 thread becomes undefined. Considering a case like this:
9038 - We just got here due to a detach.
9039 - The process that we're detaching from happens to immediately
9040 report a global breakpoint being hit in non-stop mode, in the
9041 same thread we had selected before.
9042 - GDB attaches to this process again.
9043 - This event happens to be the next event we handle.
9045 GDB would consider that the current general thread didn't need to
9046 be set on the stub side (with Hg), since for all it knew,
9047 GENERAL_THREAD hadn't changed.
9049 Notice that although in all-stop mode, the remote server always
9050 sets the current thread to the thread reporting the stop event,
9051 that doesn't happen in non-stop mode; in non-stop, the stub *must
9052 not* change the current thread when reporting a breakpoint hit,
9053 due to the decoupling of event reporting and event handling.
9055 To keep things simple, we always invalidate our notion of the
9057 record_currthread (rs, minus_one_ptid);
9059 /* Call common code to mark the inferior as not running. */
9060 generic_mourn_inferior ();
9062 if (!have_inferiors ())
9064 if (!remote_multi_process_p (rs))
9066 /* Check whether the target is running now - some remote stubs
9067 automatically restart after kill. */
9069 getpkt (&rs->buf, &rs->buf_size, 0);
9071 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9073 /* Assume that the target has been restarted. Set
9074 inferior_ptid so that bits of core GDB realizes
9075 there's something here, e.g., so that the user can
9076 say "kill" again. */
9077 inferior_ptid = magic_null_ptid;
9084 extended_remote_supports_disable_randomization (struct target_ops *self)
9086 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9090 extended_remote_disable_randomization (int val)
9092 struct remote_state *rs = get_remote_state ();
9095 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9098 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
9100 error (_("Target does not support QDisableRandomization."));
9101 if (strcmp (reply, "OK") != 0)
9102 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9106 extended_remote_run (char *args)
9108 struct remote_state *rs = get_remote_state ();
9110 const char *remote_exec_file = get_remote_exec_file ();
9112 /* If the user has disabled vRun support, or we have detected that
9113 support is not available, do not try it. */
9114 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9117 strcpy (rs->buf, "vRun;");
9118 len = strlen (rs->buf);
9120 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9121 error (_("Remote file name too long for run packet"));
9122 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9123 strlen (remote_exec_file));
9125 gdb_assert (args != NULL);
9128 struct cleanup *back_to;
9132 argv = gdb_buildargv (args);
9133 back_to = make_cleanup_freeargv (argv);
9134 for (i = 0; argv[i] != NULL; i++)
9136 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9137 error (_("Argument list too long for run packet"));
9138 rs->buf[len++] = ';';
9139 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9142 do_cleanups (back_to);
9145 rs->buf[len++] = '\0';
9148 getpkt (&rs->buf, &rs->buf_size, 0);
9150 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9153 /* We have a wait response. All is well. */
9155 case PACKET_UNKNOWN:
9158 if (remote_exec_file[0] == '\0')
9159 error (_("Running the default executable on the remote target failed; "
9160 "try \"set remote exec-file\"?"));
9162 error (_("Running \"%s\" on the remote target failed"),
9165 gdb_assert_not_reached (_("bad switch"));
9169 /* In the extended protocol we want to be able to do things like
9170 "run" and have them basically work as expected. So we need
9171 a special create_inferior function. We support changing the
9172 executable file and the command line arguments, but not the
9176 extended_remote_create_inferior (struct target_ops *ops,
9177 char *exec_file, char *args,
9178 char **env, int from_tty)
9182 struct remote_state *rs = get_remote_state ();
9183 const char *remote_exec_file = get_remote_exec_file ();
9185 /* If running asynchronously, register the target file descriptor
9186 with the event loop. */
9187 if (target_can_async_p ())
9190 /* Disable address space randomization if requested (and supported). */
9191 if (extended_remote_supports_disable_randomization (ops))
9192 extended_remote_disable_randomization (disable_randomization);
9194 /* Now restart the remote server. */
9195 run_worked = extended_remote_run (args) != -1;
9198 /* vRun was not supported. Fail if we need it to do what the
9200 if (remote_exec_file[0])
9201 error (_("Remote target does not support \"set remote exec-file\""));
9203 error (_("Remote target does not support \"set args\" or run <ARGS>"));
9205 /* Fall back to "R". */
9206 extended_remote_restart ();
9209 if (!have_inferiors ())
9211 /* Clean up from the last time we ran, before we mark the target
9212 running again. This will mark breakpoints uninserted, and
9213 get_offsets may insert breakpoints. */
9214 init_thread_list ();
9215 init_wait_for_inferior ();
9218 /* vRun's success return is a stop reply. */
9219 stop_reply = run_worked ? rs->buf : NULL;
9220 add_current_inferior_and_thread (stop_reply);
9222 /* Get updated offsets, if the stub uses qOffsets. */
9227 /* Given a location's target info BP_TGT and the packet buffer BUF, output
9228 the list of conditions (in agent expression bytecode format), if any, the
9229 target needs to evaluate. The output is placed into the packet buffer
9230 started from BUF and ended at BUF_END. */
9233 remote_add_target_side_condition (struct gdbarch *gdbarch,
9234 struct bp_target_info *bp_tgt, char *buf,
9237 struct agent_expr *aexpr = NULL;
9240 char *buf_start = buf;
9242 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
9245 buf += strlen (buf);
9246 xsnprintf (buf, buf_end - buf, "%s", ";");
9249 /* Send conditions to the target and free the vector. */
9251 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
9254 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
9255 buf += strlen (buf);
9256 for (i = 0; i < aexpr->len; ++i)
9257 buf = pack_hex_byte (buf, aexpr->buf[i]);
9264 remote_add_target_side_commands (struct gdbarch *gdbarch,
9265 struct bp_target_info *bp_tgt, char *buf)
9267 struct agent_expr *aexpr = NULL;
9270 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
9273 buf += strlen (buf);
9275 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9276 buf += strlen (buf);
9278 /* Concatenate all the agent expressions that are commands into the
9281 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
9284 sprintf (buf, "X%x,", aexpr->len);
9285 buf += strlen (buf);
9286 for (i = 0; i < aexpr->len; ++i)
9287 buf = pack_hex_byte (buf, aexpr->buf[i]);
9292 /* Insert a breakpoint. On targets that have software breakpoint
9293 support, we ask the remote target to do the work; on targets
9294 which don't, we insert a traditional memory breakpoint. */
9297 remote_insert_breakpoint (struct target_ops *ops,
9298 struct gdbarch *gdbarch,
9299 struct bp_target_info *bp_tgt)
9301 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9302 If it succeeds, then set the support to PACKET_ENABLE. If it
9303 fails, and the user has explicitly requested the Z support then
9304 report an error, otherwise, mark it disabled and go on. */
9306 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9308 CORE_ADDR addr = bp_tgt->reqstd_address;
9309 struct remote_state *rs;
9312 struct condition_list *cond = NULL;
9314 /* Make sure the remote is pointing at the right process, if
9316 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9317 set_general_process ();
9319 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
9321 rs = get_remote_state ();
9323 endbuf = rs->buf + get_remote_packet_size ();
9328 addr = (ULONGEST) remote_address_masked (addr);
9329 p += hexnumstr (p, addr);
9330 xsnprintf (p, endbuf - p, ",%d", bpsize);
9332 if (remote_supports_cond_breakpoints (ops))
9333 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9335 if (remote_can_run_breakpoint_commands (ops))
9336 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9339 getpkt (&rs->buf, &rs->buf_size, 0);
9341 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
9346 bp_tgt->placed_address = addr;
9347 bp_tgt->placed_size = bpsize;
9349 case PACKET_UNKNOWN:
9354 /* If this breakpoint has target-side commands but this stub doesn't
9355 support Z0 packets, throw error. */
9356 if (!VEC_empty (agent_expr_p, bp_tgt->tcommands))
9357 throw_error (NOT_SUPPORTED_ERROR, _("\
9358 Target doesn't support breakpoints that have target side commands."));
9360 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
9364 remote_remove_breakpoint (struct target_ops *ops,
9365 struct gdbarch *gdbarch,
9366 struct bp_target_info *bp_tgt)
9368 CORE_ADDR addr = bp_tgt->placed_address;
9369 struct remote_state *rs = get_remote_state ();
9371 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9374 char *endbuf = rs->buf + get_remote_packet_size ();
9376 /* Make sure the remote is pointing at the right process, if
9378 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9379 set_general_process ();
9385 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9386 p += hexnumstr (p, addr);
9387 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
9390 getpkt (&rs->buf, &rs->buf_size, 0);
9392 return (rs->buf[0] == 'E');
9395 return memory_remove_breakpoint (ops, gdbarch, bp_tgt);
9398 static enum Z_packet_type
9399 watchpoint_to_Z_packet (int type)
9404 return Z_PACKET_WRITE_WP;
9407 return Z_PACKET_READ_WP;
9410 return Z_PACKET_ACCESS_WP;
9413 internal_error (__FILE__, __LINE__,
9414 _("hw_bp_to_z: bad watchpoint type %d"), type);
9419 remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9420 enum target_hw_bp_type type, struct expression *cond)
9422 struct remote_state *rs = get_remote_state ();
9423 char *endbuf = rs->buf + get_remote_packet_size ();
9425 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9427 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9430 /* Make sure the remote is pointing at the right process, if
9432 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9433 set_general_process ();
9435 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
9436 p = strchr (rs->buf, '\0');
9437 addr = remote_address_masked (addr);
9438 p += hexnumstr (p, (ULONGEST) addr);
9439 xsnprintf (p, endbuf - p, ",%x", len);
9442 getpkt (&rs->buf, &rs->buf_size, 0);
9444 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9448 case PACKET_UNKNOWN:
9453 internal_error (__FILE__, __LINE__,
9454 _("remote_insert_watchpoint: reached end of function"));
9458 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9459 CORE_ADDR start, int length)
9461 CORE_ADDR diff = remote_address_masked (addr - start);
9463 return diff < length;
9468 remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9469 enum target_hw_bp_type type, struct expression *cond)
9471 struct remote_state *rs = get_remote_state ();
9472 char *endbuf = rs->buf + get_remote_packet_size ();
9474 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9476 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9479 /* Make sure the remote is pointing at the right process, if
9481 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9482 set_general_process ();
9484 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
9485 p = strchr (rs->buf, '\0');
9486 addr = remote_address_masked (addr);
9487 p += hexnumstr (p, (ULONGEST) addr);
9488 xsnprintf (p, endbuf - p, ",%x", len);
9490 getpkt (&rs->buf, &rs->buf_size, 0);
9492 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9495 case PACKET_UNKNOWN:
9500 internal_error (__FILE__, __LINE__,
9501 _("remote_remove_watchpoint: reached end of function"));
9505 int remote_hw_watchpoint_limit = -1;
9506 int remote_hw_watchpoint_length_limit = -1;
9507 int remote_hw_breakpoint_limit = -1;
9510 remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9511 CORE_ADDR addr, int len)
9513 if (remote_hw_watchpoint_length_limit == 0)
9515 else if (remote_hw_watchpoint_length_limit < 0)
9517 else if (len <= remote_hw_watchpoint_length_limit)
9524 remote_check_watch_resources (struct target_ops *self,
9525 enum bptype type, int cnt, int ot)
9527 if (type == bp_hardware_breakpoint)
9529 if (remote_hw_breakpoint_limit == 0)
9531 else if (remote_hw_breakpoint_limit < 0)
9533 else if (cnt <= remote_hw_breakpoint_limit)
9538 if (remote_hw_watchpoint_limit == 0)
9540 else if (remote_hw_watchpoint_limit < 0)
9544 else if (cnt <= remote_hw_watchpoint_limit)
9550 /* The to_stopped_by_sw_breakpoint method of target remote. */
9553 remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9555 struct thread_info *thread = inferior_thread ();
9557 return (thread->priv != NULL
9558 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
9561 /* The to_supports_stopped_by_sw_breakpoint method of target
9565 remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
9567 struct remote_state *rs = get_remote_state ();
9569 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
9572 /* The to_stopped_by_hw_breakpoint method of target remote. */
9575 remote_stopped_by_hw_breakpoint (struct target_ops *ops)
9577 struct thread_info *thread = inferior_thread ();
9579 return (thread->priv != NULL
9580 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
9583 /* The to_supports_stopped_by_hw_breakpoint method of target
9587 remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
9589 struct remote_state *rs = get_remote_state ();
9591 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
9595 remote_stopped_by_watchpoint (struct target_ops *ops)
9597 struct thread_info *thread = inferior_thread ();
9599 return (thread->priv != NULL
9600 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
9604 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
9606 struct thread_info *thread = inferior_thread ();
9608 if (thread->priv != NULL
9609 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
9611 *addr_p = thread->priv->watch_data_address;
9620 remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9621 struct bp_target_info *bp_tgt)
9623 CORE_ADDR addr = bp_tgt->reqstd_address;
9624 struct remote_state *rs;
9629 /* The length field should be set to the size of a breakpoint
9630 instruction, even though we aren't inserting one ourselves. */
9632 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
9634 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9637 /* Make sure the remote is pointing at the right process, if
9639 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9640 set_general_process ();
9642 rs = get_remote_state ();
9644 endbuf = rs->buf + get_remote_packet_size ();
9650 addr = remote_address_masked (addr);
9651 p += hexnumstr (p, (ULONGEST) addr);
9652 xsnprintf (p, endbuf - p, ",%x", bpsize);
9654 if (remote_supports_cond_breakpoints (self))
9655 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9657 if (remote_can_run_breakpoint_commands (self))
9658 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9661 getpkt (&rs->buf, &rs->buf_size, 0);
9663 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9666 if (rs->buf[1] == '.')
9668 message = strchr (rs->buf + 2, '.');
9670 error (_("Remote failure reply: %s"), message + 1);
9673 case PACKET_UNKNOWN:
9676 bp_tgt->placed_address = addr;
9677 bp_tgt->placed_size = bpsize;
9680 internal_error (__FILE__, __LINE__,
9681 _("remote_insert_hw_breakpoint: reached end of function"));
9686 remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9687 struct bp_target_info *bp_tgt)
9690 struct remote_state *rs = get_remote_state ();
9692 char *endbuf = rs->buf + get_remote_packet_size ();
9694 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9697 /* Make sure the remote is pointing at the right process, if
9699 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9700 set_general_process ();
9706 addr = remote_address_masked (bp_tgt->placed_address);
9707 p += hexnumstr (p, (ULONGEST) addr);
9708 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
9711 getpkt (&rs->buf, &rs->buf_size, 0);
9713 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9716 case PACKET_UNKNOWN:
9721 internal_error (__FILE__, __LINE__,
9722 _("remote_remove_hw_breakpoint: reached end of function"));
9725 /* Verify memory using the "qCRC:" request. */
9728 remote_verify_memory (struct target_ops *ops,
9729 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
9731 struct remote_state *rs = get_remote_state ();
9732 unsigned long host_crc, target_crc;
9735 /* It doesn't make sense to use qCRC if the remote target is
9736 connected but not running. */
9737 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
9739 enum packet_result result;
9741 /* Make sure the remote is pointing at the right process. */
9742 set_general_process ();
9744 /* FIXME: assumes lma can fit into long. */
9745 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
9746 (long) lma, (long) size);
9749 /* Be clever; compute the host_crc before waiting for target
9751 host_crc = xcrc32 (data, size, 0xffffffff);
9753 getpkt (&rs->buf, &rs->buf_size, 0);
9755 result = packet_ok (rs->buf,
9756 &remote_protocol_packets[PACKET_qCRC]);
9757 if (result == PACKET_ERROR)
9759 else if (result == PACKET_OK)
9761 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
9762 target_crc = target_crc * 16 + fromhex (*tmp);
9764 return (host_crc == target_crc);
9768 return simple_verify_memory (ops, data, lma, size);
9771 /* compare-sections command
9773 With no arguments, compares each loadable section in the exec bfd
9774 with the same memory range on the target, and reports mismatches.
9775 Useful for verifying the image on the target against the exec file. */
9778 compare_sections_command (char *args, int from_tty)
9781 struct cleanup *old_chain;
9783 const char *sectname;
9792 error (_("command cannot be used without an exec file"));
9794 /* Make sure the remote is pointing at the right process. */
9795 set_general_process ();
9797 if (args != NULL && strcmp (args, "-r") == 0)
9803 for (s = exec_bfd->sections; s; s = s->next)
9805 if (!(s->flags & SEC_LOAD))
9806 continue; /* Skip non-loadable section. */
9808 if (read_only && (s->flags & SEC_READONLY) == 0)
9809 continue; /* Skip writeable sections */
9811 size = bfd_get_section_size (s);
9813 continue; /* Skip zero-length section. */
9815 sectname = bfd_get_section_name (exec_bfd, s);
9816 if (args && strcmp (args, sectname) != 0)
9817 continue; /* Not the section selected by user. */
9819 matched = 1; /* Do this section. */
9822 sectdata = (gdb_byte *) xmalloc (size);
9823 old_chain = make_cleanup (xfree, sectdata);
9824 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
9826 res = target_verify_memory (sectdata, lma, size);
9829 error (_("target memory fault, section %s, range %s -- %s"), sectname,
9830 paddress (target_gdbarch (), lma),
9831 paddress (target_gdbarch (), lma + size));
9833 printf_filtered ("Section %s, range %s -- %s: ", sectname,
9834 paddress (target_gdbarch (), lma),
9835 paddress (target_gdbarch (), lma + size));
9837 printf_filtered ("matched.\n");
9840 printf_filtered ("MIS-MATCHED!\n");
9844 do_cleanups (old_chain);
9847 warning (_("One or more sections of the target image does not match\n\
9848 the loaded file\n"));
9849 if (args && !matched)
9850 printf_filtered (_("No loaded section named '%s'.\n"), args);
9853 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
9854 into remote target. The number of bytes written to the remote
9855 target is returned, or -1 for error. */
9857 static enum target_xfer_status
9858 remote_write_qxfer (struct target_ops *ops, const char *object_name,
9859 const char *annex, const gdb_byte *writebuf,
9860 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
9861 struct packet_config *packet)
9865 struct remote_state *rs = get_remote_state ();
9866 int max_size = get_memory_write_packet_size ();
9868 if (packet->support == PACKET_DISABLE)
9869 return TARGET_XFER_E_IO;
9871 /* Insert header. */
9872 i = snprintf (rs->buf, max_size,
9873 "qXfer:%s:write:%s:%s:",
9874 object_name, annex ? annex : "",
9875 phex_nz (offset, sizeof offset));
9876 max_size -= (i + 1);
9878 /* Escape as much data as fits into rs->buf. */
9879 buf_len = remote_escape_output
9880 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
9882 if (putpkt_binary (rs->buf, i + buf_len) < 0
9883 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9884 || packet_ok (rs->buf, packet) != PACKET_OK)
9885 return TARGET_XFER_E_IO;
9887 unpack_varlen_hex (rs->buf, &n);
9890 return TARGET_XFER_OK;
9893 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
9894 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
9895 number of bytes read is returned, or 0 for EOF, or -1 for error.
9896 The number of bytes read may be less than LEN without indicating an
9897 EOF. PACKET is checked and updated to indicate whether the remote
9898 target supports this object. */
9900 static enum target_xfer_status
9901 remote_read_qxfer (struct target_ops *ops, const char *object_name,
9903 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9904 ULONGEST *xfered_len,
9905 struct packet_config *packet)
9907 struct remote_state *rs = get_remote_state ();
9908 LONGEST i, n, packet_len;
9910 if (packet->support == PACKET_DISABLE)
9911 return TARGET_XFER_E_IO;
9913 /* Check whether we've cached an end-of-object packet that matches
9915 if (rs->finished_object)
9917 if (strcmp (object_name, rs->finished_object) == 0
9918 && strcmp (annex ? annex : "", rs->finished_annex) == 0
9919 && offset == rs->finished_offset)
9920 return TARGET_XFER_EOF;
9923 /* Otherwise, we're now reading something different. Discard
9925 xfree (rs->finished_object);
9926 xfree (rs->finished_annex);
9927 rs->finished_object = NULL;
9928 rs->finished_annex = NULL;
9931 /* Request only enough to fit in a single packet. The actual data
9932 may not, since we don't know how much of it will need to be escaped;
9933 the target is free to respond with slightly less data. We subtract
9934 five to account for the response type and the protocol frame. */
9935 n = min (get_remote_packet_size () - 5, len);
9936 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
9937 object_name, annex ? annex : "",
9938 phex_nz (offset, sizeof offset),
9939 phex_nz (n, sizeof n));
9940 i = putpkt (rs->buf);
9942 return TARGET_XFER_E_IO;
9945 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9946 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
9947 return TARGET_XFER_E_IO;
9949 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
9950 error (_("Unknown remote qXfer reply: %s"), rs->buf);
9952 /* 'm' means there is (or at least might be) more data after this
9953 batch. That does not make sense unless there's at least one byte
9954 of data in this reply. */
9955 if (rs->buf[0] == 'm' && packet_len == 1)
9956 error (_("Remote qXfer reply contained no data."));
9958 /* Got some data. */
9959 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
9960 packet_len - 1, readbuf, n);
9962 /* 'l' is an EOF marker, possibly including a final block of data,
9963 or possibly empty. If we have the final block of a non-empty
9964 object, record this fact to bypass a subsequent partial read. */
9965 if (rs->buf[0] == 'l' && offset + i > 0)
9967 rs->finished_object = xstrdup (object_name);
9968 rs->finished_annex = xstrdup (annex ? annex : "");
9969 rs->finished_offset = offset + i;
9973 return TARGET_XFER_EOF;
9977 return TARGET_XFER_OK;
9981 static enum target_xfer_status
9982 remote_xfer_partial (struct target_ops *ops, enum target_object object,
9983 const char *annex, gdb_byte *readbuf,
9984 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
9985 ULONGEST *xfered_len)
9987 struct remote_state *rs;
9991 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
9993 set_remote_traceframe ();
9994 set_general_thread (inferior_ptid);
9996 rs = get_remote_state ();
9998 /* Handle memory using the standard memory routines. */
9999 if (object == TARGET_OBJECT_MEMORY)
10001 /* If the remote target is connected but not running, we should
10002 pass this request down to a lower stratum (e.g. the executable
10004 if (!target_has_execution)
10005 return TARGET_XFER_EOF;
10007 if (writebuf != NULL)
10008 return remote_write_bytes (offset, writebuf, len, unit_size,
10011 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10015 /* Handle SPU memory using qxfer packets. */
10016 if (object == TARGET_OBJECT_SPU)
10019 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
10020 xfered_len, &remote_protocol_packets
10021 [PACKET_qXfer_spu_read]);
10023 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
10024 xfered_len, &remote_protocol_packets
10025 [PACKET_qXfer_spu_write]);
10028 /* Handle extra signal info using qxfer packets. */
10029 if (object == TARGET_OBJECT_SIGNAL_INFO)
10032 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
10033 xfered_len, &remote_protocol_packets
10034 [PACKET_qXfer_siginfo_read]);
10036 return remote_write_qxfer (ops, "siginfo", annex,
10037 writebuf, offset, len, xfered_len,
10038 &remote_protocol_packets
10039 [PACKET_qXfer_siginfo_write]);
10042 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10045 return remote_read_qxfer (ops, "statictrace", annex,
10046 readbuf, offset, len, xfered_len,
10047 &remote_protocol_packets
10048 [PACKET_qXfer_statictrace_read]);
10050 return TARGET_XFER_E_IO;
10053 /* Only handle flash writes. */
10054 if (writebuf != NULL)
10060 case TARGET_OBJECT_FLASH:
10061 return remote_flash_write (ops, offset, len, xfered_len,
10065 return TARGET_XFER_E_IO;
10069 /* Map pre-existing objects onto letters. DO NOT do this for new
10070 objects!!! Instead specify new query packets. */
10073 case TARGET_OBJECT_AVR:
10077 case TARGET_OBJECT_AUXV:
10078 gdb_assert (annex == NULL);
10079 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
10081 &remote_protocol_packets[PACKET_qXfer_auxv]);
10083 case TARGET_OBJECT_AVAILABLE_FEATURES:
10084 return remote_read_qxfer
10085 (ops, "features", annex, readbuf, offset, len, xfered_len,
10086 &remote_protocol_packets[PACKET_qXfer_features]);
10088 case TARGET_OBJECT_LIBRARIES:
10089 return remote_read_qxfer
10090 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
10091 &remote_protocol_packets[PACKET_qXfer_libraries]);
10093 case TARGET_OBJECT_LIBRARIES_SVR4:
10094 return remote_read_qxfer
10095 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
10096 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10098 case TARGET_OBJECT_MEMORY_MAP:
10099 gdb_assert (annex == NULL);
10100 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
10102 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10104 case TARGET_OBJECT_OSDATA:
10105 /* Should only get here if we're connected. */
10106 gdb_assert (rs->remote_desc);
10107 return remote_read_qxfer
10108 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
10109 &remote_protocol_packets[PACKET_qXfer_osdata]);
10111 case TARGET_OBJECT_THREADS:
10112 gdb_assert (annex == NULL);
10113 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
10115 &remote_protocol_packets[PACKET_qXfer_threads]);
10117 case TARGET_OBJECT_TRACEFRAME_INFO:
10118 gdb_assert (annex == NULL);
10119 return remote_read_qxfer
10120 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
10121 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
10123 case TARGET_OBJECT_FDPIC:
10124 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
10126 &remote_protocol_packets[PACKET_qXfer_fdpic]);
10128 case TARGET_OBJECT_OPENVMS_UIB:
10129 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
10131 &remote_protocol_packets[PACKET_qXfer_uib]);
10133 case TARGET_OBJECT_BTRACE:
10134 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
10136 &remote_protocol_packets[PACKET_qXfer_btrace]);
10138 case TARGET_OBJECT_BTRACE_CONF:
10139 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10141 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10143 case TARGET_OBJECT_EXEC_FILE:
10144 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10146 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10149 return TARGET_XFER_E_IO;
10152 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10153 large enough let the caller deal with it. */
10154 if (len < get_remote_packet_size ())
10155 return TARGET_XFER_E_IO;
10156 len = get_remote_packet_size ();
10158 /* Except for querying the minimum buffer size, target must be open. */
10159 if (!rs->remote_desc)
10160 error (_("remote query is only available after target open"));
10162 gdb_assert (annex != NULL);
10163 gdb_assert (readbuf != NULL);
10167 *p2++ = query_type;
10169 /* We used one buffer char for the remote protocol q command and
10170 another for the query type. As the remote protocol encapsulation
10171 uses 4 chars plus one extra in case we are debugging
10172 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10175 while (annex[i] && (i < (get_remote_packet_size () - 8)))
10177 /* Bad caller may have sent forbidden characters. */
10178 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10183 gdb_assert (annex[i] == '\0');
10185 i = putpkt (rs->buf);
10187 return TARGET_XFER_E_IO;
10189 getpkt (&rs->buf, &rs->buf_size, 0);
10190 strcpy ((char *) readbuf, rs->buf);
10192 *xfered_len = strlen ((char *) readbuf);
10193 return TARGET_XFER_OK;
10197 remote_search_memory (struct target_ops* ops,
10198 CORE_ADDR start_addr, ULONGEST search_space_len,
10199 const gdb_byte *pattern, ULONGEST pattern_len,
10200 CORE_ADDR *found_addrp)
10202 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
10203 struct remote_state *rs = get_remote_state ();
10204 int max_size = get_memory_write_packet_size ();
10205 struct packet_config *packet =
10206 &remote_protocol_packets[PACKET_qSearch_memory];
10207 /* Number of packet bytes used to encode the pattern;
10208 this could be more than PATTERN_LEN due to escape characters. */
10209 int escaped_pattern_len;
10210 /* Amount of pattern that was encodable in the packet. */
10211 int used_pattern_len;
10214 ULONGEST found_addr;
10216 /* Don't go to the target if we don't have to.
10217 This is done before checking packet->support to avoid the possibility that
10218 a success for this edge case means the facility works in general. */
10219 if (pattern_len > search_space_len)
10221 if (pattern_len == 0)
10223 *found_addrp = start_addr;
10227 /* If we already know the packet isn't supported, fall back to the simple
10228 way of searching memory. */
10230 if (packet_config_support (packet) == PACKET_DISABLE)
10232 /* Target doesn't provided special support, fall back and use the
10233 standard support (copy memory and do the search here). */
10234 return simple_search_memory (ops, start_addr, search_space_len,
10235 pattern, pattern_len, found_addrp);
10238 /* Make sure the remote is pointing at the right process. */
10239 set_general_process ();
10241 /* Insert header. */
10242 i = snprintf (rs->buf, max_size,
10243 "qSearch:memory:%s;%s;",
10244 phex_nz (start_addr, addr_size),
10245 phex_nz (search_space_len, sizeof (search_space_len)));
10246 max_size -= (i + 1);
10248 /* Escape as much data as fits into rs->buf. */
10249 escaped_pattern_len =
10250 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
10251 &used_pattern_len, max_size);
10253 /* Bail if the pattern is too large. */
10254 if (used_pattern_len != pattern_len)
10255 error (_("Pattern is too large to transmit to remote target."));
10257 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10258 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10259 || packet_ok (rs->buf, packet) != PACKET_OK)
10261 /* The request may not have worked because the command is not
10262 supported. If so, fall back to the simple way. */
10263 if (packet->support == PACKET_DISABLE)
10265 return simple_search_memory (ops, start_addr, search_space_len,
10266 pattern, pattern_len, found_addrp);
10271 if (rs->buf[0] == '0')
10273 else if (rs->buf[0] == '1')
10276 if (rs->buf[1] != ',')
10277 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10278 unpack_varlen_hex (rs->buf + 2, &found_addr);
10279 *found_addrp = found_addr;
10282 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10288 remote_rcmd (struct target_ops *self, const char *command,
10289 struct ui_file *outbuf)
10291 struct remote_state *rs = get_remote_state ();
10294 if (!rs->remote_desc)
10295 error (_("remote rcmd is only available after target open"));
10297 /* Send a NULL command across as an empty command. */
10298 if (command == NULL)
10301 /* The query prefix. */
10302 strcpy (rs->buf, "qRcmd,");
10303 p = strchr (rs->buf, '\0');
10305 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10306 > get_remote_packet_size ())
10307 error (_("\"monitor\" command ``%s'' is too long."), command);
10309 /* Encode the actual command. */
10310 bin2hex ((const gdb_byte *) command, p, strlen (command));
10312 if (putpkt (rs->buf) < 0)
10313 error (_("Communication problem with target."));
10315 /* get/display the response */
10320 /* XXX - see also remote_get_noisy_reply(). */
10321 QUIT; /* Allow user to bail out with ^C. */
10323 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10325 /* Timeout. Continue to (try to) read responses.
10326 This is better than stopping with an error, assuming the stub
10327 is still executing the (long) monitor command.
10328 If needed, the user can interrupt gdb using C-c, obtaining
10329 an effect similar to stop on timeout. */
10333 if (buf[0] == '\0')
10334 error (_("Target does not support this command."));
10335 if (buf[0] == 'O' && buf[1] != 'K')
10337 remote_console_output (buf + 1); /* 'O' message from stub. */
10340 if (strcmp (buf, "OK") == 0)
10342 if (strlen (buf) == 3 && buf[0] == 'E'
10343 && isdigit (buf[1]) && isdigit (buf[2]))
10345 error (_("Protocol error with Rcmd"));
10347 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10349 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
10351 fputc_unfiltered (c, outbuf);
10357 static VEC(mem_region_s) *
10358 remote_memory_map (struct target_ops *ops)
10360 VEC(mem_region_s) *result = NULL;
10361 char *text = target_read_stralloc (¤t_target,
10362 TARGET_OBJECT_MEMORY_MAP, NULL);
10366 struct cleanup *back_to = make_cleanup (xfree, text);
10368 result = parse_memory_map (text);
10369 do_cleanups (back_to);
10376 packet_command (char *args, int from_tty)
10378 struct remote_state *rs = get_remote_state ();
10380 if (!rs->remote_desc)
10381 error (_("command can only be used with remote target"));
10384 error (_("remote-packet command requires packet text as argument"));
10386 puts_filtered ("sending: ");
10387 print_packet (args);
10388 puts_filtered ("\n");
10391 getpkt (&rs->buf, &rs->buf_size, 0);
10392 puts_filtered ("received: ");
10393 print_packet (rs->buf);
10394 puts_filtered ("\n");
10398 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
10400 static void display_thread_info (struct gdb_ext_thread_info *info);
10402 static void threadset_test_cmd (char *cmd, int tty);
10404 static void threadalive_test (char *cmd, int tty);
10406 static void threadlist_test_cmd (char *cmd, int tty);
10408 int get_and_display_threadinfo (threadref *ref);
10410 static void threadinfo_test_cmd (char *cmd, int tty);
10412 static int thread_display_step (threadref *ref, void *context);
10414 static void threadlist_update_test_cmd (char *cmd, int tty);
10416 static void init_remote_threadtests (void);
10418 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
10421 threadset_test_cmd (char *cmd, int tty)
10423 int sample_thread = SAMPLE_THREAD;
10425 printf_filtered (_("Remote threadset test\n"));
10426 set_general_thread (sample_thread);
10431 threadalive_test (char *cmd, int tty)
10433 int sample_thread = SAMPLE_THREAD;
10434 int pid = ptid_get_pid (inferior_ptid);
10435 ptid_t ptid = ptid_build (pid, sample_thread, 0);
10437 if (remote_thread_alive (ptid))
10438 printf_filtered ("PASS: Thread alive test\n");
10440 printf_filtered ("FAIL: Thread alive test\n");
10443 void output_threadid (char *title, threadref *ref);
10446 output_threadid (char *title, threadref *ref)
10450 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
10452 printf_filtered ("%s %s\n", title, (&hexid[0]));
10456 threadlist_test_cmd (char *cmd, int tty)
10459 threadref nextthread;
10460 int done, result_count;
10461 threadref threadlist[3];
10463 printf_filtered ("Remote Threadlist test\n");
10464 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10465 &result_count, &threadlist[0]))
10466 printf_filtered ("FAIL: threadlist test\n");
10469 threadref *scan = threadlist;
10470 threadref *limit = scan + result_count;
10472 while (scan < limit)
10473 output_threadid (" thread ", scan++);
10478 display_thread_info (struct gdb_ext_thread_info *info)
10480 output_threadid ("Threadid: ", &info->threadid);
10481 printf_filtered ("Name: %s\n ", info->shortname);
10482 printf_filtered ("State: %s\n", info->display);
10483 printf_filtered ("other: %s\n\n", info->more_display);
10487 get_and_display_threadinfo (threadref *ref)
10491 struct gdb_ext_thread_info threadinfo;
10493 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10494 | TAG_MOREDISPLAY | TAG_DISPLAY;
10495 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10496 display_thread_info (&threadinfo);
10501 threadinfo_test_cmd (char *cmd, int tty)
10503 int athread = SAMPLE_THREAD;
10507 int_to_threadref (&thread, athread);
10508 printf_filtered ("Remote Threadinfo test\n");
10509 if (!get_and_display_threadinfo (&thread))
10510 printf_filtered ("FAIL cannot get thread info\n");
10514 thread_display_step (threadref *ref, void *context)
10516 /* output_threadid(" threadstep ",ref); *//* simple test */
10517 return get_and_display_threadinfo (ref);
10521 threadlist_update_test_cmd (char *cmd, int tty)
10523 printf_filtered ("Remote Threadlist update test\n");
10524 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10528 init_remote_threadtests (void)
10530 add_com ("tlist", class_obscure, threadlist_test_cmd,
10531 _("Fetch and print the remote list of "
10532 "thread identifiers, one pkt only"));
10533 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
10534 _("Fetch and display info about one thread"));
10535 add_com ("tset", class_obscure, threadset_test_cmd,
10536 _("Test setting to a different thread"));
10537 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
10538 _("Iterate through updating all remote thread info"));
10539 add_com ("talive", class_obscure, threadalive_test,
10540 _(" Remote thread alive test "));
10545 /* Convert a thread ID to a string. Returns the string in a static
10549 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
10551 static char buf[64];
10552 struct remote_state *rs = get_remote_state ();
10554 if (ptid_equal (ptid, null_ptid))
10555 return normal_pid_to_str (ptid);
10556 else if (ptid_is_pid (ptid))
10558 /* Printing an inferior target id. */
10560 /* When multi-process extensions are off, there's no way in the
10561 remote protocol to know the remote process id, if there's any
10562 at all. There's one exception --- when we're connected with
10563 target extended-remote, and we manually attached to a process
10564 with "attach PID". We don't record anywhere a flag that
10565 allows us to distinguish that case from the case of
10566 connecting with extended-remote and the stub already being
10567 attached to a process, and reporting yes to qAttached, hence
10568 no smart special casing here. */
10569 if (!remote_multi_process_p (rs))
10571 xsnprintf (buf, sizeof buf, "Remote target");
10575 return normal_pid_to_str (ptid);
10579 if (ptid_equal (magic_null_ptid, ptid))
10580 xsnprintf (buf, sizeof buf, "Thread <main>");
10581 else if (remote_multi_process_p (rs))
10582 if (ptid_get_lwp (ptid) == 0)
10583 return normal_pid_to_str (ptid);
10585 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
10586 ptid_get_pid (ptid), ptid_get_lwp (ptid));
10588 xsnprintf (buf, sizeof buf, "Thread %ld",
10589 ptid_get_lwp (ptid));
10594 /* Get the address of the thread local variable in OBJFILE which is
10595 stored at OFFSET within the thread local storage for thread PTID. */
10598 remote_get_thread_local_address (struct target_ops *ops,
10599 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
10601 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
10603 struct remote_state *rs = get_remote_state ();
10605 char *endp = rs->buf + get_remote_packet_size ();
10606 enum packet_result result;
10608 strcpy (p, "qGetTLSAddr:");
10610 p = write_ptid (p, endp, ptid);
10612 p += hexnumstr (p, offset);
10614 p += hexnumstr (p, lm);
10618 getpkt (&rs->buf, &rs->buf_size, 0);
10619 result = packet_ok (rs->buf,
10620 &remote_protocol_packets[PACKET_qGetTLSAddr]);
10621 if (result == PACKET_OK)
10625 unpack_varlen_hex (rs->buf, &result);
10628 else if (result == PACKET_UNKNOWN)
10629 throw_error (TLS_GENERIC_ERROR,
10630 _("Remote target doesn't support qGetTLSAddr packet"));
10632 throw_error (TLS_GENERIC_ERROR,
10633 _("Remote target failed to process qGetTLSAddr request"));
10636 throw_error (TLS_GENERIC_ERROR,
10637 _("TLS not supported or disabled on this target"));
10642 /* Provide thread local base, i.e. Thread Information Block address.
10643 Returns 1 if ptid is found and thread_local_base is non zero. */
10646 remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
10648 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
10650 struct remote_state *rs = get_remote_state ();
10652 char *endp = rs->buf + get_remote_packet_size ();
10653 enum packet_result result;
10655 strcpy (p, "qGetTIBAddr:");
10657 p = write_ptid (p, endp, ptid);
10661 getpkt (&rs->buf, &rs->buf_size, 0);
10662 result = packet_ok (rs->buf,
10663 &remote_protocol_packets[PACKET_qGetTIBAddr]);
10664 if (result == PACKET_OK)
10668 unpack_varlen_hex (rs->buf, &result);
10670 *addr = (CORE_ADDR) result;
10673 else if (result == PACKET_UNKNOWN)
10674 error (_("Remote target doesn't support qGetTIBAddr packet"));
10676 error (_("Remote target failed to process qGetTIBAddr request"));
10679 error (_("qGetTIBAddr not supported or disabled on this target"));
10684 /* Support for inferring a target description based on the current
10685 architecture and the size of a 'g' packet. While the 'g' packet
10686 can have any size (since optional registers can be left off the
10687 end), some sizes are easily recognizable given knowledge of the
10688 approximate architecture. */
10690 struct remote_g_packet_guess
10693 const struct target_desc *tdesc;
10695 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
10696 DEF_VEC_O(remote_g_packet_guess_s);
10698 struct remote_g_packet_data
10700 VEC(remote_g_packet_guess_s) *guesses;
10703 static struct gdbarch_data *remote_g_packet_data_handle;
10706 remote_g_packet_data_init (struct obstack *obstack)
10708 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
10712 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
10713 const struct target_desc *tdesc)
10715 struct remote_g_packet_data *data
10716 = ((struct remote_g_packet_data *)
10717 gdbarch_data (gdbarch, remote_g_packet_data_handle));
10718 struct remote_g_packet_guess new_guess, *guess;
10721 gdb_assert (tdesc != NULL);
10724 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10726 if (guess->bytes == bytes)
10727 internal_error (__FILE__, __LINE__,
10728 _("Duplicate g packet description added for size %d"),
10731 new_guess.bytes = bytes;
10732 new_guess.tdesc = tdesc;
10733 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
10736 /* Return 1 if remote_read_description would do anything on this target
10737 and architecture, 0 otherwise. */
10740 remote_read_description_p (struct target_ops *target)
10742 struct remote_g_packet_data *data
10743 = ((struct remote_g_packet_data *)
10744 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
10746 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10752 static const struct target_desc *
10753 remote_read_description (struct target_ops *target)
10755 struct remote_g_packet_data *data
10756 = ((struct remote_g_packet_data *)
10757 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
10759 /* Do not try this during initial connection, when we do not know
10760 whether there is a running but stopped thread. */
10761 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
10762 return target->beneath->to_read_description (target->beneath);
10764 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10766 struct remote_g_packet_guess *guess;
10768 int bytes = send_g_packet ();
10771 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10773 if (guess->bytes == bytes)
10774 return guess->tdesc;
10776 /* We discard the g packet. A minor optimization would be to
10777 hold on to it, and fill the register cache once we have selected
10778 an architecture, but it's too tricky to do safely. */
10781 return target->beneath->to_read_description (target->beneath);
10784 /* Remote file transfer support. This is host-initiated I/O, not
10785 target-initiated; for target-initiated, see remote-fileio.c. */
10787 /* If *LEFT is at least the length of STRING, copy STRING to
10788 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10789 decrease *LEFT. Otherwise raise an error. */
10792 remote_buffer_add_string (char **buffer, int *left, char *string)
10794 int len = strlen (string);
10797 error (_("Packet too long for target."));
10799 memcpy (*buffer, string, len);
10803 /* NUL-terminate the buffer as a convenience, if there is
10809 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
10810 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10811 decrease *LEFT. Otherwise raise an error. */
10814 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
10817 if (2 * len > *left)
10818 error (_("Packet too long for target."));
10820 bin2hex (bytes, *buffer, len);
10821 *buffer += 2 * len;
10824 /* NUL-terminate the buffer as a convenience, if there is
10830 /* If *LEFT is large enough, convert VALUE to hex and add it to
10831 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10832 decrease *LEFT. Otherwise raise an error. */
10835 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
10837 int len = hexnumlen (value);
10840 error (_("Packet too long for target."));
10842 hexnumstr (*buffer, value);
10846 /* NUL-terminate the buffer as a convenience, if there is
10852 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
10853 value, *REMOTE_ERRNO to the remote error number or zero if none
10854 was included, and *ATTACHMENT to point to the start of the annex
10855 if any. The length of the packet isn't needed here; there may
10856 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
10858 Return 0 if the packet could be parsed, -1 if it could not. If
10859 -1 is returned, the other variables may not be initialized. */
10862 remote_hostio_parse_result (char *buffer, int *retcode,
10863 int *remote_errno, char **attachment)
10868 *attachment = NULL;
10870 if (buffer[0] != 'F')
10874 *retcode = strtol (&buffer[1], &p, 16);
10875 if (errno != 0 || p == &buffer[1])
10878 /* Check for ",errno". */
10882 *remote_errno = strtol (p + 1, &p2, 16);
10883 if (errno != 0 || p + 1 == p2)
10888 /* Check for ";attachment". If there is no attachment, the
10889 packet should end here. */
10892 *attachment = p + 1;
10895 else if (*p == '\0')
10901 /* Send a prepared I/O packet to the target and read its response.
10902 The prepared packet is in the global RS->BUF before this function
10903 is called, and the answer is there when we return.
10905 COMMAND_BYTES is the length of the request to send, which may include
10906 binary data. WHICH_PACKET is the packet configuration to check
10907 before attempting a packet. If an error occurs, *REMOTE_ERRNO
10908 is set to the error number and -1 is returned. Otherwise the value
10909 returned by the function is returned.
10911 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
10912 attachment is expected; an error will be reported if there's a
10913 mismatch. If one is found, *ATTACHMENT will be set to point into
10914 the packet buffer and *ATTACHMENT_LEN will be set to the
10915 attachment's length. */
10918 remote_hostio_send_command (int command_bytes, int which_packet,
10919 int *remote_errno, char **attachment,
10920 int *attachment_len)
10922 struct remote_state *rs = get_remote_state ();
10923 int ret, bytes_read;
10924 char *attachment_tmp;
10926 if (!rs->remote_desc
10927 || packet_support (which_packet) == PACKET_DISABLE)
10929 *remote_errno = FILEIO_ENOSYS;
10933 putpkt_binary (rs->buf, command_bytes);
10934 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10936 /* If it timed out, something is wrong. Don't try to parse the
10938 if (bytes_read < 0)
10940 *remote_errno = FILEIO_EINVAL;
10944 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
10947 *remote_errno = FILEIO_EINVAL;
10949 case PACKET_UNKNOWN:
10950 *remote_errno = FILEIO_ENOSYS;
10956 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
10959 *remote_errno = FILEIO_EINVAL;
10963 /* Make sure we saw an attachment if and only if we expected one. */
10964 if ((attachment_tmp == NULL && attachment != NULL)
10965 || (attachment_tmp != NULL && attachment == NULL))
10967 *remote_errno = FILEIO_EINVAL;
10971 /* If an attachment was found, it must point into the packet buffer;
10972 work out how many bytes there were. */
10973 if (attachment_tmp != NULL)
10975 *attachment = attachment_tmp;
10976 *attachment_len = bytes_read - (*attachment - rs->buf);
10982 /* Invalidate the readahead cache. */
10985 readahead_cache_invalidate (void)
10987 struct remote_state *rs = get_remote_state ();
10989 rs->readahead_cache.fd = -1;
10992 /* Invalidate the readahead cache if it is holding data for FD. */
10995 readahead_cache_invalidate_fd (int fd)
10997 struct remote_state *rs = get_remote_state ();
10999 if (rs->readahead_cache.fd == fd)
11000 rs->readahead_cache.fd = -1;
11003 /* Set the filesystem remote_hostio functions that take FILENAME
11004 arguments will use. Return 0 on success, or -1 if an error
11005 occurs (and set *REMOTE_ERRNO). */
11008 remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11010 struct remote_state *rs = get_remote_state ();
11011 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11013 int left = get_remote_packet_size () - 1;
11017 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11020 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11023 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11025 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11026 remote_buffer_add_string (&p, &left, arg);
11028 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11029 remote_errno, NULL, NULL);
11031 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11035 rs->fs_pid = required_pid;
11040 /* Implementation of to_fileio_open. */
11043 remote_hostio_open (struct target_ops *self,
11044 struct inferior *inf, const char *filename,
11045 int flags, int mode, int warn_if_slow,
11048 struct remote_state *rs = get_remote_state ();
11050 int left = get_remote_packet_size () - 1;
11054 static int warning_issued = 0;
11056 printf_unfiltered (_("Reading %s from remote target...\n"),
11059 if (!warning_issued)
11061 warning (_("File transfers from remote targets can be slow."
11062 " Use \"set sysroot\" to access files locally"
11064 warning_issued = 1;
11068 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11071 remote_buffer_add_string (&p, &left, "vFile:open:");
11073 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11074 strlen (filename));
11075 remote_buffer_add_string (&p, &left, ",");
11077 remote_buffer_add_int (&p, &left, flags);
11078 remote_buffer_add_string (&p, &left, ",");
11080 remote_buffer_add_int (&p, &left, mode);
11082 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11083 remote_errno, NULL, NULL);
11086 /* Implementation of to_fileio_pwrite. */
11089 remote_hostio_pwrite (struct target_ops *self,
11090 int fd, const gdb_byte *write_buf, int len,
11091 ULONGEST offset, int *remote_errno)
11093 struct remote_state *rs = get_remote_state ();
11095 int left = get_remote_packet_size ();
11098 readahead_cache_invalidate_fd (fd);
11100 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11102 remote_buffer_add_int (&p, &left, fd);
11103 remote_buffer_add_string (&p, &left, ",");
11105 remote_buffer_add_int (&p, &left, offset);
11106 remote_buffer_add_string (&p, &left, ",");
11108 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11109 get_remote_packet_size () - (p - rs->buf));
11111 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11112 remote_errno, NULL, NULL);
11115 /* Helper for the implementation of to_fileio_pread. Read the file
11116 from the remote side with vFile:pread. */
11119 remote_hostio_pread_vFile (struct target_ops *self,
11120 int fd, gdb_byte *read_buf, int len,
11121 ULONGEST offset, int *remote_errno)
11123 struct remote_state *rs = get_remote_state ();
11126 int left = get_remote_packet_size ();
11127 int ret, attachment_len;
11130 remote_buffer_add_string (&p, &left, "vFile:pread:");
11132 remote_buffer_add_int (&p, &left, fd);
11133 remote_buffer_add_string (&p, &left, ",");
11135 remote_buffer_add_int (&p, &left, len);
11136 remote_buffer_add_string (&p, &left, ",");
11138 remote_buffer_add_int (&p, &left, offset);
11140 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11141 remote_errno, &attachment,
11147 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11149 if (read_len != ret)
11150 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11155 /* Serve pread from the readahead cache. Returns number of bytes
11156 read, or 0 if the request can't be served from the cache. */
11159 remote_hostio_pread_from_cache (struct remote_state *rs,
11160 int fd, gdb_byte *read_buf, size_t len,
11163 struct readahead_cache *cache = &rs->readahead_cache;
11165 if (cache->fd == fd
11166 && cache->offset <= offset
11167 && offset < cache->offset + cache->bufsize)
11169 ULONGEST max = cache->offset + cache->bufsize;
11171 if (offset + len > max)
11172 len = max - offset;
11174 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11181 /* Implementation of to_fileio_pread. */
11184 remote_hostio_pread (struct target_ops *self,
11185 int fd, gdb_byte *read_buf, int len,
11186 ULONGEST offset, int *remote_errno)
11189 struct remote_state *rs = get_remote_state ();
11190 struct readahead_cache *cache = &rs->readahead_cache;
11192 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11195 cache->hit_count++;
11198 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11199 pulongest (cache->hit_count));
11203 cache->miss_count++;
11205 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11206 pulongest (cache->miss_count));
11209 cache->offset = offset;
11210 cache->bufsize = get_remote_packet_size ();
11211 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
11213 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11214 cache->offset, remote_errno);
11217 readahead_cache_invalidate_fd (fd);
11221 cache->bufsize = ret;
11222 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11225 /* Implementation of to_fileio_close. */
11228 remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
11230 struct remote_state *rs = get_remote_state ();
11232 int left = get_remote_packet_size () - 1;
11234 readahead_cache_invalidate_fd (fd);
11236 remote_buffer_add_string (&p, &left, "vFile:close:");
11238 remote_buffer_add_int (&p, &left, fd);
11240 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11241 remote_errno, NULL, NULL);
11244 /* Implementation of to_fileio_unlink. */
11247 remote_hostio_unlink (struct target_ops *self,
11248 struct inferior *inf, const char *filename,
11251 struct remote_state *rs = get_remote_state ();
11253 int left = get_remote_packet_size () - 1;
11255 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11258 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11260 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11261 strlen (filename));
11263 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11264 remote_errno, NULL, NULL);
11267 /* Implementation of to_fileio_readlink. */
11270 remote_hostio_readlink (struct target_ops *self,
11271 struct inferior *inf, const char *filename,
11274 struct remote_state *rs = get_remote_state ();
11277 int left = get_remote_packet_size ();
11278 int len, attachment_len;
11282 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11285 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11287 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11288 strlen (filename));
11290 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11291 remote_errno, &attachment,
11297 ret = (char *) xmalloc (len + 1);
11299 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11300 (gdb_byte *) ret, len);
11301 if (read_len != len)
11302 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11308 /* Implementation of to_fileio_fstat. */
11311 remote_hostio_fstat (struct target_ops *self,
11312 int fd, struct stat *st,
11315 struct remote_state *rs = get_remote_state ();
11317 int left = get_remote_packet_size ();
11318 int attachment_len, ret;
11320 struct fio_stat fst;
11323 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11325 remote_buffer_add_int (&p, &left, fd);
11327 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11328 remote_errno, &attachment,
11332 if (*remote_errno != FILEIO_ENOSYS)
11335 /* Strictly we should return -1, ENOSYS here, but when
11336 "set sysroot remote:" was implemented in August 2008
11337 BFD's need for a stat function was sidestepped with
11338 this hack. This was not remedied until March 2015
11339 so we retain the previous behavior to avoid breaking
11342 Note that the memset is a March 2015 addition; older
11343 GDBs set st_size *and nothing else* so the structure
11344 would have garbage in all other fields. This might
11345 break something but retaining the previous behavior
11346 here would be just too wrong. */
11348 memset (st, 0, sizeof (struct stat));
11349 st->st_size = INT_MAX;
11353 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11354 (gdb_byte *) &fst, sizeof (fst));
11356 if (read_len != ret)
11357 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11359 if (read_len != sizeof (fst))
11360 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11361 read_len, (int) sizeof (fst));
11363 remote_fileio_to_host_stat (&fst, st);
11368 /* Implementation of to_filesystem_is_local. */
11371 remote_filesystem_is_local (struct target_ops *self)
11373 /* Valgrind GDB presents itself as a remote target but works
11374 on the local filesystem: it does not implement remote get
11375 and users are not expected to set a sysroot. To handle
11376 this case we treat the remote filesystem as local if the
11377 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11378 does not support vFile:open. */
11379 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
11381 enum packet_support ps = packet_support (PACKET_vFile_open);
11383 if (ps == PACKET_SUPPORT_UNKNOWN)
11385 int fd, remote_errno;
11387 /* Try opening a file to probe support. The supplied
11388 filename is irrelevant, we only care about whether
11389 the stub recognizes the packet or not. */
11390 fd = remote_hostio_open (self, NULL, "just probing",
11391 FILEIO_O_RDONLY, 0700, 0,
11395 remote_hostio_close (self, fd, &remote_errno);
11397 ps = packet_support (PACKET_vFile_open);
11400 if (ps == PACKET_DISABLE)
11402 static int warning_issued = 0;
11404 if (!warning_issued)
11406 warning (_("remote target does not support file"
11407 " transfer, attempting to access files"
11408 " from local filesystem."));
11409 warning_issued = 1;
11420 remote_fileio_errno_to_host (int errnum)
11426 case FILEIO_ENOENT:
11434 case FILEIO_EACCES:
11436 case FILEIO_EFAULT:
11440 case FILEIO_EEXIST:
11442 case FILEIO_ENODEV:
11444 case FILEIO_ENOTDIR:
11446 case FILEIO_EISDIR:
11448 case FILEIO_EINVAL:
11450 case FILEIO_ENFILE:
11452 case FILEIO_EMFILE:
11456 case FILEIO_ENOSPC:
11458 case FILEIO_ESPIPE:
11462 case FILEIO_ENOSYS:
11464 case FILEIO_ENAMETOOLONG:
11465 return ENAMETOOLONG;
11471 remote_hostio_error (int errnum)
11473 int host_error = remote_fileio_errno_to_host (errnum);
11475 if (host_error == -1)
11476 error (_("Unknown remote I/O error %d"), errnum);
11478 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11482 remote_hostio_close_cleanup (void *opaque)
11484 int fd = *(int *) opaque;
11487 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
11491 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11493 struct cleanup *back_to, *close_cleanup;
11494 int retcode, fd, remote_errno, bytes, io_size;
11497 int bytes_in_buffer;
11500 struct remote_state *rs = get_remote_state ();
11502 if (!rs->remote_desc)
11503 error (_("command can only be used with remote target"));
11505 file = gdb_fopen_cloexec (local_file, "rb");
11507 perror_with_name (local_file);
11508 back_to = make_cleanup_fclose (file);
11510 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11511 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
11513 0700, 0, &remote_errno);
11515 remote_hostio_error (remote_errno);
11517 /* Send up to this many bytes at once. They won't all fit in the
11518 remote packet limit, so we'll transfer slightly fewer. */
11519 io_size = get_remote_packet_size ();
11520 buffer = (gdb_byte *) xmalloc (io_size);
11521 make_cleanup (xfree, buffer);
11523 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11525 bytes_in_buffer = 0;
11528 while (bytes_in_buffer || !saw_eof)
11532 bytes = fread (buffer + bytes_in_buffer, 1,
11533 io_size - bytes_in_buffer,
11538 error (_("Error reading %s."), local_file);
11541 /* EOF. Unless there is something still in the
11542 buffer from the last iteration, we are done. */
11544 if (bytes_in_buffer == 0)
11552 bytes += bytes_in_buffer;
11553 bytes_in_buffer = 0;
11555 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11557 offset, &remote_errno);
11560 remote_hostio_error (remote_errno);
11561 else if (retcode == 0)
11562 error (_("Remote write of %d bytes returned 0!"), bytes);
11563 else if (retcode < bytes)
11565 /* Short write. Save the rest of the read data for the next
11567 bytes_in_buffer = bytes - retcode;
11568 memmove (buffer, buffer + retcode, bytes_in_buffer);
11574 discard_cleanups (close_cleanup);
11575 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11576 remote_hostio_error (remote_errno);
11579 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
11580 do_cleanups (back_to);
11584 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
11586 struct cleanup *back_to, *close_cleanup;
11587 int fd, remote_errno, bytes, io_size;
11591 struct remote_state *rs = get_remote_state ();
11593 if (!rs->remote_desc)
11594 error (_("command can only be used with remote target"));
11596 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11597 remote_file, FILEIO_O_RDONLY, 0, 0,
11600 remote_hostio_error (remote_errno);
11602 file = gdb_fopen_cloexec (local_file, "wb");
11604 perror_with_name (local_file);
11605 back_to = make_cleanup_fclose (file);
11607 /* Send up to this many bytes at once. They won't all fit in the
11608 remote packet limit, so we'll transfer slightly fewer. */
11609 io_size = get_remote_packet_size ();
11610 buffer = (gdb_byte *) xmalloc (io_size);
11611 make_cleanup (xfree, buffer);
11613 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11618 bytes = remote_hostio_pread (find_target_at (process_stratum),
11619 fd, buffer, io_size, offset, &remote_errno);
11621 /* Success, but no bytes, means end-of-file. */
11624 remote_hostio_error (remote_errno);
11628 bytes = fwrite (buffer, 1, bytes, file);
11630 perror_with_name (local_file);
11633 discard_cleanups (close_cleanup);
11634 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11635 remote_hostio_error (remote_errno);
11638 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
11639 do_cleanups (back_to);
11643 remote_file_delete (const char *remote_file, int from_tty)
11645 int retcode, remote_errno;
11646 struct remote_state *rs = get_remote_state ();
11648 if (!rs->remote_desc)
11649 error (_("command can only be used with remote target"));
11651 retcode = remote_hostio_unlink (find_target_at (process_stratum),
11652 NULL, remote_file, &remote_errno);
11654 remote_hostio_error (remote_errno);
11657 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
11661 remote_put_command (char *args, int from_tty)
11663 struct cleanup *back_to;
11667 error_no_arg (_("file to put"));
11669 argv = gdb_buildargv (args);
11670 back_to = make_cleanup_freeargv (argv);
11671 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11672 error (_("Invalid parameters to remote put"));
11674 remote_file_put (argv[0], argv[1], from_tty);
11676 do_cleanups (back_to);
11680 remote_get_command (char *args, int from_tty)
11682 struct cleanup *back_to;
11686 error_no_arg (_("file to get"));
11688 argv = gdb_buildargv (args);
11689 back_to = make_cleanup_freeargv (argv);
11690 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11691 error (_("Invalid parameters to remote get"));
11693 remote_file_get (argv[0], argv[1], from_tty);
11695 do_cleanups (back_to);
11699 remote_delete_command (char *args, int from_tty)
11701 struct cleanup *back_to;
11705 error_no_arg (_("file to delete"));
11707 argv = gdb_buildargv (args);
11708 back_to = make_cleanup_freeargv (argv);
11709 if (argv[0] == NULL || argv[1] != NULL)
11710 error (_("Invalid parameters to remote delete"));
11712 remote_file_delete (argv[0], from_tty);
11714 do_cleanups (back_to);
11718 remote_command (char *args, int from_tty)
11720 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
11724 remote_can_execute_reverse (struct target_ops *self)
11726 if (packet_support (PACKET_bs) == PACKET_ENABLE
11727 || packet_support (PACKET_bc) == PACKET_ENABLE)
11734 remote_supports_non_stop (struct target_ops *self)
11740 remote_supports_disable_randomization (struct target_ops *self)
11742 /* Only supported in extended mode. */
11747 remote_supports_multi_process (struct target_ops *self)
11749 struct remote_state *rs = get_remote_state ();
11751 return remote_multi_process_p (rs);
11755 remote_supports_cond_tracepoints (void)
11757 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
11761 remote_supports_cond_breakpoints (struct target_ops *self)
11763 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
11767 remote_supports_fast_tracepoints (void)
11769 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
11773 remote_supports_static_tracepoints (void)
11775 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
11779 remote_supports_install_in_trace (void)
11781 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
11785 remote_supports_enable_disable_tracepoint (struct target_ops *self)
11787 return (packet_support (PACKET_EnableDisableTracepoints_feature)
11792 remote_supports_string_tracing (struct target_ops *self)
11794 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
11798 remote_can_run_breakpoint_commands (struct target_ops *self)
11800 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
11804 remote_trace_init (struct target_ops *self)
11807 remote_get_noisy_reply (&target_buf, &target_buf_size);
11808 if (strcmp (target_buf, "OK") != 0)
11809 error (_("Target does not support this command."));
11812 static void free_actions_list (char **actions_list);
11813 static void free_actions_list_cleanup_wrapper (void *);
11815 free_actions_list_cleanup_wrapper (void *al)
11817 free_actions_list ((char **) al);
11821 free_actions_list (char **actions_list)
11825 if (actions_list == 0)
11828 for (ndx = 0; actions_list[ndx]; ndx++)
11829 xfree (actions_list[ndx]);
11831 xfree (actions_list);
11834 /* Recursive routine to walk through command list including loops, and
11835 download packets for each command. */
11838 remote_download_command_source (int num, ULONGEST addr,
11839 struct command_line *cmds)
11841 struct remote_state *rs = get_remote_state ();
11842 struct command_line *cmd;
11844 for (cmd = cmds; cmd; cmd = cmd->next)
11846 QUIT; /* Allow user to bail out with ^C. */
11847 strcpy (rs->buf, "QTDPsrc:");
11848 encode_source_string (num, addr, "cmd", cmd->line,
11849 rs->buf + strlen (rs->buf),
11850 rs->buf_size - strlen (rs->buf));
11852 remote_get_noisy_reply (&target_buf, &target_buf_size);
11853 if (strcmp (target_buf, "OK"))
11854 warning (_("Target does not support source download."));
11856 if (cmd->control_type == while_control
11857 || cmd->control_type == while_stepping_control)
11859 remote_download_command_source (num, addr, *cmd->body_list);
11861 QUIT; /* Allow user to bail out with ^C. */
11862 strcpy (rs->buf, "QTDPsrc:");
11863 encode_source_string (num, addr, "cmd", "end",
11864 rs->buf + strlen (rs->buf),
11865 rs->buf_size - strlen (rs->buf));
11867 remote_get_noisy_reply (&target_buf, &target_buf_size);
11868 if (strcmp (target_buf, "OK"))
11869 warning (_("Target does not support source download."));
11875 remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
11877 #define BUF_SIZE 2048
11881 char buf[BUF_SIZE];
11882 char **tdp_actions;
11883 char **stepping_actions;
11885 struct cleanup *old_chain = NULL;
11886 struct agent_expr *aexpr;
11887 struct cleanup *aexpr_chain = NULL;
11889 struct breakpoint *b = loc->owner;
11890 struct tracepoint *t = (struct tracepoint *) b;
11892 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
11893 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
11895 (void) make_cleanup (free_actions_list_cleanup_wrapper,
11898 tpaddr = loc->address;
11899 sprintf_vma (addrbuf, tpaddr);
11900 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
11901 addrbuf, /* address */
11902 (b->enable_state == bp_enabled ? 'E' : 'D'),
11903 t->step_count, t->pass_count);
11904 /* Fast tracepoints are mostly handled by the target, but we can
11905 tell the target how big of an instruction block should be moved
11907 if (b->type == bp_fast_tracepoint)
11909 /* Only test for support at download time; we may not know
11910 target capabilities at definition time. */
11911 if (remote_supports_fast_tracepoints ())
11913 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
11915 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
11916 gdb_insn_length (loc->gdbarch, tpaddr));
11918 /* If it passed validation at definition but fails now,
11919 something is very wrong. */
11920 internal_error (__FILE__, __LINE__,
11921 _("Fast tracepoint not "
11922 "valid during download"));
11925 /* Fast tracepoints are functionally identical to regular
11926 tracepoints, so don't take lack of support as a reason to
11927 give up on the trace run. */
11928 warning (_("Target does not support fast tracepoints, "
11929 "downloading %d as regular tracepoint"), b->number);
11931 else if (b->type == bp_static_tracepoint)
11933 /* Only test for support at download time; we may not know
11934 target capabilities at definition time. */
11935 if (remote_supports_static_tracepoints ())
11937 struct static_tracepoint_marker marker;
11939 if (target_static_tracepoint_marker_at (tpaddr, &marker))
11940 strcat (buf, ":S");
11942 error (_("Static tracepoint not valid during download"));
11945 /* Fast tracepoints are functionally identical to regular
11946 tracepoints, so don't take lack of support as a reason
11947 to give up on the trace run. */
11948 error (_("Target does not support static tracepoints"));
11950 /* If the tracepoint has a conditional, make it into an agent
11951 expression and append to the definition. */
11954 /* Only test support at download time, we may not know target
11955 capabilities at definition time. */
11956 if (remote_supports_cond_tracepoints ())
11958 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
11959 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
11960 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
11962 pkt = buf + strlen (buf);
11963 for (ndx = 0; ndx < aexpr->len; ++ndx)
11964 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
11966 do_cleanups (aexpr_chain);
11969 warning (_("Target does not support conditional tracepoints, "
11970 "ignoring tp %d cond"), b->number);
11973 if (b->commands || *default_collect)
11976 remote_get_noisy_reply (&target_buf, &target_buf_size);
11977 if (strcmp (target_buf, "OK"))
11978 error (_("Target does not support tracepoints."));
11980 /* do_single_steps (t); */
11983 for (ndx = 0; tdp_actions[ndx]; ndx++)
11985 QUIT; /* Allow user to bail out with ^C. */
11986 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
11987 b->number, addrbuf, /* address */
11989 ((tdp_actions[ndx + 1] || stepping_actions)
11992 remote_get_noisy_reply (&target_buf,
11994 if (strcmp (target_buf, "OK"))
11995 error (_("Error on target while setting tracepoints."));
11998 if (stepping_actions)
12000 for (ndx = 0; stepping_actions[ndx]; ndx++)
12002 QUIT; /* Allow user to bail out with ^C. */
12003 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12004 b->number, addrbuf, /* address */
12005 ((ndx == 0) ? "S" : ""),
12006 stepping_actions[ndx],
12007 (stepping_actions[ndx + 1] ? "-" : ""));
12009 remote_get_noisy_reply (&target_buf,
12011 if (strcmp (target_buf, "OK"))
12012 error (_("Error on target while setting tracepoints."));
12016 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
12018 if (b->location != NULL)
12020 strcpy (buf, "QTDPsrc:");
12021 encode_source_string (b->number, loc->address, "at",
12022 event_location_to_string (b->location),
12023 buf + strlen (buf), 2048 - strlen (buf));
12025 remote_get_noisy_reply (&target_buf, &target_buf_size);
12026 if (strcmp (target_buf, "OK"))
12027 warning (_("Target does not support source download."));
12029 if (b->cond_string)
12031 strcpy (buf, "QTDPsrc:");
12032 encode_source_string (b->number, loc->address,
12033 "cond", b->cond_string, buf + strlen (buf),
12034 2048 - strlen (buf));
12036 remote_get_noisy_reply (&target_buf, &target_buf_size);
12037 if (strcmp (target_buf, "OK"))
12038 warning (_("Target does not support source download."));
12040 remote_download_command_source (b->number, loc->address,
12041 breakpoint_commands (b));
12044 do_cleanups (old_chain);
12048 remote_can_download_tracepoint (struct target_ops *self)
12050 struct remote_state *rs = get_remote_state ();
12051 struct trace_status *ts;
12054 /* Don't try to install tracepoints until we've relocated our
12055 symbols, and fetched and merged the target's tracepoint list with
12057 if (rs->starting_up)
12060 ts = current_trace_status ();
12061 status = remote_get_trace_status (self, ts);
12063 if (status == -1 || !ts->running_known || !ts->running)
12066 /* If we are in a tracing experiment, but remote stub doesn't support
12067 installing tracepoint in trace, we have to return. */
12068 if (!remote_supports_install_in_trace ())
12076 remote_download_trace_state_variable (struct target_ops *self,
12077 struct trace_state_variable *tsv)
12079 struct remote_state *rs = get_remote_state ();
12082 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12083 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12085 p = rs->buf + strlen (rs->buf);
12086 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12087 error (_("Trace state variable name too long for tsv definition packet"));
12088 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
12091 remote_get_noisy_reply (&target_buf, &target_buf_size);
12092 if (*target_buf == '\0')
12093 error (_("Target does not support this command."));
12094 if (strcmp (target_buf, "OK") != 0)
12095 error (_("Error on target while downloading trace state variable."));
12099 remote_enable_tracepoint (struct target_ops *self,
12100 struct bp_location *location)
12102 struct remote_state *rs = get_remote_state ();
12105 sprintf_vma (addr_buf, location->address);
12106 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12107 location->owner->number, addr_buf);
12109 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12110 if (*rs->buf == '\0')
12111 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12112 if (strcmp (rs->buf, "OK") != 0)
12113 error (_("Error on target while enabling tracepoint."));
12117 remote_disable_tracepoint (struct target_ops *self,
12118 struct bp_location *location)
12120 struct remote_state *rs = get_remote_state ();
12123 sprintf_vma (addr_buf, location->address);
12124 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12125 location->owner->number, addr_buf);
12127 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12128 if (*rs->buf == '\0')
12129 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12130 if (strcmp (rs->buf, "OK") != 0)
12131 error (_("Error on target while disabling tracepoint."));
12135 remote_trace_set_readonly_regions (struct target_ops *self)
12139 bfd_size_type size;
12145 return; /* No information to give. */
12147 strcpy (target_buf, "QTro");
12148 offset = strlen (target_buf);
12149 for (s = exec_bfd->sections; s; s = s->next)
12151 char tmp1[40], tmp2[40];
12154 if ((s->flags & SEC_LOAD) == 0 ||
12155 /* (s->flags & SEC_CODE) == 0 || */
12156 (s->flags & SEC_READONLY) == 0)
12160 vma = bfd_get_section_vma (abfd, s);
12161 size = bfd_get_section_size (s);
12162 sprintf_vma (tmp1, vma);
12163 sprintf_vma (tmp2, vma + size);
12164 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
12165 if (offset + sec_length + 1 > target_buf_size)
12167 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
12169 Too many sections for read-only sections definition packet."));
12172 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
12174 offset += sec_length;
12178 putpkt (target_buf);
12179 getpkt (&target_buf, &target_buf_size, 0);
12184 remote_trace_start (struct target_ops *self)
12186 putpkt ("QTStart");
12187 remote_get_noisy_reply (&target_buf, &target_buf_size);
12188 if (*target_buf == '\0')
12189 error (_("Target does not support this command."));
12190 if (strcmp (target_buf, "OK") != 0)
12191 error (_("Bogus reply from target: %s"), target_buf);
12195 remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
12197 /* Initialize it just to avoid a GCC false warning. */
12199 /* FIXME we need to get register block size some other way. */
12200 extern int trace_regblock_size;
12201 enum packet_result result;
12203 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
12206 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
12208 putpkt ("qTStatus");
12212 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
12214 CATCH (ex, RETURN_MASK_ERROR)
12216 if (ex.error != TARGET_CLOSE_ERROR)
12218 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12221 throw_exception (ex);
12225 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12227 /* If the remote target doesn't do tracing, flag it. */
12228 if (result == PACKET_UNKNOWN)
12231 /* We're working with a live target. */
12232 ts->filename = NULL;
12235 error (_("Bogus trace status reply from target: %s"), target_buf);
12237 /* Function 'parse_trace_status' sets default value of each field of
12238 'ts' at first, so we don't have to do it here. */
12239 parse_trace_status (p, ts);
12241 return ts->running;
12245 remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
12246 struct uploaded_tp *utp)
12248 struct remote_state *rs = get_remote_state ();
12250 struct bp_location *loc;
12251 struct tracepoint *tp = (struct tracepoint *) bp;
12252 size_t size = get_remote_packet_size ();
12256 tp->base.hit_count = 0;
12257 tp->traceframe_usage = 0;
12258 for (loc = tp->base.loc; loc; loc = loc->next)
12260 /* If the tracepoint was never downloaded, don't go asking for
12262 if (tp->number_on_target == 0)
12264 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12265 phex_nz (loc->address, 0));
12267 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12268 if (reply && *reply)
12271 parse_tracepoint_status (reply + 1, bp, utp);
12277 utp->hit_count = 0;
12278 utp->traceframe_usage = 0;
12279 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12280 phex_nz (utp->addr, 0));
12282 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12283 if (reply && *reply)
12286 parse_tracepoint_status (reply + 1, bp, utp);
12292 remote_trace_stop (struct target_ops *self)
12295 remote_get_noisy_reply (&target_buf, &target_buf_size);
12296 if (*target_buf == '\0')
12297 error (_("Target does not support this command."));
12298 if (strcmp (target_buf, "OK") != 0)
12299 error (_("Bogus reply from target: %s"), target_buf);
12303 remote_trace_find (struct target_ops *self,
12304 enum trace_find_type type, int num,
12305 CORE_ADDR addr1, CORE_ADDR addr2,
12308 struct remote_state *rs = get_remote_state ();
12309 char *endbuf = rs->buf + get_remote_packet_size ();
12311 int target_frameno = -1, target_tracept = -1;
12313 /* Lookups other than by absolute frame number depend on the current
12314 trace selected, so make sure it is correct on the remote end
12316 if (type != tfind_number)
12317 set_remote_traceframe ();
12320 strcpy (p, "QTFrame:");
12321 p = strchr (p, '\0');
12325 xsnprintf (p, endbuf - p, "%x", num);
12328 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
12331 xsnprintf (p, endbuf - p, "tdp:%x", num);
12334 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12335 phex_nz (addr2, 0));
12337 case tfind_outside:
12338 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12339 phex_nz (addr2, 0));
12342 error (_("Unknown trace find type %d"), type);
12346 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
12347 if (*reply == '\0')
12348 error (_("Target does not support this command."));
12350 while (reply && *reply)
12355 target_frameno = (int) strtol (p, &reply, 16);
12357 error (_("Unable to parse trace frame number"));
12358 /* Don't update our remote traceframe number cache on failure
12359 to select a remote traceframe. */
12360 if (target_frameno == -1)
12365 target_tracept = (int) strtol (p, &reply, 16);
12367 error (_("Unable to parse tracepoint number"));
12369 case 'O': /* "OK"? */
12370 if (reply[1] == 'K' && reply[2] == '\0')
12373 error (_("Bogus reply from target: %s"), reply);
12376 error (_("Bogus reply from target: %s"), reply);
12379 *tpp = target_tracept;
12381 rs->remote_traceframe_number = target_frameno;
12382 return target_frameno;
12386 remote_get_trace_state_variable_value (struct target_ops *self,
12387 int tsvnum, LONGEST *val)
12389 struct remote_state *rs = get_remote_state ();
12393 set_remote_traceframe ();
12395 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
12397 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12398 if (reply && *reply)
12402 unpack_varlen_hex (reply + 1, &uval);
12403 *val = (LONGEST) uval;
12411 remote_save_trace_data (struct target_ops *self, const char *filename)
12413 struct remote_state *rs = get_remote_state ();
12417 strcpy (p, "QTSave:");
12419 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12420 error (_("Remote file name too long for trace save packet"));
12421 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
12424 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12425 if (*reply == '\0')
12426 error (_("Target does not support this command."));
12427 if (strcmp (reply, "OK") != 0)
12428 error (_("Bogus reply from target: %s"), reply);
12432 /* This is basically a memory transfer, but needs to be its own packet
12433 because we don't know how the target actually organizes its trace
12434 memory, plus we want to be able to ask for as much as possible, but
12435 not be unhappy if we don't get as much as we ask for. */
12438 remote_get_raw_trace_data (struct target_ops *self,
12439 gdb_byte *buf, ULONGEST offset, LONGEST len)
12441 struct remote_state *rs = get_remote_state ();
12447 strcpy (p, "qTBuffer:");
12449 p += hexnumstr (p, offset);
12451 p += hexnumstr (p, len);
12455 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12456 if (reply && *reply)
12458 /* 'l' by itself means we're at the end of the buffer and
12459 there is nothing more to get. */
12463 /* Convert the reply into binary. Limit the number of bytes to
12464 convert according to our passed-in buffer size, rather than
12465 what was returned in the packet; if the target is
12466 unexpectedly generous and gives us a bigger reply than we
12467 asked for, we don't want to crash. */
12468 rslt = hex2bin (target_buf, buf, len);
12472 /* Something went wrong, flag as an error. */
12477 remote_set_disconnected_tracing (struct target_ops *self, int val)
12479 struct remote_state *rs = get_remote_state ();
12481 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
12485 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
12487 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12488 if (*reply == '\0')
12489 error (_("Target does not support this command."));
12490 if (strcmp (reply, "OK") != 0)
12491 error (_("Bogus reply from target: %s"), reply);
12494 warning (_("Target does not support disconnected tracing."));
12498 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12500 struct thread_info *info = find_thread_ptid (ptid);
12502 if (info && info->priv)
12503 return info->priv->core;
12508 remote_set_circular_trace_buffer (struct target_ops *self, int val)
12510 struct remote_state *rs = get_remote_state ();
12513 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
12515 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12516 if (*reply == '\0')
12517 error (_("Target does not support this command."));
12518 if (strcmp (reply, "OK") != 0)
12519 error (_("Bogus reply from target: %s"), reply);
12522 static struct traceframe_info *
12523 remote_traceframe_info (struct target_ops *self)
12527 text = target_read_stralloc (¤t_target,
12528 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12531 struct traceframe_info *info;
12532 struct cleanup *back_to = make_cleanup (xfree, text);
12534 info = parse_traceframe_info (text);
12535 do_cleanups (back_to);
12542 /* Handle the qTMinFTPILen packet. Returns the minimum length of
12543 instruction on which a fast tracepoint may be placed. Returns -1
12544 if the packet is not supported, and 0 if the minimum instruction
12545 length is unknown. */
12548 remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
12550 struct remote_state *rs = get_remote_state ();
12553 /* If we're not debugging a process yet, the IPA can't be
12555 if (!target_has_execution)
12558 /* Make sure the remote is pointing at the right process. */
12559 set_general_process ();
12561 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
12563 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12564 if (*reply == '\0')
12568 ULONGEST min_insn_len;
12570 unpack_varlen_hex (reply, &min_insn_len);
12572 return (int) min_insn_len;
12577 remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
12579 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
12581 struct remote_state *rs = get_remote_state ();
12582 char *buf = rs->buf;
12583 char *endbuf = rs->buf + get_remote_packet_size ();
12584 enum packet_result result;
12586 gdb_assert (val >= 0 || val == -1);
12587 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12588 /* Send -1 as literal "-1" to avoid host size dependency. */
12592 buf += hexnumstr (buf, (ULONGEST) -val);
12595 buf += hexnumstr (buf, (ULONGEST) val);
12598 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12599 result = packet_ok (rs->buf,
12600 &remote_protocol_packets[PACKET_QTBuffer_size]);
12602 if (result != PACKET_OK)
12603 warning (_("Bogus reply from target: %s"), rs->buf);
12608 remote_set_trace_notes (struct target_ops *self,
12609 const char *user, const char *notes,
12610 const char *stop_notes)
12612 struct remote_state *rs = get_remote_state ();
12614 char *buf = rs->buf;
12615 char *endbuf = rs->buf + get_remote_packet_size ();
12618 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
12621 buf += xsnprintf (buf, endbuf - buf, "user:");
12622 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
12628 buf += xsnprintf (buf, endbuf - buf, "notes:");
12629 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
12635 buf += xsnprintf (buf, endbuf - buf, "tstop:");
12636 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
12640 /* Ensure the buffer is terminated. */
12644 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12645 if (*reply == '\0')
12648 if (strcmp (reply, "OK") != 0)
12649 error (_("Bogus reply from target: %s"), reply);
12655 remote_use_agent (struct target_ops *self, int use)
12657 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
12659 struct remote_state *rs = get_remote_state ();
12661 /* If the stub supports QAgent. */
12662 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
12664 getpkt (&rs->buf, &rs->buf_size, 0);
12666 if (strcmp (rs->buf, "OK") == 0)
12677 remote_can_use_agent (struct target_ops *self)
12679 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
12682 struct btrace_target_info
12684 /* The ptid of the traced thread. */
12687 /* The obtained branch trace configuration. */
12688 struct btrace_config conf;
12691 /* Reset our idea of our target's btrace configuration. */
12694 remote_btrace_reset (void)
12696 struct remote_state *rs = get_remote_state ();
12698 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
12701 /* Check whether the target supports branch tracing. */
12704 remote_supports_btrace (struct target_ops *self, enum btrace_format format)
12706 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
12708 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
12713 case BTRACE_FORMAT_NONE:
12716 case BTRACE_FORMAT_BTS:
12717 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
12719 case BTRACE_FORMAT_PT:
12720 /* The trace is decoded on the host. Even if our target supports it,
12721 we still need to have libipt to decode the trace. */
12722 #if defined (HAVE_LIBIPT)
12723 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
12724 #else /* !defined (HAVE_LIBIPT) */
12726 #endif /* !defined (HAVE_LIBIPT) */
12729 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
12732 /* Synchronize the configuration with the target. */
12735 btrace_sync_conf (const struct btrace_config *conf)
12737 struct packet_config *packet;
12738 struct remote_state *rs;
12739 char *buf, *pos, *endbuf;
12741 rs = get_remote_state ();
12743 endbuf = buf + get_remote_packet_size ();
12745 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
12746 if (packet_config_support (packet) == PACKET_ENABLE
12747 && conf->bts.size != rs->btrace_config.bts.size)
12750 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12754 getpkt (&buf, &rs->buf_size, 0);
12756 if (packet_ok (buf, packet) == PACKET_ERROR)
12758 if (buf[0] == 'E' && buf[1] == '.')
12759 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
12761 error (_("Failed to configure the BTS buffer size."));
12764 rs->btrace_config.bts.size = conf->bts.size;
12767 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
12768 if (packet_config_support (packet) == PACKET_ENABLE
12769 && conf->pt.size != rs->btrace_config.pt.size)
12772 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12776 getpkt (&buf, &rs->buf_size, 0);
12778 if (packet_ok (buf, packet) == PACKET_ERROR)
12780 if (buf[0] == 'E' && buf[1] == '.')
12781 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
12783 error (_("Failed to configure the trace buffer size."));
12786 rs->btrace_config.pt.size = conf->pt.size;
12790 /* Read the current thread's btrace configuration from the target and
12791 store it into CONF. */
12794 btrace_read_config (struct btrace_config *conf)
12798 xml = target_read_stralloc (¤t_target,
12799 TARGET_OBJECT_BTRACE_CONF, "");
12802 struct cleanup *cleanup;
12804 cleanup = make_cleanup (xfree, xml);
12805 parse_xml_btrace_conf (conf, xml);
12806 do_cleanups (cleanup);
12810 /* Enable branch tracing. */
12812 static struct btrace_target_info *
12813 remote_enable_btrace (struct target_ops *self, ptid_t ptid,
12814 const struct btrace_config *conf)
12816 struct btrace_target_info *tinfo = NULL;
12817 struct packet_config *packet = NULL;
12818 struct remote_state *rs = get_remote_state ();
12819 char *buf = rs->buf;
12820 char *endbuf = rs->buf + get_remote_packet_size ();
12822 switch (conf->format)
12824 case BTRACE_FORMAT_BTS:
12825 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
12828 case BTRACE_FORMAT_PT:
12829 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
12833 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
12834 error (_("Target does not support branch tracing."));
12836 btrace_sync_conf (conf);
12838 set_general_thread (ptid);
12840 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12842 getpkt (&rs->buf, &rs->buf_size, 0);
12844 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12846 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12847 error (_("Could not enable branch tracing for %s: %s"),
12848 target_pid_to_str (ptid), rs->buf + 2);
12850 error (_("Could not enable branch tracing for %s."),
12851 target_pid_to_str (ptid));
12854 tinfo = XCNEW (struct btrace_target_info);
12855 tinfo->ptid = ptid;
12857 /* If we fail to read the configuration, we lose some information, but the
12858 tracing itself is not impacted. */
12861 btrace_read_config (&tinfo->conf);
12863 CATCH (err, RETURN_MASK_ERROR)
12865 if (err.message != NULL)
12866 warning ("%s", err.message);
12873 /* Disable branch tracing. */
12876 remote_disable_btrace (struct target_ops *self,
12877 struct btrace_target_info *tinfo)
12879 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
12880 struct remote_state *rs = get_remote_state ();
12881 char *buf = rs->buf;
12882 char *endbuf = rs->buf + get_remote_packet_size ();
12884 if (packet_config_support (packet) != PACKET_ENABLE)
12885 error (_("Target does not support branch tracing."));
12887 set_general_thread (tinfo->ptid);
12889 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12891 getpkt (&rs->buf, &rs->buf_size, 0);
12893 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12895 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12896 error (_("Could not disable branch tracing for %s: %s"),
12897 target_pid_to_str (tinfo->ptid), rs->buf + 2);
12899 error (_("Could not disable branch tracing for %s."),
12900 target_pid_to_str (tinfo->ptid));
12906 /* Teardown branch tracing. */
12909 remote_teardown_btrace (struct target_ops *self,
12910 struct btrace_target_info *tinfo)
12912 /* We must not talk to the target during teardown. */
12916 /* Read the branch trace. */
12918 static enum btrace_error
12919 remote_read_btrace (struct target_ops *self,
12920 struct btrace_data *btrace,
12921 struct btrace_target_info *tinfo,
12922 enum btrace_read_type type)
12924 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
12925 struct remote_state *rs = get_remote_state ();
12926 struct cleanup *cleanup;
12930 if (packet_config_support (packet) != PACKET_ENABLE)
12931 error (_("Target does not support branch tracing."));
12933 #if !defined(HAVE_LIBEXPAT)
12934 error (_("Cannot process branch tracing result. XML parsing not supported."));
12939 case BTRACE_READ_ALL:
12942 case BTRACE_READ_NEW:
12945 case BTRACE_READ_DELTA:
12949 internal_error (__FILE__, __LINE__,
12950 _("Bad branch tracing read type: %u."),
12951 (unsigned int) type);
12954 xml = target_read_stralloc (¤t_target,
12955 TARGET_OBJECT_BTRACE, annex);
12957 return BTRACE_ERR_UNKNOWN;
12959 cleanup = make_cleanup (xfree, xml);
12960 parse_xml_btrace (btrace, xml);
12961 do_cleanups (cleanup);
12963 return BTRACE_ERR_NONE;
12966 static const struct btrace_config *
12967 remote_btrace_conf (struct target_ops *self,
12968 const struct btrace_target_info *tinfo)
12970 return &tinfo->conf;
12974 remote_augmented_libraries_svr4_read (struct target_ops *self)
12976 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
12980 /* Implementation of to_load. */
12983 remote_load (struct target_ops *self, const char *name, int from_tty)
12985 generic_load (name, from_tty);
12988 /* Accepts an integer PID; returns a string representing a file that
12989 can be opened on the remote side to get the symbols for the child
12990 process. Returns NULL if the operation is not supported. */
12993 remote_pid_to_exec_file (struct target_ops *self, int pid)
12995 static char *filename = NULL;
12996 struct inferior *inf;
12997 char *annex = NULL;
12999 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13002 if (filename != NULL)
13005 inf = find_inferior_pid (pid);
13007 internal_error (__FILE__, __LINE__,
13008 _("not currently attached to process %d"), pid);
13010 if (!inf->fake_pid_p)
13012 const int annex_size = 9;
13014 annex = (char *) alloca (annex_size);
13015 xsnprintf (annex, annex_size, "%x", pid);
13018 filename = target_read_stralloc (¤t_target,
13019 TARGET_OBJECT_EXEC_FILE, annex);
13024 /* Implement the to_can_do_single_step target_ops method. */
13027 remote_can_do_single_step (struct target_ops *ops)
13029 /* We can only tell whether target supports single step or not by
13030 supported s and S vCont actions if the stub supports vContSupported
13031 feature. If the stub doesn't support vContSupported feature,
13032 we have conservatively to think target doesn't supports single
13034 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13036 struct remote_state *rs = get_remote_state ();
13038 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13039 remote_vcont_probe (rs);
13041 return rs->supports_vCont.s && rs->supports_vCont.S;
13048 init_remote_ops (void)
13050 remote_ops.to_shortname = "remote";
13051 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
13052 remote_ops.to_doc =
13053 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13054 Specify the serial device it is connected to\n\
13055 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
13056 remote_ops.to_open = remote_open;
13057 remote_ops.to_close = remote_close;
13058 remote_ops.to_detach = remote_detach;
13059 remote_ops.to_disconnect = remote_disconnect;
13060 remote_ops.to_resume = remote_resume;
13061 remote_ops.to_wait = remote_wait;
13062 remote_ops.to_fetch_registers = remote_fetch_registers;
13063 remote_ops.to_store_registers = remote_store_registers;
13064 remote_ops.to_prepare_to_store = remote_prepare_to_store;
13065 remote_ops.to_files_info = remote_files_info;
13066 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13067 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
13068 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13069 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13070 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13071 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
13072 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13073 remote_ops.to_stopped_data_address = remote_stopped_data_address;
13074 remote_ops.to_watchpoint_addr_within_range =
13075 remote_watchpoint_addr_within_range;
13076 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13077 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13078 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
13079 remote_ops.to_region_ok_for_hw_watchpoint
13080 = remote_region_ok_for_hw_watchpoint;
13081 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13082 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
13083 remote_ops.to_kill = remote_kill;
13084 remote_ops.to_load = remote_load;
13085 remote_ops.to_mourn_inferior = remote_mourn;
13086 remote_ops.to_pass_signals = remote_pass_signals;
13087 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
13088 remote_ops.to_program_signals = remote_program_signals;
13089 remote_ops.to_thread_alive = remote_thread_alive;
13090 remote_ops.to_thread_name = remote_thread_name;
13091 remote_ops.to_update_thread_list = remote_update_thread_list;
13092 remote_ops.to_pid_to_str = remote_pid_to_str;
13093 remote_ops.to_extra_thread_info = remote_threads_extra_info;
13094 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
13095 remote_ops.to_stop = remote_stop;
13096 remote_ops.to_interrupt = remote_interrupt;
13097 remote_ops.to_check_pending_interrupt = remote_check_pending_interrupt;
13098 remote_ops.to_xfer_partial = remote_xfer_partial;
13099 remote_ops.to_rcmd = remote_rcmd;
13100 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
13101 remote_ops.to_log_command = serial_log_command;
13102 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
13103 remote_ops.to_stratum = process_stratum;
13104 remote_ops.to_has_all_memory = default_child_has_all_memory;
13105 remote_ops.to_has_memory = default_child_has_memory;
13106 remote_ops.to_has_stack = default_child_has_stack;
13107 remote_ops.to_has_registers = default_child_has_registers;
13108 remote_ops.to_has_execution = default_child_has_execution;
13109 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
13110 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
13111 remote_ops.to_magic = OPS_MAGIC;
13112 remote_ops.to_memory_map = remote_memory_map;
13113 remote_ops.to_flash_erase = remote_flash_erase;
13114 remote_ops.to_flash_done = remote_flash_done;
13115 remote_ops.to_read_description = remote_read_description;
13116 remote_ops.to_search_memory = remote_search_memory;
13117 remote_ops.to_can_async_p = remote_can_async_p;
13118 remote_ops.to_is_async_p = remote_is_async_p;
13119 remote_ops.to_async = remote_async;
13120 remote_ops.to_thread_events = remote_thread_events;
13121 remote_ops.to_can_do_single_step = remote_can_do_single_step;
13122 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13123 remote_ops.to_terminal_ours = remote_terminal_ours;
13124 remote_ops.to_supports_non_stop = remote_supports_non_stop;
13125 remote_ops.to_supports_multi_process = remote_supports_multi_process;
13126 remote_ops.to_supports_disable_randomization
13127 = remote_supports_disable_randomization;
13128 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
13129 remote_ops.to_fileio_open = remote_hostio_open;
13130 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13131 remote_ops.to_fileio_pread = remote_hostio_pread;
13132 remote_ops.to_fileio_fstat = remote_hostio_fstat;
13133 remote_ops.to_fileio_close = remote_hostio_close;
13134 remote_ops.to_fileio_unlink = remote_hostio_unlink;
13135 remote_ops.to_fileio_readlink = remote_hostio_readlink;
13136 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
13137 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
13138 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
13139 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
13140 remote_ops.to_trace_init = remote_trace_init;
13141 remote_ops.to_download_tracepoint = remote_download_tracepoint;
13142 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
13143 remote_ops.to_download_trace_state_variable
13144 = remote_download_trace_state_variable;
13145 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13146 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
13147 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13148 remote_ops.to_trace_start = remote_trace_start;
13149 remote_ops.to_get_trace_status = remote_get_trace_status;
13150 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
13151 remote_ops.to_trace_stop = remote_trace_stop;
13152 remote_ops.to_trace_find = remote_trace_find;
13153 remote_ops.to_get_trace_state_variable_value
13154 = remote_get_trace_state_variable_value;
13155 remote_ops.to_save_trace_data = remote_save_trace_data;
13156 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
13157 remote_ops.to_upload_trace_state_variables
13158 = remote_upload_trace_state_variables;
13159 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
13160 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
13161 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
13162 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
13163 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
13164 remote_ops.to_set_trace_notes = remote_set_trace_notes;
13165 remote_ops.to_core_of_thread = remote_core_of_thread;
13166 remote_ops.to_verify_memory = remote_verify_memory;
13167 remote_ops.to_get_tib_address = remote_get_tib_address;
13168 remote_ops.to_set_permissions = remote_set_permissions;
13169 remote_ops.to_static_tracepoint_marker_at
13170 = remote_static_tracepoint_marker_at;
13171 remote_ops.to_static_tracepoint_markers_by_strid
13172 = remote_static_tracepoint_markers_by_strid;
13173 remote_ops.to_traceframe_info = remote_traceframe_info;
13174 remote_ops.to_use_agent = remote_use_agent;
13175 remote_ops.to_can_use_agent = remote_can_use_agent;
13176 remote_ops.to_supports_btrace = remote_supports_btrace;
13177 remote_ops.to_enable_btrace = remote_enable_btrace;
13178 remote_ops.to_disable_btrace = remote_disable_btrace;
13179 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13180 remote_ops.to_read_btrace = remote_read_btrace;
13181 remote_ops.to_btrace_conf = remote_btrace_conf;
13182 remote_ops.to_augmented_libraries_svr4_read =
13183 remote_augmented_libraries_svr4_read;
13184 remote_ops.to_follow_fork = remote_follow_fork;
13185 remote_ops.to_follow_exec = remote_follow_exec;
13186 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13187 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13188 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13189 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13190 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13191 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
13194 /* Set up the extended remote vector by making a copy of the standard
13195 remote vector and adding to it. */
13198 init_extended_remote_ops (void)
13200 extended_remote_ops = remote_ops;
13202 extended_remote_ops.to_shortname = "extended-remote";
13203 extended_remote_ops.to_longname =
13204 "Extended remote serial target in gdb-specific protocol";
13205 extended_remote_ops.to_doc =
13206 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13207 Specify the serial device it is connected to (e.g. /dev/ttya).";
13208 extended_remote_ops.to_open = extended_remote_open;
13209 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
13210 extended_remote_ops.to_detach = extended_remote_detach;
13211 extended_remote_ops.to_attach = extended_remote_attach;
13212 extended_remote_ops.to_post_attach = extended_remote_post_attach;
13213 extended_remote_ops.to_supports_disable_randomization
13214 = extended_remote_supports_disable_randomization;
13218 remote_can_async_p (struct target_ops *ops)
13220 struct remote_state *rs = get_remote_state ();
13222 if (!target_async_permitted)
13223 /* We only enable async when the user specifically asks for it. */
13226 /* We're async whenever the serial device is. */
13227 return serial_can_async_p (rs->remote_desc);
13231 remote_is_async_p (struct target_ops *ops)
13233 struct remote_state *rs = get_remote_state ();
13235 if (!target_async_permitted)
13236 /* We only enable async when the user specifically asks for it. */
13239 /* We're async whenever the serial device is. */
13240 return serial_is_async_p (rs->remote_desc);
13243 /* Pass the SERIAL event on and up to the client. One day this code
13244 will be able to delay notifying the client of an event until the
13245 point where an entire packet has been received. */
13247 static serial_event_ftype remote_async_serial_handler;
13250 remote_async_serial_handler (struct serial *scb, void *context)
13252 struct remote_state *rs = (struct remote_state *) context;
13254 /* Don't propogate error information up to the client. Instead let
13255 the client find out about the error by querying the target. */
13256 inferior_event_handler (INF_REG_EVENT, NULL);
13260 remote_async_inferior_event_handler (gdb_client_data data)
13262 inferior_event_handler (INF_REG_EVENT, NULL);
13266 remote_async (struct target_ops *ops, int enable)
13268 struct remote_state *rs = get_remote_state ();
13272 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
13274 /* If there are pending events in the stop reply queue tell the
13275 event loop to process them. */
13276 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13277 mark_async_event_handler (remote_async_inferior_event_token);
13278 /* For simplicity, below we clear the pending events token
13279 without remembering whether it is marked, so here we always
13280 mark it. If there's actually no pending notification to
13281 process, this ends up being a no-op (other than a spurious
13282 event-loop wakeup). */
13283 if (target_is_non_stop_p ())
13284 mark_async_event_handler (rs->notif_state->get_pending_events_token);
13288 serial_async (rs->remote_desc, NULL, NULL);
13289 /* If the core is disabling async, it doesn't want to be
13290 disturbed with target events. Clear all async event sources
13292 clear_async_event_handler (remote_async_inferior_event_token);
13293 if (target_is_non_stop_p ())
13294 clear_async_event_handler (rs->notif_state->get_pending_events_token);
13298 /* Implementation of the to_thread_events method. */
13301 remote_thread_events (struct target_ops *ops, int enable)
13303 struct remote_state *rs = get_remote_state ();
13304 size_t size = get_remote_packet_size ();
13307 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13310 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13312 getpkt (&rs->buf, &rs->buf_size, 0);
13314 switch (packet_ok (rs->buf,
13315 &remote_protocol_packets[PACKET_QThreadEvents]))
13318 if (strcmp (rs->buf, "OK") != 0)
13319 error (_("Remote refused setting thread events: %s"), rs->buf);
13322 warning (_("Remote failure reply: %s"), rs->buf);
13324 case PACKET_UNKNOWN:
13330 set_remote_cmd (char *args, int from_tty)
13332 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
13336 show_remote_cmd (char *args, int from_tty)
13338 /* We can't just use cmd_show_list here, because we want to skip
13339 the redundant "show remote Z-packet" and the legacy aliases. */
13340 struct cleanup *showlist_chain;
13341 struct cmd_list_element *list = remote_show_cmdlist;
13342 struct ui_out *uiout = current_uiout;
13344 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
13345 for (; list != NULL; list = list->next)
13346 if (strcmp (list->name, "Z-packet") == 0)
13348 else if (list->type == not_set_cmd)
13349 /* Alias commands are exactly like the original, except they
13350 don't have the normal type. */
13354 struct cleanup *option_chain
13355 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
13357 ui_out_field_string (uiout, "name", list->name);
13358 ui_out_text (uiout, ": ");
13359 if (list->type == show_cmd)
13360 do_show_command ((char *) NULL, from_tty, list);
13362 cmd_func (list, NULL, from_tty);
13363 /* Close the tuple. */
13364 do_cleanups (option_chain);
13367 /* Close the tuple. */
13368 do_cleanups (showlist_chain);
13372 /* Function to be called whenever a new objfile (shlib) is detected. */
13374 remote_new_objfile (struct objfile *objfile)
13376 struct remote_state *rs = get_remote_state ();
13378 if (rs->remote_desc != 0) /* Have a remote connection. */
13379 remote_check_symbols ();
13382 /* Pull all the tracepoints defined on the target and create local
13383 data structures representing them. We don't want to create real
13384 tracepoints yet, we don't want to mess up the user's existing
13388 remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
13390 struct remote_state *rs = get_remote_state ();
13393 /* Ask for a first packet of tracepoint definition. */
13395 getpkt (&rs->buf, &rs->buf_size, 0);
13397 while (*p && *p != 'l')
13399 parse_tracepoint_definition (p, utpp);
13400 /* Ask for another packet of tracepoint definition. */
13402 getpkt (&rs->buf, &rs->buf_size, 0);
13409 remote_upload_trace_state_variables (struct target_ops *self,
13410 struct uploaded_tsv **utsvp)
13412 struct remote_state *rs = get_remote_state ();
13415 /* Ask for a first packet of variable definition. */
13417 getpkt (&rs->buf, &rs->buf_size, 0);
13419 while (*p && *p != 'l')
13421 parse_tsv_definition (p, utsvp);
13422 /* Ask for another packet of variable definition. */
13424 getpkt (&rs->buf, &rs->buf_size, 0);
13430 /* The "set/show range-stepping" show hook. */
13433 show_range_stepping (struct ui_file *file, int from_tty,
13434 struct cmd_list_element *c,
13437 fprintf_filtered (file,
13438 _("Debugger's willingness to use range stepping "
13439 "is %s.\n"), value);
13442 /* The "set/show range-stepping" set hook. */
13445 set_range_stepping (char *ignore_args, int from_tty,
13446 struct cmd_list_element *c)
13448 struct remote_state *rs = get_remote_state ();
13450 /* Whene enabling, check whether range stepping is actually
13451 supported by the target, and warn if not. */
13452 if (use_range_stepping)
13454 if (rs->remote_desc != NULL)
13456 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13457 remote_vcont_probe (rs);
13459 if (packet_support (PACKET_vCont) == PACKET_ENABLE
13460 && rs->supports_vCont.r)
13464 warning (_("Range stepping is not supported by the current target"));
13469 _initialize_remote (void)
13471 struct remote_state *rs;
13472 struct cmd_list_element *cmd;
13473 const char *cmd_name;
13475 /* architecture specific data */
13476 remote_gdbarch_data_handle =
13477 gdbarch_data_register_post_init (init_remote_state);
13478 remote_g_packet_data_handle =
13479 gdbarch_data_register_pre_init (remote_g_packet_data_init);
13482 = register_program_space_data_with_cleanup (NULL,
13483 remote_pspace_data_cleanup);
13485 /* Initialize the per-target state. At the moment there is only one
13486 of these, not one per target. Only one target is active at a
13488 remote_state = new_remote_state ();
13490 init_remote_ops ();
13491 add_target (&remote_ops);
13493 init_extended_remote_ops ();
13494 add_target (&extended_remote_ops);
13496 /* Hook into new objfile notification. */
13497 observer_attach_new_objfile (remote_new_objfile);
13498 /* We're no longer interested in notification events of an inferior
13500 observer_attach_inferior_exit (discard_pending_stop_replies);
13502 /* Set up signal handlers. */
13503 async_sigint_remote_token =
13504 create_async_signal_handler (async_remote_interrupt, NULL);
13505 async_sigint_remote_twice_token =
13506 create_async_signal_handler (async_remote_interrupt_twice, NULL);
13509 init_remote_threadtests ();
13512 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
13513 /* set/show remote ... */
13515 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
13516 Remote protocol specific variables\n\
13517 Configure various remote-protocol specific variables such as\n\
13518 the packets being used"),
13519 &remote_set_cmdlist, "set remote ",
13520 0 /* allow-unknown */, &setlist);
13521 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
13522 Remote protocol specific variables\n\
13523 Configure various remote-protocol specific variables such as\n\
13524 the packets being used"),
13525 &remote_show_cmdlist, "show remote ",
13526 0 /* allow-unknown */, &showlist);
13528 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13529 Compare section data on target to the exec file.\n\
13530 Argument is a single section name (default: all loaded sections).\n\
13531 To compare only read-only loaded sections, specify the -r option."),
13534 add_cmd ("packet", class_maintenance, packet_command, _("\
13535 Send an arbitrary packet to a remote target.\n\
13536 maintenance packet TEXT\n\
13537 If GDB is talking to an inferior via the GDB serial protocol, then\n\
13538 this command sends the string TEXT to the inferior, and displays the\n\
13539 response packet. GDB supplies the initial `$' character, and the\n\
13540 terminating `#' character and checksum."),
13543 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
13544 Set whether to send break if interrupted."), _("\
13545 Show whether to send break if interrupted."), _("\
13546 If set, a break, instead of a cntrl-c, is sent to the remote target."),
13547 set_remotebreak, show_remotebreak,
13548 &setlist, &showlist);
13549 cmd_name = "remotebreak";
13550 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
13551 deprecate_cmd (cmd, "set remote interrupt-sequence");
13552 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
13553 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
13554 deprecate_cmd (cmd, "show remote interrupt-sequence");
13556 add_setshow_enum_cmd ("interrupt-sequence", class_support,
13557 interrupt_sequence_modes, &interrupt_sequence_mode,
13559 Set interrupt sequence to remote target."), _("\
13560 Show interrupt sequence to remote target."), _("\
13561 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
13562 NULL, show_interrupt_sequence,
13563 &remote_set_cmdlist,
13564 &remote_show_cmdlist);
13566 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
13567 &interrupt_on_connect, _("\
13568 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13569 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13570 If set, interrupt sequence is sent to remote target."),
13572 &remote_set_cmdlist, &remote_show_cmdlist);
13574 /* Install commands for configuring memory read/write packets. */
13576 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
13577 Set the maximum number of bytes per memory write packet (deprecated)."),
13579 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
13580 Show the maximum number of bytes per memory write packet (deprecated)."),
13582 add_cmd ("memory-write-packet-size", no_class,
13583 set_memory_write_packet_size, _("\
13584 Set the maximum number of bytes per memory-write packet.\n\
13585 Specify the number of bytes in a packet or 0 (zero) for the\n\
13586 default packet size. The actual limit is further reduced\n\
13587 dependent on the target. Specify ``fixed'' to disable the\n\
13588 further restriction and ``limit'' to enable that restriction."),
13589 &remote_set_cmdlist);
13590 add_cmd ("memory-read-packet-size", no_class,
13591 set_memory_read_packet_size, _("\
13592 Set the maximum number of bytes per memory-read packet.\n\
13593 Specify the number of bytes in a packet or 0 (zero) for the\n\
13594 default packet size. The actual limit is further reduced\n\
13595 dependent on the target. Specify ``fixed'' to disable the\n\
13596 further restriction and ``limit'' to enable that restriction."),
13597 &remote_set_cmdlist);
13598 add_cmd ("memory-write-packet-size", no_class,
13599 show_memory_write_packet_size,
13600 _("Show the maximum number of bytes per memory-write packet."),
13601 &remote_show_cmdlist);
13602 add_cmd ("memory-read-packet-size", no_class,
13603 show_memory_read_packet_size,
13604 _("Show the maximum number of bytes per memory-read packet."),
13605 &remote_show_cmdlist);
13607 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
13608 &remote_hw_watchpoint_limit, _("\
13609 Set the maximum number of target hardware watchpoints."), _("\
13610 Show the maximum number of target hardware watchpoints."), _("\
13611 Specify a negative limit for unlimited."),
13612 NULL, NULL, /* FIXME: i18n: The maximum
13613 number of target hardware
13614 watchpoints is %s. */
13615 &remote_set_cmdlist, &remote_show_cmdlist);
13616 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
13617 &remote_hw_watchpoint_length_limit, _("\
13618 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
13619 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
13620 Specify a negative limit for unlimited."),
13621 NULL, NULL, /* FIXME: i18n: The maximum
13622 length (in bytes) of a target
13623 hardware watchpoint is %s. */
13624 &remote_set_cmdlist, &remote_show_cmdlist);
13625 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
13626 &remote_hw_breakpoint_limit, _("\
13627 Set the maximum number of target hardware breakpoints."), _("\
13628 Show the maximum number of target hardware breakpoints."), _("\
13629 Specify a negative limit for unlimited."),
13630 NULL, NULL, /* FIXME: i18n: The maximum
13631 number of target hardware
13632 breakpoints is %s. */
13633 &remote_set_cmdlist, &remote_show_cmdlist);
13635 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
13636 &remote_address_size, _("\
13637 Set the maximum size of the address (in bits) in a memory packet."), _("\
13638 Show the maximum size of the address (in bits) in a memory packet."), NULL,
13640 NULL, /* FIXME: i18n: */
13641 &setlist, &showlist);
13643 init_all_packet_configs ();
13645 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
13646 "X", "binary-download", 1);
13648 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
13649 "vCont", "verbose-resume", 0);
13651 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
13652 "QPassSignals", "pass-signals", 0);
13654 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
13655 "QCatchSyscalls", "catch-syscalls", 0);
13657 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
13658 "QProgramSignals", "program-signals", 0);
13660 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
13661 "qSymbol", "symbol-lookup", 0);
13663 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
13664 "P", "set-register", 1);
13666 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
13667 "p", "fetch-register", 1);
13669 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
13670 "Z0", "software-breakpoint", 0);
13672 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
13673 "Z1", "hardware-breakpoint", 0);
13675 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
13676 "Z2", "write-watchpoint", 0);
13678 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
13679 "Z3", "read-watchpoint", 0);
13681 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
13682 "Z4", "access-watchpoint", 0);
13684 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
13685 "qXfer:auxv:read", "read-aux-vector", 0);
13687 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
13688 "qXfer:exec-file:read", "pid-to-exec-file", 0);
13690 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
13691 "qXfer:features:read", "target-features", 0);
13693 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
13694 "qXfer:libraries:read", "library-info", 0);
13696 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
13697 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
13699 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
13700 "qXfer:memory-map:read", "memory-map", 0);
13702 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
13703 "qXfer:spu:read", "read-spu-object", 0);
13705 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
13706 "qXfer:spu:write", "write-spu-object", 0);
13708 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
13709 "qXfer:osdata:read", "osdata", 0);
13711 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
13712 "qXfer:threads:read", "threads", 0);
13714 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
13715 "qXfer:siginfo:read", "read-siginfo-object", 0);
13717 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
13718 "qXfer:siginfo:write", "write-siginfo-object", 0);
13720 add_packet_config_cmd
13721 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
13722 "qXfer:traceframe-info:read", "traceframe-info", 0);
13724 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
13725 "qXfer:uib:read", "unwind-info-block", 0);
13727 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
13728 "qGetTLSAddr", "get-thread-local-storage-address",
13731 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
13732 "qGetTIBAddr", "get-thread-information-block-address",
13735 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
13736 "bc", "reverse-continue", 0);
13738 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
13739 "bs", "reverse-step", 0);
13741 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
13742 "qSupported", "supported-packets", 0);
13744 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
13745 "qSearch:memory", "search-memory", 0);
13747 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
13748 "qTStatus", "trace-status", 0);
13750 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
13751 "vFile:setfs", "hostio-setfs", 0);
13753 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
13754 "vFile:open", "hostio-open", 0);
13756 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
13757 "vFile:pread", "hostio-pread", 0);
13759 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
13760 "vFile:pwrite", "hostio-pwrite", 0);
13762 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
13763 "vFile:close", "hostio-close", 0);
13765 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
13766 "vFile:unlink", "hostio-unlink", 0);
13768 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
13769 "vFile:readlink", "hostio-readlink", 0);
13771 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
13772 "vFile:fstat", "hostio-fstat", 0);
13774 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
13775 "vAttach", "attach", 0);
13777 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
13780 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
13781 "QStartNoAckMode", "noack", 0);
13783 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
13784 "vKill", "kill", 0);
13786 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
13787 "qAttached", "query-attached", 0);
13789 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
13790 "ConditionalTracepoints",
13791 "conditional-tracepoints", 0);
13793 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
13794 "ConditionalBreakpoints",
13795 "conditional-breakpoints", 0);
13797 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
13798 "BreakpointCommands",
13799 "breakpoint-commands", 0);
13801 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
13802 "FastTracepoints", "fast-tracepoints", 0);
13804 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
13805 "TracepointSource", "TracepointSource", 0);
13807 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
13808 "QAllow", "allow", 0);
13810 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
13811 "StaticTracepoints", "static-tracepoints", 0);
13813 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
13814 "InstallInTrace", "install-in-trace", 0);
13816 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
13817 "qXfer:statictrace:read", "read-sdata-object", 0);
13819 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
13820 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
13822 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
13823 "QDisableRandomization", "disable-randomization", 0);
13825 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
13826 "QAgent", "agent", 0);
13828 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
13829 "QTBuffer:size", "trace-buffer-size", 0);
13831 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
13832 "Qbtrace:off", "disable-btrace", 0);
13834 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
13835 "Qbtrace:bts", "enable-btrace-bts", 0);
13837 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
13838 "Qbtrace:pt", "enable-btrace-pt", 0);
13840 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
13841 "qXfer:btrace", "read-btrace", 0);
13843 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
13844 "qXfer:btrace-conf", "read-btrace-conf", 0);
13846 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
13847 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
13849 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
13850 "multiprocess-feature", "multiprocess-feature", 0);
13852 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
13853 "swbreak-feature", "swbreak-feature", 0);
13855 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
13856 "hwbreak-feature", "hwbreak-feature", 0);
13858 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
13859 "fork-event-feature", "fork-event-feature", 0);
13861 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
13862 "vfork-event-feature", "vfork-event-feature", 0);
13864 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
13865 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
13867 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
13868 "vContSupported", "verbose-resume-supported", 0);
13870 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
13871 "exec-event-feature", "exec-event-feature", 0);
13873 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
13874 "vCtrlC", "ctrl-c", 0);
13876 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
13877 "QThreadEvents", "thread-events", 0);
13879 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
13880 "N stop reply", "no-resumed-stop-reply", 0);
13882 /* Assert that we've registered "set remote foo-packet" commands
13883 for all packet configs. */
13887 for (i = 0; i < PACKET_MAX; i++)
13889 /* Ideally all configs would have a command associated. Some
13890 still don't though. */
13895 case PACKET_QNonStop:
13896 case PACKET_EnableDisableTracepoints_feature:
13897 case PACKET_tracenz_feature:
13898 case PACKET_DisconnectedTracing_feature:
13899 case PACKET_augmented_libraries_svr4_read_feature:
13901 /* Additions to this list need to be well justified:
13902 pre-existing packets are OK; new packets are not. */
13910 /* This catches both forgetting to add a config command, and
13911 forgetting to remove a packet from the exception list. */
13912 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
13916 /* Keep the old ``set remote Z-packet ...'' working. Each individual
13917 Z sub-packet has its own set and show commands, but users may
13918 have sets to this variable in their .gdbinit files (or in their
13920 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
13921 &remote_Z_packet_detect, _("\
13922 Set use of remote protocol `Z' packets"), _("\
13923 Show use of remote protocol `Z' packets "), _("\
13924 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
13926 set_remote_protocol_Z_packet_cmd,
13927 show_remote_protocol_Z_packet_cmd,
13928 /* FIXME: i18n: Use of remote protocol
13929 `Z' packets is %s. */
13930 &remote_set_cmdlist, &remote_show_cmdlist);
13932 add_prefix_cmd ("remote", class_files, remote_command, _("\
13933 Manipulate files on the remote system\n\
13934 Transfer files to and from the remote target system."),
13935 &remote_cmdlist, "remote ",
13936 0 /* allow-unknown */, &cmdlist);
13938 add_cmd ("put", class_files, remote_put_command,
13939 _("Copy a local file to the remote system."),
13942 add_cmd ("get", class_files, remote_get_command,
13943 _("Copy a remote file to the local system."),
13946 add_cmd ("delete", class_files, remote_delete_command,
13947 _("Delete a remote file."),
13950 add_setshow_string_noescape_cmd ("exec-file", class_files,
13951 &remote_exec_file_var, _("\
13952 Set the remote pathname for \"run\""), _("\
13953 Show the remote pathname for \"run\""), NULL,
13954 set_remote_exec_file,
13955 show_remote_exec_file,
13956 &remote_set_cmdlist,
13957 &remote_show_cmdlist);
13959 add_setshow_boolean_cmd ("range-stepping", class_run,
13960 &use_range_stepping, _("\
13961 Enable or disable range stepping."), _("\
13962 Show whether target-assisted range stepping is enabled."), _("\
13963 If on, and the target supports it, when stepping a source line, GDB\n\
13964 tells the target to step the corresponding range of addresses itself instead\n\
13965 of issuing multiple single-steps. This speeds up source level\n\
13966 stepping. If off, GDB always issues single-steps, even if range\n\
13967 stepping is supported by the target. The default is on."),
13968 set_range_stepping,
13969 show_range_stepping,
13973 /* Eventually initialize fileio. See fileio.c */
13974 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
13976 /* Take advantage of the fact that the TID field is not used, to tag
13977 special ptids with it set to != 0. */
13978 magic_null_ptid = ptid_build (42000, -1, 1);
13979 not_sent_ptid = ptid_build (42000, -2, 1);
13980 any_thread_ptid = ptid_build (42000, 0, 1);
13982 target_buf_size = 2048;
13983 target_buf = (char *) xmalloc (target_buf_size);