1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2013 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. */
23 #include "gdb_string.h"
29 #include "exceptions.h"
31 /*#include "terminal.h" */
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
37 #include "remote-notif.h"
40 #include "gdb_assert.h"
43 #include "cli/cli-decode.h"
44 #include "cli/cli-setshow.h"
45 #include "target-descriptions.h"
47 #include "filestuff.h"
52 #include "event-loop.h"
53 #include "event-top.h"
59 #include "gdbcore.h" /* for exec_bfd */
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
74 /* Temp hacks for tracepoint encoding migration. */
75 static char *target_buf
;
76 static long target_buf_size
;
78 /* The size to align memory write packets, when practical. The protocol
79 does not guarantee any alignment, and gdb will generate short
80 writes and unaligned writes, but even as a best-effort attempt this
81 can improve bulk transfers. For instance, if a write is misaligned
82 relative to the target's data bus, the stub may need to make an extra
83 round trip fetching data from the target. This doesn't make a
84 huge difference, but it's easy to do, so we try to be helpful.
86 The alignment chosen is arbitrary; usually data bus width is
87 important here, not the possibly larger cache line size. */
88 enum { REMOTE_ALIGN_WRITES
= 16 };
90 /* Prototypes for local functions. */
91 static void async_cleanup_sigint_signal_handler (void *dummy
);
92 static int getpkt_sane (char **buf
, long *sizeof_buf
, int forever
);
93 static int getpkt_or_notif_sane (char **buf
, long *sizeof_buf
,
94 int forever
, int *is_notif
);
96 static void async_handle_remote_sigint (int);
97 static void async_handle_remote_sigint_twice (int);
99 static void remote_files_info (struct target_ops
*ignore
);
101 static void remote_prepare_to_store (struct regcache
*regcache
);
103 static void remote_open (char *name
, int from_tty
);
105 static void extended_remote_open (char *name
, int from_tty
);
107 static void remote_open_1 (char *, int, struct target_ops
*, int extended_p
);
109 static void remote_close (void);
111 static void remote_mourn (struct target_ops
*ops
);
113 static void extended_remote_restart (void);
115 static void extended_remote_mourn (struct target_ops
*);
117 static void remote_mourn_1 (struct target_ops
*);
119 static void remote_send (char **buf
, long *sizeof_buf_p
);
121 static int readchar (int timeout
);
123 static void remote_serial_write (const char *str
, int len
);
125 static void remote_kill (struct target_ops
*ops
);
127 static int tohex (int nib
);
129 static int remote_can_async_p (void);
131 static int remote_is_async_p (void);
133 static void remote_async (void (*callback
) (enum inferior_event_type event_type
,
134 void *context
), void *context
);
136 static void remote_detach (struct target_ops
*ops
, char *args
, int from_tty
);
138 static void sync_remote_interrupt_twice (int signo
);
140 static void interrupt_query (void);
142 static void set_general_thread (struct ptid ptid
);
143 static void set_continue_thread (struct ptid ptid
);
145 static void get_offsets (void);
147 static void skip_frame (void);
149 static long read_frame (char **buf_p
, long *sizeof_buf
);
151 static int hexnumlen (ULONGEST num
);
153 static void init_remote_ops (void);
155 static void init_extended_remote_ops (void);
157 static void remote_stop (ptid_t
);
159 static int ishex (int ch
, int *val
);
161 static int stubhex (int ch
);
163 static int hexnumstr (char *, ULONGEST
);
165 static int hexnumnstr (char *, ULONGEST
, int);
167 static CORE_ADDR
remote_address_masked (CORE_ADDR
);
169 static void print_packet (char *);
171 static void compare_sections_command (char *, int);
173 static void packet_command (char *, int);
175 static int stub_unpack_int (char *buff
, int fieldlength
);
177 static ptid_t
remote_current_thread (ptid_t oldptid
);
179 static void remote_find_new_threads (void);
181 static int fromhex (int a
);
183 static int putpkt_binary (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 update_packet_config (struct packet_config
*config
);
193 static void set_remote_protocol_packet_cmd (char *args
, int from_tty
,
194 struct cmd_list_element
*c
);
196 static void show_remote_protocol_packet_cmd (struct ui_file
*file
,
198 struct cmd_list_element
*c
,
201 static char *write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
);
202 static ptid_t
read_ptid (char *buf
, char **obuf
);
204 static void remote_set_permissions (void);
207 static int remote_get_trace_status (struct trace_status
*ts
);
209 static int remote_upload_tracepoints (struct uploaded_tp
**utpp
);
211 static int remote_upload_trace_state_variables (struct uploaded_tsv
**utsvp
);
213 static void remote_query_supported (void);
215 static void remote_check_symbols (void);
217 void _initialize_remote (void);
220 static void stop_reply_xfree (struct stop_reply
*);
221 static void remote_parse_stop_reply (char *, struct stop_reply
*);
222 static void push_stop_reply (struct stop_reply
*);
223 static void discard_pending_stop_replies (struct inferior
*);
224 static int peek_stop_reply (ptid_t ptid
);
226 static void remote_async_inferior_event_handler (gdb_client_data
);
228 static void remote_terminal_ours (void);
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 (void);
236 static int remote_can_run_breakpoint_commands (void);
240 static struct cmd_list_element
*remote_cmdlist
;
242 /* For "set remote" and "show remote". */
244 static struct cmd_list_element
*remote_set_cmdlist
;
245 static struct cmd_list_element
*remote_show_cmdlist
;
247 /* Stub vCont actions support.
249 Each field is a boolean flag indicating whether the stub reports
250 support for the corresponding action. */
252 struct vCont_action_support
261 /* Controls whether GDB is willing to use range stepping. */
263 static int use_range_stepping
= 1;
265 #define OPAQUETHREADBYTES 8
267 /* a 64 bit opaque identifier */
268 typedef unsigned char threadref
[OPAQUETHREADBYTES
];
270 /* About this many threadisds fit in a packet. */
272 #define MAXTHREADLISTRESULTS 32
274 /* Description of the remote protocol state for the currently
275 connected target. This is per-target state, and independent of the
276 selected architecture. */
280 /* A buffer to use for incoming packets, and its current size. The
281 buffer is grown dynamically for larger incoming packets.
282 Outgoing packets may also be constructed in this buffer.
283 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
284 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
289 /* True if we're going through initial connection setup (finding out
290 about the remote side's threads, relocating symbols, etc.). */
293 /* If we negotiated packet size explicitly (and thus can bypass
294 heuristics for the largest packet size that will not overflow
295 a buffer in the stub), this will be set to that packet size.
296 Otherwise zero, meaning to use the guessed size. */
297 long explicit_packet_size
;
299 /* remote_wait is normally called when the target is running and
300 waits for a stop reply packet. But sometimes we need to call it
301 when the target is already stopped. We can send a "?" packet
302 and have remote_wait read the response. Or, if we already have
303 the response, we can stash it in BUF and tell remote_wait to
304 skip calling getpkt. This flag is set when BUF contains a
305 stop reply packet and the target is not waiting. */
306 int cached_wait_status
;
308 /* True, if in no ack mode. That is, neither GDB nor the stub will
309 expect acks from each other. The connection is assumed to be
313 /* True if we're connected in extended remote mode. */
316 /* True if the stub reported support for multi-process
318 int multi_process_aware
;
320 /* True if we resumed the target and we're waiting for the target to
321 stop. In the mean time, we can't start another command/query.
322 The remote server wouldn't be ready to process it, so we'd
323 timeout waiting for a reply that would never come and eventually
324 we'd close the connection. This can happen in asynchronous mode
325 because we allow GDB commands while the target is running. */
326 int waiting_for_stop_reply
;
328 /* True if the stub reports support for non-stop mode. */
331 /* The status of the stub support for the various vCont actions. */
332 struct vCont_action_support supports_vCont
;
334 /* True if the stub reports support for conditional tracepoints. */
335 int cond_tracepoints
;
337 /* True if the stub reports support for target-side breakpoint
339 int cond_breakpoints
;
341 /* True if the stub reports support for target-side breakpoint
343 int breakpoint_commands
;
345 /* True if the stub reports support for fast tracepoints. */
346 int fast_tracepoints
;
348 /* True if the stub reports support for static tracepoints. */
349 int static_tracepoints
;
351 /* True if the stub reports support for installing tracepoint while
353 int install_in_trace
;
355 /* True if the stub can continue running a trace while GDB is
357 int disconnected_tracing
;
359 /* True if the stub reports support for enabling and disabling
360 tracepoints while a trace experiment is running. */
361 int enable_disable_tracepoints
;
363 /* True if the stub can collect strings using tracenz bytecode. */
366 /* True if the stub supports qXfer:libraries-svr4:read with a
368 int augmented_libraries_svr4_read
;
370 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
371 responded to that. */
374 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
375 remote_open knows that we don't have a file open when the program
377 struct serial
*remote_desc
;
379 /* These are the threads which we last sent to the remote system. The
380 TID member will be -1 for all or -2 for not sent yet. */
381 ptid_t general_thread
;
382 ptid_t continue_thread
;
384 /* This is the traceframe which we last selected on the remote system.
385 It will be -1 if no traceframe is selected. */
386 int remote_traceframe_number
;
388 char *last_pass_packet
;
390 /* The last QProgramSignals packet sent to the target. We bypass
391 sending a new program signals list down to the target if the new
392 packet is exactly the same as the last we sent. IOW, we only let
393 the target know about program signals list changes. */
394 char *last_program_signals_packet
;
396 enum gdb_signal last_sent_signal
;
400 char *finished_object
;
401 char *finished_annex
;
402 ULONGEST finished_offset
;
404 /* Should we try the 'ThreadInfo' query packet?
406 This variable (NOT available to the user: auto-detect only!)
407 determines whether GDB will use the new, simpler "ThreadInfo"
408 query or the older, more complex syntax for thread queries.
409 This is an auto-detect variable (set to true at each connect,
410 and set to false when the target fails to recognize it). */
411 int use_threadinfo_query
;
412 int use_threadextra_query
;
414 void (*async_client_callback
) (enum inferior_event_type event_type
,
416 void *async_client_context
;
418 /* This is set to the data address of the access causing the target
419 to stop for a watchpoint. */
420 CORE_ADDR remote_watch_data_address
;
422 /* This is non-zero if target stopped for a watchpoint. */
423 int remote_stopped_by_watchpoint_p
;
425 threadref echo_nextthread
;
426 threadref nextthread
;
427 threadref resultthreadlist
[MAXTHREADLISTRESULTS
];
430 /* Private data that we'll store in (struct thread_info)->private. */
431 struct private_thread_info
438 free_private_thread_info (struct private_thread_info
*info
)
444 /* Returns true if the multi-process extensions are in effect. */
446 remote_multi_process_p (struct remote_state
*rs
)
448 return rs
->multi_process_aware
;
451 /* This data could be associated with a target, but we do not always
452 have access to the current target when we need it, so for now it is
453 static. This will be fine for as long as only one target is in use
455 static struct remote_state
*remote_state
;
457 static struct remote_state
*
458 get_remote_state_raw (void)
463 /* Allocate a new struct remote_state with xmalloc, initialize it, and
466 static struct remote_state
*
467 new_remote_state (void)
469 struct remote_state
*result
= XCNEW (struct remote_state
);
471 /* The default buffer size is unimportant; it will be expanded
472 whenever a larger buffer is needed. */
473 result
->buf_size
= 400;
474 result
->buf
= xmalloc (result
->buf_size
);
475 result
->remote_traceframe_number
= -1;
476 result
->last_sent_signal
= GDB_SIGNAL_0
;
481 /* Description of the remote protocol for a given architecture. */
485 long offset
; /* Offset into G packet. */
486 long regnum
; /* GDB's internal register number. */
487 LONGEST pnum
; /* Remote protocol register number. */
488 int in_g_packet
; /* Always part of G packet. */
489 /* long size in bytes; == register_size (target_gdbarch (), regnum);
491 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
495 struct remote_arch_state
497 /* Description of the remote protocol registers. */
498 long sizeof_g_packet
;
500 /* Description of the remote protocol registers indexed by REGNUM
501 (making an array gdbarch_num_regs in size). */
502 struct packet_reg
*regs
;
504 /* This is the size (in chars) of the first response to the ``g''
505 packet. It is used as a heuristic when determining the maximum
506 size of memory-read and memory-write packets. A target will
507 typically only reserve a buffer large enough to hold the ``g''
508 packet. The size does not include packet overhead (headers and
510 long actual_register_packet_size
;
512 /* This is the maximum size (in chars) of a non read/write packet.
513 It is also used as a cap on the size of read/write packets. */
514 long remote_packet_size
;
517 /* Utility: generate error from an incoming stub packet. */
519 trace_error (char *buf
)
522 return; /* not an error msg */
525 case '1': /* malformed packet error */
526 if (*++buf
== '0') /* general case: */
527 error (_("remote.c: error in outgoing packet."));
529 error (_("remote.c: error in outgoing packet at field #%ld."),
530 strtol (buf
, NULL
, 16));
532 error (_("Target returns error code '%s'."), buf
);
536 /* Utility: wait for reply from stub, while accepting "O" packets. */
538 remote_get_noisy_reply (char **buf_p
,
541 do /* Loop on reply from remote stub. */
545 QUIT
; /* Allow user to bail out with ^C. */
546 getpkt (buf_p
, sizeof_buf
, 0);
550 else if (strncmp (buf
, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
553 CORE_ADDR from
, to
, org_to
;
555 int adjusted_size
= 0;
556 volatile struct gdb_exception ex
;
558 p
= buf
+ strlen ("qRelocInsn:");
559 pp
= unpack_varlen_hex (p
, &ul
);
561 error (_("invalid qRelocInsn packet: %s"), buf
);
565 unpack_varlen_hex (p
, &ul
);
570 TRY_CATCH (ex
, RETURN_MASK_ALL
)
572 gdbarch_relocate_instruction (target_gdbarch (), &to
, from
);
576 adjusted_size
= to
- org_to
;
578 xsnprintf (buf
, *sizeof_buf
, "qRelocInsn:%x", adjusted_size
);
581 else if (ex
.reason
< 0 && ex
.error
== MEMORY_ERROR
)
583 /* Propagate memory errors silently back to the target.
584 The stub may have limited the range of addresses we
585 can write to, for example. */
590 /* Something unexpectedly bad happened. Be verbose so
591 we can tell what, and propagate the error back to the
592 stub, so it doesn't get stuck waiting for a
594 exception_fprintf (gdb_stderr
, ex
,
595 _("warning: relocating instruction: "));
599 else if (buf
[0] == 'O' && buf
[1] != 'K')
600 remote_console_output (buf
+ 1); /* 'O' message from stub */
602 return buf
; /* Here's the actual reply. */
607 /* Handle for retreving the remote protocol data from gdbarch. */
608 static struct gdbarch_data
*remote_gdbarch_data_handle
;
610 static struct remote_arch_state
*
611 get_remote_arch_state (void)
613 return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle
);
616 /* Fetch the global remote target state. */
618 static struct remote_state
*
619 get_remote_state (void)
621 /* Make sure that the remote architecture state has been
622 initialized, because doing so might reallocate rs->buf. Any
623 function which calls getpkt also needs to be mindful of changes
624 to rs->buf, but this call limits the number of places which run
626 get_remote_arch_state ();
628 return get_remote_state_raw ();
632 compare_pnums (const void *lhs_
, const void *rhs_
)
634 const struct packet_reg
* const *lhs
= lhs_
;
635 const struct packet_reg
* const *rhs
= rhs_
;
637 if ((*lhs
)->pnum
< (*rhs
)->pnum
)
639 else if ((*lhs
)->pnum
== (*rhs
)->pnum
)
646 map_regcache_remote_table (struct gdbarch
*gdbarch
, struct packet_reg
*regs
)
648 int regnum
, num_remote_regs
, offset
;
649 struct packet_reg
**remote_regs
;
651 for (regnum
= 0; regnum
< gdbarch_num_regs (gdbarch
); regnum
++)
653 struct packet_reg
*r
= ®s
[regnum
];
655 if (register_size (gdbarch
, regnum
) == 0)
656 /* Do not try to fetch zero-sized (placeholder) registers. */
659 r
->pnum
= gdbarch_remote_register_number (gdbarch
, regnum
);
664 /* Define the g/G packet format as the contents of each register
665 with a remote protocol number, in order of ascending protocol
668 remote_regs
= alloca (gdbarch_num_regs (gdbarch
)
669 * sizeof (struct packet_reg
*));
670 for (num_remote_regs
= 0, regnum
= 0;
671 regnum
< gdbarch_num_regs (gdbarch
);
673 if (regs
[regnum
].pnum
!= -1)
674 remote_regs
[num_remote_regs
++] = ®s
[regnum
];
676 qsort (remote_regs
, num_remote_regs
, sizeof (struct packet_reg
*),
679 for (regnum
= 0, offset
= 0; regnum
< num_remote_regs
; regnum
++)
681 remote_regs
[regnum
]->in_g_packet
= 1;
682 remote_regs
[regnum
]->offset
= offset
;
683 offset
+= register_size (gdbarch
, remote_regs
[regnum
]->regnum
);
689 /* Given the architecture described by GDBARCH, return the remote
690 protocol register's number and the register's offset in the g/G
691 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
692 If the target does not have a mapping for REGNUM, return false,
693 otherwise, return true. */
696 remote_register_number_and_offset (struct gdbarch
*gdbarch
, int regnum
,
697 int *pnum
, int *poffset
)
700 struct packet_reg
*regs
;
701 struct cleanup
*old_chain
;
703 gdb_assert (regnum
< gdbarch_num_regs (gdbarch
));
705 regs
= xcalloc (gdbarch_num_regs (gdbarch
), sizeof (struct packet_reg
));
706 old_chain
= make_cleanup (xfree
, regs
);
708 sizeof_g_packet
= map_regcache_remote_table (gdbarch
, regs
);
710 *pnum
= regs
[regnum
].pnum
;
711 *poffset
= regs
[regnum
].offset
;
713 do_cleanups (old_chain
);
719 init_remote_state (struct gdbarch
*gdbarch
)
721 struct remote_state
*rs
= get_remote_state_raw ();
722 struct remote_arch_state
*rsa
;
724 rsa
= GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct remote_arch_state
);
726 /* Use the architecture to build a regnum<->pnum table, which will be
727 1:1 unless a feature set specifies otherwise. */
728 rsa
->regs
= GDBARCH_OBSTACK_CALLOC (gdbarch
,
729 gdbarch_num_regs (gdbarch
),
732 /* Record the maximum possible size of the g packet - it may turn out
734 rsa
->sizeof_g_packet
= map_regcache_remote_table (gdbarch
, rsa
->regs
);
736 /* Default maximum number of characters in a packet body. Many
737 remote stubs have a hardwired buffer size of 400 bytes
738 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
739 as the maximum packet-size to ensure that the packet and an extra
740 NUL character can always fit in the buffer. This stops GDB
741 trashing stubs that try to squeeze an extra NUL into what is
742 already a full buffer (As of 1999-12-04 that was most stubs). */
743 rsa
->remote_packet_size
= 400 - 1;
745 /* This one is filled in when a ``g'' packet is received. */
746 rsa
->actual_register_packet_size
= 0;
748 /* Should rsa->sizeof_g_packet needs more space than the
749 default, adjust the size accordingly. Remember that each byte is
750 encoded as two characters. 32 is the overhead for the packet
751 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
752 (``$NN:G...#NN'') is a better guess, the below has been padded a
754 if (rsa
->sizeof_g_packet
> ((rsa
->remote_packet_size
- 32) / 2))
755 rsa
->remote_packet_size
= (rsa
->sizeof_g_packet
* 2 + 32);
757 /* Make sure that the packet buffer is plenty big enough for
758 this architecture. */
759 if (rs
->buf_size
< rsa
->remote_packet_size
)
761 rs
->buf_size
= 2 * rsa
->remote_packet_size
;
762 rs
->buf
= xrealloc (rs
->buf
, rs
->buf_size
);
768 /* Return the current allowed size of a remote packet. This is
769 inferred from the current architecture, and should be used to
770 limit the length of outgoing packets. */
772 get_remote_packet_size (void)
774 struct remote_state
*rs
= get_remote_state ();
775 struct remote_arch_state
*rsa
= get_remote_arch_state ();
777 if (rs
->explicit_packet_size
)
778 return rs
->explicit_packet_size
;
780 return rsa
->remote_packet_size
;
783 static struct packet_reg
*
784 packet_reg_from_regnum (struct remote_arch_state
*rsa
, long regnum
)
786 if (regnum
< 0 && regnum
>= gdbarch_num_regs (target_gdbarch ()))
790 struct packet_reg
*r
= &rsa
->regs
[regnum
];
792 gdb_assert (r
->regnum
== regnum
);
797 static struct packet_reg
*
798 packet_reg_from_pnum (struct remote_arch_state
*rsa
, LONGEST pnum
)
802 for (i
= 0; i
< gdbarch_num_regs (target_gdbarch ()); i
++)
804 struct packet_reg
*r
= &rsa
->regs
[i
];
812 static struct target_ops remote_ops
;
814 static struct target_ops extended_remote_ops
;
816 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
817 ``forever'' still use the normal timeout mechanism. This is
818 currently used by the ASYNC code to guarentee that target reads
819 during the initial connect always time-out. Once getpkt has been
820 modified to return a timeout indication and, in turn
821 remote_wait()/wait_for_inferior() have gained a timeout parameter
823 static int wait_forever_enabled_p
= 1;
825 /* Allow the user to specify what sequence to send to the remote
826 when he requests a program interruption: Although ^C is usually
827 what remote systems expect (this is the default, here), it is
828 sometimes preferable to send a break. On other systems such
829 as the Linux kernel, a break followed by g, which is Magic SysRq g
830 is required in order to interrupt the execution. */
831 const char interrupt_sequence_control_c
[] = "Ctrl-C";
832 const char interrupt_sequence_break
[] = "BREAK";
833 const char interrupt_sequence_break_g
[] = "BREAK-g";
834 static const char *const interrupt_sequence_modes
[] =
836 interrupt_sequence_control_c
,
837 interrupt_sequence_break
,
838 interrupt_sequence_break_g
,
841 static const char *interrupt_sequence_mode
= interrupt_sequence_control_c
;
844 show_interrupt_sequence (struct ui_file
*file
, int from_tty
,
845 struct cmd_list_element
*c
,
848 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
849 fprintf_filtered (file
,
850 _("Send the ASCII ETX character (Ctrl-c) "
851 "to the remote target to interrupt the "
852 "execution of the program.\n"));
853 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
854 fprintf_filtered (file
,
855 _("send a break signal to the remote target "
856 "to interrupt the execution of the program.\n"));
857 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
858 fprintf_filtered (file
,
859 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
860 "the remote target to interrupt the execution "
861 "of Linux kernel.\n"));
863 internal_error (__FILE__
, __LINE__
,
864 _("Invalid value for interrupt_sequence_mode: %s."),
865 interrupt_sequence_mode
);
868 /* This boolean variable specifies whether interrupt_sequence is sent
869 to the remote target when gdb connects to it.
870 This is mostly needed when you debug the Linux kernel: The Linux kernel
871 expects BREAK g which is Magic SysRq g for connecting gdb. */
872 static int interrupt_on_connect
= 0;
874 /* This variable is used to implement the "set/show remotebreak" commands.
875 Since these commands are now deprecated in favor of "set/show remote
876 interrupt-sequence", it no longer has any effect on the code. */
877 static int remote_break
;
880 set_remotebreak (char *args
, int from_tty
, struct cmd_list_element
*c
)
883 interrupt_sequence_mode
= interrupt_sequence_break
;
885 interrupt_sequence_mode
= interrupt_sequence_control_c
;
889 show_remotebreak (struct ui_file
*file
, int from_tty
,
890 struct cmd_list_element
*c
,
895 /* This variable sets the number of bits in an address that are to be
896 sent in a memory ("M" or "m") packet. Normally, after stripping
897 leading zeros, the entire address would be sent. This variable
898 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
899 initial implementation of remote.c restricted the address sent in
900 memory packets to ``host::sizeof long'' bytes - (typically 32
901 bits). Consequently, for 64 bit targets, the upper 32 bits of an
902 address was never sent. Since fixing this bug may cause a break in
903 some remote targets this variable is principly provided to
904 facilitate backward compatibility. */
906 static unsigned int remote_address_size
;
908 /* Temporary to track who currently owns the terminal. See
909 remote_terminal_* for more details. */
911 static int remote_async_terminal_ours_p
;
913 /* The executable file to use for "run" on the remote side. */
915 static char *remote_exec_file
= "";
918 /* User configurable variables for the number of characters in a
919 memory read/write packet. MIN (rsa->remote_packet_size,
920 rsa->sizeof_g_packet) is the default. Some targets need smaller
921 values (fifo overruns, et.al.) and some users need larger values
922 (speed up transfers). The variables ``preferred_*'' (the user
923 request), ``current_*'' (what was actually set) and ``forced_*''
924 (Positive - a soft limit, negative - a hard limit). */
926 struct memory_packet_config
933 /* Compute the current size of a read/write packet. Since this makes
934 use of ``actual_register_packet_size'' the computation is dynamic. */
937 get_memory_packet_size (struct memory_packet_config
*config
)
939 struct remote_state
*rs
= get_remote_state ();
940 struct remote_arch_state
*rsa
= get_remote_arch_state ();
942 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
943 law?) that some hosts don't cope very well with large alloca()
944 calls. Eventually the alloca() code will be replaced by calls to
945 xmalloc() and make_cleanups() allowing this restriction to either
946 be lifted or removed. */
947 #ifndef MAX_REMOTE_PACKET_SIZE
948 #define MAX_REMOTE_PACKET_SIZE 16384
950 /* NOTE: 20 ensures we can write at least one byte. */
951 #ifndef MIN_REMOTE_PACKET_SIZE
952 #define MIN_REMOTE_PACKET_SIZE 20
957 if (config
->size
<= 0)
958 what_they_get
= MAX_REMOTE_PACKET_SIZE
;
960 what_they_get
= config
->size
;
964 what_they_get
= get_remote_packet_size ();
965 /* Limit the packet to the size specified by the user. */
967 && what_they_get
> config
->size
)
968 what_they_get
= config
->size
;
970 /* Limit it to the size of the targets ``g'' response unless we have
971 permission from the stub to use a larger packet size. */
972 if (rs
->explicit_packet_size
== 0
973 && rsa
->actual_register_packet_size
> 0
974 && what_they_get
> rsa
->actual_register_packet_size
)
975 what_they_get
= rsa
->actual_register_packet_size
;
977 if (what_they_get
> MAX_REMOTE_PACKET_SIZE
)
978 what_they_get
= MAX_REMOTE_PACKET_SIZE
;
979 if (what_they_get
< MIN_REMOTE_PACKET_SIZE
)
980 what_they_get
= MIN_REMOTE_PACKET_SIZE
;
982 /* Make sure there is room in the global buffer for this packet
983 (including its trailing NUL byte). */
984 if (rs
->buf_size
< what_they_get
+ 1)
986 rs
->buf_size
= 2 * what_they_get
;
987 rs
->buf
= xrealloc (rs
->buf
, 2 * what_they_get
);
990 return what_they_get
;
993 /* Update the size of a read/write packet. If they user wants
994 something really big then do a sanity check. */
997 set_memory_packet_size (char *args
, struct memory_packet_config
*config
)
999 int fixed_p
= config
->fixed_p
;
1000 long size
= config
->size
;
1003 error (_("Argument required (integer, `fixed' or `limited')."));
1004 else if (strcmp (args
, "hard") == 0
1005 || strcmp (args
, "fixed") == 0)
1007 else if (strcmp (args
, "soft") == 0
1008 || strcmp (args
, "limit") == 0)
1014 size
= strtoul (args
, &end
, 0);
1016 error (_("Invalid %s (bad syntax)."), config
->name
);
1018 /* Instead of explicitly capping the size of a packet to
1019 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
1020 instead allowed to set the size to something arbitrarily
1022 if (size
> MAX_REMOTE_PACKET_SIZE
)
1023 error (_("Invalid %s (too large)."), config
->name
);
1027 if (fixed_p
&& !config
->fixed_p
)
1029 if (! query (_("The target may not be able to correctly handle a %s\n"
1030 "of %ld bytes. Change the packet size? "),
1031 config
->name
, size
))
1032 error (_("Packet size not changed."));
1034 /* Update the config. */
1035 config
->fixed_p
= fixed_p
;
1036 config
->size
= size
;
1040 show_memory_packet_size (struct memory_packet_config
*config
)
1042 printf_filtered (_("The %s is %ld. "), config
->name
, config
->size
);
1043 if (config
->fixed_p
)
1044 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1045 get_memory_packet_size (config
));
1047 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1048 get_memory_packet_size (config
));
1051 static struct memory_packet_config memory_write_packet_config
=
1053 "memory-write-packet-size",
1057 set_memory_write_packet_size (char *args
, int from_tty
)
1059 set_memory_packet_size (args
, &memory_write_packet_config
);
1063 show_memory_write_packet_size (char *args
, int from_tty
)
1065 show_memory_packet_size (&memory_write_packet_config
);
1069 get_memory_write_packet_size (void)
1071 return get_memory_packet_size (&memory_write_packet_config
);
1074 static struct memory_packet_config memory_read_packet_config
=
1076 "memory-read-packet-size",
1080 set_memory_read_packet_size (char *args
, int from_tty
)
1082 set_memory_packet_size (args
, &memory_read_packet_config
);
1086 show_memory_read_packet_size (char *args
, int from_tty
)
1088 show_memory_packet_size (&memory_read_packet_config
);
1092 get_memory_read_packet_size (void)
1094 long size
= get_memory_packet_size (&memory_read_packet_config
);
1096 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1097 extra buffer size argument before the memory read size can be
1098 increased beyond this. */
1099 if (size
> get_remote_packet_size ())
1100 size
= get_remote_packet_size ();
1105 /* Generic configuration support for packets the stub optionally
1106 supports. Allows the user to specify the use of the packet as well
1107 as allowing GDB to auto-detect support in the remote stub. */
1111 PACKET_SUPPORT_UNKNOWN
= 0,
1116 struct packet_config
1120 enum auto_boolean detect
;
1121 enum packet_support support
;
1124 /* Analyze a packet's return value and update the packet config
1135 update_packet_config (struct packet_config
*config
)
1137 switch (config
->detect
)
1139 case AUTO_BOOLEAN_TRUE
:
1140 config
->support
= PACKET_ENABLE
;
1142 case AUTO_BOOLEAN_FALSE
:
1143 config
->support
= PACKET_DISABLE
;
1145 case AUTO_BOOLEAN_AUTO
:
1146 config
->support
= PACKET_SUPPORT_UNKNOWN
;
1152 show_packet_config_cmd (struct packet_config
*config
)
1154 char *support
= "internal-error";
1156 switch (config
->support
)
1159 support
= "enabled";
1161 case PACKET_DISABLE
:
1162 support
= "disabled";
1164 case PACKET_SUPPORT_UNKNOWN
:
1165 support
= "unknown";
1168 switch (config
->detect
)
1170 case AUTO_BOOLEAN_AUTO
:
1171 printf_filtered (_("Support for the `%s' packet "
1172 "is auto-detected, currently %s.\n"),
1173 config
->name
, support
);
1175 case AUTO_BOOLEAN_TRUE
:
1176 case AUTO_BOOLEAN_FALSE
:
1177 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1178 config
->name
, support
);
1184 add_packet_config_cmd (struct packet_config
*config
, const char *name
,
1185 const char *title
, int legacy
)
1191 config
->name
= name
;
1192 config
->title
= title
;
1193 config
->detect
= AUTO_BOOLEAN_AUTO
;
1194 config
->support
= PACKET_SUPPORT_UNKNOWN
;
1195 set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1197 show_doc
= xstrprintf ("Show current use of remote "
1198 "protocol `%s' (%s) packet",
1200 /* set/show TITLE-packet {auto,on,off} */
1201 cmd_name
= xstrprintf ("%s-packet", title
);
1202 add_setshow_auto_boolean_cmd (cmd_name
, class_obscure
,
1203 &config
->detect
, set_doc
,
1204 show_doc
, NULL
, /* help_doc */
1205 set_remote_protocol_packet_cmd
,
1206 show_remote_protocol_packet_cmd
,
1207 &remote_set_cmdlist
, &remote_show_cmdlist
);
1208 /* The command code copies the documentation strings. */
1211 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1216 legacy_name
= xstrprintf ("%s-packet", name
);
1217 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1218 &remote_set_cmdlist
);
1219 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1220 &remote_show_cmdlist
);
1224 static enum packet_result
1225 packet_check_result (const char *buf
)
1229 /* The stub recognized the packet request. Check that the
1230 operation succeeded. */
1232 && isxdigit (buf
[1]) && isxdigit (buf
[2])
1234 /* "Enn" - definitly an error. */
1235 return PACKET_ERROR
;
1237 /* Always treat "E." as an error. This will be used for
1238 more verbose error messages, such as E.memtypes. */
1239 if (buf
[0] == 'E' && buf
[1] == '.')
1240 return PACKET_ERROR
;
1242 /* The packet may or may not be OK. Just assume it is. */
1246 /* The stub does not support the packet. */
1247 return PACKET_UNKNOWN
;
1250 static enum packet_result
1251 packet_ok (const char *buf
, struct packet_config
*config
)
1253 enum packet_result result
;
1255 result
= packet_check_result (buf
);
1260 /* The stub recognized the packet request. */
1261 switch (config
->support
)
1263 case PACKET_SUPPORT_UNKNOWN
:
1265 fprintf_unfiltered (gdb_stdlog
,
1266 "Packet %s (%s) is supported\n",
1267 config
->name
, config
->title
);
1268 config
->support
= PACKET_ENABLE
;
1270 case PACKET_DISABLE
:
1271 internal_error (__FILE__
, __LINE__
,
1272 _("packet_ok: attempt to use a disabled packet"));
1278 case PACKET_UNKNOWN
:
1279 /* The stub does not support the packet. */
1280 switch (config
->support
)
1283 if (config
->detect
== AUTO_BOOLEAN_AUTO
)
1284 /* If the stub previously indicated that the packet was
1285 supported then there is a protocol error.. */
1286 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1287 config
->name
, config
->title
);
1289 /* The user set it wrong. */
1290 error (_("Enabled packet %s (%s) not recognized by stub"),
1291 config
->name
, config
->title
);
1293 case PACKET_SUPPORT_UNKNOWN
:
1295 fprintf_unfiltered (gdb_stdlog
,
1296 "Packet %s (%s) is NOT supported\n",
1297 config
->name
, config
->title
);
1298 config
->support
= PACKET_DISABLE
;
1300 case PACKET_DISABLE
:
1322 PACKET_vFile_pwrite
,
1324 PACKET_vFile_unlink
,
1325 PACKET_vFile_readlink
,
1327 PACKET_qXfer_features
,
1328 PACKET_qXfer_libraries
,
1329 PACKET_qXfer_libraries_svr4
,
1330 PACKET_qXfer_memory_map
,
1331 PACKET_qXfer_spu_read
,
1332 PACKET_qXfer_spu_write
,
1333 PACKET_qXfer_osdata
,
1334 PACKET_qXfer_threads
,
1335 PACKET_qXfer_statictrace_read
,
1336 PACKET_qXfer_traceframe_info
,
1342 PACKET_QPassSignals
,
1343 PACKET_QProgramSignals
,
1344 PACKET_qSearch_memory
,
1347 PACKET_QStartNoAckMode
,
1349 PACKET_qXfer_siginfo_read
,
1350 PACKET_qXfer_siginfo_write
,
1352 PACKET_ConditionalTracepoints
,
1353 PACKET_ConditionalBreakpoints
,
1354 PACKET_BreakpointCommands
,
1355 PACKET_FastTracepoints
,
1356 PACKET_StaticTracepoints
,
1357 PACKET_InstallInTrace
,
1360 PACKET_TracepointSource
,
1363 PACKET_QDisableRandomization
,
1365 PACKET_QTBuffer_size
,
1368 PACKET_qXfer_btrace
,
1372 static struct packet_config remote_protocol_packets
[PACKET_MAX
];
1375 set_remote_protocol_packet_cmd (char *args
, int from_tty
,
1376 struct cmd_list_element
*c
)
1378 struct packet_config
*packet
;
1380 for (packet
= remote_protocol_packets
;
1381 packet
< &remote_protocol_packets
[PACKET_MAX
];
1384 if (&packet
->detect
== c
->var
)
1386 update_packet_config (packet
);
1390 internal_error (__FILE__
, __LINE__
, _("Could not find config for %s"),
1395 show_remote_protocol_packet_cmd (struct ui_file
*file
, int from_tty
,
1396 struct cmd_list_element
*c
,
1399 struct packet_config
*packet
;
1401 for (packet
= remote_protocol_packets
;
1402 packet
< &remote_protocol_packets
[PACKET_MAX
];
1405 if (&packet
->detect
== c
->var
)
1407 show_packet_config_cmd (packet
);
1411 internal_error (__FILE__
, __LINE__
, _("Could not find config for %s"),
1415 /* Should we try one of the 'Z' requests? */
1419 Z_PACKET_SOFTWARE_BP
,
1420 Z_PACKET_HARDWARE_BP
,
1427 /* For compatibility with older distributions. Provide a ``set remote
1428 Z-packet ...'' command that updates all the Z packet types. */
1430 static enum auto_boolean remote_Z_packet_detect
;
1433 set_remote_protocol_Z_packet_cmd (char *args
, int from_tty
,
1434 struct cmd_list_element
*c
)
1438 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1440 remote_protocol_packets
[PACKET_Z0
+ i
].detect
= remote_Z_packet_detect
;
1441 update_packet_config (&remote_protocol_packets
[PACKET_Z0
+ i
]);
1446 show_remote_protocol_Z_packet_cmd (struct ui_file
*file
, int from_tty
,
1447 struct cmd_list_element
*c
,
1452 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1454 show_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
+ i
]);
1458 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1459 static struct async_signal_handler
*async_sigint_remote_twice_token
;
1460 static struct async_signal_handler
*async_sigint_remote_token
;
1463 /* Asynchronous signal handle registered as event loop source for
1464 when we have pending events ready to be passed to the core. */
1466 static struct async_event_handler
*remote_async_inferior_event_token
;
1470 static ptid_t magic_null_ptid
;
1471 static ptid_t not_sent_ptid
;
1472 static ptid_t any_thread_ptid
;
1474 /* Find out if the stub attached to PID (and hence GDB should offer to
1475 detach instead of killing it when bailing out). */
1478 remote_query_attached (int pid
)
1480 struct remote_state
*rs
= get_remote_state ();
1481 size_t size
= get_remote_packet_size ();
1483 if (remote_protocol_packets
[PACKET_qAttached
].support
== PACKET_DISABLE
)
1486 if (remote_multi_process_p (rs
))
1487 xsnprintf (rs
->buf
, size
, "qAttached:%x", pid
);
1489 xsnprintf (rs
->buf
, size
, "qAttached");
1492 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1494 switch (packet_ok (rs
->buf
,
1495 &remote_protocol_packets
[PACKET_qAttached
]))
1498 if (strcmp (rs
->buf
, "1") == 0)
1502 warning (_("Remote failure reply: %s"), rs
->buf
);
1504 case PACKET_UNKNOWN
:
1511 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1512 has been invented by GDB, instead of reported by the target. Since
1513 we can be connected to a remote system before before knowing about
1514 any inferior, mark the target with execution when we find the first
1515 inferior. If ATTACHED is 1, then we had just attached to this
1516 inferior. If it is 0, then we just created this inferior. If it
1517 is -1, then try querying the remote stub to find out if it had
1518 attached to the inferior or not. */
1520 static struct inferior
*
1521 remote_add_inferior (int fake_pid_p
, int pid
, int attached
)
1523 struct inferior
*inf
;
1525 /* Check whether this process we're learning about is to be
1526 considered attached, or if is to be considered to have been
1527 spawned by the stub. */
1529 attached
= remote_query_attached (pid
);
1531 if (gdbarch_has_global_solist (target_gdbarch ()))
1533 /* If the target shares code across all inferiors, then every
1534 attach adds a new inferior. */
1535 inf
= add_inferior (pid
);
1537 /* ... and every inferior is bound to the same program space.
1538 However, each inferior may still have its own address
1540 inf
->aspace
= maybe_new_address_space ();
1541 inf
->pspace
= current_program_space
;
1545 /* In the traditional debugging scenario, there's a 1-1 match
1546 between program/address spaces. We simply bind the inferior
1547 to the program space's address space. */
1548 inf
= current_inferior ();
1549 inferior_appeared (inf
, pid
);
1552 inf
->attach_flag
= attached
;
1553 inf
->fake_pid_p
= fake_pid_p
;
1558 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1559 according to RUNNING. */
1562 remote_add_thread (ptid_t ptid
, int running
)
1566 set_executing (ptid
, running
);
1567 set_running (ptid
, running
);
1570 /* Come here when we learn about a thread id from the remote target.
1571 It may be the first time we hear about such thread, so take the
1572 opportunity to add it to GDB's thread list. In case this is the
1573 first time we're noticing its corresponding inferior, add it to
1574 GDB's inferior list as well. */
1577 remote_notice_new_inferior (ptid_t currthread
, int running
)
1579 /* If this is a new thread, add it to GDB's thread list.
1580 If we leave it up to WFI to do this, bad things will happen. */
1582 if (in_thread_list (currthread
) && is_exited (currthread
))
1584 /* We're seeing an event on a thread id we knew had exited.
1585 This has to be a new thread reusing the old id. Add it. */
1586 remote_add_thread (currthread
, running
);
1590 if (!in_thread_list (currthread
))
1592 struct inferior
*inf
= NULL
;
1593 int pid
= ptid_get_pid (currthread
);
1595 if (ptid_is_pid (inferior_ptid
)
1596 && pid
== ptid_get_pid (inferior_ptid
))
1598 /* inferior_ptid has no thread member yet. This can happen
1599 with the vAttach -> remote_wait,"TAAthread:" path if the
1600 stub doesn't support qC. This is the first stop reported
1601 after an attach, so this is the main thread. Update the
1602 ptid in the thread list. */
1603 if (in_thread_list (pid_to_ptid (pid
)))
1604 thread_change_ptid (inferior_ptid
, currthread
);
1607 remote_add_thread (currthread
, running
);
1608 inferior_ptid
= currthread
;
1613 if (ptid_equal (magic_null_ptid
, inferior_ptid
))
1615 /* inferior_ptid is not set yet. This can happen with the
1616 vRun -> remote_wait,"TAAthread:" path if the stub
1617 doesn't support qC. This is the first stop reported
1618 after an attach, so this is the main thread. Update the
1619 ptid in the thread list. */
1620 thread_change_ptid (inferior_ptid
, currthread
);
1624 /* When connecting to a target remote, or to a target
1625 extended-remote which already was debugging an inferior, we
1626 may not know about it yet. Add it before adding its child
1627 thread, so notifications are emitted in a sensible order. */
1628 if (!in_inferior_list (ptid_get_pid (currthread
)))
1630 struct remote_state
*rs
= get_remote_state ();
1631 int fake_pid_p
= !remote_multi_process_p (rs
);
1633 inf
= remote_add_inferior (fake_pid_p
,
1634 ptid_get_pid (currthread
), -1);
1637 /* This is really a new thread. Add it. */
1638 remote_add_thread (currthread
, running
);
1640 /* If we found a new inferior, let the common code do whatever
1641 it needs to with it (e.g., read shared libraries, insert
1644 notice_new_inferior (currthread
, running
, 0);
1648 /* Return the private thread data, creating it if necessary. */
1650 static struct private_thread_info
*
1651 demand_private_info (ptid_t ptid
)
1653 struct thread_info
*info
= find_thread_ptid (ptid
);
1659 info
->private = xmalloc (sizeof (*(info
->private)));
1660 info
->private_dtor
= free_private_thread_info
;
1661 info
->private->core
= -1;
1662 info
->private->extra
= 0;
1665 return info
->private;
1668 /* Call this function as a result of
1669 1) A halt indication (T packet) containing a thread id
1670 2) A direct query of currthread
1671 3) Successful execution of set thread */
1674 record_currthread (struct remote_state
*rs
, ptid_t currthread
)
1676 rs
->general_thread
= currthread
;
1679 /* If 'QPassSignals' is supported, tell the remote stub what signals
1680 it can simply pass through to the inferior without reporting. */
1683 remote_pass_signals (int numsigs
, unsigned char *pass_signals
)
1685 if (remote_protocol_packets
[PACKET_QPassSignals
].support
!= PACKET_DISABLE
)
1687 char *pass_packet
, *p
;
1689 struct remote_state
*rs
= get_remote_state ();
1691 gdb_assert (numsigs
< 256);
1692 for (i
= 0; i
< numsigs
; i
++)
1694 if (pass_signals
[i
])
1697 pass_packet
= xmalloc (count
* 3 + strlen ("QPassSignals:") + 1);
1698 strcpy (pass_packet
, "QPassSignals:");
1699 p
= pass_packet
+ strlen (pass_packet
);
1700 for (i
= 0; i
< numsigs
; i
++)
1702 if (pass_signals
[i
])
1705 *p
++ = tohex (i
>> 4);
1706 *p
++ = tohex (i
& 15);
1715 if (!rs
->last_pass_packet
|| strcmp (rs
->last_pass_packet
, pass_packet
))
1717 char *buf
= rs
->buf
;
1719 putpkt (pass_packet
);
1720 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1721 packet_ok (buf
, &remote_protocol_packets
[PACKET_QPassSignals
]);
1722 if (rs
->last_pass_packet
)
1723 xfree (rs
->last_pass_packet
);
1724 rs
->last_pass_packet
= pass_packet
;
1727 xfree (pass_packet
);
1731 /* If 'QProgramSignals' is supported, tell the remote stub what
1732 signals it should pass through to the inferior when detaching. */
1735 remote_program_signals (int numsigs
, unsigned char *signals
)
1737 if (remote_protocol_packets
[PACKET_QProgramSignals
].support
!= PACKET_DISABLE
)
1741 struct remote_state
*rs
= get_remote_state ();
1743 gdb_assert (numsigs
< 256);
1744 for (i
= 0; i
< numsigs
; i
++)
1749 packet
= xmalloc (count
* 3 + strlen ("QProgramSignals:") + 1);
1750 strcpy (packet
, "QProgramSignals:");
1751 p
= packet
+ strlen (packet
);
1752 for (i
= 0; i
< numsigs
; i
++)
1754 if (signal_pass_state (i
))
1757 *p
++ = tohex (i
>> 4);
1758 *p
++ = tohex (i
& 15);
1767 if (!rs
->last_program_signals_packet
1768 || strcmp (rs
->last_program_signals_packet
, packet
) != 0)
1770 char *buf
= rs
->buf
;
1773 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1774 packet_ok (buf
, &remote_protocol_packets
[PACKET_QProgramSignals
]);
1775 xfree (rs
->last_program_signals_packet
);
1776 rs
->last_program_signals_packet
= packet
;
1783 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1784 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1785 thread. If GEN is set, set the general thread, if not, then set
1786 the step/continue thread. */
1788 set_thread (struct ptid ptid
, int gen
)
1790 struct remote_state
*rs
= get_remote_state ();
1791 ptid_t state
= gen
? rs
->general_thread
: rs
->continue_thread
;
1792 char *buf
= rs
->buf
;
1793 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
1795 if (ptid_equal (state
, ptid
))
1799 *buf
++ = gen
? 'g' : 'c';
1800 if (ptid_equal (ptid
, magic_null_ptid
))
1801 xsnprintf (buf
, endbuf
- buf
, "0");
1802 else if (ptid_equal (ptid
, any_thread_ptid
))
1803 xsnprintf (buf
, endbuf
- buf
, "0");
1804 else if (ptid_equal (ptid
, minus_one_ptid
))
1805 xsnprintf (buf
, endbuf
- buf
, "-1");
1807 write_ptid (buf
, endbuf
, ptid
);
1809 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1811 rs
->general_thread
= ptid
;
1813 rs
->continue_thread
= ptid
;
1817 set_general_thread (struct ptid ptid
)
1819 set_thread (ptid
, 1);
1823 set_continue_thread (struct ptid ptid
)
1825 set_thread (ptid
, 0);
1828 /* Change the remote current process. Which thread within the process
1829 ends up selected isn't important, as long as it is the same process
1830 as what INFERIOR_PTID points to.
1832 This comes from that fact that there is no explicit notion of
1833 "selected process" in the protocol. The selected process for
1834 general operations is the process the selected general thread
1838 set_general_process (void)
1840 struct remote_state
*rs
= get_remote_state ();
1842 /* If the remote can't handle multiple processes, don't bother. */
1843 if (!rs
->extended
|| !remote_multi_process_p (rs
))
1846 /* We only need to change the remote current thread if it's pointing
1847 at some other process. */
1848 if (ptid_get_pid (rs
->general_thread
) != ptid_get_pid (inferior_ptid
))
1849 set_general_thread (inferior_ptid
);
1853 /* Return nonzero if the thread PTID is still alive on the remote
1857 remote_thread_alive (struct target_ops
*ops
, ptid_t ptid
)
1859 struct remote_state
*rs
= get_remote_state ();
1862 if (ptid_equal (ptid
, magic_null_ptid
))
1863 /* The main thread is always alive. */
1866 if (ptid_get_pid (ptid
) != 0 && ptid_get_tid (ptid
) == 0)
1867 /* The main thread is always alive. This can happen after a
1868 vAttach, if the remote side doesn't support
1873 endp
= rs
->buf
+ get_remote_packet_size ();
1876 write_ptid (p
, endp
, ptid
);
1879 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1880 return (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K');
1883 /* About these extended threadlist and threadinfo packets. They are
1884 variable length packets but, the fields within them are often fixed
1885 length. They are redundent enough to send over UDP as is the
1886 remote protocol in general. There is a matching unit test module
1889 /* WARNING: This threadref data structure comes from the remote O.S.,
1890 libstub protocol encoding, and remote.c. It is not particularly
1893 /* Right now, the internal structure is int. We want it to be bigger.
1894 Plan to fix this. */
1896 typedef int gdb_threadref
; /* Internal GDB thread reference. */
1898 /* gdb_ext_thread_info is an internal GDB data structure which is
1899 equivalent to the reply of the remote threadinfo packet. */
1901 struct gdb_ext_thread_info
1903 threadref threadid
; /* External form of thread reference. */
1904 int active
; /* Has state interesting to GDB?
1906 char display
[256]; /* Brief state display, name,
1907 blocked/suspended. */
1908 char shortname
[32]; /* To be used to name threads. */
1909 char more_display
[256]; /* Long info, statistics, queue depth,
1913 /* The volume of remote transfers can be limited by submitting
1914 a mask containing bits specifying the desired information.
1915 Use a union of these values as the 'selection' parameter to
1916 get_thread_info. FIXME: Make these TAG names more thread specific. */
1918 #define TAG_THREADID 1
1919 #define TAG_EXISTS 2
1920 #define TAG_DISPLAY 4
1921 #define TAG_THREADNAME 8
1922 #define TAG_MOREDISPLAY 16
1924 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1926 char *unpack_varlen_hex (char *buff
, ULONGEST
*result
);
1928 static char *unpack_nibble (char *buf
, int *val
);
1930 static char *pack_nibble (char *buf
, int nibble
);
1932 static char *pack_hex_byte (char *pkt
, int /* unsigned char */ byte
);
1934 static char *unpack_byte (char *buf
, int *value
);
1936 static char *pack_int (char *buf
, int value
);
1938 static char *unpack_int (char *buf
, int *value
);
1940 static char *unpack_string (char *src
, char *dest
, int length
);
1942 static char *pack_threadid (char *pkt
, threadref
*id
);
1944 static char *unpack_threadid (char *inbuf
, threadref
*id
);
1946 void int_to_threadref (threadref
*id
, int value
);
1948 static int threadref_to_int (threadref
*ref
);
1950 static void copy_threadref (threadref
*dest
, threadref
*src
);
1952 static int threadmatch (threadref
*dest
, threadref
*src
);
1954 static char *pack_threadinfo_request (char *pkt
, int mode
,
1957 static int remote_unpack_thread_info_response (char *pkt
,
1958 threadref
*expectedref
,
1959 struct gdb_ext_thread_info
1963 static int remote_get_threadinfo (threadref
*threadid
,
1964 int fieldset
, /*TAG mask */
1965 struct gdb_ext_thread_info
*info
);
1967 static char *pack_threadlist_request (char *pkt
, int startflag
,
1969 threadref
*nextthread
);
1971 static int parse_threadlist_response (char *pkt
,
1973 threadref
*original_echo
,
1974 threadref
*resultlist
,
1977 static int remote_get_threadlist (int startflag
,
1978 threadref
*nextthread
,
1982 threadref
*threadlist
);
1984 typedef int (*rmt_thread_action
) (threadref
*ref
, void *context
);
1986 static int remote_threadlist_iterator (rmt_thread_action stepfunction
,
1987 void *context
, int looplimit
);
1989 static int remote_newthread_step (threadref
*ref
, void *context
);
1992 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1993 buffer we're allowed to write to. Returns
1994 BUF+CHARACTERS_WRITTEN. */
1997 write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
)
2000 struct remote_state
*rs
= get_remote_state ();
2002 if (remote_multi_process_p (rs
))
2004 pid
= ptid_get_pid (ptid
);
2006 buf
+= xsnprintf (buf
, endbuf
- buf
, "p-%x.", -pid
);
2008 buf
+= xsnprintf (buf
, endbuf
- buf
, "p%x.", pid
);
2010 tid
= ptid_get_tid (ptid
);
2012 buf
+= xsnprintf (buf
, endbuf
- buf
, "-%x", -tid
);
2014 buf
+= xsnprintf (buf
, endbuf
- buf
, "%x", tid
);
2019 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2020 passed the last parsed char. Returns null_ptid on error. */
2023 read_ptid (char *buf
, char **obuf
)
2027 ULONGEST pid
= 0, tid
= 0;
2031 /* Multi-process ptid. */
2032 pp
= unpack_varlen_hex (p
+ 1, &pid
);
2034 error (_("invalid remote ptid: %s"), p
);
2037 pp
= unpack_varlen_hex (p
+ 1, &tid
);
2040 return ptid_build (pid
, 0, tid
);
2043 /* No multi-process. Just a tid. */
2044 pp
= unpack_varlen_hex (p
, &tid
);
2046 /* Since the stub is not sending a process id, then default to
2047 what's in inferior_ptid, unless it's null at this point. If so,
2048 then since there's no way to know the pid of the reported
2049 threads, use the magic number. */
2050 if (ptid_equal (inferior_ptid
, null_ptid
))
2051 pid
= ptid_get_pid (magic_null_ptid
);
2053 pid
= ptid_get_pid (inferior_ptid
);
2057 return ptid_build (pid
, 0, tid
);
2060 /* Encode 64 bits in 16 chars of hex. */
2062 static const char hexchars
[] = "0123456789abcdef";
2065 ishex (int ch
, int *val
)
2067 if ((ch
>= 'a') && (ch
<= 'f'))
2069 *val
= ch
- 'a' + 10;
2072 if ((ch
>= 'A') && (ch
<= 'F'))
2074 *val
= ch
- 'A' + 10;
2077 if ((ch
>= '0') && (ch
<= '9'))
2088 if (ch
>= 'a' && ch
<= 'f')
2089 return ch
- 'a' + 10;
2090 if (ch
>= '0' && ch
<= '9')
2092 if (ch
>= 'A' && ch
<= 'F')
2093 return ch
- 'A' + 10;
2098 stub_unpack_int (char *buff
, int fieldlength
)
2105 nibble
= stubhex (*buff
++);
2109 retval
= retval
<< 4;
2115 unpack_varlen_hex (char *buff
, /* packet to parse */
2119 ULONGEST retval
= 0;
2121 while (ishex (*buff
, &nibble
))
2124 retval
= retval
<< 4;
2125 retval
|= nibble
& 0x0f;
2132 unpack_nibble (char *buf
, int *val
)
2134 *val
= fromhex (*buf
++);
2139 pack_nibble (char *buf
, int nibble
)
2141 *buf
++ = hexchars
[(nibble
& 0x0f)];
2146 pack_hex_byte (char *pkt
, int byte
)
2148 *pkt
++ = hexchars
[(byte
>> 4) & 0xf];
2149 *pkt
++ = hexchars
[(byte
& 0xf)];
2154 unpack_byte (char *buf
, int *value
)
2156 *value
= stub_unpack_int (buf
, 2);
2161 pack_int (char *buf
, int value
)
2163 buf
= pack_hex_byte (buf
, (value
>> 24) & 0xff);
2164 buf
= pack_hex_byte (buf
, (value
>> 16) & 0xff);
2165 buf
= pack_hex_byte (buf
, (value
>> 8) & 0x0ff);
2166 buf
= pack_hex_byte (buf
, (value
& 0xff));
2171 unpack_int (char *buf
, int *value
)
2173 *value
= stub_unpack_int (buf
, 8);
2177 #if 0 /* Currently unused, uncomment when needed. */
2178 static char *pack_string (char *pkt
, char *string
);
2181 pack_string (char *pkt
, char *string
)
2186 len
= strlen (string
);
2188 len
= 200; /* Bigger than most GDB packets, junk??? */
2189 pkt
= pack_hex_byte (pkt
, len
);
2193 if ((ch
== '\0') || (ch
== '#'))
2194 ch
= '*'; /* Protect encapsulation. */
2199 #endif /* 0 (unused) */
2202 unpack_string (char *src
, char *dest
, int length
)
2211 pack_threadid (char *pkt
, threadref
*id
)
2214 unsigned char *altid
;
2216 altid
= (unsigned char *) id
;
2217 limit
= pkt
+ BUF_THREAD_ID_SIZE
;
2219 pkt
= pack_hex_byte (pkt
, *altid
++);
2225 unpack_threadid (char *inbuf
, threadref
*id
)
2228 char *limit
= inbuf
+ BUF_THREAD_ID_SIZE
;
2231 altref
= (char *) id
;
2233 while (inbuf
< limit
)
2235 x
= stubhex (*inbuf
++);
2236 y
= stubhex (*inbuf
++);
2237 *altref
++ = (x
<< 4) | y
;
2242 /* Externally, threadrefs are 64 bits but internally, they are still
2243 ints. This is due to a mismatch of specifications. We would like
2244 to use 64bit thread references internally. This is an adapter
2248 int_to_threadref (threadref
*id
, int value
)
2250 unsigned char *scan
;
2252 scan
= (unsigned char *) id
;
2258 *scan
++ = (value
>> 24) & 0xff;
2259 *scan
++ = (value
>> 16) & 0xff;
2260 *scan
++ = (value
>> 8) & 0xff;
2261 *scan
++ = (value
& 0xff);
2265 threadref_to_int (threadref
*ref
)
2268 unsigned char *scan
;
2274 value
= (value
<< 8) | ((*scan
++) & 0xff);
2279 copy_threadref (threadref
*dest
, threadref
*src
)
2282 unsigned char *csrc
, *cdest
;
2284 csrc
= (unsigned char *) src
;
2285 cdest
= (unsigned char *) dest
;
2292 threadmatch (threadref
*dest
, threadref
*src
)
2294 /* Things are broken right now, so just assume we got a match. */
2296 unsigned char *srcp
, *destp
;
2298 srcp
= (char *) src
;
2299 destp
= (char *) dest
;
2303 result
&= (*srcp
++ == *destp
++) ? 1 : 0;
2310 threadid:1, # always request threadid
2317 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2320 pack_threadinfo_request (char *pkt
, int mode
, threadref
*id
)
2322 *pkt
++ = 'q'; /* Info Query */
2323 *pkt
++ = 'P'; /* process or thread info */
2324 pkt
= pack_int (pkt
, mode
); /* mode */
2325 pkt
= pack_threadid (pkt
, id
); /* threadid */
2326 *pkt
= '\0'; /* terminate */
2330 /* These values tag the fields in a thread info response packet. */
2331 /* Tagging the fields allows us to request specific fields and to
2332 add more fields as time goes by. */
2334 #define TAG_THREADID 1 /* Echo the thread identifier. */
2335 #define TAG_EXISTS 2 /* Is this process defined enough to
2336 fetch registers and its stack? */
2337 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2338 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2339 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2343 remote_unpack_thread_info_response (char *pkt
, threadref
*expectedref
,
2344 struct gdb_ext_thread_info
*info
)
2346 struct remote_state
*rs
= get_remote_state ();
2350 char *limit
= pkt
+ rs
->buf_size
; /* Plausible parsing limit. */
2353 /* info->threadid = 0; FIXME: implement zero_threadref. */
2355 info
->display
[0] = '\0';
2356 info
->shortname
[0] = '\0';
2357 info
->more_display
[0] = '\0';
2359 /* Assume the characters indicating the packet type have been
2361 pkt
= unpack_int (pkt
, &mask
); /* arg mask */
2362 pkt
= unpack_threadid (pkt
, &ref
);
2365 warning (_("Incomplete response to threadinfo request."));
2366 if (!threadmatch (&ref
, expectedref
))
2367 { /* This is an answer to a different request. */
2368 warning (_("ERROR RMT Thread info mismatch."));
2371 copy_threadref (&info
->threadid
, &ref
);
2373 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2375 /* Packets are terminated with nulls. */
2376 while ((pkt
< limit
) && mask
&& *pkt
)
2378 pkt
= unpack_int (pkt
, &tag
); /* tag */
2379 pkt
= unpack_byte (pkt
, &length
); /* length */
2380 if (!(tag
& mask
)) /* Tags out of synch with mask. */
2382 warning (_("ERROR RMT: threadinfo tag mismatch."));
2386 if (tag
== TAG_THREADID
)
2390 warning (_("ERROR RMT: length of threadid is not 16."));
2394 pkt
= unpack_threadid (pkt
, &ref
);
2395 mask
= mask
& ~TAG_THREADID
;
2398 if (tag
== TAG_EXISTS
)
2400 info
->active
= stub_unpack_int (pkt
, length
);
2402 mask
= mask
& ~(TAG_EXISTS
);
2405 warning (_("ERROR RMT: 'exists' length too long."));
2411 if (tag
== TAG_THREADNAME
)
2413 pkt
= unpack_string (pkt
, &info
->shortname
[0], length
);
2414 mask
= mask
& ~TAG_THREADNAME
;
2417 if (tag
== TAG_DISPLAY
)
2419 pkt
= unpack_string (pkt
, &info
->display
[0], length
);
2420 mask
= mask
& ~TAG_DISPLAY
;
2423 if (tag
== TAG_MOREDISPLAY
)
2425 pkt
= unpack_string (pkt
, &info
->more_display
[0], length
);
2426 mask
= mask
& ~TAG_MOREDISPLAY
;
2429 warning (_("ERROR RMT: unknown thread info tag."));
2430 break; /* Not a tag we know about. */
2436 remote_get_threadinfo (threadref
*threadid
, int fieldset
, /* TAG mask */
2437 struct gdb_ext_thread_info
*info
)
2439 struct remote_state
*rs
= get_remote_state ();
2442 pack_threadinfo_request (rs
->buf
, fieldset
, threadid
);
2444 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2446 if (rs
->buf
[0] == '\0')
2449 result
= remote_unpack_thread_info_response (rs
->buf
+ 2,
2454 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2457 pack_threadlist_request (char *pkt
, int startflag
, int threadcount
,
2458 threadref
*nextthread
)
2460 *pkt
++ = 'q'; /* info query packet */
2461 *pkt
++ = 'L'; /* Process LIST or threadLIST request */
2462 pkt
= pack_nibble (pkt
, startflag
); /* initflag 1 bytes */
2463 pkt
= pack_hex_byte (pkt
, threadcount
); /* threadcount 2 bytes */
2464 pkt
= pack_threadid (pkt
, nextthread
); /* 64 bit thread identifier */
2469 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2472 parse_threadlist_response (char *pkt
, int result_limit
,
2473 threadref
*original_echo
, threadref
*resultlist
,
2476 struct remote_state
*rs
= get_remote_state ();
2478 int count
, resultcount
, done
;
2481 /* Assume the 'q' and 'M chars have been stripped. */
2482 limit
= pkt
+ (rs
->buf_size
- BUF_THREAD_ID_SIZE
);
2483 /* done parse past here */
2484 pkt
= unpack_byte (pkt
, &count
); /* count field */
2485 pkt
= unpack_nibble (pkt
, &done
);
2486 /* The first threadid is the argument threadid. */
2487 pkt
= unpack_threadid (pkt
, original_echo
); /* should match query packet */
2488 while ((count
-- > 0) && (pkt
< limit
))
2490 pkt
= unpack_threadid (pkt
, resultlist
++);
2491 if (resultcount
++ >= result_limit
)
2500 remote_get_threadlist (int startflag
, threadref
*nextthread
, int result_limit
,
2501 int *done
, int *result_count
, threadref
*threadlist
)
2503 struct remote_state
*rs
= get_remote_state ();
2506 /* Trancate result limit to be smaller than the packet size. */
2507 if ((((result_limit
+ 1) * BUF_THREAD_ID_SIZE
) + 10)
2508 >= get_remote_packet_size ())
2509 result_limit
= (get_remote_packet_size () / BUF_THREAD_ID_SIZE
) - 2;
2511 pack_threadlist_request (rs
->buf
, startflag
, result_limit
, nextthread
);
2513 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2515 if (*rs
->buf
== '\0')
2519 parse_threadlist_response (rs
->buf
+ 2, result_limit
,
2520 &rs
->echo_nextthread
, threadlist
, done
);
2522 if (!threadmatch (&rs
->echo_nextthread
, nextthread
))
2524 /* FIXME: This is a good reason to drop the packet. */
2525 /* Possably, there is a duplicate response. */
2527 retransmit immediatly - race conditions
2528 retransmit after timeout - yes
2530 wait for packet, then exit
2532 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2533 return 0; /* I choose simply exiting. */
2535 if (*result_count
<= 0)
2539 warning (_("RMT ERROR : failed to get remote thread list."));
2542 return result
; /* break; */
2544 if (*result_count
> result_limit
)
2547 warning (_("RMT ERROR: threadlist response longer than requested."));
2553 /* This is the interface between remote and threads, remotes upper
2556 /* remote_find_new_threads retrieves the thread list and for each
2557 thread in the list, looks up the thread in GDB's internal list,
2558 adding the thread if it does not already exist. This involves
2559 getting partial thread lists from the remote target so, polling the
2560 quit_flag is required. */
2564 remote_threadlist_iterator (rmt_thread_action stepfunction
, void *context
,
2567 struct remote_state
*rs
= get_remote_state ();
2568 int done
, i
, result_count
;
2576 if (loopcount
++ > looplimit
)
2579 warning (_("Remote fetch threadlist -infinite loop-."));
2582 if (!remote_get_threadlist (startflag
, &rs
->nextthread
,
2583 MAXTHREADLISTRESULTS
,
2584 &done
, &result_count
, rs
->resultthreadlist
))
2589 /* Clear for later iterations. */
2591 /* Setup to resume next batch of thread references, set nextthread. */
2592 if (result_count
>= 1)
2593 copy_threadref (&rs
->nextthread
,
2594 &rs
->resultthreadlist
[result_count
- 1]);
2596 while (result_count
--)
2597 if (!(result
= (*stepfunction
) (&rs
->resultthreadlist
[i
++], context
)))
2604 remote_newthread_step (threadref
*ref
, void *context
)
2606 int pid
= ptid_get_pid (inferior_ptid
);
2607 ptid_t ptid
= ptid_build (pid
, 0, threadref_to_int (ref
));
2609 if (!in_thread_list (ptid
))
2611 return 1; /* continue iterator */
2614 #define CRAZY_MAX_THREADS 1000
2617 remote_current_thread (ptid_t oldpid
)
2619 struct remote_state
*rs
= get_remote_state ();
2622 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2623 if (rs
->buf
[0] == 'Q' && rs
->buf
[1] == 'C')
2624 return read_ptid (&rs
->buf
[2], NULL
);
2629 /* Find new threads for info threads command.
2630 * Original version, using John Metzler's thread protocol.
2634 remote_find_new_threads (void)
2636 remote_threadlist_iterator (remote_newthread_step
, 0,
2640 #if defined(HAVE_LIBEXPAT)
2642 typedef struct thread_item
2648 DEF_VEC_O(thread_item_t
);
2650 struct threads_parsing_context
2652 VEC (thread_item_t
) *items
;
2656 start_thread (struct gdb_xml_parser
*parser
,
2657 const struct gdb_xml_element
*element
,
2658 void *user_data
, VEC(gdb_xml_value_s
) *attributes
)
2660 struct threads_parsing_context
*data
= user_data
;
2662 struct thread_item item
;
2664 struct gdb_xml_value
*attr
;
2666 id
= xml_find_attribute (attributes
, "id")->value
;
2667 item
.ptid
= read_ptid (id
, NULL
);
2669 attr
= xml_find_attribute (attributes
, "core");
2671 item
.core
= *(ULONGEST
*) attr
->value
;
2677 VEC_safe_push (thread_item_t
, data
->items
, &item
);
2681 end_thread (struct gdb_xml_parser
*parser
,
2682 const struct gdb_xml_element
*element
,
2683 void *user_data
, const char *body_text
)
2685 struct threads_parsing_context
*data
= user_data
;
2687 if (body_text
&& *body_text
)
2688 VEC_last (thread_item_t
, data
->items
)->extra
= xstrdup (body_text
);
2691 const struct gdb_xml_attribute thread_attributes
[] = {
2692 { "id", GDB_XML_AF_NONE
, NULL
, NULL
},
2693 { "core", GDB_XML_AF_OPTIONAL
, gdb_xml_parse_attr_ulongest
, NULL
},
2694 { NULL
, GDB_XML_AF_NONE
, NULL
, NULL
}
2697 const struct gdb_xml_element thread_children
[] = {
2698 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
2701 const struct gdb_xml_element threads_children
[] = {
2702 { "thread", thread_attributes
, thread_children
,
2703 GDB_XML_EF_REPEATABLE
| GDB_XML_EF_OPTIONAL
,
2704 start_thread
, end_thread
},
2705 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
2708 const struct gdb_xml_element threads_elements
[] = {
2709 { "threads", NULL
, threads_children
,
2710 GDB_XML_EF_NONE
, NULL
, NULL
},
2711 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
2714 /* Discard the contents of the constructed thread info context. */
2717 clear_threads_parsing_context (void *p
)
2719 struct threads_parsing_context
*context
= p
;
2721 struct thread_item
*item
;
2723 for (i
= 0; VEC_iterate (thread_item_t
, context
->items
, i
, item
); ++i
)
2724 xfree (item
->extra
);
2726 VEC_free (thread_item_t
, context
->items
);
2732 * Find all threads for info threads command.
2733 * Uses new thread protocol contributed by Cisco.
2734 * Falls back and attempts to use the older method (above)
2735 * if the target doesn't respond to the new method.
2739 remote_threads_info (struct target_ops
*ops
)
2741 struct remote_state
*rs
= get_remote_state ();
2745 if (rs
->remote_desc
== 0) /* paranoia */
2746 error (_("Command can only be used when connected to the remote target."));
2748 #if defined(HAVE_LIBEXPAT)
2749 if (remote_protocol_packets
[PACKET_qXfer_threads
].support
== PACKET_ENABLE
)
2751 char *xml
= target_read_stralloc (¤t_target
,
2752 TARGET_OBJECT_THREADS
, NULL
);
2754 struct cleanup
*back_to
= make_cleanup (xfree
, xml
);
2758 struct threads_parsing_context context
;
2760 context
.items
= NULL
;
2761 make_cleanup (clear_threads_parsing_context
, &context
);
2763 if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2764 threads_elements
, xml
, &context
) == 0)
2767 struct thread_item
*item
;
2770 VEC_iterate (thread_item_t
, context
.items
, i
, item
);
2773 if (!ptid_equal (item
->ptid
, null_ptid
))
2775 struct private_thread_info
*info
;
2776 /* In non-stop mode, we assume new found threads
2777 are running until proven otherwise with a
2778 stop reply. In all-stop, we can only get
2779 here if all threads are stopped. */
2780 int running
= non_stop
? 1 : 0;
2782 remote_notice_new_inferior (item
->ptid
, running
);
2784 info
= demand_private_info (item
->ptid
);
2785 info
->core
= item
->core
;
2786 info
->extra
= item
->extra
;
2793 do_cleanups (back_to
);
2798 if (rs
->use_threadinfo_query
)
2800 putpkt ("qfThreadInfo");
2801 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2803 if (bufp
[0] != '\0') /* q packet recognized */
2805 struct cleanup
*old_chain
;
2808 /* remote_notice_new_inferior (in the loop below) may make
2809 new RSP calls, which clobber rs->buf. Work with a
2811 bufp
= saved_reply
= xstrdup (rs
->buf
);
2812 old_chain
= make_cleanup (free_current_contents
, &saved_reply
);
2814 while (*bufp
++ == 'm') /* reply contains one or more TID */
2818 new_thread
= read_ptid (bufp
, &bufp
);
2819 if (!ptid_equal (new_thread
, null_ptid
))
2821 /* In non-stop mode, we assume new found threads
2822 are running until proven otherwise with a
2823 stop reply. In all-stop, we can only get
2824 here if all threads are stopped. */
2825 int running
= non_stop
? 1 : 0;
2827 remote_notice_new_inferior (new_thread
, running
);
2830 while (*bufp
++ == ','); /* comma-separated list */
2831 free_current_contents (&saved_reply
);
2832 putpkt ("qsThreadInfo");
2833 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2834 bufp
= saved_reply
= xstrdup (rs
->buf
);
2836 do_cleanups (old_chain
);
2841 /* Only qfThreadInfo is supported in non-stop mode. */
2845 /* Else fall back to old method based on jmetzler protocol. */
2846 rs
->use_threadinfo_query
= 0;
2847 remote_find_new_threads ();
2852 * Collect a descriptive string about the given thread.
2853 * The target may say anything it wants to about the thread
2854 * (typically info about its blocked / runnable state, name, etc.).
2855 * This string will appear in the info threads display.
2857 * Optional: targets are not required to implement this function.
2861 remote_threads_extra_info (struct thread_info
*tp
)
2863 struct remote_state
*rs
= get_remote_state ();
2867 struct gdb_ext_thread_info threadinfo
;
2868 static char display_buf
[100]; /* arbitrary... */
2869 int n
= 0; /* position in display_buf */
2871 if (rs
->remote_desc
== 0) /* paranoia */
2872 internal_error (__FILE__
, __LINE__
,
2873 _("remote_threads_extra_info"));
2875 if (ptid_equal (tp
->ptid
, magic_null_ptid
)
2876 || (ptid_get_pid (tp
->ptid
) != 0 && ptid_get_tid (tp
->ptid
) == 0))
2877 /* This is the main thread which was added by GDB. The remote
2878 server doesn't know about it. */
2881 if (remote_protocol_packets
[PACKET_qXfer_threads
].support
== PACKET_ENABLE
)
2883 struct thread_info
*info
= find_thread_ptid (tp
->ptid
);
2885 if (info
&& info
->private)
2886 return info
->private->extra
;
2891 if (rs
->use_threadextra_query
)
2894 char *endb
= rs
->buf
+ get_remote_packet_size ();
2896 xsnprintf (b
, endb
- b
, "qThreadExtraInfo,");
2898 write_ptid (b
, endb
, tp
->ptid
);
2901 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2902 if (rs
->buf
[0] != 0)
2904 n
= min (strlen (rs
->buf
) / 2, sizeof (display_buf
));
2905 result
= hex2bin (rs
->buf
, (gdb_byte
*) display_buf
, n
);
2906 display_buf
[result
] = '\0';
2911 /* If the above query fails, fall back to the old method. */
2912 rs
->use_threadextra_query
= 0;
2913 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
2914 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
2915 int_to_threadref (&id
, ptid_get_tid (tp
->ptid
));
2916 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
2917 if (threadinfo
.active
)
2919 if (*threadinfo
.shortname
)
2920 n
+= xsnprintf (&display_buf
[0], sizeof (display_buf
) - n
,
2921 " Name: %s,", threadinfo
.shortname
);
2922 if (*threadinfo
.display
)
2923 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2924 " State: %s,", threadinfo
.display
);
2925 if (*threadinfo
.more_display
)
2926 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2927 " Priority: %s", threadinfo
.more_display
);
2931 /* For purely cosmetic reasons, clear up trailing commas. */
2932 if (',' == display_buf
[n
-1])
2933 display_buf
[n
-1] = ' ';
2942 remote_static_tracepoint_marker_at (CORE_ADDR addr
,
2943 struct static_tracepoint_marker
*marker
)
2945 struct remote_state
*rs
= get_remote_state ();
2948 xsnprintf (p
, get_remote_packet_size (), "qTSTMat:");
2950 p
+= hexnumstr (p
, addr
);
2952 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2956 error (_("Remote failure reply: %s"), p
);
2960 parse_static_tracepoint_marker_definition (p
, &p
, marker
);
2967 static VEC(static_tracepoint_marker_p
) *
2968 remote_static_tracepoint_markers_by_strid (const char *strid
)
2970 struct remote_state
*rs
= get_remote_state ();
2971 VEC(static_tracepoint_marker_p
) *markers
= NULL
;
2972 struct static_tracepoint_marker
*marker
= NULL
;
2973 struct cleanup
*old_chain
;
2976 /* Ask for a first packet of static tracepoint marker
2979 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2982 error (_("Remote failure reply: %s"), p
);
2984 old_chain
= make_cleanup (free_current_marker
, &marker
);
2989 marker
= XCNEW (struct static_tracepoint_marker
);
2993 parse_static_tracepoint_marker_definition (p
, &p
, marker
);
2995 if (strid
== NULL
|| strcmp (strid
, marker
->str_id
) == 0)
2997 VEC_safe_push (static_tracepoint_marker_p
,
3003 release_static_tracepoint_marker (marker
);
3004 memset (marker
, 0, sizeof (*marker
));
3007 while (*p
++ == ','); /* comma-separated list */
3008 /* Ask for another packet of static tracepoint definition. */
3010 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3014 do_cleanups (old_chain
);
3019 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3022 remote_get_ada_task_ptid (long lwp
, long thread
)
3024 return ptid_build (ptid_get_pid (inferior_ptid
), 0, lwp
);
3028 /* Restart the remote side; this is an extended protocol operation. */
3031 extended_remote_restart (void)
3033 struct remote_state
*rs
= get_remote_state ();
3035 /* Send the restart command; for reasons I don't understand the
3036 remote side really expects a number after the "R". */
3037 xsnprintf (rs
->buf
, get_remote_packet_size (), "R%x", 0);
3040 remote_fileio_reset ();
3043 /* Clean up connection to a remote debugger. */
3048 struct remote_state
*rs
= get_remote_state ();
3050 if (rs
->remote_desc
== NULL
)
3051 return; /* already closed */
3053 /* Make sure we leave stdin registered in the event loop, and we
3054 don't leave the async SIGINT signal handler installed. */
3055 remote_terminal_ours ();
3057 serial_close (rs
->remote_desc
);
3058 rs
->remote_desc
= NULL
;
3060 /* We don't have a connection to the remote stub anymore. Get rid
3061 of all the inferiors and their threads we were controlling.
3062 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3063 will be unable to find the thread corresponding to (pid, 0, 0). */
3064 inferior_ptid
= null_ptid
;
3065 discard_all_inferiors ();
3067 /* Stop replies may from inferiors which are still unknown to GDB.
3068 We are closing the remote target, so we should discard
3069 everything, including the stop replies from GDB-unknown
3071 discard_pending_stop_replies (NULL
);
3073 if (remote_async_inferior_event_token
)
3074 delete_async_event_handler (&remote_async_inferior_event_token
);
3076 remote_notif_unregister_async_event_handler ();
3078 trace_reset_local_state ();
3081 /* Query the remote side for the text, data and bss offsets. */
3086 struct remote_state
*rs
= get_remote_state ();
3089 int lose
, num_segments
= 0, do_sections
, do_segments
;
3090 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
3091 struct section_offsets
*offs
;
3092 struct symfile_segment_data
*data
;
3094 if (symfile_objfile
== NULL
)
3097 putpkt ("qOffsets");
3098 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3101 if (buf
[0] == '\000')
3102 return; /* Return silently. Stub doesn't support
3106 warning (_("Remote failure reply: %s"), buf
);
3110 /* Pick up each field in turn. This used to be done with scanf, but
3111 scanf will make trouble if CORE_ADDR size doesn't match
3112 conversion directives correctly. The following code will work
3113 with any size of CORE_ADDR. */
3114 text_addr
= data_addr
= bss_addr
= 0;
3118 if (strncmp (ptr
, "Text=", 5) == 0)
3121 /* Don't use strtol, could lose on big values. */
3122 while (*ptr
&& *ptr
!= ';')
3123 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
3125 if (strncmp (ptr
, ";Data=", 6) == 0)
3128 while (*ptr
&& *ptr
!= ';')
3129 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
3134 if (!lose
&& strncmp (ptr
, ";Bss=", 5) == 0)
3137 while (*ptr
&& *ptr
!= ';')
3138 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
3140 if (bss_addr
!= data_addr
)
3141 warning (_("Target reported unsupported offsets: %s"), buf
);
3146 else if (strncmp (ptr
, "TextSeg=", 8) == 0)
3149 /* Don't use strtol, could lose on big values. */
3150 while (*ptr
&& *ptr
!= ';')
3151 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
3154 if (strncmp (ptr
, ";DataSeg=", 9) == 0)
3157 while (*ptr
&& *ptr
!= ';')
3158 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
3166 error (_("Malformed response to offset query, %s"), buf
);
3167 else if (*ptr
!= '\0')
3168 warning (_("Target reported unsupported offsets: %s"), buf
);
3170 offs
= ((struct section_offsets
*)
3171 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
3172 memcpy (offs
, symfile_objfile
->section_offsets
,
3173 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
3175 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
3176 do_segments
= (data
!= NULL
);
3177 do_sections
= num_segments
== 0;
3179 if (num_segments
> 0)
3181 segments
[0] = text_addr
;
3182 segments
[1] = data_addr
;
3184 /* If we have two segments, we can still try to relocate everything
3185 by assuming that the .text and .data offsets apply to the whole
3186 text and data segments. Convert the offsets given in the packet
3187 to base addresses for symfile_map_offsets_to_segments. */
3188 else if (data
&& data
->num_segments
== 2)
3190 segments
[0] = data
->segment_bases
[0] + text_addr
;
3191 segments
[1] = data
->segment_bases
[1] + data_addr
;
3194 /* If the object file has only one segment, assume that it is text
3195 rather than data; main programs with no writable data are rare,
3196 but programs with no code are useless. Of course the code might
3197 have ended up in the data segment... to detect that we would need
3198 the permissions here. */
3199 else if (data
&& data
->num_segments
== 1)
3201 segments
[0] = data
->segment_bases
[0] + text_addr
;
3204 /* There's no way to relocate by segment. */
3210 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
3211 offs
, num_segments
, segments
);
3213 if (ret
== 0 && !do_sections
)
3214 error (_("Can not handle qOffsets TextSeg "
3215 "response with this symbol file"));
3222 free_symfile_segment_data (data
);
3226 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
3228 /* This is a temporary kludge to force data and bss to use the
3229 same offsets because that's what nlmconv does now. The real
3230 solution requires changes to the stub and remote.c that I
3231 don't have time to do right now. */
3233 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
3234 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
3237 objfile_relocate (symfile_objfile
, offs
);
3240 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
3241 threads we know are stopped already. This is used during the
3242 initial remote connection in non-stop mode --- threads that are
3243 reported as already being stopped are left stopped. */
3246 set_stop_requested_callback (struct thread_info
*thread
, void *data
)
3248 /* If we have a stop reply for this thread, it must be stopped. */
3249 if (peek_stop_reply (thread
->ptid
))
3250 set_stop_requested (thread
->ptid
, 1);
3255 /* Send interrupt_sequence to remote target. */
3257 send_interrupt_sequence (void)
3259 struct remote_state
*rs
= get_remote_state ();
3261 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
3262 remote_serial_write ("\x03", 1);
3263 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
3264 serial_send_break (rs
->remote_desc
);
3265 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
3267 serial_send_break (rs
->remote_desc
);
3268 remote_serial_write ("g", 1);
3271 internal_error (__FILE__
, __LINE__
,
3272 _("Invalid value for interrupt_sequence_mode: %s."),
3273 interrupt_sequence_mode
);
3277 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3278 and extract the PTID. Returns NULL_PTID if not found. */
3281 stop_reply_extract_thread (char *stop_reply
)
3283 if (stop_reply
[0] == 'T' && strlen (stop_reply
) > 3)
3287 /* Txx r:val ; r:val (...) */
3290 /* Look for "register" named "thread". */
3295 p1
= strchr (p
, ':');
3299 if (strncmp (p
, "thread", p1
- p
) == 0)
3300 return read_ptid (++p1
, &p
);
3302 p1
= strchr (p
, ';');
3314 /* Query the remote target for which is the current thread/process,
3315 add it to our tables, and update INFERIOR_PTID. The caller is
3316 responsible for setting the state such that the remote end is ready
3317 to return the current thread.
3319 This function is called after handling the '?' or 'vRun' packets,
3320 whose response is a stop reply from which we can also try
3321 extracting the thread. If the target doesn't support the explicit
3322 qC query, we infer the current thread from that stop reply, passed
3323 in in WAIT_STATUS, which may be NULL. */
3326 add_current_inferior_and_thread (char *wait_status
)
3328 struct remote_state
*rs
= get_remote_state ();
3330 ptid_t ptid
= null_ptid
;
3332 inferior_ptid
= null_ptid
;
3334 /* Now, if we have thread information, update inferior_ptid. First
3335 if we have a stop reply handy, maybe it's a T stop reply with a
3336 "thread" register we can extract the current thread from. If
3337 not, ask the remote which is the current thread, with qC. The
3338 former method avoids a roundtrip. Note we don't use
3339 remote_parse_stop_reply as that makes use of the target
3340 architecture, which we haven't yet fully determined at this
3342 if (wait_status
!= NULL
)
3343 ptid
= stop_reply_extract_thread (wait_status
);
3344 if (ptid_equal (ptid
, null_ptid
))
3345 ptid
= remote_current_thread (inferior_ptid
);
3347 if (!ptid_equal (ptid
, null_ptid
))
3349 if (!remote_multi_process_p (rs
))
3352 inferior_ptid
= ptid
;
3356 /* Without this, some commands which require an active target
3357 (such as kill) won't work. This variable serves (at least)
3358 double duty as both the pid of the target process (if it has
3359 such), and as a flag indicating that a target is active. */
3360 inferior_ptid
= magic_null_ptid
;
3364 remote_add_inferior (fake_pid_p
, ptid_get_pid (inferior_ptid
), -1);
3366 /* Add the main thread. */
3367 add_thread_silent (inferior_ptid
);
3371 remote_start_remote (int from_tty
, struct target_ops
*target
, int extended_p
)
3373 struct remote_state
*rs
= get_remote_state ();
3374 struct packet_config
*noack_config
;
3375 char *wait_status
= NULL
;
3377 immediate_quit
++; /* Allow user to interrupt it. */
3380 if (interrupt_on_connect
)
3381 send_interrupt_sequence ();
3383 /* Ack any packet which the remote side has already sent. */
3384 serial_write (rs
->remote_desc
, "+", 1);
3386 /* Signal other parts that we're going through the initial setup,
3387 and so things may not be stable yet. */
3388 rs
->starting_up
= 1;
3390 /* The first packet we send to the target is the optional "supported
3391 packets" request. If the target can answer this, it will tell us
3392 which later probes to skip. */
3393 remote_query_supported ();
3395 /* If the stub wants to get a QAllow, compose one and send it. */
3396 if (remote_protocol_packets
[PACKET_QAllow
].support
!= PACKET_DISABLE
)
3397 remote_set_permissions ();
3399 /* Next, we possibly activate noack mode.
3401 If the QStartNoAckMode packet configuration is set to AUTO,
3402 enable noack mode if the stub reported a wish for it with
3405 If set to TRUE, then enable noack mode even if the stub didn't
3406 report it in qSupported. If the stub doesn't reply OK, the
3407 session ends with an error.
3409 If FALSE, then don't activate noack mode, regardless of what the
3410 stub claimed should be the default with qSupported. */
3412 noack_config
= &remote_protocol_packets
[PACKET_QStartNoAckMode
];
3414 if (noack_config
->detect
== AUTO_BOOLEAN_TRUE
3415 || (noack_config
->detect
== AUTO_BOOLEAN_AUTO
3416 && noack_config
->support
== PACKET_ENABLE
))
3418 putpkt ("QStartNoAckMode");
3419 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3420 if (packet_ok (rs
->buf
, noack_config
) == PACKET_OK
)
3426 /* Tell the remote that we are using the extended protocol. */
3428 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3431 /* Let the target know which signals it is allowed to pass down to
3433 update_signals_program_target ();
3435 /* Next, if the target can specify a description, read it. We do
3436 this before anything involving memory or registers. */
3437 target_find_description ();
3439 /* Next, now that we know something about the target, update the
3440 address spaces in the program spaces. */
3441 update_address_spaces ();
3443 /* On OSs where the list of libraries is global to all
3444 processes, we fetch them early. */
3445 if (gdbarch_has_global_solist (target_gdbarch ()))
3446 solib_add (NULL
, from_tty
, target
, auto_solib_add
);
3450 if (!rs
->non_stop_aware
)
3451 error (_("Non-stop mode requested, but remote "
3452 "does not support non-stop"));
3454 putpkt ("QNonStop:1");
3455 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3457 if (strcmp (rs
->buf
, "OK") != 0)
3458 error (_("Remote refused setting non-stop mode with: %s"), rs
->buf
);
3460 /* Find about threads and processes the stub is already
3461 controlling. We default to adding them in the running state.
3462 The '?' query below will then tell us about which threads are
3464 remote_threads_info (target
);
3466 else if (rs
->non_stop_aware
)
3468 /* Don't assume that the stub can operate in all-stop mode.
3469 Request it explicitly. */
3470 putpkt ("QNonStop:0");
3471 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3473 if (strcmp (rs
->buf
, "OK") != 0)
3474 error (_("Remote refused setting all-stop mode with: %s"), rs
->buf
);
3477 /* Upload TSVs regardless of whether the target is running or not. The
3478 remote stub, such as GDBserver, may have some predefined or builtin
3479 TSVs, even if the target is not running. */
3480 if (remote_get_trace_status (current_trace_status ()) != -1)
3482 struct uploaded_tsv
*uploaded_tsvs
= NULL
;
3484 remote_upload_trace_state_variables (&uploaded_tsvs
);
3485 merge_uploaded_trace_state_variables (&uploaded_tsvs
);
3488 /* Check whether the target is running now. */
3490 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3496 struct inferior
*inf
;
3498 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
3501 error (_("The target is not running (try extended-remote?)"));
3503 /* We're connected, but not running. Drop out before we
3504 call start_remote. */
3505 rs
->starting_up
= 0;
3510 /* Save the reply for later. */
3511 wait_status
= alloca (strlen (rs
->buf
) + 1);
3512 strcpy (wait_status
, rs
->buf
);
3515 /* Let the stub know that we want it to return the thread. */
3516 set_continue_thread (minus_one_ptid
);
3518 add_current_inferior_and_thread (wait_status
);
3520 /* init_wait_for_inferior should be called before get_offsets in order
3521 to manage `inserted' flag in bp loc in a correct state.
3522 breakpoint_init_inferior, called from init_wait_for_inferior, set
3523 `inserted' flag to 0, while before breakpoint_re_set, called from
3524 start_remote, set `inserted' flag to 1. In the initialization of
3525 inferior, breakpoint_init_inferior should be called first, and then
3526 breakpoint_re_set can be called. If this order is broken, state of
3527 `inserted' flag is wrong, and cause some problems on breakpoint
3529 init_wait_for_inferior ();
3531 get_offsets (); /* Get text, data & bss offsets. */
3533 /* If we could not find a description using qXfer, and we know
3534 how to do it some other way, try again. This is not
3535 supported for non-stop; it could be, but it is tricky if
3536 there are no stopped threads when we connect. */
3537 if (remote_read_description_p (target
)
3538 && gdbarch_target_desc (target_gdbarch ()) == NULL
)
3540 target_clear_description ();
3541 target_find_description ();
3544 /* Use the previously fetched status. */
3545 gdb_assert (wait_status
!= NULL
);
3546 strcpy (rs
->buf
, wait_status
);
3547 rs
->cached_wait_status
= 1;
3550 start_remote (from_tty
); /* Initialize gdb process mechanisms. */
3554 /* Clear WFI global state. Do this before finding about new
3555 threads and inferiors, and setting the current inferior.
3556 Otherwise we would clear the proceed status of the current
3557 inferior when we want its stop_soon state to be preserved
3558 (see notice_new_inferior). */
3559 init_wait_for_inferior ();
3561 /* In non-stop, we will either get an "OK", meaning that there
3562 are no stopped threads at this time; or, a regular stop
3563 reply. In the latter case, there may be more than one thread
3564 stopped --- we pull them all out using the vStopped
3566 if (strcmp (rs
->buf
, "OK") != 0)
3568 struct notif_client
*notif
= ¬if_client_stop
;
3570 /* remote_notif_get_pending_replies acks this one, and gets
3572 notif_client_stop
.pending_event
3573 = remote_notif_parse (notif
, rs
->buf
);
3574 remote_notif_get_pending_events (notif
);
3576 /* Make sure that threads that were stopped remain
3578 iterate_over_threads (set_stop_requested_callback
, NULL
);
3581 if (target_can_async_p ())
3582 target_async (inferior_event_handler
, 0);
3584 if (thread_count () == 0)
3587 error (_("The target is not running (try extended-remote?)"));
3589 /* We're connected, but not running. Drop out before we
3590 call start_remote. */
3591 rs
->starting_up
= 0;
3595 /* Let the stub know that we want it to return the thread. */
3597 /* Force the stub to choose a thread. */
3598 set_general_thread (null_ptid
);
3601 inferior_ptid
= remote_current_thread (minus_one_ptid
);
3602 if (ptid_equal (inferior_ptid
, minus_one_ptid
))
3603 error (_("remote didn't report the current thread in non-stop mode"));
3605 get_offsets (); /* Get text, data & bss offsets. */
3607 /* In non-stop mode, any cached wait status will be stored in
3608 the stop reply queue. */
3609 gdb_assert (wait_status
== NULL
);
3611 /* Report all signals during attach/startup. */
3612 remote_pass_signals (0, NULL
);
3615 /* If we connected to a live target, do some additional setup. */
3616 if (target_has_execution
)
3618 if (exec_bfd
) /* No use without an exec file. */
3619 remote_check_symbols ();
3622 /* Possibly the target has been engaged in a trace run started
3623 previously; find out where things are at. */
3624 if (remote_get_trace_status (current_trace_status ()) != -1)
3626 struct uploaded_tp
*uploaded_tps
= NULL
;
3628 if (current_trace_status ()->running
)
3629 printf_filtered (_("Trace is already running on the target.\n"));
3631 remote_upload_tracepoints (&uploaded_tps
);
3633 merge_uploaded_tracepoints (&uploaded_tps
);
3636 /* The thread and inferior lists are now synchronized with the
3637 target, our symbols have been relocated, and we're merged the
3638 target's tracepoints with ours. We're done with basic start
3640 rs
->starting_up
= 0;
3642 /* If breakpoints are global, insert them now. */
3643 if (gdbarch_has_global_breakpoints (target_gdbarch ())
3644 && breakpoints_always_inserted_mode ())
3645 insert_breakpoints ();
3648 /* Open a connection to a remote debugger.
3649 NAME is the filename used for communication. */
3652 remote_open (char *name
, int from_tty
)
3654 remote_open_1 (name
, from_tty
, &remote_ops
, 0);
3657 /* Open a connection to a remote debugger using the extended
3658 remote gdb protocol. NAME is the filename used for communication. */
3661 extended_remote_open (char *name
, int from_tty
)
3663 remote_open_1 (name
, from_tty
, &extended_remote_ops
, 1 /*extended_p */);
3666 /* Generic code for opening a connection to a remote target. */
3669 init_all_packet_configs (void)
3673 for (i
= 0; i
< PACKET_MAX
; i
++)
3674 update_packet_config (&remote_protocol_packets
[i
]);
3677 /* Symbol look-up. */
3680 remote_check_symbols (void)
3682 struct remote_state
*rs
= get_remote_state ();
3683 char *msg
, *reply
, *tmp
;
3684 struct minimal_symbol
*sym
;
3687 /* The remote side has no concept of inferiors that aren't running
3688 yet, it only knows about running processes. If we're connected
3689 but our current inferior is not running, we should not invite the
3690 remote target to request symbol lookups related to its
3691 (unrelated) current process. */
3692 if (!target_has_execution
)
3695 if (remote_protocol_packets
[PACKET_qSymbol
].support
== PACKET_DISABLE
)
3698 /* Make sure the remote is pointing at the right process. Note
3699 there's no way to select "no process". */
3700 set_general_process ();
3702 /* Allocate a message buffer. We can't reuse the input buffer in RS,
3703 because we need both at the same time. */
3704 msg
= alloca (get_remote_packet_size ());
3706 /* Invite target to request symbol lookups. */
3708 putpkt ("qSymbol::");
3709 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3710 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSymbol
]);
3713 while (strncmp (reply
, "qSymbol:", 8) == 0)
3716 end
= hex2bin (tmp
, (gdb_byte
*) msg
, strlen (tmp
) / 2);
3718 sym
= lookup_minimal_symbol (msg
, NULL
, NULL
);
3720 xsnprintf (msg
, get_remote_packet_size (), "qSymbol::%s", &reply
[8]);
3723 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
3724 CORE_ADDR sym_addr
= SYMBOL_VALUE_ADDRESS (sym
);
3726 /* If this is a function address, return the start of code
3727 instead of any data function descriptor. */
3728 sym_addr
= gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
3732 xsnprintf (msg
, get_remote_packet_size (), "qSymbol:%s:%s",
3733 phex_nz (sym_addr
, addr_size
), &reply
[8]);
3737 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3742 static struct serial
*
3743 remote_serial_open (char *name
)
3745 static int udp_warning
= 0;
3747 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
3748 of in ser-tcp.c, because it is the remote protocol assuming that the
3749 serial connection is reliable and not the serial connection promising
3751 if (!udp_warning
&& strncmp (name
, "udp:", 4) == 0)
3753 warning (_("The remote protocol may be unreliable over UDP.\n"
3754 "Some events may be lost, rendering further debugging "
3759 return serial_open (name
);
3762 /* Inform the target of our permission settings. The permission flags
3763 work without this, but if the target knows the settings, it can do
3764 a couple things. First, it can add its own check, to catch cases
3765 that somehow manage to get by the permissions checks in target
3766 methods. Second, if the target is wired to disallow particular
3767 settings (for instance, a system in the field that is not set up to
3768 be able to stop at a breakpoint), it can object to any unavailable
3772 remote_set_permissions (void)
3774 struct remote_state
*rs
= get_remote_state ();
3776 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAllow:"
3777 "WriteReg:%x;WriteMem:%x;"
3778 "InsertBreak:%x;InsertTrace:%x;"
3779 "InsertFastTrace:%x;Stop:%x",
3780 may_write_registers
, may_write_memory
,
3781 may_insert_breakpoints
, may_insert_tracepoints
,
3782 may_insert_fast_tracepoints
, may_stop
);
3784 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3786 /* If the target didn't like the packet, warn the user. Do not try
3787 to undo the user's settings, that would just be maddening. */
3788 if (strcmp (rs
->buf
, "OK") != 0)
3789 warning (_("Remote refused setting permissions with: %s"), rs
->buf
);
3792 /* This type describes each known response to the qSupported
3794 struct protocol_feature
3796 /* The name of this protocol feature. */
3799 /* The default for this protocol feature. */
3800 enum packet_support default_support
;
3802 /* The function to call when this feature is reported, or after
3803 qSupported processing if the feature is not supported.
3804 The first argument points to this structure. The second
3805 argument indicates whether the packet requested support be
3806 enabled, disabled, or probed (or the default, if this function
3807 is being called at the end of processing and this feature was
3808 not reported). The third argument may be NULL; if not NULL, it
3809 is a NUL-terminated string taken from the packet following
3810 this feature's name and an equals sign. */
3811 void (*func
) (const struct protocol_feature
*, enum packet_support
,
3814 /* The corresponding packet for this feature. Only used if
3815 FUNC is remote_supported_packet. */
3820 remote_supported_packet (const struct protocol_feature
*feature
,
3821 enum packet_support support
,
3822 const char *argument
)
3826 warning (_("Remote qSupported response supplied an unexpected value for"
3827 " \"%s\"."), feature
->name
);
3831 if (remote_protocol_packets
[feature
->packet
].support
3832 == PACKET_SUPPORT_UNKNOWN
)
3833 remote_protocol_packets
[feature
->packet
].support
= support
;
3837 remote_packet_size (const struct protocol_feature
*feature
,
3838 enum packet_support support
, const char *value
)
3840 struct remote_state
*rs
= get_remote_state ();
3845 if (support
!= PACKET_ENABLE
)
3848 if (value
== NULL
|| *value
== '\0')
3850 warning (_("Remote target reported \"%s\" without a size."),
3856 packet_size
= strtol (value
, &value_end
, 16);
3857 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
3859 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3860 feature
->name
, value
);
3864 if (packet_size
> MAX_REMOTE_PACKET_SIZE
)
3866 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3867 packet_size
, MAX_REMOTE_PACKET_SIZE
);
3868 packet_size
= MAX_REMOTE_PACKET_SIZE
;
3871 /* Record the new maximum packet size. */
3872 rs
->explicit_packet_size
= packet_size
;
3876 remote_multi_process_feature (const struct protocol_feature
*feature
,
3877 enum packet_support support
, const char *value
)
3879 struct remote_state
*rs
= get_remote_state ();
3881 rs
->multi_process_aware
= (support
== PACKET_ENABLE
);
3885 remote_non_stop_feature (const struct protocol_feature
*feature
,
3886 enum packet_support support
, const char *value
)
3888 struct remote_state
*rs
= get_remote_state ();
3890 rs
->non_stop_aware
= (support
== PACKET_ENABLE
);
3894 remote_cond_tracepoint_feature (const struct protocol_feature
*feature
,
3895 enum packet_support support
,
3898 struct remote_state
*rs
= get_remote_state ();
3900 rs
->cond_tracepoints
= (support
== PACKET_ENABLE
);
3904 remote_cond_breakpoint_feature (const struct protocol_feature
*feature
,
3905 enum packet_support support
,
3908 struct remote_state
*rs
= get_remote_state ();
3910 rs
->cond_breakpoints
= (support
== PACKET_ENABLE
);
3914 remote_breakpoint_commands_feature (const struct protocol_feature
*feature
,
3915 enum packet_support support
,
3918 struct remote_state
*rs
= get_remote_state ();
3920 rs
->breakpoint_commands
= (support
== PACKET_ENABLE
);
3924 remote_fast_tracepoint_feature (const struct protocol_feature
*feature
,
3925 enum packet_support support
,
3928 struct remote_state
*rs
= get_remote_state ();
3930 rs
->fast_tracepoints
= (support
== PACKET_ENABLE
);
3934 remote_static_tracepoint_feature (const struct protocol_feature
*feature
,
3935 enum packet_support support
,
3938 struct remote_state
*rs
= get_remote_state ();
3940 rs
->static_tracepoints
= (support
== PACKET_ENABLE
);
3944 remote_install_in_trace_feature (const struct protocol_feature
*feature
,
3945 enum packet_support support
,
3948 struct remote_state
*rs
= get_remote_state ();
3950 rs
->install_in_trace
= (support
== PACKET_ENABLE
);
3954 remote_disconnected_tracing_feature (const struct protocol_feature
*feature
,
3955 enum packet_support support
,
3958 struct remote_state
*rs
= get_remote_state ();
3960 rs
->disconnected_tracing
= (support
== PACKET_ENABLE
);
3964 remote_enable_disable_tracepoint_feature (const struct protocol_feature
*feature
,
3965 enum packet_support support
,
3968 struct remote_state
*rs
= get_remote_state ();
3970 rs
->enable_disable_tracepoints
= (support
== PACKET_ENABLE
);
3974 remote_string_tracing_feature (const struct protocol_feature
*feature
,
3975 enum packet_support support
,
3978 struct remote_state
*rs
= get_remote_state ();
3980 rs
->string_tracing
= (support
== PACKET_ENABLE
);
3984 remote_augmented_libraries_svr4_read_feature
3985 (const struct protocol_feature
*feature
,
3986 enum packet_support support
, const char *value
)
3988 struct remote_state
*rs
= get_remote_state ();
3990 rs
->augmented_libraries_svr4_read
= (support
== PACKET_ENABLE
);
3993 static const struct protocol_feature remote_protocol_features
[] = {
3994 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
3995 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
3996 PACKET_qXfer_auxv
},
3997 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
3998 PACKET_qXfer_features
},
3999 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
4000 PACKET_qXfer_libraries
},
4001 { "qXfer:libraries-svr4:read", PACKET_DISABLE
, remote_supported_packet
,
4002 PACKET_qXfer_libraries_svr4
},
4003 { "augmented-libraries-svr4-read", PACKET_DISABLE
,
4004 remote_augmented_libraries_svr4_read_feature
, -1 },
4005 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
4006 PACKET_qXfer_memory_map
},
4007 { "qXfer:spu:read", PACKET_DISABLE
, remote_supported_packet
,
4008 PACKET_qXfer_spu_read
},
4009 { "qXfer:spu:write", PACKET_DISABLE
, remote_supported_packet
,
4010 PACKET_qXfer_spu_write
},
4011 { "qXfer:osdata:read", PACKET_DISABLE
, remote_supported_packet
,
4012 PACKET_qXfer_osdata
},
4013 { "qXfer:threads:read", PACKET_DISABLE
, remote_supported_packet
,
4014 PACKET_qXfer_threads
},
4015 { "qXfer:traceframe-info:read", PACKET_DISABLE
, remote_supported_packet
,
4016 PACKET_qXfer_traceframe_info
},
4017 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
4018 PACKET_QPassSignals
},
4019 { "QProgramSignals", PACKET_DISABLE
, remote_supported_packet
,
4020 PACKET_QProgramSignals
},
4021 { "QStartNoAckMode", PACKET_DISABLE
, remote_supported_packet
,
4022 PACKET_QStartNoAckMode
},
4023 { "multiprocess", PACKET_DISABLE
, remote_multi_process_feature
, -1 },
4024 { "QNonStop", PACKET_DISABLE
, remote_non_stop_feature
, -1 },
4025 { "qXfer:siginfo:read", PACKET_DISABLE
, remote_supported_packet
,
4026 PACKET_qXfer_siginfo_read
},
4027 { "qXfer:siginfo:write", PACKET_DISABLE
, remote_supported_packet
,
4028 PACKET_qXfer_siginfo_write
},
4029 { "ConditionalTracepoints", PACKET_DISABLE
, remote_cond_tracepoint_feature
,
4030 PACKET_ConditionalTracepoints
},
4031 { "ConditionalBreakpoints", PACKET_DISABLE
, remote_cond_breakpoint_feature
,
4032 PACKET_ConditionalBreakpoints
},
4033 { "BreakpointCommands", PACKET_DISABLE
, remote_breakpoint_commands_feature
,
4034 PACKET_BreakpointCommands
},
4035 { "FastTracepoints", PACKET_DISABLE
, remote_fast_tracepoint_feature
,
4036 PACKET_FastTracepoints
},
4037 { "StaticTracepoints", PACKET_DISABLE
, remote_static_tracepoint_feature
,
4038 PACKET_StaticTracepoints
},
4039 {"InstallInTrace", PACKET_DISABLE
, remote_install_in_trace_feature
,
4040 PACKET_InstallInTrace
},
4041 { "DisconnectedTracing", PACKET_DISABLE
, remote_disconnected_tracing_feature
,
4043 { "ReverseContinue", PACKET_DISABLE
, remote_supported_packet
,
4045 { "ReverseStep", PACKET_DISABLE
, remote_supported_packet
,
4047 { "TracepointSource", PACKET_DISABLE
, remote_supported_packet
,
4048 PACKET_TracepointSource
},
4049 { "QAllow", PACKET_DISABLE
, remote_supported_packet
,
4051 { "EnableDisableTracepoints", PACKET_DISABLE
,
4052 remote_enable_disable_tracepoint_feature
, -1 },
4053 { "qXfer:fdpic:read", PACKET_DISABLE
, remote_supported_packet
,
4054 PACKET_qXfer_fdpic
},
4055 { "qXfer:uib:read", PACKET_DISABLE
, remote_supported_packet
,
4057 { "QDisableRandomization", PACKET_DISABLE
, remote_supported_packet
,
4058 PACKET_QDisableRandomization
},
4059 { "QAgent", PACKET_DISABLE
, remote_supported_packet
, PACKET_QAgent
},
4060 { "QTBuffer:size", PACKET_DISABLE
,
4061 remote_supported_packet
, PACKET_QTBuffer_size
},
4062 { "tracenz", PACKET_DISABLE
,
4063 remote_string_tracing_feature
, -1 },
4064 { "Qbtrace:off", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_off
},
4065 { "Qbtrace:bts", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_bts
},
4066 { "qXfer:btrace:read", PACKET_DISABLE
, remote_supported_packet
,
4067 PACKET_qXfer_btrace
}
4070 static char *remote_support_xml
;
4072 /* Register string appended to "xmlRegisters=" in qSupported query. */
4075 register_remote_support_xml (const char *xml
)
4077 #if defined(HAVE_LIBEXPAT)
4078 if (remote_support_xml
== NULL
)
4079 remote_support_xml
= concat ("xmlRegisters=", xml
, (char *) NULL
);
4082 char *copy
= xstrdup (remote_support_xml
+ 13);
4083 char *p
= strtok (copy
, ",");
4087 if (strcmp (p
, xml
) == 0)
4094 while ((p
= strtok (NULL
, ",")) != NULL
);
4097 remote_support_xml
= reconcat (remote_support_xml
,
4098 remote_support_xml
, ",", xml
,
4105 remote_query_supported_append (char *msg
, const char *append
)
4108 return reconcat (msg
, msg
, ";", append
, (char *) NULL
);
4110 return xstrdup (append
);
4114 remote_query_supported (void)
4116 struct remote_state
*rs
= get_remote_state ();
4119 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
4121 /* The packet support flags are handled differently for this packet
4122 than for most others. We treat an error, a disabled packet, and
4123 an empty response identically: any features which must be reported
4124 to be used will be automatically disabled. An empty buffer
4125 accomplishes this, since that is also the representation for a list
4126 containing no features. */
4129 if (remote_protocol_packets
[PACKET_qSupported
].support
!= PACKET_DISABLE
)
4132 struct cleanup
*old_chain
= make_cleanup (free_current_contents
, &q
);
4134 q
= remote_query_supported_append (q
, "multiprocess+");
4136 if (remote_support_xml
)
4137 q
= remote_query_supported_append (q
, remote_support_xml
);
4139 q
= remote_query_supported_append (q
, "qRelocInsn+");
4141 q
= reconcat (q
, "qSupported:", q
, (char *) NULL
);
4144 do_cleanups (old_chain
);
4146 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4148 /* If an error occured, warn, but do not return - just reset the
4149 buffer to empty and go on to disable features. */
4150 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
4153 warning (_("Remote failure reply: %s"), rs
->buf
);
4158 memset (seen
, 0, sizeof (seen
));
4163 enum packet_support is_supported
;
4164 char *p
, *end
, *name_end
, *value
;
4166 /* First separate out this item from the rest of the packet. If
4167 there's another item after this, we overwrite the separator
4168 (terminated strings are much easier to work with). */
4170 end
= strchr (p
, ';');
4173 end
= p
+ strlen (p
);
4183 warning (_("empty item in \"qSupported\" response"));
4188 name_end
= strchr (p
, '=');
4191 /* This is a name=value entry. */
4192 is_supported
= PACKET_ENABLE
;
4193 value
= name_end
+ 1;
4202 is_supported
= PACKET_ENABLE
;
4206 is_supported
= PACKET_DISABLE
;
4210 is_supported
= PACKET_SUPPORT_UNKNOWN
;
4214 warning (_("unrecognized item \"%s\" "
4215 "in \"qSupported\" response"), p
);
4221 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
4222 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
4224 const struct protocol_feature
*feature
;
4227 feature
= &remote_protocol_features
[i
];
4228 feature
->func (feature
, is_supported
, value
);
4233 /* If we increased the packet size, make sure to increase the global
4234 buffer size also. We delay this until after parsing the entire
4235 qSupported packet, because this is the same buffer we were
4237 if (rs
->buf_size
< rs
->explicit_packet_size
)
4239 rs
->buf_size
= rs
->explicit_packet_size
;
4240 rs
->buf
= xrealloc (rs
->buf
, rs
->buf_size
);
4243 /* Handle the defaults for unmentioned features. */
4244 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
4247 const struct protocol_feature
*feature
;
4249 feature
= &remote_protocol_features
[i
];
4250 feature
->func (feature
, feature
->default_support
, NULL
);
4254 /* Remove any of the remote.c targets from target stack. Upper targets depend
4255 on it so remove them first. */
4258 remote_unpush_target (void)
4260 pop_all_targets_above (process_stratum
- 1);
4264 remote_open_1 (char *name
, int from_tty
,
4265 struct target_ops
*target
, int extended_p
)
4267 struct remote_state
*rs
= get_remote_state ();
4270 error (_("To open a remote debug connection, you need to specify what\n"
4271 "serial device is attached to the remote system\n"
4272 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4274 /* See FIXME above. */
4275 if (!target_async_permitted
)
4276 wait_forever_enabled_p
= 1;
4278 /* If we're connected to a running target, target_preopen will kill it.
4279 Ask this question first, before target_preopen has a chance to kill
4281 if (rs
->remote_desc
!= NULL
&& !have_inferiors ())
4284 && !query (_("Already connected to a remote target. Disconnect? ")))
4285 error (_("Still connected."));
4288 /* Here the possibly existing remote target gets unpushed. */
4289 target_preopen (from_tty
);
4291 /* Make sure we send the passed signals list the next time we resume. */
4292 xfree (rs
->last_pass_packet
);
4293 rs
->last_pass_packet
= NULL
;
4295 /* Make sure we send the program signals list the next time we
4297 xfree (rs
->last_program_signals_packet
);
4298 rs
->last_program_signals_packet
= NULL
;
4300 remote_fileio_reset ();
4301 reopen_exec_file ();
4304 rs
->remote_desc
= remote_serial_open (name
);
4305 if (!rs
->remote_desc
)
4306 perror_with_name (name
);
4308 if (baud_rate
!= -1)
4310 if (serial_setbaudrate (rs
->remote_desc
, baud_rate
))
4312 /* The requested speed could not be set. Error out to
4313 top level after closing remote_desc. Take care to
4314 set remote_desc to NULL to avoid closing remote_desc
4316 serial_close (rs
->remote_desc
);
4317 rs
->remote_desc
= NULL
;
4318 perror_with_name (name
);
4322 serial_raw (rs
->remote_desc
);
4324 /* If there is something sitting in the buffer we might take it as a
4325 response to a command, which would be bad. */
4326 serial_flush_input (rs
->remote_desc
);
4330 puts_filtered ("Remote debugging using ");
4331 puts_filtered (name
);
4332 puts_filtered ("\n");
4334 push_target (target
); /* Switch to using remote target now. */
4336 /* Register extra event sources in the event loop. */
4337 remote_async_inferior_event_token
4338 = create_async_event_handler (remote_async_inferior_event_handler
,
4340 remote_notif_register_async_event_handler ();
4342 /* Reset the target state; these things will be queried either by
4343 remote_query_supported or as they are needed. */
4344 init_all_packet_configs ();
4345 rs
->cached_wait_status
= 0;
4346 rs
->explicit_packet_size
= 0;
4348 rs
->multi_process_aware
= 0;
4349 rs
->extended
= extended_p
;
4350 rs
->non_stop_aware
= 0;
4351 rs
->waiting_for_stop_reply
= 0;
4352 rs
->ctrlc_pending_p
= 0;
4354 rs
->general_thread
= not_sent_ptid
;
4355 rs
->continue_thread
= not_sent_ptid
;
4356 rs
->remote_traceframe_number
= -1;
4358 /* Probe for ability to use "ThreadInfo" query, as required. */
4359 rs
->use_threadinfo_query
= 1;
4360 rs
->use_threadextra_query
= 1;
4362 if (target_async_permitted
)
4364 /* With this target we start out by owning the terminal. */
4365 remote_async_terminal_ours_p
= 1;
4367 /* FIXME: cagney/1999-09-23: During the initial connection it is
4368 assumed that the target is already ready and able to respond to
4369 requests. Unfortunately remote_start_remote() eventually calls
4370 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4371 around this. Eventually a mechanism that allows
4372 wait_for_inferior() to expect/get timeouts will be
4374 wait_forever_enabled_p
= 0;
4377 /* First delete any symbols previously loaded from shared libraries. */
4378 no_shared_libraries (NULL
, 0);
4381 init_thread_list ();
4383 /* Start the remote connection. If error() or QUIT, discard this
4384 target (we'd otherwise be in an inconsistent state) and then
4385 propogate the error on up the exception chain. This ensures that
4386 the caller doesn't stumble along blindly assuming that the
4387 function succeeded. The CLI doesn't have this problem but other
4388 UI's, such as MI do.
4390 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4391 this function should return an error indication letting the
4392 caller restore the previous state. Unfortunately the command
4393 ``target remote'' is directly wired to this function making that
4394 impossible. On a positive note, the CLI side of this problem has
4395 been fixed - the function set_cmd_context() makes it possible for
4396 all the ``target ....'' commands to share a common callback
4397 function. See cli-dump.c. */
4399 volatile struct gdb_exception ex
;
4401 TRY_CATCH (ex
, RETURN_MASK_ALL
)
4403 remote_start_remote (from_tty
, target
, extended_p
);
4407 /* Pop the partially set up target - unless something else did
4408 already before throwing the exception. */
4409 if (rs
->remote_desc
!= NULL
)
4410 remote_unpush_target ();
4411 if (target_async_permitted
)
4412 wait_forever_enabled_p
= 1;
4413 throw_exception (ex
);
4417 if (target_async_permitted
)
4418 wait_forever_enabled_p
= 1;
4421 /* This takes a program previously attached to and detaches it. After
4422 this is done, GDB can be used to debug some other program. We
4423 better not have left any breakpoints in the target program or it'll
4424 die when it hits one. */
4427 remote_detach_1 (char *args
, int from_tty
, int extended
)
4429 int pid
= ptid_get_pid (inferior_ptid
);
4430 struct remote_state
*rs
= get_remote_state ();
4433 error (_("Argument given to \"detach\" when remotely debugging."));
4435 if (!target_has_execution
)
4436 error (_("No process to detach from."));
4440 char *exec_file
= get_exec_file (0);
4441 if (exec_file
== NULL
)
4443 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file
,
4444 target_pid_to_str (pid_to_ptid (pid
)));
4445 gdb_flush (gdb_stdout
);
4448 /* Tell the remote target to detach. */
4449 if (remote_multi_process_p (rs
))
4450 xsnprintf (rs
->buf
, get_remote_packet_size (), "D;%x", pid
);
4452 strcpy (rs
->buf
, "D");
4455 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4457 if (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K')
4459 else if (rs
->buf
[0] == '\0')
4460 error (_("Remote doesn't know how to detach"));
4462 error (_("Can't detach process."));
4464 if (from_tty
&& !extended
)
4465 puts_filtered (_("Ending remote debugging.\n"));
4467 target_mourn_inferior ();
4471 remote_detach (struct target_ops
*ops
, char *args
, int from_tty
)
4473 remote_detach_1 (args
, from_tty
, 0);
4477 extended_remote_detach (struct target_ops
*ops
, char *args
, int from_tty
)
4479 remote_detach_1 (args
, from_tty
, 1);
4482 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4485 remote_disconnect (struct target_ops
*target
, char *args
, int from_tty
)
4488 error (_("Argument given to \"disconnect\" when remotely debugging."));
4490 /* Make sure we unpush even the extended remote targets; mourn
4491 won't do it. So call remote_mourn_1 directly instead of
4492 target_mourn_inferior. */
4493 remote_mourn_1 (target
);
4496 puts_filtered ("Ending remote debugging.\n");
4499 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4500 be chatty about it. */
4503 extended_remote_attach_1 (struct target_ops
*target
, char *args
, int from_tty
)
4505 struct remote_state
*rs
= get_remote_state ();
4507 char *wait_status
= NULL
;
4509 pid
= parse_pid_to_attach (args
);
4511 /* Remote PID can be freely equal to getpid, do not check it here the same
4512 way as in other targets. */
4514 if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
4515 error (_("This target does not support attaching to a process"));
4519 char *exec_file
= get_exec_file (0);
4522 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file
,
4523 target_pid_to_str (pid_to_ptid (pid
)));
4525 printf_unfiltered (_("Attaching to %s\n"),
4526 target_pid_to_str (pid_to_ptid (pid
)));
4528 gdb_flush (gdb_stdout
);
4531 xsnprintf (rs
->buf
, get_remote_packet_size (), "vAttach;%x", pid
);
4533 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4535 if (packet_ok (rs
->buf
,
4536 &remote_protocol_packets
[PACKET_vAttach
]) == PACKET_OK
)
4540 /* Save the reply for later. */
4541 wait_status
= alloca (strlen (rs
->buf
) + 1);
4542 strcpy (wait_status
, rs
->buf
);
4544 else if (strcmp (rs
->buf
, "OK") != 0)
4545 error (_("Attaching to %s failed with: %s"),
4546 target_pid_to_str (pid_to_ptid (pid
)),
4549 else if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
4550 error (_("This target does not support attaching to a process"));
4552 error (_("Attaching to %s failed"),
4553 target_pid_to_str (pid_to_ptid (pid
)));
4555 set_current_inferior (remote_add_inferior (0, pid
, 1));
4557 inferior_ptid
= pid_to_ptid (pid
);
4561 struct thread_info
*thread
;
4563 /* Get list of threads. */
4564 remote_threads_info (target
);
4566 thread
= first_thread_of_process (pid
);
4568 inferior_ptid
= thread
->ptid
;
4570 inferior_ptid
= pid_to_ptid (pid
);
4572 /* Invalidate our notion of the remote current thread. */
4573 record_currthread (rs
, minus_one_ptid
);
4577 /* Now, if we have thread information, update inferior_ptid. */
4578 inferior_ptid
= remote_current_thread (inferior_ptid
);
4580 /* Add the main thread to the thread list. */
4581 add_thread_silent (inferior_ptid
);
4584 /* Next, if the target can specify a description, read it. We do
4585 this before anything involving memory or registers. */
4586 target_find_description ();
4590 /* Use the previously fetched status. */
4591 gdb_assert (wait_status
!= NULL
);
4593 if (target_can_async_p ())
4595 struct notif_event
*reply
4596 = remote_notif_parse (¬if_client_stop
, wait_status
);
4598 push_stop_reply ((struct stop_reply
*) reply
);
4600 target_async (inferior_event_handler
, 0);
4604 gdb_assert (wait_status
!= NULL
);
4605 strcpy (rs
->buf
, wait_status
);
4606 rs
->cached_wait_status
= 1;
4610 gdb_assert (wait_status
== NULL
);
4614 extended_remote_attach (struct target_ops
*ops
, char *args
, int from_tty
)
4616 extended_remote_attach_1 (ops
, args
, from_tty
);
4619 /* Convert hex digit A to a number. */
4624 if (a
>= '0' && a
<= '9')
4626 else if (a
>= 'a' && a
<= 'f')
4627 return a
- 'a' + 10;
4628 else if (a
>= 'A' && a
<= 'F')
4629 return a
- 'A' + 10;
4631 error (_("Reply contains invalid hex digit %d"), a
);
4635 hex2bin (const char *hex
, gdb_byte
*bin
, int count
)
4639 for (i
= 0; i
< count
; i
++)
4641 if (hex
[0] == 0 || hex
[1] == 0)
4643 /* Hex string is short, or of uneven length.
4644 Return the count that has been converted so far. */
4647 *bin
++ = fromhex (hex
[0]) * 16 + fromhex (hex
[1]);
4653 /* Convert number NIB to a hex digit. */
4661 return 'a' + nib
- 10;
4665 bin2hex (const gdb_byte
*bin
, char *hex
, int count
)
4669 /* May use a length, or a nul-terminated string as input. */
4671 count
= strlen ((char *) bin
);
4673 for (i
= 0; i
< count
; i
++)
4675 *hex
++ = tohex ((*bin
>> 4) & 0xf);
4676 *hex
++ = tohex (*bin
++ & 0xf);
4682 /* Check for the availability of vCont. This function should also check
4686 remote_vcont_probe (struct remote_state
*rs
)
4690 strcpy (rs
->buf
, "vCont?");
4692 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4695 /* Make sure that the features we assume are supported. */
4696 if (strncmp (buf
, "vCont", 5) == 0)
4699 int support_s
, support_S
, support_c
, support_C
;
4705 rs
->supports_vCont
.t
= 0;
4706 rs
->supports_vCont
.r
= 0;
4707 while (p
&& *p
== ';')
4710 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4712 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4714 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4716 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4718 else if (*p
== 't' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4719 rs
->supports_vCont
.t
= 1;
4720 else if (*p
== 'r' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
4721 rs
->supports_vCont
.r
= 1;
4723 p
= strchr (p
, ';');
4726 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4727 BUF will make packet_ok disable the packet. */
4728 if (!support_s
|| !support_S
|| !support_c
|| !support_C
)
4732 packet_ok (buf
, &remote_protocol_packets
[PACKET_vCont
]);
4735 /* Helper function for building "vCont" resumptions. Write a
4736 resumption to P. ENDP points to one-passed-the-end of the buffer
4737 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4738 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4739 resumed thread should be single-stepped and/or signalled. If PTID
4740 equals minus_one_ptid, then all threads are resumed; if PTID
4741 represents a process, then all threads of the process are resumed;
4742 the thread to be stepped and/or signalled is given in the global
4746 append_resumption (char *p
, char *endp
,
4747 ptid_t ptid
, int step
, enum gdb_signal siggnal
)
4749 struct remote_state
*rs
= get_remote_state ();
4751 if (step
&& siggnal
!= GDB_SIGNAL_0
)
4752 p
+= xsnprintf (p
, endp
- p
, ";S%02x", siggnal
);
4754 /* GDB is willing to range step. */
4755 && use_range_stepping
4756 /* Target supports range stepping. */
4757 && rs
->supports_vCont
.r
4758 /* We don't currently support range stepping multiple
4759 threads with a wildcard (though the protocol allows it,
4760 so stubs shouldn't make an active effort to forbid
4762 && !(remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
4764 struct thread_info
*tp
;
4766 if (ptid_equal (ptid
, minus_one_ptid
))
4768 /* If we don't know about the target thread's tid, then
4769 we're resuming magic_null_ptid (see caller). */
4770 tp
= find_thread_ptid (magic_null_ptid
);
4773 tp
= find_thread_ptid (ptid
);
4774 gdb_assert (tp
!= NULL
);
4776 if (tp
->control
.may_range_step
)
4778 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
4780 p
+= xsnprintf (p
, endp
- p
, ";r%s,%s",
4781 phex_nz (tp
->control
.step_range_start
,
4783 phex_nz (tp
->control
.step_range_end
,
4787 p
+= xsnprintf (p
, endp
- p
, ";s");
4790 p
+= xsnprintf (p
, endp
- p
, ";s");
4791 else if (siggnal
!= GDB_SIGNAL_0
)
4792 p
+= xsnprintf (p
, endp
- p
, ";C%02x", siggnal
);
4794 p
+= xsnprintf (p
, endp
- p
, ";c");
4796 if (remote_multi_process_p (rs
) && ptid_is_pid (ptid
))
4800 /* All (-1) threads of process. */
4801 nptid
= ptid_build (ptid_get_pid (ptid
), 0, -1);
4803 p
+= xsnprintf (p
, endp
- p
, ":");
4804 p
= write_ptid (p
, endp
, nptid
);
4806 else if (!ptid_equal (ptid
, minus_one_ptid
))
4808 p
+= xsnprintf (p
, endp
- p
, ":");
4809 p
= write_ptid (p
, endp
, ptid
);
4815 /* Append a vCont continue-with-signal action for threads that have a
4816 non-zero stop signal. */
4819 append_pending_thread_resumptions (char *p
, char *endp
, ptid_t ptid
)
4821 struct thread_info
*thread
;
4823 ALL_THREADS (thread
)
4824 if (ptid_match (thread
->ptid
, ptid
)
4825 && !ptid_equal (inferior_ptid
, thread
->ptid
)
4826 && thread
->suspend
.stop_signal
!= GDB_SIGNAL_0
4827 && signal_pass_state (thread
->suspend
.stop_signal
))
4829 p
= append_resumption (p
, endp
, thread
->ptid
,
4830 0, thread
->suspend
.stop_signal
);
4831 thread
->suspend
.stop_signal
= GDB_SIGNAL_0
;
4837 /* Resume the remote inferior by using a "vCont" packet. The thread
4838 to be resumed is PTID; STEP and SIGGNAL indicate whether the
4839 resumed thread should be single-stepped and/or signalled. If PTID
4840 equals minus_one_ptid, then all threads are resumed; the thread to
4841 be stepped and/or signalled is given in the global INFERIOR_PTID.
4842 This function returns non-zero iff it resumes the inferior.
4844 This function issues a strict subset of all possible vCont commands at the
4848 remote_vcont_resume (ptid_t ptid
, int step
, enum gdb_signal siggnal
)
4850 struct remote_state
*rs
= get_remote_state ();
4854 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_SUPPORT_UNKNOWN
)
4855 remote_vcont_probe (rs
);
4857 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_DISABLE
)
4861 endp
= rs
->buf
+ get_remote_packet_size ();
4863 /* If we could generate a wider range of packets, we'd have to worry
4864 about overflowing BUF. Should there be a generic
4865 "multi-part-packet" packet? */
4867 p
+= xsnprintf (p
, endp
- p
, "vCont");
4869 if (ptid_equal (ptid
, magic_null_ptid
))
4871 /* MAGIC_NULL_PTID means that we don't have any active threads,
4872 so we don't have any TID numbers the inferior will
4873 understand. Make sure to only send forms that do not specify
4875 append_resumption (p
, endp
, minus_one_ptid
, step
, siggnal
);
4877 else if (ptid_equal (ptid
, minus_one_ptid
) || ptid_is_pid (ptid
))
4879 /* Resume all threads (of all processes, or of a single
4880 process), with preference for INFERIOR_PTID. This assumes
4881 inferior_ptid belongs to the set of all threads we are about
4883 if (step
|| siggnal
!= GDB_SIGNAL_0
)
4885 /* Step inferior_ptid, with or without signal. */
4886 p
= append_resumption (p
, endp
, inferior_ptid
, step
, siggnal
);
4889 /* Also pass down any pending signaled resumption for other
4890 threads not the current. */
4891 p
= append_pending_thread_resumptions (p
, endp
, ptid
);
4893 /* And continue others without a signal. */
4894 append_resumption (p
, endp
, ptid
, /*step=*/ 0, GDB_SIGNAL_0
);
4898 /* Scheduler locking; resume only PTID. */
4899 append_resumption (p
, endp
, ptid
, step
, siggnal
);
4902 gdb_assert (strlen (rs
->buf
) < get_remote_packet_size ());
4907 /* In non-stop, the stub replies to vCont with "OK". The stop
4908 reply will be reported asynchronously by means of a `%Stop'
4910 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4911 if (strcmp (rs
->buf
, "OK") != 0)
4912 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
);
4918 /* Tell the remote machine to resume. */
4921 remote_resume (struct target_ops
*ops
,
4922 ptid_t ptid
, int step
, enum gdb_signal siggnal
)
4924 struct remote_state
*rs
= get_remote_state ();
4927 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
4928 (explained in remote-notif.c:handle_notification) so
4929 remote_notif_process is not called. We need find a place where
4930 it is safe to start a 'vNotif' sequence. It is good to do it
4931 before resuming inferior, because inferior was stopped and no RSP
4932 traffic at that moment. */
4934 remote_notif_process (¬if_client_stop
);
4936 rs
->last_sent_signal
= siggnal
;
4937 rs
->last_sent_step
= step
;
4939 /* The vCont packet doesn't need to specify threads via Hc. */
4940 /* No reverse support (yet) for vCont. */
4941 if (execution_direction
!= EXEC_REVERSE
)
4942 if (remote_vcont_resume (ptid
, step
, siggnal
))
4945 /* All other supported resume packets do use Hc, so set the continue
4947 if (ptid_equal (ptid
, minus_one_ptid
))
4948 set_continue_thread (any_thread_ptid
);
4950 set_continue_thread (ptid
);
4953 if (execution_direction
== EXEC_REVERSE
)
4955 /* We don't pass signals to the target in reverse exec mode. */
4956 if (info_verbose
&& siggnal
!= GDB_SIGNAL_0
)
4957 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
4961 && remote_protocol_packets
[PACKET_bs
].support
== PACKET_DISABLE
)
4962 error (_("Remote reverse-step not supported."));
4964 && remote_protocol_packets
[PACKET_bc
].support
== PACKET_DISABLE
)
4965 error (_("Remote reverse-continue not supported."));
4967 strcpy (buf
, step
? "bs" : "bc");
4969 else if (siggnal
!= GDB_SIGNAL_0
)
4971 buf
[0] = step
? 'S' : 'C';
4972 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
4973 buf
[2] = tohex (((int) siggnal
) & 0xf);
4977 strcpy (buf
, step
? "s" : "c");
4982 /* We are about to start executing the inferior, let's register it
4983 with the event loop. NOTE: this is the one place where all the
4984 execution commands end up. We could alternatively do this in each
4985 of the execution commands in infcmd.c. */
4986 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4987 into infcmd.c in order to allow inferior function calls to work
4988 NOT asynchronously. */
4989 if (target_can_async_p ())
4990 target_async (inferior_event_handler
, 0);
4992 /* We've just told the target to resume. The remote server will
4993 wait for the inferior to stop, and then send a stop reply. In
4994 the mean time, we can't start another command/query ourselves
4995 because the stub wouldn't be ready to process it. This applies
4996 only to the base all-stop protocol, however. In non-stop (which
4997 only supports vCont), the stub replies with an "OK", and is
4998 immediate able to process further serial input. */
5000 rs
->waiting_for_stop_reply
= 1;
5004 /* Set up the signal handler for SIGINT, while the target is
5005 executing, ovewriting the 'regular' SIGINT signal handler. */
5007 async_initialize_sigint_signal_handler (void)
5009 signal (SIGINT
, async_handle_remote_sigint
);
5012 /* Signal handler for SIGINT, while the target is executing. */
5014 async_handle_remote_sigint (int sig
)
5016 signal (sig
, async_handle_remote_sigint_twice
);
5017 mark_async_signal_handler (async_sigint_remote_token
);
5020 /* Signal handler for SIGINT, installed after SIGINT has already been
5021 sent once. It will take effect the second time that the user sends
5024 async_handle_remote_sigint_twice (int sig
)
5026 signal (sig
, async_handle_remote_sigint
);
5027 mark_async_signal_handler (async_sigint_remote_twice_token
);
5030 /* Perform the real interruption of the target execution, in response
5033 async_remote_interrupt (gdb_client_data arg
)
5036 fprintf_unfiltered (gdb_stdlog
, "async_remote_interrupt called\n");
5038 target_stop (inferior_ptid
);
5041 /* Perform interrupt, if the first attempt did not succeed. Just give
5042 up on the target alltogether. */
5044 async_remote_interrupt_twice (gdb_client_data arg
)
5047 fprintf_unfiltered (gdb_stdlog
, "async_remote_interrupt_twice called\n");
5052 /* Reinstall the usual SIGINT handlers, after the target has
5055 async_cleanup_sigint_signal_handler (void *dummy
)
5057 signal (SIGINT
, handle_sigint
);
5060 /* Send ^C to target to halt it. Target will respond, and send us a
5062 static void (*ofunc
) (int);
5064 /* The command line interface's stop routine. This function is installed
5065 as a signal handler for SIGINT. The first time a user requests a
5066 stop, we call remote_stop to send a break or ^C. If there is no
5067 response from the target (it didn't stop when the user requested it),
5068 we ask the user if he'd like to detach from the target. */
5070 sync_remote_interrupt (int signo
)
5072 /* If this doesn't work, try more severe steps. */
5073 signal (signo
, sync_remote_interrupt_twice
);
5075 gdb_call_async_signal_handler (async_sigint_remote_token
, 1);
5078 /* The user typed ^C twice. */
5081 sync_remote_interrupt_twice (int signo
)
5083 signal (signo
, ofunc
);
5084 gdb_call_async_signal_handler (async_sigint_remote_twice_token
, 1);
5085 signal (signo
, sync_remote_interrupt
);
5088 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5089 thread, all threads of a remote process, or all threads of all
5093 remote_stop_ns (ptid_t ptid
)
5095 struct remote_state
*rs
= get_remote_state ();
5097 char *endp
= rs
->buf
+ get_remote_packet_size ();
5099 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_SUPPORT_UNKNOWN
)
5100 remote_vcont_probe (rs
);
5102 if (!rs
->supports_vCont
.t
)
5103 error (_("Remote server does not support stopping threads"));
5105 if (ptid_equal (ptid
, minus_one_ptid
)
5106 || (!remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
5107 p
+= xsnprintf (p
, endp
- p
, "vCont;t");
5112 p
+= xsnprintf (p
, endp
- p
, "vCont;t:");
5114 if (ptid_is_pid (ptid
))
5115 /* All (-1) threads of process. */
5116 nptid
= ptid_build (ptid_get_pid (ptid
), 0, -1);
5119 /* Small optimization: if we already have a stop reply for
5120 this thread, no use in telling the stub we want this
5122 if (peek_stop_reply (ptid
))
5128 write_ptid (p
, endp
, nptid
);
5131 /* In non-stop, we get an immediate OK reply. The stop reply will
5132 come in asynchronously by notification. */
5134 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5135 if (strcmp (rs
->buf
, "OK") != 0)
5136 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid
), rs
->buf
);
5139 /* All-stop version of target_stop. Sends a break or a ^C to stop the
5140 remote target. It is undefined which thread of which process
5141 reports the stop. */
5144 remote_stop_as (ptid_t ptid
)
5146 struct remote_state
*rs
= get_remote_state ();
5148 rs
->ctrlc_pending_p
= 1;
5150 /* If the inferior is stopped already, but the core didn't know
5151 about it yet, just ignore the request. The cached wait status
5152 will be collected in remote_wait. */
5153 if (rs
->cached_wait_status
)
5156 /* Send interrupt_sequence to remote target. */
5157 send_interrupt_sequence ();
5160 /* This is the generic stop called via the target vector. When a target
5161 interrupt is requested, either by the command line or the GUI, we
5162 will eventually end up here. */
5165 remote_stop (ptid_t ptid
)
5168 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
5171 remote_stop_ns (ptid
);
5173 remote_stop_as (ptid
);
5176 /* Ask the user what to do when an interrupt is received. */
5179 interrupt_query (void)
5181 target_terminal_ours ();
5183 if (target_can_async_p ())
5185 signal (SIGINT
, handle_sigint
);
5190 if (query (_("Interrupted while waiting for the program.\n\
5191 Give up (and stop debugging it)? ")))
5193 remote_unpush_target ();
5198 target_terminal_inferior ();
5201 /* Enable/disable target terminal ownership. Most targets can use
5202 terminal groups to control terminal ownership. Remote targets are
5203 different in that explicit transfer of ownership to/from GDB/target
5207 remote_terminal_inferior (void)
5209 if (!target_async_permitted
)
5210 /* Nothing to do. */
5213 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5214 idempotent. The event-loop GDB talking to an asynchronous target
5215 with a synchronous command calls this function from both
5216 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5217 transfer the terminal to the target when it shouldn't this guard
5219 if (!remote_async_terminal_ours_p
)
5221 delete_file_handler (input_fd
);
5222 remote_async_terminal_ours_p
= 0;
5223 async_initialize_sigint_signal_handler ();
5224 /* NOTE: At this point we could also register our selves as the
5225 recipient of all input. Any characters typed could then be
5226 passed on down to the target. */
5230 remote_terminal_ours (void)
5232 if (!target_async_permitted
)
5233 /* Nothing to do. */
5236 /* See FIXME in remote_terminal_inferior. */
5237 if (remote_async_terminal_ours_p
)
5239 async_cleanup_sigint_signal_handler (NULL
);
5240 add_file_handler (input_fd
, stdin_event_handler
, 0);
5241 remote_async_terminal_ours_p
= 1;
5245 remote_console_output (char *msg
)
5249 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
5252 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
5256 fputs_unfiltered (tb
, gdb_stdtarg
);
5258 gdb_flush (gdb_stdtarg
);
5261 typedef struct cached_reg
5264 gdb_byte data
[MAX_REGISTER_SIZE
];
5267 DEF_VEC_O(cached_reg_t
);
5269 typedef struct stop_reply
5271 struct notif_event base
;
5273 /* The identifier of the thread about this event */
5276 struct target_waitstatus ws
;
5278 /* Expedited registers. This makes remote debugging a bit more
5279 efficient for those targets that provide critical registers as
5280 part of their normal status mechanism (as another roundtrip to
5281 fetch them is avoided). */
5282 VEC(cached_reg_t
) *regcache
;
5284 int stopped_by_watchpoint_p
;
5285 CORE_ADDR watch_data_address
;
5293 DECLARE_QUEUE_P (stop_reply_p
);
5294 DEFINE_QUEUE_P (stop_reply_p
);
5295 /* The list of already fetched and acknowledged stop events. This
5296 queue is used for notification Stop, and other notifications
5297 don't need queue for their events, because the notification events
5298 of Stop can't be consumed immediately, so that events should be
5299 queued first, and be consumed by remote_wait_{ns,as} one per
5300 time. Other notifications can consume their events immediately,
5301 so queue is not needed for them. */
5302 static QUEUE (stop_reply_p
) *stop_reply_queue
;
5305 stop_reply_xfree (struct stop_reply
*r
)
5309 VEC_free (cached_reg_t
, r
->regcache
);
5315 remote_notif_stop_parse (struct notif_client
*self
, char *buf
,
5316 struct notif_event
*event
)
5318 remote_parse_stop_reply (buf
, (struct stop_reply
*) event
);
5322 remote_notif_stop_ack (struct notif_client
*self
, char *buf
,
5323 struct notif_event
*event
)
5325 struct stop_reply
*stop_reply
= (struct stop_reply
*) event
;
5328 putpkt ((char *) self
->ack_command
);
5330 if (stop_reply
->ws
.kind
== TARGET_WAITKIND_IGNORE
)
5331 /* We got an unknown stop reply. */
5332 error (_("Unknown stop reply"));
5334 push_stop_reply (stop_reply
);
5338 remote_notif_stop_can_get_pending_events (struct notif_client
*self
)
5340 /* We can't get pending events in remote_notif_process for
5341 notification stop, and we have to do this in remote_wait_ns
5342 instead. If we fetch all queued events from stub, remote stub
5343 may exit and we have no chance to process them back in
5345 mark_async_event_handler (remote_async_inferior_event_token
);
5350 stop_reply_dtr (struct notif_event
*event
)
5352 struct stop_reply
*r
= (struct stop_reply
*) event
;
5354 VEC_free (cached_reg_t
, r
->regcache
);
5357 static struct notif_event
*
5358 remote_notif_stop_alloc_reply (void)
5360 struct notif_event
*r
5361 = (struct notif_event
*) XMALLOC (struct stop_reply
);
5363 r
->dtr
= stop_reply_dtr
;
5368 /* A client of notification Stop. */
5370 struct notif_client notif_client_stop
=
5374 remote_notif_stop_parse
,
5375 remote_notif_stop_ack
,
5376 remote_notif_stop_can_get_pending_events
,
5377 remote_notif_stop_alloc_reply
,
5381 /* A parameter to pass data in and out. */
5383 struct queue_iter_param
5386 struct stop_reply
*output
;
5389 /* Remove all queue elements meet the condition it checks. */
5392 remote_notif_remove_all (QUEUE (stop_reply_p
) *q
,
5393 QUEUE_ITER (stop_reply_p
) *iter
,
5397 struct queue_iter_param
*param
= data
;
5398 struct inferior
*inf
= param
->input
;
5400 if (inf
== NULL
|| ptid_get_pid (event
->ptid
) == inf
->pid
)
5402 stop_reply_xfree (event
);
5403 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
5409 /* Discard all pending stop replies of inferior INF. If INF is NULL,
5410 discard everything. */
5413 discard_pending_stop_replies (struct inferior
*inf
)
5416 struct queue_iter_param param
;
5417 struct stop_reply
*reply
5418 = (struct stop_reply
*) notif_client_stop
.pending_event
;
5420 /* Discard the in-flight notification. */
5423 || ptid_get_pid (reply
->ptid
) == inf
->pid
))
5425 stop_reply_xfree (reply
);
5426 notif_client_stop
.pending_event
= NULL
;
5430 param
.output
= NULL
;
5431 /* Discard the stop replies we have already pulled with
5433 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
5434 remote_notif_remove_all
, ¶m
);
5437 /* A parameter to pass data in and out. */
5440 remote_notif_remove_once_on_match (QUEUE (stop_reply_p
) *q
,
5441 QUEUE_ITER (stop_reply_p
) *iter
,
5445 struct queue_iter_param
*param
= data
;
5446 ptid_t
*ptid
= param
->input
;
5448 if (ptid_match (event
->ptid
, *ptid
))
5450 param
->output
= event
;
5451 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
5458 /* Remove the first reply in 'stop_reply_queue' which matches
5461 static struct stop_reply
*
5462 remote_notif_remove_queued_reply (ptid_t ptid
)
5464 struct queue_iter_param param
;
5466 param
.input
= &ptid
;
5467 param
.output
= NULL
;
5469 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
5470 remote_notif_remove_once_on_match
, ¶m
);
5472 fprintf_unfiltered (gdb_stdlog
,
5473 "notif: discard queued event: 'Stop' in %s\n",
5474 target_pid_to_str (ptid
));
5476 return param
.output
;
5479 /* Look for a queued stop reply belonging to PTID. If one is found,
5480 remove it from the queue, and return it. Returns NULL if none is
5481 found. If there are still queued events left to process, tell the
5482 event loop to get back to target_wait soon. */
5484 static struct stop_reply
*
5485 queued_stop_reply (ptid_t ptid
)
5487 struct stop_reply
*r
= remote_notif_remove_queued_reply (ptid
);
5489 if (!QUEUE_is_empty (stop_reply_p
, stop_reply_queue
))
5490 /* There's still at least an event left. */
5491 mark_async_event_handler (remote_async_inferior_event_token
);
5496 /* Push a fully parsed stop reply in the stop reply queue. Since we
5497 know that we now have at least one queued event left to pass to the
5498 core side, tell the event loop to get back to target_wait soon. */
5501 push_stop_reply (struct stop_reply
*new_event
)
5503 QUEUE_enque (stop_reply_p
, stop_reply_queue
, new_event
);
5506 fprintf_unfiltered (gdb_stdlog
,
5507 "notif: push 'Stop' %s to queue %d\n",
5508 target_pid_to_str (new_event
->ptid
),
5509 QUEUE_length (stop_reply_p
,
5512 mark_async_event_handler (remote_async_inferior_event_token
);
5516 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p
) *q
,
5517 QUEUE_ITER (stop_reply_p
) *iter
,
5518 struct stop_reply
*event
,
5521 ptid_t
*ptid
= data
;
5523 return !(ptid_equal (*ptid
, event
->ptid
)
5524 && event
->ws
.kind
== TARGET_WAITKIND_STOPPED
);
5527 /* Returns true if we have a stop reply for PTID. */
5530 peek_stop_reply (ptid_t ptid
)
5532 return !QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
5533 stop_reply_match_ptid_and_ws
, &ptid
);
5536 /* Parse the stop reply in BUF. Either the function succeeds, and the
5537 result is stored in EVENT, or throws an error. */
5540 remote_parse_stop_reply (char *buf
, struct stop_reply
*event
)
5542 struct remote_arch_state
*rsa
= get_remote_arch_state ();
5546 event
->ptid
= null_ptid
;
5547 event
->ws
.kind
= TARGET_WAITKIND_IGNORE
;
5548 event
->ws
.value
.integer
= 0;
5549 event
->solibs_changed
= 0;
5550 event
->replay_event
= 0;
5551 event
->stopped_by_watchpoint_p
= 0;
5552 event
->regcache
= NULL
;
5557 case 'T': /* Status with PC, SP, FP, ... */
5558 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5559 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
5561 n... = register number
5562 r... = register contents
5565 p
= &buf
[3]; /* after Txx */
5573 /* If the packet contains a register number, save it in
5574 pnum and set p1 to point to the character following it.
5575 Otherwise p1 points to p. */
5577 /* If this packet is an awatch packet, don't parse the 'a'
5578 as a register number. */
5580 if (strncmp (p
, "awatch", strlen("awatch")) != 0
5581 && strncmp (p
, "core", strlen ("core") != 0))
5583 /* Read the ``P'' register number. */
5584 pnum
= strtol (p
, &p_temp
, 16);
5590 if (p1
== p
) /* No register number present here. */
5592 p1
= strchr (p
, ':');
5594 error (_("Malformed packet(a) (missing colon): %s\n\
5597 if (strncmp (p
, "thread", p1
- p
) == 0)
5598 event
->ptid
= read_ptid (++p1
, &p
);
5599 else if ((strncmp (p
, "watch", p1
- p
) == 0)
5600 || (strncmp (p
, "rwatch", p1
- p
) == 0)
5601 || (strncmp (p
, "awatch", p1
- p
) == 0))
5603 event
->stopped_by_watchpoint_p
= 1;
5604 p
= unpack_varlen_hex (++p1
, &addr
);
5605 event
->watch_data_address
= (CORE_ADDR
) addr
;
5607 else if (strncmp (p
, "library", p1
- p
) == 0)
5611 while (*p_temp
&& *p_temp
!= ';')
5614 event
->solibs_changed
= 1;
5617 else if (strncmp (p
, "replaylog", p1
- p
) == 0)
5619 /* NO_HISTORY event.
5620 p1 will indicate "begin" or "end", but
5621 it makes no difference for now, so ignore it. */
5622 event
->replay_event
= 1;
5623 p_temp
= strchr (p1
+ 1, ';');
5627 else if (strncmp (p
, "core", p1
- p
) == 0)
5631 p
= unpack_varlen_hex (++p1
, &c
);
5636 /* Silently skip unknown optional info. */
5637 p_temp
= strchr (p1
+ 1, ';');
5644 struct packet_reg
*reg
= packet_reg_from_pnum (rsa
, pnum
);
5645 cached_reg_t cached_reg
;
5650 error (_("Malformed packet(b) (missing colon): %s\n\
5656 error (_("Remote sent bad register number %s: %s\n\
5658 hex_string (pnum
), p
, buf
);
5660 cached_reg
.num
= reg
->regnum
;
5662 fieldsize
= hex2bin (p
, cached_reg
.data
,
5663 register_size (target_gdbarch (),
5666 if (fieldsize
< register_size (target_gdbarch (),
5668 warning (_("Remote reply is too short: %s"), buf
);
5670 VEC_safe_push (cached_reg_t
, event
->regcache
, &cached_reg
);
5674 error (_("Remote register badly formatted: %s\nhere: %s"),
5679 case 'S': /* Old style status, just signal only. */
5680 if (event
->solibs_changed
)
5681 event
->ws
.kind
= TARGET_WAITKIND_LOADED
;
5682 else if (event
->replay_event
)
5683 event
->ws
.kind
= TARGET_WAITKIND_NO_HISTORY
;
5686 event
->ws
.kind
= TARGET_WAITKIND_STOPPED
;
5687 event
->ws
.value
.sig
= (enum gdb_signal
)
5688 (((fromhex (buf
[1])) << 4) + (fromhex (buf
[2])));
5691 case 'W': /* Target exited. */
5698 /* GDB used to accept only 2 hex chars here. Stubs should
5699 only send more if they detect GDB supports multi-process
5701 p
= unpack_varlen_hex (&buf
[1], &value
);
5705 /* The remote process exited. */
5706 event
->ws
.kind
= TARGET_WAITKIND_EXITED
;
5707 event
->ws
.value
.integer
= value
;
5711 /* The remote process exited with a signal. */
5712 event
->ws
.kind
= TARGET_WAITKIND_SIGNALLED
;
5713 event
->ws
.value
.sig
= (enum gdb_signal
) value
;
5716 /* If no process is specified, assume inferior_ptid. */
5717 pid
= ptid_get_pid (inferior_ptid
);
5726 else if (strncmp (p
,
5727 "process:", sizeof ("process:") - 1) == 0)
5731 p
+= sizeof ("process:") - 1;
5732 unpack_varlen_hex (p
, &upid
);
5736 error (_("unknown stop reply packet: %s"), buf
);
5739 error (_("unknown stop reply packet: %s"), buf
);
5740 event
->ptid
= pid_to_ptid (pid
);
5745 if (non_stop
&& ptid_equal (event
->ptid
, null_ptid
))
5746 error (_("No process or thread specified in stop reply: %s"), buf
);
5749 /* When the stub wants to tell GDB about a new notification reply, it
5750 sends a notification (%Stop, for example). Those can come it at
5751 any time, hence, we have to make sure that any pending
5752 putpkt/getpkt sequence we're making is finished, before querying
5753 the stub for more events with the corresponding ack command
5754 (vStopped, for example). E.g., if we started a vStopped sequence
5755 immediately upon receiving the notification, something like this
5763 1.6) <-- (registers reply to step #1.3)
5765 Obviously, the reply in step #1.6 would be unexpected to a vStopped
5768 To solve this, whenever we parse a %Stop notification successfully,
5769 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5770 doing whatever we were doing:
5776 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5777 2.5) <-- (registers reply to step #2.3)
5779 Eventualy after step #2.5, we return to the event loop, which
5780 notices there's an event on the
5781 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5782 associated callback --- the function below. At this point, we're
5783 always safe to start a vStopped sequence. :
5786 2.7) <-- T05 thread:2
5792 remote_notif_get_pending_events (struct notif_client
*nc
)
5794 struct remote_state
*rs
= get_remote_state ();
5796 if (nc
->pending_event
)
5799 fprintf_unfiltered (gdb_stdlog
,
5800 "notif: process: '%s' ack pending event\n",
5804 nc
->ack (nc
, rs
->buf
, nc
->pending_event
);
5805 nc
->pending_event
= NULL
;
5809 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5810 if (strcmp (rs
->buf
, "OK") == 0)
5813 remote_notif_ack (nc
, rs
->buf
);
5819 fprintf_unfiltered (gdb_stdlog
,
5820 "notif: process: '%s' no pending reply\n",
5825 /* Called when it is decided that STOP_REPLY holds the info of the
5826 event that is to be returned to the core. This function always
5827 destroys STOP_REPLY. */
5830 process_stop_reply (struct stop_reply
*stop_reply
,
5831 struct target_waitstatus
*status
)
5835 *status
= stop_reply
->ws
;
5836 ptid
= stop_reply
->ptid
;
5838 /* If no thread/process was reported by the stub, assume the current
5840 if (ptid_equal (ptid
, null_ptid
))
5841 ptid
= inferior_ptid
;
5843 if (status
->kind
!= TARGET_WAITKIND_EXITED
5844 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
)
5846 struct remote_state
*rs
= get_remote_state ();
5848 /* Expedited registers. */
5849 if (stop_reply
->regcache
)
5851 struct regcache
*regcache
5852 = get_thread_arch_regcache (ptid
, target_gdbarch ());
5857 VEC_iterate(cached_reg_t
, stop_reply
->regcache
, ix
, reg
);
5859 regcache_raw_supply (regcache
, reg
->num
, reg
->data
);
5860 VEC_free (cached_reg_t
, stop_reply
->regcache
);
5863 rs
->remote_stopped_by_watchpoint_p
= stop_reply
->stopped_by_watchpoint_p
;
5864 rs
->remote_watch_data_address
= stop_reply
->watch_data_address
;
5866 remote_notice_new_inferior (ptid
, 0);
5867 demand_private_info (ptid
)->core
= stop_reply
->core
;
5870 stop_reply_xfree (stop_reply
);
5874 /* The non-stop mode version of target_wait. */
5877 remote_wait_ns (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
5879 struct remote_state
*rs
= get_remote_state ();
5880 struct stop_reply
*stop_reply
;
5884 /* If in non-stop mode, get out of getpkt even if a
5885 notification is received. */
5887 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
5888 0 /* forever */, &is_notif
);
5891 if (ret
!= -1 && !is_notif
)
5894 case 'E': /* Error of some sort. */
5895 /* We're out of sync with the target now. Did it continue
5896 or not? We can't tell which thread it was in non-stop,
5897 so just ignore this. */
5898 warning (_("Remote failure reply: %s"), rs
->buf
);
5900 case 'O': /* Console output. */
5901 remote_console_output (rs
->buf
+ 1);
5904 warning (_("Invalid remote reply: %s"), rs
->buf
);
5908 /* Acknowledge a pending stop reply that may have arrived in the
5910 if (notif_client_stop
.pending_event
!= NULL
)
5911 remote_notif_get_pending_events (¬if_client_stop
);
5913 /* If indeed we noticed a stop reply, we're done. */
5914 stop_reply
= queued_stop_reply (ptid
);
5915 if (stop_reply
!= NULL
)
5916 return process_stop_reply (stop_reply
, status
);
5918 /* Still no event. If we're just polling for an event, then
5919 return to the event loop. */
5920 if (options
& TARGET_WNOHANG
)
5922 status
->kind
= TARGET_WAITKIND_IGNORE
;
5923 return minus_one_ptid
;
5926 /* Otherwise do a blocking wait. */
5927 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
5928 1 /* forever */, &is_notif
);
5932 /* Wait until the remote machine stops, then return, storing status in
5933 STATUS just as `wait' would. */
5936 remote_wait_as (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
5938 struct remote_state
*rs
= get_remote_state ();
5939 ptid_t event_ptid
= null_ptid
;
5941 struct stop_reply
*stop_reply
;
5945 status
->kind
= TARGET_WAITKIND_IGNORE
;
5946 status
->value
.integer
= 0;
5948 stop_reply
= queued_stop_reply (ptid
);
5949 if (stop_reply
!= NULL
)
5950 return process_stop_reply (stop_reply
, status
);
5952 if (rs
->cached_wait_status
)
5953 /* Use the cached wait status, but only once. */
5954 rs
->cached_wait_status
= 0;
5960 if (!target_is_async_p ())
5962 ofunc
= signal (SIGINT
, sync_remote_interrupt
);
5963 /* If the user hit C-c before this packet, or between packets,
5964 pretend that it was hit right here. */
5965 if (check_quit_flag ())
5968 sync_remote_interrupt (SIGINT
);
5972 /* FIXME: cagney/1999-09-27: If we're in async mode we should
5973 _never_ wait for ever -> test on target_is_async_p().
5974 However, before we do that we need to ensure that the caller
5975 knows how to take the target into/out of async mode. */
5976 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
5977 wait_forever_enabled_p
, &is_notif
);
5979 if (!target_is_async_p ())
5980 signal (SIGINT
, ofunc
);
5982 /* GDB gets a notification. Return to core as this event is
5984 if (ret
!= -1 && is_notif
)
5985 return minus_one_ptid
;
5990 rs
->remote_stopped_by_watchpoint_p
= 0;
5992 /* We got something. */
5993 rs
->waiting_for_stop_reply
= 0;
5995 /* Assume that the target has acknowledged Ctrl-C unless we receive
5996 an 'F' or 'O' packet. */
5997 if (buf
[0] != 'F' && buf
[0] != 'O')
5998 rs
->ctrlc_pending_p
= 0;
6002 case 'E': /* Error of some sort. */
6003 /* We're out of sync with the target now. Did it continue or
6004 not? Not is more likely, so report a stop. */
6005 warning (_("Remote failure reply: %s"), buf
);
6006 status
->kind
= TARGET_WAITKIND_STOPPED
;
6007 status
->value
.sig
= GDB_SIGNAL_0
;
6009 case 'F': /* File-I/O request. */
6010 remote_fileio_request (buf
, rs
->ctrlc_pending_p
);
6011 rs
->ctrlc_pending_p
= 0;
6013 case 'T': case 'S': case 'X': case 'W':
6015 struct stop_reply
*stop_reply
6016 = (struct stop_reply
*) remote_notif_parse (¬if_client_stop
,
6019 event_ptid
= process_stop_reply (stop_reply
, status
);
6022 case 'O': /* Console output. */
6023 remote_console_output (buf
+ 1);
6025 /* The target didn't really stop; keep waiting. */
6026 rs
->waiting_for_stop_reply
= 1;
6030 if (rs
->last_sent_signal
!= GDB_SIGNAL_0
)
6032 /* Zero length reply means that we tried 'S' or 'C' and the
6033 remote system doesn't support it. */
6034 target_terminal_ours_for_output ();
6036 ("Can't send signals to this remote system. %s not sent.\n",
6037 gdb_signal_to_name (rs
->last_sent_signal
));
6038 rs
->last_sent_signal
= GDB_SIGNAL_0
;
6039 target_terminal_inferior ();
6041 strcpy ((char *) buf
, rs
->last_sent_step
? "s" : "c");
6042 putpkt ((char *) buf
);
6044 /* We just told the target to resume, so a stop reply is in
6046 rs
->waiting_for_stop_reply
= 1;
6049 /* else fallthrough */
6051 warning (_("Invalid remote reply: %s"), buf
);
6053 rs
->waiting_for_stop_reply
= 1;
6057 if (status
->kind
== TARGET_WAITKIND_IGNORE
)
6059 /* Nothing interesting happened. If we're doing a non-blocking
6060 poll, we're done. Otherwise, go back to waiting. */
6061 if (options
& TARGET_WNOHANG
)
6062 return minus_one_ptid
;
6066 else if (status
->kind
!= TARGET_WAITKIND_EXITED
6067 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
)
6069 if (!ptid_equal (event_ptid
, null_ptid
))
6070 record_currthread (rs
, event_ptid
);
6072 event_ptid
= inferior_ptid
;
6075 /* A process exit. Invalidate our notion of current thread. */
6076 record_currthread (rs
, minus_one_ptid
);
6081 /* Wait until the remote machine stops, then return, storing status in
6082 STATUS just as `wait' would. */
6085 remote_wait (struct target_ops
*ops
,
6086 ptid_t ptid
, struct target_waitstatus
*status
, int options
)
6091 event_ptid
= remote_wait_ns (ptid
, status
, options
);
6093 event_ptid
= remote_wait_as (ptid
, status
, options
);
6095 if (target_can_async_p ())
6097 /* If there are are events left in the queue tell the event loop
6099 if (!QUEUE_is_empty (stop_reply_p
, stop_reply_queue
))
6100 mark_async_event_handler (remote_async_inferior_event_token
);
6106 /* Fetch a single register using a 'p' packet. */
6109 fetch_register_using_p (struct regcache
*regcache
, struct packet_reg
*reg
)
6111 struct remote_state
*rs
= get_remote_state ();
6113 char regp
[MAX_REGISTER_SIZE
];
6116 if (remote_protocol_packets
[PACKET_p
].support
== PACKET_DISABLE
)
6119 if (reg
->pnum
== -1)
6124 p
+= hexnumstr (p
, reg
->pnum
);
6127 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6131 switch (packet_ok (buf
, &remote_protocol_packets
[PACKET_p
]))
6135 case PACKET_UNKNOWN
:
6138 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
6139 gdbarch_register_name (get_regcache_arch (regcache
),
6144 /* If this register is unfetchable, tell the regcache. */
6147 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
6151 /* Otherwise, parse and supply the value. */
6157 error (_("fetch_register_using_p: early buf termination"));
6159 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
6162 regcache_raw_supply (regcache
, reg
->regnum
, regp
);
6166 /* Fetch the registers included in the target's 'g' packet. */
6169 send_g_packet (void)
6171 struct remote_state
*rs
= get_remote_state ();
6174 xsnprintf (rs
->buf
, get_remote_packet_size (), "g");
6175 remote_send (&rs
->buf
, &rs
->buf_size
);
6177 /* We can get out of synch in various cases. If the first character
6178 in the buffer is not a hex character, assume that has happened
6179 and try to fetch another packet to read. */
6180 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
6181 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
6182 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
6183 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
6186 fprintf_unfiltered (gdb_stdlog
,
6187 "Bad register packet; fetching a new packet\n");
6188 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6191 buf_len
= strlen (rs
->buf
);
6193 /* Sanity check the received packet. */
6194 if (buf_len
% 2 != 0)
6195 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
);
6201 process_g_packet (struct regcache
*regcache
)
6203 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
6204 struct remote_state
*rs
= get_remote_state ();
6205 struct remote_arch_state
*rsa
= get_remote_arch_state ();
6210 buf_len
= strlen (rs
->buf
);
6212 /* Further sanity checks, with knowledge of the architecture. */
6213 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
6214 error (_("Remote 'g' packet reply is too long: %s"), rs
->buf
);
6216 /* Save the size of the packet sent to us by the target. It is used
6217 as a heuristic when determining the max size of packets that the
6218 target can safely receive. */
6219 if (rsa
->actual_register_packet_size
== 0)
6220 rsa
->actual_register_packet_size
= buf_len
;
6222 /* If this is smaller than we guessed the 'g' packet would be,
6223 update our records. A 'g' reply that doesn't include a register's
6224 value implies either that the register is not available, or that
6225 the 'p' packet must be used. */
6226 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
6228 rsa
->sizeof_g_packet
= buf_len
/ 2;
6230 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
6232 if (rsa
->regs
[i
].pnum
== -1)
6235 if (rsa
->regs
[i
].offset
>= rsa
->sizeof_g_packet
)
6236 rsa
->regs
[i
].in_g_packet
= 0;
6238 rsa
->regs
[i
].in_g_packet
= 1;
6242 regs
= alloca (rsa
->sizeof_g_packet
);
6244 /* Unimplemented registers read as all bits zero. */
6245 memset (regs
, 0, rsa
->sizeof_g_packet
);
6247 /* Reply describes registers byte by byte, each byte encoded as two
6248 hex characters. Suck them all up, then supply them to the
6249 register cacheing/storage mechanism. */
6252 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
6254 if (p
[0] == 0 || p
[1] == 0)
6255 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
6256 internal_error (__FILE__
, __LINE__
,
6257 _("unexpected end of 'g' packet reply"));
6259 if (p
[0] == 'x' && p
[1] == 'x')
6260 regs
[i
] = 0; /* 'x' */
6262 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
6266 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
6268 struct packet_reg
*r
= &rsa
->regs
[i
];
6272 if (r
->offset
* 2 >= strlen (rs
->buf
))
6273 /* This shouldn't happen - we adjusted in_g_packet above. */
6274 internal_error (__FILE__
, __LINE__
,
6275 _("unexpected end of 'g' packet reply"));
6276 else if (rs
->buf
[r
->offset
* 2] == 'x')
6278 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
));
6279 /* The register isn't available, mark it as such (at
6280 the same time setting the value to zero). */
6281 regcache_raw_supply (regcache
, r
->regnum
, NULL
);
6284 regcache_raw_supply (regcache
, r
->regnum
,
6291 fetch_registers_using_g (struct regcache
*regcache
)
6294 process_g_packet (regcache
);
6297 /* Make the remote selected traceframe match GDB's selected
6301 set_remote_traceframe (void)
6304 struct remote_state
*rs
= get_remote_state ();
6306 if (rs
->remote_traceframe_number
== get_traceframe_number ())
6309 /* Avoid recursion, remote_trace_find calls us again. */
6310 rs
->remote_traceframe_number
= get_traceframe_number ();
6312 newnum
= target_trace_find (tfind_number
,
6313 get_traceframe_number (), 0, 0, NULL
);
6315 /* Should not happen. If it does, all bets are off. */
6316 if (newnum
!= get_traceframe_number ())
6317 warning (_("could not set remote traceframe"));
6321 remote_fetch_registers (struct target_ops
*ops
,
6322 struct regcache
*regcache
, int regnum
)
6324 struct remote_arch_state
*rsa
= get_remote_arch_state ();
6327 set_remote_traceframe ();
6328 set_general_thread (inferior_ptid
);
6332 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
6334 gdb_assert (reg
!= NULL
);
6336 /* If this register might be in the 'g' packet, try that first -
6337 we are likely to read more than one register. If this is the
6338 first 'g' packet, we might be overly optimistic about its
6339 contents, so fall back to 'p'. */
6340 if (reg
->in_g_packet
)
6342 fetch_registers_using_g (regcache
);
6343 if (reg
->in_g_packet
)
6347 if (fetch_register_using_p (regcache
, reg
))
6350 /* This register is not available. */
6351 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
6356 fetch_registers_using_g (regcache
);
6358 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
6359 if (!rsa
->regs
[i
].in_g_packet
)
6360 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
6362 /* This register is not available. */
6363 regcache_raw_supply (regcache
, i
, NULL
);
6367 /* Prepare to store registers. Since we may send them all (using a
6368 'G' request), we have to read out the ones we don't want to change
6372 remote_prepare_to_store (struct regcache
*regcache
)
6374 struct remote_arch_state
*rsa
= get_remote_arch_state ();
6376 gdb_byte buf
[MAX_REGISTER_SIZE
];
6378 /* Make sure the entire registers array is valid. */
6379 switch (remote_protocol_packets
[PACKET_P
].support
)
6381 case PACKET_DISABLE
:
6382 case PACKET_SUPPORT_UNKNOWN
:
6383 /* Make sure all the necessary registers are cached. */
6384 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
6385 if (rsa
->regs
[i
].in_g_packet
)
6386 regcache_raw_read (regcache
, rsa
->regs
[i
].regnum
, buf
);
6393 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
6394 packet was not recognized. */
6397 store_register_using_P (const struct regcache
*regcache
,
6398 struct packet_reg
*reg
)
6400 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
6401 struct remote_state
*rs
= get_remote_state ();
6402 /* Try storing a single register. */
6403 char *buf
= rs
->buf
;
6404 gdb_byte regp
[MAX_REGISTER_SIZE
];
6407 if (remote_protocol_packets
[PACKET_P
].support
== PACKET_DISABLE
)
6410 if (reg
->pnum
== -1)
6413 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
6414 p
= buf
+ strlen (buf
);
6415 regcache_raw_collect (regcache
, reg
->regnum
, regp
);
6416 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
6418 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6420 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
6425 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6426 gdbarch_register_name (gdbarch
, reg
->regnum
), rs
->buf
);
6427 case PACKET_UNKNOWN
:
6430 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
6434 /* Store register REGNUM, or all registers if REGNUM == -1, from the
6435 contents of the register cache buffer. FIXME: ignores errors. */
6438 store_registers_using_G (const struct regcache
*regcache
)
6440 struct remote_state
*rs
= get_remote_state ();
6441 struct remote_arch_state
*rsa
= get_remote_arch_state ();
6445 /* Extract all the registers in the regcache copying them into a
6450 regs
= alloca (rsa
->sizeof_g_packet
);
6451 memset (regs
, 0, rsa
->sizeof_g_packet
);
6452 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
6454 struct packet_reg
*r
= &rsa
->regs
[i
];
6457 regcache_raw_collect (regcache
, r
->regnum
, regs
+ r
->offset
);
6461 /* Command describes registers byte by byte,
6462 each byte encoded as two hex characters. */
6465 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6467 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
6469 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6470 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
6471 error (_("Could not write registers; remote failure reply '%s'"),
6475 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6476 of the register cache buffer. FIXME: ignores errors. */
6479 remote_store_registers (struct target_ops
*ops
,
6480 struct regcache
*regcache
, int regnum
)
6482 struct remote_arch_state
*rsa
= get_remote_arch_state ();
6485 set_remote_traceframe ();
6486 set_general_thread (inferior_ptid
);
6490 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
6492 gdb_assert (reg
!= NULL
);
6494 /* Always prefer to store registers using the 'P' packet if
6495 possible; we often change only a small number of registers.
6496 Sometimes we change a larger number; we'd need help from a
6497 higher layer to know to use 'G'. */
6498 if (store_register_using_P (regcache
, reg
))
6501 /* For now, don't complain if we have no way to write the
6502 register. GDB loses track of unavailable registers too
6503 easily. Some day, this may be an error. We don't have
6504 any way to read the register, either... */
6505 if (!reg
->in_g_packet
)
6508 store_registers_using_G (regcache
);
6512 store_registers_using_G (regcache
);
6514 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
6515 if (!rsa
->regs
[i
].in_g_packet
)
6516 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
6517 /* See above for why we do not issue an error here. */
6522 /* Return the number of hex digits in num. */
6525 hexnumlen (ULONGEST num
)
6529 for (i
= 0; num
!= 0; i
++)
6535 /* Set BUF to the minimum number of hex digits representing NUM. */
6538 hexnumstr (char *buf
, ULONGEST num
)
6540 int len
= hexnumlen (num
);
6542 return hexnumnstr (buf
, num
, len
);
6546 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
6549 hexnumnstr (char *buf
, ULONGEST num
, int width
)
6555 for (i
= width
- 1; i
>= 0; i
--)
6557 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
6564 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
6567 remote_address_masked (CORE_ADDR addr
)
6569 unsigned int address_size
= remote_address_size
;
6571 /* If "remoteaddresssize" was not set, default to target address size. */
6573 address_size
= gdbarch_addr_bit (target_gdbarch ());
6575 if (address_size
> 0
6576 && address_size
< (sizeof (ULONGEST
) * 8))
6578 /* Only create a mask when that mask can safely be constructed
6579 in a ULONGEST variable. */
6582 mask
= (mask
<< address_size
) - 1;
6588 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
6589 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
6590 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6591 (which may be more than *OUT_LEN due to escape characters). The
6592 total number of bytes in the output buffer will be at most
6596 remote_escape_output (const gdb_byte
*buffer
, int len
,
6597 gdb_byte
*out_buf
, int *out_len
,
6600 int input_index
, output_index
;
6603 for (input_index
= 0; input_index
< len
; input_index
++)
6605 gdb_byte b
= buffer
[input_index
];
6607 if (b
== '$' || b
== '#' || b
== '}')
6609 /* These must be escaped. */
6610 if (output_index
+ 2 > out_maxlen
)
6612 out_buf
[output_index
++] = '}';
6613 out_buf
[output_index
++] = b
^ 0x20;
6617 if (output_index
+ 1 > out_maxlen
)
6619 out_buf
[output_index
++] = b
;
6623 *out_len
= input_index
;
6624 return output_index
;
6627 /* Convert BUFFER, escaped data LEN bytes long, into binary data
6628 in OUT_BUF. Return the number of bytes written to OUT_BUF.
6629 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6631 This function reverses remote_escape_output. It allows more
6632 escaped characters than that function does, in particular because
6633 '*' must be escaped to avoid the run-length encoding processing
6634 in reading packets. */
6637 remote_unescape_input (const gdb_byte
*buffer
, int len
,
6638 gdb_byte
*out_buf
, int out_maxlen
)
6640 int input_index
, output_index
;
6645 for (input_index
= 0; input_index
< len
; input_index
++)
6647 gdb_byte b
= buffer
[input_index
];
6649 if (output_index
+ 1 > out_maxlen
)
6651 warning (_("Received too much data from remote target;"
6652 " ignoring overflow."));
6653 return output_index
;
6658 out_buf
[output_index
++] = b
^ 0x20;
6664 out_buf
[output_index
++] = b
;
6668 error (_("Unmatched escape character in target response."));
6670 return output_index
;
6673 /* Determine whether the remote target supports binary downloading.
6674 This is accomplished by sending a no-op memory write of zero length
6675 to the target at the specified address. It does not suffice to send
6676 the whole packet, since many stubs strip the eighth bit and
6677 subsequently compute a wrong checksum, which causes real havoc with
6680 NOTE: This can still lose if the serial line is not eight-bit
6681 clean. In cases like this, the user should clear "remote
6685 check_binary_download (CORE_ADDR addr
)
6687 struct remote_state
*rs
= get_remote_state ();
6689 switch (remote_protocol_packets
[PACKET_X
].support
)
6691 case PACKET_DISABLE
:
6695 case PACKET_SUPPORT_UNKNOWN
:
6701 p
+= hexnumstr (p
, (ULONGEST
) addr
);
6703 p
+= hexnumstr (p
, (ULONGEST
) 0);
6707 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
6708 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6710 if (rs
->buf
[0] == '\0')
6713 fprintf_unfiltered (gdb_stdlog
,
6714 "binary downloading NOT "
6715 "supported by target\n");
6716 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
6721 fprintf_unfiltered (gdb_stdlog
,
6722 "binary downloading supported by target\n");
6723 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
6730 /* Write memory data directly to the remote machine.
6731 This does not inform the data cache; the data cache uses this.
6732 HEADER is the starting part of the packet.
6733 MEMADDR is the address in the remote memory space.
6734 MYADDR is the address of the buffer in our space.
6735 LEN is the number of bytes.
6736 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6737 should send data as binary ('X'), or hex-encoded ('M').
6739 The function creates packet of the form
6740 <HEADER><ADDRESS>,<LENGTH>:<DATA>
6742 where encoding of <DATA> is termined by PACKET_FORMAT.
6744 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6747 Returns the number of bytes transferred, or a negative value (an
6748 'enum target_xfer_error' value) for error. Only transfer a single
6752 remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
6753 const gdb_byte
*myaddr
, ssize_t len
,
6754 char packet_format
, int use_length
)
6756 struct remote_state
*rs
= get_remote_state ();
6766 if (packet_format
!= 'X' && packet_format
!= 'M')
6767 internal_error (__FILE__
, __LINE__
,
6768 _("remote_write_bytes_aux: bad packet format"));
6773 payload_size
= get_memory_write_packet_size ();
6775 /* The packet buffer will be large enough for the payload;
6776 get_memory_packet_size ensures this. */
6779 /* Compute the size of the actual payload by subtracting out the
6780 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
6782 payload_size
-= strlen ("$,:#NN");
6784 /* The comma won't be used. */
6786 header_length
= strlen (header
);
6787 payload_size
-= header_length
;
6788 payload_size
-= hexnumlen (memaddr
);
6790 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
6792 strcat (rs
->buf
, header
);
6793 p
= rs
->buf
+ strlen (header
);
6795 /* Compute a best guess of the number of bytes actually transfered. */
6796 if (packet_format
== 'X')
6798 /* Best guess at number of bytes that will fit. */
6799 todo
= min (len
, payload_size
);
6801 payload_size
-= hexnumlen (todo
);
6802 todo
= min (todo
, payload_size
);
6806 /* Num bytes that will fit. */
6807 todo
= min (len
, payload_size
/ 2);
6809 payload_size
-= hexnumlen (todo
);
6810 todo
= min (todo
, payload_size
/ 2);
6814 internal_error (__FILE__
, __LINE__
,
6815 _("minimum packet size too small to write data"));
6817 /* If we already need another packet, then try to align the end
6818 of this packet to a useful boundary. */
6819 if (todo
> 2 * REMOTE_ALIGN_WRITES
&& todo
< len
)
6820 todo
= ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
6822 /* Append "<memaddr>". */
6823 memaddr
= remote_address_masked (memaddr
);
6824 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
6831 /* Append <len>. Retain the location/size of <len>. It may need to
6832 be adjusted once the packet body has been created. */
6834 plenlen
= hexnumstr (p
, (ULONGEST
) todo
);
6842 /* Append the packet body. */
6843 if (packet_format
== 'X')
6845 /* Binary mode. Send target system values byte by byte, in
6846 increasing byte addresses. Only escape certain critical
6848 payload_length
= remote_escape_output (myaddr
, todo
, (gdb_byte
*) p
,
6849 &nr_bytes
, payload_size
);
6851 /* If not all TODO bytes fit, then we'll need another packet. Make
6852 a second try to keep the end of the packet aligned. Don't do
6853 this if the packet is tiny. */
6854 if (nr_bytes
< todo
&& nr_bytes
> 2 * REMOTE_ALIGN_WRITES
)
6858 new_nr_bytes
= (((memaddr
+ nr_bytes
) & ~(REMOTE_ALIGN_WRITES
- 1))
6860 if (new_nr_bytes
!= nr_bytes
)
6861 payload_length
= remote_escape_output (myaddr
, new_nr_bytes
,
6862 (gdb_byte
*) p
, &nr_bytes
,
6866 p
+= payload_length
;
6867 if (use_length
&& nr_bytes
< todo
)
6869 /* Escape chars have filled up the buffer prematurely,
6870 and we have actually sent fewer bytes than planned.
6871 Fix-up the length field of the packet. Use the same
6872 number of characters as before. */
6873 plen
+= hexnumnstr (plen
, (ULONGEST
) nr_bytes
, plenlen
);
6874 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
6879 /* Normal mode: Send target system values byte by byte, in
6880 increasing byte addresses. Each byte is encoded as a two hex
6882 nr_bytes
= bin2hex (myaddr
, p
, todo
);
6886 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
6887 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6889 if (rs
->buf
[0] == 'E')
6890 return TARGET_XFER_E_IO
;
6892 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6893 fewer bytes than we'd planned. */
6897 /* Write memory data directly to the remote machine.
6898 This does not inform the data cache; the data cache uses this.
6899 MEMADDR is the address in the remote memory space.
6900 MYADDR is the address of the buffer in our space.
6901 LEN is the number of bytes.
6903 Returns number of bytes transferred, or a negative value (an 'enum
6904 target_xfer_error' value) for error. Only transfer a single
6908 remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, ssize_t len
)
6910 char *packet_format
= 0;
6912 /* Check whether the target supports binary download. */
6913 check_binary_download (memaddr
);
6915 switch (remote_protocol_packets
[PACKET_X
].support
)
6918 packet_format
= "X";
6920 case PACKET_DISABLE
:
6921 packet_format
= "M";
6923 case PACKET_SUPPORT_UNKNOWN
:
6924 internal_error (__FILE__
, __LINE__
,
6925 _("remote_write_bytes: bad internal state"));
6927 internal_error (__FILE__
, __LINE__
, _("bad switch"));
6930 return remote_write_bytes_aux (packet_format
,
6931 memaddr
, myaddr
, len
, packet_format
[0], 1);
6934 /* Read memory data directly from the remote machine.
6935 This does not use the data cache; the data cache uses this.
6936 MEMADDR is the address in the remote memory space.
6937 MYADDR is the address of the buffer in our space.
6938 LEN is the number of bytes.
6940 Returns number of bytes transferred, or a negative value (an 'enum
6941 target_xfer_error' value) for error. */
6944 remote_read_bytes (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
6946 struct remote_state
*rs
= get_remote_state ();
6947 int max_buf_size
; /* Max size of packet output buffer. */
6955 max_buf_size
= get_memory_read_packet_size ();
6956 /* The packet buffer will be large enough for the payload;
6957 get_memory_packet_size ensures this. */
6959 /* Number if bytes that will fit. */
6960 todo
= min (len
, max_buf_size
/ 2);
6962 /* Construct "m"<memaddr>","<len>". */
6963 memaddr
= remote_address_masked (memaddr
);
6966 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
6968 p
+= hexnumstr (p
, (ULONGEST
) todo
);
6971 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6972 if (rs
->buf
[0] == 'E'
6973 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
6974 && rs
->buf
[3] == '\0')
6975 return TARGET_XFER_E_IO
;
6976 /* Reply describes memory byte by byte, each byte encoded as two hex
6979 i
= hex2bin (p
, myaddr
, todo
);
6980 /* Return what we have. Let higher layers handle partial reads. */
6986 /* Sends a packet with content determined by the printf format string
6987 FORMAT and the remaining arguments, then gets the reply. Returns
6988 whether the packet was a success, a failure, or unknown. */
6990 static enum packet_result
6991 remote_send_printf (const char *format
, ...)
6993 struct remote_state
*rs
= get_remote_state ();
6994 int max_size
= get_remote_packet_size ();
6997 va_start (ap
, format
);
7000 if (vsnprintf (rs
->buf
, max_size
, format
, ap
) >= max_size
)
7001 internal_error (__FILE__
, __LINE__
, _("Too long remote packet."));
7003 if (putpkt (rs
->buf
) < 0)
7004 error (_("Communication problem with target."));
7007 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7009 return packet_check_result (rs
->buf
);
7013 restore_remote_timeout (void *p
)
7015 int value
= *(int *)p
;
7017 remote_timeout
= value
;
7020 /* Flash writing can take quite some time. We'll set
7021 effectively infinite timeout for flash operations.
7022 In future, we'll need to decide on a better approach. */
7023 static const int remote_flash_timeout
= 1000;
7026 remote_flash_erase (struct target_ops
*ops
,
7027 ULONGEST address
, LONGEST length
)
7029 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
7030 int saved_remote_timeout
= remote_timeout
;
7031 enum packet_result ret
;
7032 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
7033 &saved_remote_timeout
);
7035 remote_timeout
= remote_flash_timeout
;
7037 ret
= remote_send_printf ("vFlashErase:%s,%s",
7038 phex (address
, addr_size
),
7042 case PACKET_UNKNOWN
:
7043 error (_("Remote target does not support flash erase"));
7045 error (_("Error erasing flash with vFlashErase packet"));
7050 do_cleanups (back_to
);
7054 remote_flash_write (struct target_ops
*ops
,
7055 ULONGEST address
, LONGEST length
,
7056 const gdb_byte
*data
)
7058 int saved_remote_timeout
= remote_timeout
;
7060 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
7061 &saved_remote_timeout
);
7063 remote_timeout
= remote_flash_timeout
;
7064 ret
= remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 'X', 0);
7065 do_cleanups (back_to
);
7071 remote_flash_done (struct target_ops
*ops
)
7073 int saved_remote_timeout
= remote_timeout
;
7075 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
7076 &saved_remote_timeout
);
7078 remote_timeout
= remote_flash_timeout
;
7079 ret
= remote_send_printf ("vFlashDone");
7080 do_cleanups (back_to
);
7084 case PACKET_UNKNOWN
:
7085 error (_("Remote target does not support vFlashDone"));
7087 error (_("Error finishing flash operation"));
7094 remote_files_info (struct target_ops
*ignore
)
7096 puts_filtered ("Debugging a target over a serial line.\n");
7099 /* Stuff for dealing with the packets which are part of this protocol.
7100 See comment at top of file for details. */
7102 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
7103 error to higher layers. Called when a serial error is detected.
7104 The exception message is STRING, followed by a colon and a blank,
7105 the system error message for errno at function entry and final dot
7106 for output compatibility with throw_perror_with_name. */
7109 unpush_and_perror (const char *string
)
7111 int saved_errno
= errno
;
7113 remote_unpush_target ();
7114 throw_error (TARGET_CLOSE_ERROR
, "%s: %s.", string
,
7115 safe_strerror (saved_errno
));
7118 /* Read a single character from the remote end. */
7121 readchar (int timeout
)
7124 struct remote_state
*rs
= get_remote_state ();
7126 ch
= serial_readchar (rs
->remote_desc
, timeout
);
7131 switch ((enum serial_rc
) ch
)
7134 remote_unpush_target ();
7135 throw_error (TARGET_CLOSE_ERROR
, _("Remote connection closed"));
7138 unpush_and_perror (_("Remote communication error. "
7139 "Target disconnected."));
7141 case SERIAL_TIMEOUT
:
7147 /* Wrapper for serial_write that closes the target and throws if
7151 remote_serial_write (const char *str
, int len
)
7153 struct remote_state
*rs
= get_remote_state ();
7155 if (serial_write (rs
->remote_desc
, str
, len
))
7157 unpush_and_perror (_("Remote communication error. "
7158 "Target disconnected."));
7162 /* Send the command in *BUF to the remote machine, and read the reply
7163 into *BUF. Report an error if we get an error reply. Resize
7164 *BUF using xrealloc if necessary to hold the result, and update
7168 remote_send (char **buf
,
7172 getpkt (buf
, sizeof_buf
, 0);
7174 if ((*buf
)[0] == 'E')
7175 error (_("Remote failure reply: %s"), *buf
);
7178 /* Return a pointer to an xmalloc'ed string representing an escaped
7179 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
7180 etc. The caller is responsible for releasing the returned
7184 escape_buffer (const char *buf
, int n
)
7186 struct cleanup
*old_chain
;
7187 struct ui_file
*stb
;
7190 stb
= mem_fileopen ();
7191 old_chain
= make_cleanup_ui_file_delete (stb
);
7193 fputstrn_unfiltered (buf
, n
, 0, stb
);
7194 str
= ui_file_xstrdup (stb
, NULL
);
7195 do_cleanups (old_chain
);
7199 /* Display a null-terminated packet on stdout, for debugging, using C
7203 print_packet (char *buf
)
7205 puts_filtered ("\"");
7206 fputstr_filtered (buf
, '"', gdb_stdout
);
7207 puts_filtered ("\"");
7213 return putpkt_binary (buf
, strlen (buf
));
7216 /* Send a packet to the remote machine, with error checking. The data
7217 of the packet is in BUF. The string in BUF can be at most
7218 get_remote_packet_size () - 5 to account for the $, # and checksum,
7219 and for a possible /0 if we are debugging (remote_debug) and want
7220 to print the sent packet as a string. */
7223 putpkt_binary (char *buf
, int cnt
)
7225 struct remote_state
*rs
= get_remote_state ();
7227 unsigned char csum
= 0;
7228 char *buf2
= alloca (cnt
+ 6);
7235 /* Catch cases like trying to read memory or listing threads while
7236 we're waiting for a stop reply. The remote server wouldn't be
7237 ready to handle this request, so we'd hang and timeout. We don't
7238 have to worry about this in synchronous mode, because in that
7239 case it's not possible to issue a command while the target is
7240 running. This is not a problem in non-stop mode, because in that
7241 case, the stub is always ready to process serial input. */
7242 if (!non_stop
&& target_can_async_p () && rs
->waiting_for_stop_reply
)
7243 error (_("Cannot execute this command while the target is running."));
7245 /* We're sending out a new packet. Make sure we don't look at a
7246 stale cached response. */
7247 rs
->cached_wait_status
= 0;
7249 /* Copy the packet into buffer BUF2, encapsulating it
7250 and giving it a checksum. */
7255 for (i
= 0; i
< cnt
; i
++)
7261 *p
++ = tohex ((csum
>> 4) & 0xf);
7262 *p
++ = tohex (csum
& 0xf);
7264 /* Send it over and over until we get a positive ack. */
7268 int started_error_output
= 0;
7272 struct cleanup
*old_chain
;
7276 str
= escape_buffer (buf2
, p
- buf2
);
7277 old_chain
= make_cleanup (xfree
, str
);
7278 fprintf_unfiltered (gdb_stdlog
, "Sending packet: %s...", str
);
7279 gdb_flush (gdb_stdlog
);
7280 do_cleanups (old_chain
);
7282 remote_serial_write (buf2
, p
- buf2
);
7284 /* If this is a no acks version of the remote protocol, send the
7285 packet and move on. */
7289 /* Read until either a timeout occurs (-2) or '+' is read.
7290 Handle any notification that arrives in the mean time. */
7293 ch
= readchar (remote_timeout
);
7301 case SERIAL_TIMEOUT
:
7304 if (started_error_output
)
7306 putchar_unfiltered ('\n');
7307 started_error_output
= 0;
7316 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
7320 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
7322 case SERIAL_TIMEOUT
:
7326 break; /* Retransmit buffer. */
7330 fprintf_unfiltered (gdb_stdlog
,
7331 "Packet instead of Ack, ignoring it\n");
7332 /* It's probably an old response sent because an ACK
7333 was lost. Gobble up the packet and ack it so it
7334 doesn't get retransmitted when we resend this
7337 remote_serial_write ("+", 1);
7338 continue; /* Now, go look for +. */
7345 /* If we got a notification, handle it, and go back to looking
7347 /* We've found the start of a notification. Now
7348 collect the data. */
7349 val
= read_frame (&rs
->buf
, &rs
->buf_size
);
7354 struct cleanup
*old_chain
;
7357 str
= escape_buffer (rs
->buf
, val
);
7358 old_chain
= make_cleanup (xfree
, str
);
7359 fprintf_unfiltered (gdb_stdlog
,
7360 " Notification received: %s\n",
7362 do_cleanups (old_chain
);
7364 handle_notification (rs
->buf
);
7365 /* We're in sync now, rewait for the ack. */
7372 if (!started_error_output
)
7374 started_error_output
= 1;
7375 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
7377 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
7378 fprintf_unfiltered (gdb_stdlog
, "%s", rs
->buf
);
7387 if (!started_error_output
)
7389 started_error_output
= 1;
7390 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
7392 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
7396 break; /* Here to retransmit. */
7400 /* This is wrong. If doing a long backtrace, the user should be
7401 able to get out next time we call QUIT, without anything as
7402 violent as interrupt_query. If we want to provide a way out of
7403 here without getting to the next QUIT, it should be based on
7404 hitting ^C twice as in remote_wait. */
7415 /* Come here after finding the start of a frame when we expected an
7416 ack. Do our best to discard the rest of this packet. */
7425 c
= readchar (remote_timeout
);
7428 case SERIAL_TIMEOUT
:
7429 /* Nothing we can do. */
7432 /* Discard the two bytes of checksum and stop. */
7433 c
= readchar (remote_timeout
);
7435 c
= readchar (remote_timeout
);
7438 case '*': /* Run length encoding. */
7439 /* Discard the repeat count. */
7440 c
= readchar (remote_timeout
);
7445 /* A regular character. */
7451 /* Come here after finding the start of the frame. Collect the rest
7452 into *BUF, verifying the checksum, length, and handling run-length
7453 compression. NUL terminate the buffer. If there is not enough room,
7454 expand *BUF using xrealloc.
7456 Returns -1 on error, number of characters in buffer (ignoring the
7457 trailing NULL) on success. (could be extended to return one of the
7458 SERIAL status indications). */
7461 read_frame (char **buf_p
,
7468 struct remote_state
*rs
= get_remote_state ();
7475 c
= readchar (remote_timeout
);
7478 case SERIAL_TIMEOUT
:
7480 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
7484 fputs_filtered ("Saw new packet start in middle of old one\n",
7486 return -1; /* Start a new packet, count retries. */
7489 unsigned char pktcsum
;
7495 check_0
= readchar (remote_timeout
);
7497 check_1
= readchar (remote_timeout
);
7499 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
7502 fputs_filtered ("Timeout in checksum, retrying\n",
7506 else if (check_0
< 0 || check_1
< 0)
7509 fputs_filtered ("Communication error in checksum\n",
7514 /* Don't recompute the checksum; with no ack packets we
7515 don't have any way to indicate a packet retransmission
7520 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
7521 if (csum
== pktcsum
)
7526 struct cleanup
*old_chain
;
7529 str
= escape_buffer (buf
, bc
);
7530 old_chain
= make_cleanup (xfree
, str
);
7531 fprintf_unfiltered (gdb_stdlog
,
7532 "Bad checksum, sentsum=0x%x, "
7533 "csum=0x%x, buf=%s\n",
7534 pktcsum
, csum
, str
);
7535 do_cleanups (old_chain
);
7537 /* Number of characters in buffer ignoring trailing
7541 case '*': /* Run length encoding. */
7546 c
= readchar (remote_timeout
);
7548 repeat
= c
- ' ' + 3; /* Compute repeat count. */
7550 /* The character before ``*'' is repeated. */
7552 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
7554 if (bc
+ repeat
- 1 >= *sizeof_buf
- 1)
7556 /* Make some more room in the buffer. */
7557 *sizeof_buf
+= repeat
;
7558 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
7562 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
7568 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
7572 if (bc
>= *sizeof_buf
- 1)
7574 /* Make some more room in the buffer. */
7576 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
7587 /* Read a packet from the remote machine, with error checking, and
7588 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7589 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7590 rather than timing out; this is used (in synchronous mode) to wait
7591 for a target that is is executing user code to stop. */
7592 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7593 don't have to change all the calls to getpkt to deal with the
7594 return value, because at the moment I don't know what the right
7595 thing to do it for those. */
7603 timed_out
= getpkt_sane (buf
, sizeof_buf
, forever
);
7607 /* Read a packet from the remote machine, with error checking, and
7608 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7609 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7610 rather than timing out; this is used (in synchronous mode) to wait
7611 for a target that is is executing user code to stop. If FOREVER ==
7612 0, this function is allowed to time out gracefully and return an
7613 indication of this to the caller. Otherwise return the number of
7614 bytes read. If EXPECTING_NOTIF, consider receiving a notification
7615 enough reason to return to the caller. *IS_NOTIF is an output
7616 boolean that indicates whether *BUF holds a notification or not
7617 (a regular packet). */
7620 getpkt_or_notif_sane_1 (char **buf
, long *sizeof_buf
, int forever
,
7621 int expecting_notif
, int *is_notif
)
7623 struct remote_state
*rs
= get_remote_state ();
7629 /* We're reading a new response. Make sure we don't look at a
7630 previously cached response. */
7631 rs
->cached_wait_status
= 0;
7633 strcpy (*buf
, "timeout");
7636 timeout
= watchdog
> 0 ? watchdog
: -1;
7637 else if (expecting_notif
)
7638 timeout
= 0; /* There should already be a char in the buffer. If
7641 timeout
= remote_timeout
;
7645 /* Process any number of notifications, and then return when
7649 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7651 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
7653 /* This can loop forever if the remote side sends us
7654 characters continuously, but if it pauses, we'll get
7655 SERIAL_TIMEOUT from readchar because of timeout. Then
7656 we'll count that as a retry.
7658 Note that even when forever is set, we will only wait
7659 forever prior to the start of a packet. After that, we
7660 expect characters to arrive at a brisk pace. They should
7661 show up within remote_timeout intervals. */
7663 c
= readchar (timeout
);
7664 while (c
!= SERIAL_TIMEOUT
&& c
!= '$' && c
!= '%');
7666 if (c
== SERIAL_TIMEOUT
)
7668 if (expecting_notif
)
7669 return -1; /* Don't complain, it's normal to not get
7670 anything in this case. */
7672 if (forever
) /* Watchdog went off? Kill the target. */
7675 remote_unpush_target ();
7676 throw_error (TARGET_CLOSE_ERROR
,
7677 _("Watchdog timeout has expired. "
7678 "Target detached."));
7681 fputs_filtered ("Timed out.\n", gdb_stdlog
);
7685 /* We've found the start of a packet or notification.
7686 Now collect the data. */
7687 val
= read_frame (buf
, sizeof_buf
);
7692 remote_serial_write ("-", 1);
7695 if (tries
> MAX_TRIES
)
7697 /* We have tried hard enough, and just can't receive the
7698 packet/notification. Give up. */
7699 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
7701 /* Skip the ack char if we're in no-ack mode. */
7702 if (!rs
->noack_mode
)
7703 remote_serial_write ("+", 1);
7707 /* If we got an ordinary packet, return that to our caller. */
7712 struct cleanup
*old_chain
;
7715 str
= escape_buffer (*buf
, val
);
7716 old_chain
= make_cleanup (xfree
, str
);
7717 fprintf_unfiltered (gdb_stdlog
, "Packet received: %s\n", str
);
7718 do_cleanups (old_chain
);
7721 /* Skip the ack char if we're in no-ack mode. */
7722 if (!rs
->noack_mode
)
7723 remote_serial_write ("+", 1);
7724 if (is_notif
!= NULL
)
7729 /* If we got a notification, handle it, and go back to looking
7733 gdb_assert (c
== '%');
7737 struct cleanup
*old_chain
;
7740 str
= escape_buffer (*buf
, val
);
7741 old_chain
= make_cleanup (xfree
, str
);
7742 fprintf_unfiltered (gdb_stdlog
,
7743 " Notification received: %s\n",
7745 do_cleanups (old_chain
);
7747 if (is_notif
!= NULL
)
7750 handle_notification (*buf
);
7752 /* Notifications require no acknowledgement. */
7754 if (expecting_notif
)
7761 getpkt_sane (char **buf
, long *sizeof_buf
, int forever
)
7763 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 0, NULL
);
7767 getpkt_or_notif_sane (char **buf
, long *sizeof_buf
, int forever
,
7770 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 1,
7775 /* A helper function that just calls putpkt; for type correctness. */
7778 putpkt_for_catch_errors (void *arg
)
7780 return putpkt (arg
);
7784 remote_kill (struct target_ops
*ops
)
7786 /* Use catch_errors so the user can quit from gdb even when we
7787 aren't on speaking terms with the remote system. */
7788 catch_errors (putpkt_for_catch_errors
, "k", "", RETURN_MASK_ERROR
);
7790 /* Don't wait for it to die. I'm not really sure it matters whether
7791 we do or not. For the existing stubs, kill is a noop. */
7792 target_mourn_inferior ();
7796 remote_vkill (int pid
, struct remote_state
*rs
)
7798 if (remote_protocol_packets
[PACKET_vKill
].support
== PACKET_DISABLE
)
7801 /* Tell the remote target to detach. */
7802 xsnprintf (rs
->buf
, get_remote_packet_size (), "vKill;%x", pid
);
7804 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7806 if (packet_ok (rs
->buf
,
7807 &remote_protocol_packets
[PACKET_vKill
]) == PACKET_OK
)
7809 else if (remote_protocol_packets
[PACKET_vKill
].support
== PACKET_DISABLE
)
7816 extended_remote_kill (struct target_ops
*ops
)
7819 int pid
= ptid_get_pid (inferior_ptid
);
7820 struct remote_state
*rs
= get_remote_state ();
7822 res
= remote_vkill (pid
, rs
);
7823 if (res
== -1 && !(rs
->extended
&& remote_multi_process_p (rs
)))
7825 /* Don't try 'k' on a multi-process aware stub -- it has no way
7826 to specify the pid. */
7830 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7831 if (rs
->buf
[0] != 'O' || rs
->buf
[0] != 'K')
7834 /* Don't wait for it to die. I'm not really sure it matters whether
7835 we do or not. For the existing stubs, kill is a noop. */
7841 error (_("Can't kill process"));
7843 target_mourn_inferior ();
7847 remote_mourn (struct target_ops
*ops
)
7849 remote_mourn_1 (ops
);
7852 /* Worker function for remote_mourn. */
7854 remote_mourn_1 (struct target_ops
*target
)
7856 unpush_target (target
);
7858 /* remote_close takes care of doing most of the clean up. */
7859 generic_mourn_inferior ();
7863 extended_remote_mourn_1 (struct target_ops
*target
)
7865 struct remote_state
*rs
= get_remote_state ();
7867 /* In case we got here due to an error, but we're going to stay
7869 rs
->waiting_for_stop_reply
= 0;
7871 /* If the current general thread belonged to the process we just
7872 detached from or has exited, the remote side current general
7873 thread becomes undefined. Considering a case like this:
7875 - We just got here due to a detach.
7876 - The process that we're detaching from happens to immediately
7877 report a global breakpoint being hit in non-stop mode, in the
7878 same thread we had selected before.
7879 - GDB attaches to this process again.
7880 - This event happens to be the next event we handle.
7882 GDB would consider that the current general thread didn't need to
7883 be set on the stub side (with Hg), since for all it knew,
7884 GENERAL_THREAD hadn't changed.
7886 Notice that although in all-stop mode, the remote server always
7887 sets the current thread to the thread reporting the stop event,
7888 that doesn't happen in non-stop mode; in non-stop, the stub *must
7889 not* change the current thread when reporting a breakpoint hit,
7890 due to the decoupling of event reporting and event handling.
7892 To keep things simple, we always invalidate our notion of the
7894 record_currthread (rs
, minus_one_ptid
);
7896 /* Unlike "target remote", we do not want to unpush the target; then
7897 the next time the user says "run", we won't be connected. */
7899 /* Call common code to mark the inferior as not running. */
7900 generic_mourn_inferior ();
7902 if (!have_inferiors ())
7904 if (!remote_multi_process_p (rs
))
7906 /* Check whether the target is running now - some remote stubs
7907 automatically restart after kill. */
7909 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7911 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
7913 /* Assume that the target has been restarted. Set
7914 inferior_ptid so that bits of core GDB realizes
7915 there's something here, e.g., so that the user can
7916 say "kill" again. */
7917 inferior_ptid
= magic_null_ptid
;
7924 extended_remote_mourn (struct target_ops
*ops
)
7926 extended_remote_mourn_1 (ops
);
7930 extended_remote_supports_disable_randomization (void)
7932 return (remote_protocol_packets
[PACKET_QDisableRandomization
].support
7937 extended_remote_disable_randomization (int val
)
7939 struct remote_state
*rs
= get_remote_state ();
7942 xsnprintf (rs
->buf
, get_remote_packet_size (), "QDisableRandomization:%x",
7945 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
7947 error (_("Target does not support QDisableRandomization."));
7948 if (strcmp (reply
, "OK") != 0)
7949 error (_("Bogus QDisableRandomization reply from target: %s"), reply
);
7953 extended_remote_run (char *args
)
7955 struct remote_state
*rs
= get_remote_state ();
7958 /* If the user has disabled vRun support, or we have detected that
7959 support is not available, do not try it. */
7960 if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
7963 strcpy (rs
->buf
, "vRun;");
7964 len
= strlen (rs
->buf
);
7966 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
7967 error (_("Remote file name too long for run packet"));
7968 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
+ len
, 0);
7970 gdb_assert (args
!= NULL
);
7973 struct cleanup
*back_to
;
7977 argv
= gdb_buildargv (args
);
7978 back_to
= make_cleanup ((void (*) (void *)) freeargv
, argv
);
7979 for (i
= 0; argv
[i
] != NULL
; i
++)
7981 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
7982 error (_("Argument list too long for run packet"));
7983 rs
->buf
[len
++] = ';';
7984 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
+ len
, 0);
7986 do_cleanups (back_to
);
7989 rs
->buf
[len
++] = '\0';
7992 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7994 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]) == PACKET_OK
)
7996 /* We have a wait response. All is well. */
7999 else if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
8000 /* It wasn't disabled before, but it is now. */
8004 if (remote_exec_file
[0] == '\0')
8005 error (_("Running the default executable on the remote target failed; "
8006 "try \"set remote exec-file\"?"));
8008 error (_("Running \"%s\" on the remote target failed"),
8013 /* In the extended protocol we want to be able to do things like
8014 "run" and have them basically work as expected. So we need
8015 a special create_inferior function. We support changing the
8016 executable file and the command line arguments, but not the
8020 extended_remote_create_inferior_1 (char *exec_file
, char *args
,
8021 char **env
, int from_tty
)
8025 struct remote_state
*rs
= get_remote_state ();
8027 /* If running asynchronously, register the target file descriptor
8028 with the event loop. */
8029 if (target_can_async_p ())
8030 target_async (inferior_event_handler
, 0);
8032 /* Disable address space randomization if requested (and supported). */
8033 if (extended_remote_supports_disable_randomization ())
8034 extended_remote_disable_randomization (disable_randomization
);
8036 /* Now restart the remote server. */
8037 run_worked
= extended_remote_run (args
) != -1;
8040 /* vRun was not supported. Fail if we need it to do what the
8042 if (remote_exec_file
[0])
8043 error (_("Remote target does not support \"set remote exec-file\""));
8045 error (_("Remote target does not support \"set args\" or run <ARGS>"));
8047 /* Fall back to "R". */
8048 extended_remote_restart ();
8051 if (!have_inferiors ())
8053 /* Clean up from the last time we ran, before we mark the target
8054 running again. This will mark breakpoints uninserted, and
8055 get_offsets may insert breakpoints. */
8056 init_thread_list ();
8057 init_wait_for_inferior ();
8060 /* vRun's success return is a stop reply. */
8061 stop_reply
= run_worked
? rs
->buf
: NULL
;
8062 add_current_inferior_and_thread (stop_reply
);
8064 /* Get updated offsets, if the stub uses qOffsets. */
8069 extended_remote_create_inferior (struct target_ops
*ops
,
8070 char *exec_file
, char *args
,
8071 char **env
, int from_tty
)
8073 extended_remote_create_inferior_1 (exec_file
, args
, env
, from_tty
);
8077 /* Given a location's target info BP_TGT and the packet buffer BUF, output
8078 the list of conditions (in agent expression bytecode format), if any, the
8079 target needs to evaluate. The output is placed into the packet buffer
8080 started from BUF and ended at BUF_END. */
8083 remote_add_target_side_condition (struct gdbarch
*gdbarch
,
8084 struct bp_target_info
*bp_tgt
, char *buf
,
8087 struct agent_expr
*aexpr
= NULL
;
8090 char *buf_start
= buf
;
8092 if (VEC_empty (agent_expr_p
, bp_tgt
->conditions
))
8095 buf
+= strlen (buf
);
8096 xsnprintf (buf
, buf_end
- buf
, "%s", ";");
8099 /* Send conditions to the target and free the vector. */
8101 VEC_iterate (agent_expr_p
, bp_tgt
->conditions
, ix
, aexpr
);
8104 xsnprintf (buf
, buf_end
- buf
, "X%x,", aexpr
->len
);
8105 buf
+= strlen (buf
);
8106 for (i
= 0; i
< aexpr
->len
; ++i
)
8107 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
8111 VEC_free (agent_expr_p
, bp_tgt
->conditions
);
8116 remote_add_target_side_commands (struct gdbarch
*gdbarch
,
8117 struct bp_target_info
*bp_tgt
, char *buf
)
8119 struct agent_expr
*aexpr
= NULL
;
8122 if (VEC_empty (agent_expr_p
, bp_tgt
->tcommands
))
8125 buf
+= strlen (buf
);
8127 sprintf (buf
, ";cmds:%x,", bp_tgt
->persist
);
8128 buf
+= strlen (buf
);
8130 /* Concatenate all the agent expressions that are commands into the
8133 VEC_iterate (agent_expr_p
, bp_tgt
->tcommands
, ix
, aexpr
);
8136 sprintf (buf
, "X%x,", aexpr
->len
);
8137 buf
+= strlen (buf
);
8138 for (i
= 0; i
< aexpr
->len
; ++i
)
8139 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
8143 VEC_free (agent_expr_p
, bp_tgt
->tcommands
);
8146 /* Insert a breakpoint. On targets that have software breakpoint
8147 support, we ask the remote target to do the work; on targets
8148 which don't, we insert a traditional memory breakpoint. */
8151 remote_insert_breakpoint (struct gdbarch
*gdbarch
,
8152 struct bp_target_info
*bp_tgt
)
8154 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
8155 If it succeeds, then set the support to PACKET_ENABLE. If it
8156 fails, and the user has explicitly requested the Z support then
8157 report an error, otherwise, mark it disabled and go on. */
8159 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
8161 CORE_ADDR addr
= bp_tgt
->placed_address
;
8162 struct remote_state
*rs
;
8165 struct condition_list
*cond
= NULL
;
8167 /* Make sure the remote is pointing at the right process, if
8169 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8170 set_general_process ();
8172 gdbarch_remote_breakpoint_from_pc (gdbarch
, &addr
, &bpsize
);
8174 rs
= get_remote_state ();
8176 endbuf
= rs
->buf
+ get_remote_packet_size ();
8181 addr
= (ULONGEST
) remote_address_masked (addr
);
8182 p
+= hexnumstr (p
, addr
);
8183 xsnprintf (p
, endbuf
- p
, ",%d", bpsize
);
8185 if (remote_supports_cond_breakpoints ())
8186 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
8188 if (remote_can_run_breakpoint_commands ())
8189 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
8192 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8194 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
8199 bp_tgt
->placed_address
= addr
;
8200 bp_tgt
->placed_size
= bpsize
;
8202 case PACKET_UNKNOWN
:
8207 return memory_insert_breakpoint (gdbarch
, bp_tgt
);
8211 remote_remove_breakpoint (struct gdbarch
*gdbarch
,
8212 struct bp_target_info
*bp_tgt
)
8214 CORE_ADDR addr
= bp_tgt
->placed_address
;
8215 struct remote_state
*rs
= get_remote_state ();
8217 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
8220 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
8222 /* Make sure the remote is pointing at the right process, if
8224 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8225 set_general_process ();
8231 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
8232 p
+= hexnumstr (p
, addr
);
8233 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->placed_size
);
8236 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8238 return (rs
->buf
[0] == 'E');
8241 return memory_remove_breakpoint (gdbarch
, bp_tgt
);
8245 watchpoint_to_Z_packet (int type
)
8250 return Z_PACKET_WRITE_WP
;
8253 return Z_PACKET_READ_WP
;
8256 return Z_PACKET_ACCESS_WP
;
8259 internal_error (__FILE__
, __LINE__
,
8260 _("hw_bp_to_z: bad watchpoint type %d"), type
);
8265 remote_insert_watchpoint (CORE_ADDR addr
, int len
, int type
,
8266 struct expression
*cond
)
8268 struct remote_state
*rs
= get_remote_state ();
8269 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
8271 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
8273 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
8276 /* Make sure the remote is pointing at the right process, if
8278 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8279 set_general_process ();
8281 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "Z%x,", packet
);
8282 p
= strchr (rs
->buf
, '\0');
8283 addr
= remote_address_masked (addr
);
8284 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8285 xsnprintf (p
, endbuf
- p
, ",%x", len
);
8288 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8290 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
8294 case PACKET_UNKNOWN
:
8299 internal_error (__FILE__
, __LINE__
,
8300 _("remote_insert_watchpoint: reached end of function"));
8304 remote_watchpoint_addr_within_range (struct target_ops
*target
, CORE_ADDR addr
,
8305 CORE_ADDR start
, int length
)
8307 CORE_ADDR diff
= remote_address_masked (addr
- start
);
8309 return diff
< length
;
8314 remote_remove_watchpoint (CORE_ADDR addr
, int len
, int type
,
8315 struct expression
*cond
)
8317 struct remote_state
*rs
= get_remote_state ();
8318 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
8320 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
8322 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
8325 /* Make sure the remote is pointing at the right process, if
8327 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8328 set_general_process ();
8330 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "z%x,", packet
);
8331 p
= strchr (rs
->buf
, '\0');
8332 addr
= remote_address_masked (addr
);
8333 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8334 xsnprintf (p
, endbuf
- p
, ",%x", len
);
8336 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8338 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
8341 case PACKET_UNKNOWN
:
8346 internal_error (__FILE__
, __LINE__
,
8347 _("remote_remove_watchpoint: reached end of function"));
8351 int remote_hw_watchpoint_limit
= -1;
8352 int remote_hw_watchpoint_length_limit
= -1;
8353 int remote_hw_breakpoint_limit
= -1;
8356 remote_region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
8358 if (remote_hw_watchpoint_length_limit
== 0)
8360 else if (remote_hw_watchpoint_length_limit
< 0)
8362 else if (len
<= remote_hw_watchpoint_length_limit
)
8369 remote_check_watch_resources (int type
, int cnt
, int ot
)
8371 if (type
== bp_hardware_breakpoint
)
8373 if (remote_hw_breakpoint_limit
== 0)
8375 else if (remote_hw_breakpoint_limit
< 0)
8377 else if (cnt
<= remote_hw_breakpoint_limit
)
8382 if (remote_hw_watchpoint_limit
== 0)
8384 else if (remote_hw_watchpoint_limit
< 0)
8388 else if (cnt
<= remote_hw_watchpoint_limit
)
8395 remote_stopped_by_watchpoint (void)
8397 struct remote_state
*rs
= get_remote_state ();
8399 return rs
->remote_stopped_by_watchpoint_p
;
8403 remote_stopped_data_address (struct target_ops
*target
, CORE_ADDR
*addr_p
)
8405 struct remote_state
*rs
= get_remote_state ();
8408 if (remote_stopped_by_watchpoint ())
8410 *addr_p
= rs
->remote_watch_data_address
;
8419 remote_insert_hw_breakpoint (struct gdbarch
*gdbarch
,
8420 struct bp_target_info
*bp_tgt
)
8423 struct remote_state
*rs
;
8427 /* The length field should be set to the size of a breakpoint
8428 instruction, even though we aren't inserting one ourselves. */
8430 gdbarch_remote_breakpoint_from_pc
8431 (gdbarch
, &bp_tgt
->placed_address
, &bp_tgt
->placed_size
);
8433 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
8436 /* Make sure the remote is pointing at the right process, if
8438 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8439 set_general_process ();
8441 rs
= get_remote_state ();
8443 endbuf
= rs
->buf
+ get_remote_packet_size ();
8449 addr
= remote_address_masked (bp_tgt
->placed_address
);
8450 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8451 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->placed_size
);
8453 if (remote_supports_cond_breakpoints ())
8454 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
8456 if (remote_can_run_breakpoint_commands ())
8457 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
8460 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8462 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
8465 if (rs
->buf
[1] == '.')
8467 message
= strchr (rs
->buf
+ 2, '.');
8469 error (_("Remote failure reply: %s"), message
+ 1);
8472 case PACKET_UNKNOWN
:
8477 internal_error (__FILE__
, __LINE__
,
8478 _("remote_insert_hw_breakpoint: reached end of function"));
8483 remote_remove_hw_breakpoint (struct gdbarch
*gdbarch
,
8484 struct bp_target_info
*bp_tgt
)
8487 struct remote_state
*rs
= get_remote_state ();
8489 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
8491 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
8494 /* Make sure the remote is pointing at the right process, if
8496 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8497 set_general_process ();
8503 addr
= remote_address_masked (bp_tgt
->placed_address
);
8504 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8505 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->placed_size
);
8508 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8510 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
8513 case PACKET_UNKNOWN
:
8518 internal_error (__FILE__
, __LINE__
,
8519 _("remote_remove_hw_breakpoint: reached end of function"));
8522 /* Verify memory using the "qCRC:" request. */
8525 remote_verify_memory (struct target_ops
*ops
,
8526 const gdb_byte
*data
, CORE_ADDR lma
, ULONGEST size
)
8528 struct remote_state
*rs
= get_remote_state ();
8529 unsigned long host_crc
, target_crc
;
8532 /* Make sure the remote is pointing at the right process. */
8533 set_general_process ();
8535 /* FIXME: assumes lma can fit into long. */
8536 xsnprintf (rs
->buf
, get_remote_packet_size (), "qCRC:%lx,%lx",
8537 (long) lma
, (long) size
);
8540 /* Be clever; compute the host_crc before waiting for target
8542 host_crc
= xcrc32 (data
, size
, 0xffffffff);
8544 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8545 if (rs
->buf
[0] == 'E')
8548 if (rs
->buf
[0] != 'C')
8549 error (_("remote target does not support this operation"));
8551 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
8552 target_crc
= target_crc
* 16 + fromhex (*tmp
);
8554 return (host_crc
== target_crc
);
8557 /* compare-sections command
8559 With no arguments, compares each loadable section in the exec bfd
8560 with the same memory range on the target, and reports mismatches.
8561 Useful for verifying the image on the target against the exec file. */
8564 compare_sections_command (char *args
, int from_tty
)
8567 struct cleanup
*old_chain
;
8569 const char *sectname
;
8577 error (_("command cannot be used without an exec file"));
8579 /* Make sure the remote is pointing at the right process. */
8580 set_general_process ();
8582 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
8584 if (!(s
->flags
& SEC_LOAD
))
8585 continue; /* Skip non-loadable section. */
8587 size
= bfd_get_section_size (s
);
8589 continue; /* Skip zero-length section. */
8591 sectname
= bfd_get_section_name (exec_bfd
, s
);
8592 if (args
&& strcmp (args
, sectname
) != 0)
8593 continue; /* Not the section selected by user. */
8595 matched
= 1; /* Do this section. */
8598 sectdata
= xmalloc (size
);
8599 old_chain
= make_cleanup (xfree
, sectdata
);
8600 bfd_get_section_contents (exec_bfd
, s
, sectdata
, 0, size
);
8602 res
= target_verify_memory (sectdata
, lma
, size
);
8605 error (_("target memory fault, section %s, range %s -- %s"), sectname
,
8606 paddress (target_gdbarch (), lma
),
8607 paddress (target_gdbarch (), lma
+ size
));
8609 printf_filtered ("Section %s, range %s -- %s: ", sectname
,
8610 paddress (target_gdbarch (), lma
),
8611 paddress (target_gdbarch (), lma
+ size
));
8613 printf_filtered ("matched.\n");
8616 printf_filtered ("MIS-MATCHED!\n");
8620 do_cleanups (old_chain
);
8623 warning (_("One or more sections of the remote executable does not match\n\
8624 the loaded file\n"));
8625 if (args
&& !matched
)
8626 printf_filtered (_("No loaded section named '%s'.\n"), args
);
8629 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8630 into remote target. The number of bytes written to the remote
8631 target is returned, or -1 for error. */
8634 remote_write_qxfer (struct target_ops
*ops
, const char *object_name
,
8635 const char *annex
, const gdb_byte
*writebuf
,
8636 ULONGEST offset
, LONGEST len
,
8637 struct packet_config
*packet
)
8641 struct remote_state
*rs
= get_remote_state ();
8642 int max_size
= get_memory_write_packet_size ();
8644 if (packet
->support
== PACKET_DISABLE
)
8647 /* Insert header. */
8648 i
= snprintf (rs
->buf
, max_size
,
8649 "qXfer:%s:write:%s:%s:",
8650 object_name
, annex
? annex
: "",
8651 phex_nz (offset
, sizeof offset
));
8652 max_size
-= (i
+ 1);
8654 /* Escape as much data as fits into rs->buf. */
8655 buf_len
= remote_escape_output
8656 (writebuf
, len
, (gdb_byte
*) rs
->buf
+ i
, &max_size
, max_size
);
8658 if (putpkt_binary (rs
->buf
, i
+ buf_len
) < 0
8659 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
8660 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
8663 unpack_varlen_hex (rs
->buf
, &n
);
8667 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8668 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8669 number of bytes read is returned, or 0 for EOF, or -1 for error.
8670 The number of bytes read may be less than LEN without indicating an
8671 EOF. PACKET is checked and updated to indicate whether the remote
8672 target supports this object. */
8675 remote_read_qxfer (struct target_ops
*ops
, const char *object_name
,
8677 gdb_byte
*readbuf
, ULONGEST offset
, LONGEST len
,
8678 struct packet_config
*packet
)
8680 struct remote_state
*rs
= get_remote_state ();
8681 LONGEST i
, n
, packet_len
;
8683 if (packet
->support
== PACKET_DISABLE
)
8686 /* Check whether we've cached an end-of-object packet that matches
8688 if (rs
->finished_object
)
8690 if (strcmp (object_name
, rs
->finished_object
) == 0
8691 && strcmp (annex
? annex
: "", rs
->finished_annex
) == 0
8692 && offset
== rs
->finished_offset
)
8695 /* Otherwise, we're now reading something different. Discard
8697 xfree (rs
->finished_object
);
8698 xfree (rs
->finished_annex
);
8699 rs
->finished_object
= NULL
;
8700 rs
->finished_annex
= NULL
;
8703 /* Request only enough to fit in a single packet. The actual data
8704 may not, since we don't know how much of it will need to be escaped;
8705 the target is free to respond with slightly less data. We subtract
8706 five to account for the response type and the protocol frame. */
8707 n
= min (get_remote_packet_size () - 5, len
);
8708 snprintf (rs
->buf
, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8709 object_name
, annex
? annex
: "",
8710 phex_nz (offset
, sizeof offset
),
8711 phex_nz (n
, sizeof n
));
8712 i
= putpkt (rs
->buf
);
8717 packet_len
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
8718 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
8721 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
8722 error (_("Unknown remote qXfer reply: %s"), rs
->buf
);
8724 /* 'm' means there is (or at least might be) more data after this
8725 batch. That does not make sense unless there's at least one byte
8726 of data in this reply. */
8727 if (rs
->buf
[0] == 'm' && packet_len
== 1)
8728 error (_("Remote qXfer reply contained no data."));
8730 /* Got some data. */
8731 i
= remote_unescape_input ((gdb_byte
*) rs
->buf
+ 1,
8732 packet_len
- 1, readbuf
, n
);
8734 /* 'l' is an EOF marker, possibly including a final block of data,
8735 or possibly empty. If we have the final block of a non-empty
8736 object, record this fact to bypass a subsequent partial read. */
8737 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
8739 rs
->finished_object
= xstrdup (object_name
);
8740 rs
->finished_annex
= xstrdup (annex
? annex
: "");
8741 rs
->finished_offset
= offset
+ i
;
8748 remote_xfer_partial (struct target_ops
*ops
, enum target_object object
,
8749 const char *annex
, gdb_byte
*readbuf
,
8750 const gdb_byte
*writebuf
, ULONGEST offset
, LONGEST len
)
8752 struct remote_state
*rs
;
8757 set_remote_traceframe ();
8758 set_general_thread (inferior_ptid
);
8760 rs
= get_remote_state ();
8762 /* Handle memory using the standard memory routines. */
8763 if (object
== TARGET_OBJECT_MEMORY
)
8767 /* If the remote target is connected but not running, we should
8768 pass this request down to a lower stratum (e.g. the executable
8770 if (!target_has_execution
)
8773 if (writebuf
!= NULL
)
8774 xfered
= remote_write_bytes (offset
, writebuf
, len
);
8776 xfered
= remote_read_bytes (offset
, readbuf
, len
);
8781 /* Handle SPU memory using qxfer packets. */
8782 if (object
== TARGET_OBJECT_SPU
)
8785 return remote_read_qxfer (ops
, "spu", annex
, readbuf
, offset
, len
,
8786 &remote_protocol_packets
8787 [PACKET_qXfer_spu_read
]);
8789 return remote_write_qxfer (ops
, "spu", annex
, writebuf
, offset
, len
,
8790 &remote_protocol_packets
8791 [PACKET_qXfer_spu_write
]);
8794 /* Handle extra signal info using qxfer packets. */
8795 if (object
== TARGET_OBJECT_SIGNAL_INFO
)
8798 return remote_read_qxfer (ops
, "siginfo", annex
, readbuf
, offset
, len
,
8799 &remote_protocol_packets
8800 [PACKET_qXfer_siginfo_read
]);
8802 return remote_write_qxfer (ops
, "siginfo", annex
,
8803 writebuf
, offset
, len
,
8804 &remote_protocol_packets
8805 [PACKET_qXfer_siginfo_write
]);
8808 if (object
== TARGET_OBJECT_STATIC_TRACE_DATA
)
8811 return remote_read_qxfer (ops
, "statictrace", annex
,
8812 readbuf
, offset
, len
,
8813 &remote_protocol_packets
8814 [PACKET_qXfer_statictrace_read
]);
8819 /* Only handle flash writes. */
8820 if (writebuf
!= NULL
)
8826 case TARGET_OBJECT_FLASH
:
8827 return remote_flash_write (ops
, offset
, len
, writebuf
);
8834 /* Map pre-existing objects onto letters. DO NOT do this for new
8835 objects!!! Instead specify new query packets. */
8838 case TARGET_OBJECT_AVR
:
8842 case TARGET_OBJECT_AUXV
:
8843 gdb_assert (annex
== NULL
);
8844 return remote_read_qxfer (ops
, "auxv", annex
, readbuf
, offset
, len
,
8845 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
8847 case TARGET_OBJECT_AVAILABLE_FEATURES
:
8848 return remote_read_qxfer
8849 (ops
, "features", annex
, readbuf
, offset
, len
,
8850 &remote_protocol_packets
[PACKET_qXfer_features
]);
8852 case TARGET_OBJECT_LIBRARIES
:
8853 return remote_read_qxfer
8854 (ops
, "libraries", annex
, readbuf
, offset
, len
,
8855 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
8857 case TARGET_OBJECT_LIBRARIES_SVR4
:
8858 return remote_read_qxfer
8859 (ops
, "libraries-svr4", annex
, readbuf
, offset
, len
,
8860 &remote_protocol_packets
[PACKET_qXfer_libraries_svr4
]);
8862 case TARGET_OBJECT_MEMORY_MAP
:
8863 gdb_assert (annex
== NULL
);
8864 return remote_read_qxfer (ops
, "memory-map", annex
, readbuf
, offset
, len
,
8865 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
8867 case TARGET_OBJECT_OSDATA
:
8868 /* Should only get here if we're connected. */
8869 gdb_assert (rs
->remote_desc
);
8870 return remote_read_qxfer
8871 (ops
, "osdata", annex
, readbuf
, offset
, len
,
8872 &remote_protocol_packets
[PACKET_qXfer_osdata
]);
8874 case TARGET_OBJECT_THREADS
:
8875 gdb_assert (annex
== NULL
);
8876 return remote_read_qxfer (ops
, "threads", annex
, readbuf
, offset
, len
,
8877 &remote_protocol_packets
[PACKET_qXfer_threads
]);
8879 case TARGET_OBJECT_TRACEFRAME_INFO
:
8880 gdb_assert (annex
== NULL
);
8881 return remote_read_qxfer
8882 (ops
, "traceframe-info", annex
, readbuf
, offset
, len
,
8883 &remote_protocol_packets
[PACKET_qXfer_traceframe_info
]);
8885 case TARGET_OBJECT_FDPIC
:
8886 return remote_read_qxfer (ops
, "fdpic", annex
, readbuf
, offset
, len
,
8887 &remote_protocol_packets
[PACKET_qXfer_fdpic
]);
8889 case TARGET_OBJECT_OPENVMS_UIB
:
8890 return remote_read_qxfer (ops
, "uib", annex
, readbuf
, offset
, len
,
8891 &remote_protocol_packets
[PACKET_qXfer_uib
]);
8893 case TARGET_OBJECT_BTRACE
:
8894 return remote_read_qxfer (ops
, "btrace", annex
, readbuf
, offset
, len
,
8895 &remote_protocol_packets
[PACKET_qXfer_btrace
]);
8901 /* Note: a zero OFFSET and LEN can be used to query the minimum
8903 if (offset
== 0 && len
== 0)
8904 return (get_remote_packet_size ());
8905 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
8906 large enough let the caller deal with it. */
8907 if (len
< get_remote_packet_size ())
8909 len
= get_remote_packet_size ();
8911 /* Except for querying the minimum buffer size, target must be open. */
8912 if (!rs
->remote_desc
)
8913 error (_("remote query is only available after target open"));
8915 gdb_assert (annex
!= NULL
);
8916 gdb_assert (readbuf
!= NULL
);
8922 /* We used one buffer char for the remote protocol q command and
8923 another for the query type. As the remote protocol encapsulation
8924 uses 4 chars plus one extra in case we are debugging
8925 (remote_debug), we have PBUFZIZ - 7 left to pack the query
8928 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
8930 /* Bad caller may have sent forbidden characters. */
8931 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
8936 gdb_assert (annex
[i
] == '\0');
8938 i
= putpkt (rs
->buf
);
8942 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8943 strcpy ((char *) readbuf
, rs
->buf
);
8945 return strlen ((char *) readbuf
);
8949 remote_search_memory (struct target_ops
* ops
,
8950 CORE_ADDR start_addr
, ULONGEST search_space_len
,
8951 const gdb_byte
*pattern
, ULONGEST pattern_len
,
8952 CORE_ADDR
*found_addrp
)
8954 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
8955 struct remote_state
*rs
= get_remote_state ();
8956 int max_size
= get_memory_write_packet_size ();
8957 struct packet_config
*packet
=
8958 &remote_protocol_packets
[PACKET_qSearch_memory
];
8959 /* Number of packet bytes used to encode the pattern;
8960 this could be more than PATTERN_LEN due to escape characters. */
8961 int escaped_pattern_len
;
8962 /* Amount of pattern that was encodable in the packet. */
8963 int used_pattern_len
;
8966 ULONGEST found_addr
;
8968 /* Don't go to the target if we don't have to.
8969 This is done before checking packet->support to avoid the possibility that
8970 a success for this edge case means the facility works in general. */
8971 if (pattern_len
> search_space_len
)
8973 if (pattern_len
== 0)
8975 *found_addrp
= start_addr
;
8979 /* If we already know the packet isn't supported, fall back to the simple
8980 way of searching memory. */
8982 if (packet
->support
== PACKET_DISABLE
)
8984 /* Target doesn't provided special support, fall back and use the
8985 standard support (copy memory and do the search here). */
8986 return simple_search_memory (ops
, start_addr
, search_space_len
,
8987 pattern
, pattern_len
, found_addrp
);
8990 /* Make sure the remote is pointing at the right process. */
8991 set_general_process ();
8993 /* Insert header. */
8994 i
= snprintf (rs
->buf
, max_size
,
8995 "qSearch:memory:%s;%s;",
8996 phex_nz (start_addr
, addr_size
),
8997 phex_nz (search_space_len
, sizeof (search_space_len
)));
8998 max_size
-= (i
+ 1);
9000 /* Escape as much data as fits into rs->buf. */
9001 escaped_pattern_len
=
9002 remote_escape_output (pattern
, pattern_len
, (gdb_byte
*) rs
->buf
+ i
,
9003 &used_pattern_len
, max_size
);
9005 /* Bail if the pattern is too large. */
9006 if (used_pattern_len
!= pattern_len
)
9007 error (_("Pattern is too large to transmit to remote target."));
9009 if (putpkt_binary (rs
->buf
, i
+ escaped_pattern_len
) < 0
9010 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
9011 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
9013 /* The request may not have worked because the command is not
9014 supported. If so, fall back to the simple way. */
9015 if (packet
->support
== PACKET_DISABLE
)
9017 return simple_search_memory (ops
, start_addr
, search_space_len
,
9018 pattern
, pattern_len
, found_addrp
);
9023 if (rs
->buf
[0] == '0')
9025 else if (rs
->buf
[0] == '1')
9028 if (rs
->buf
[1] != ',')
9029 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
9030 unpack_varlen_hex (rs
->buf
+ 2, &found_addr
);
9031 *found_addrp
= found_addr
;
9034 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
9040 remote_rcmd (char *command
,
9041 struct ui_file
*outbuf
)
9043 struct remote_state
*rs
= get_remote_state ();
9046 if (!rs
->remote_desc
)
9047 error (_("remote rcmd is only available after target open"));
9049 /* Send a NULL command across as an empty command. */
9050 if (command
== NULL
)
9053 /* The query prefix. */
9054 strcpy (rs
->buf
, "qRcmd,");
9055 p
= strchr (rs
->buf
, '\0');
9057 if ((strlen (rs
->buf
) + strlen (command
) * 2 + 8/*misc*/)
9058 > get_remote_packet_size ())
9059 error (_("\"monitor\" command ``%s'' is too long."), command
);
9061 /* Encode the actual command. */
9062 bin2hex ((gdb_byte
*) command
, p
, 0);
9064 if (putpkt (rs
->buf
) < 0)
9065 error (_("Communication problem with target."));
9067 /* get/display the response */
9072 /* XXX - see also remote_get_noisy_reply(). */
9073 QUIT
; /* Allow user to bail out with ^C. */
9075 if (getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) == -1)
9077 /* Timeout. Continue to (try to) read responses.
9078 This is better than stopping with an error, assuming the stub
9079 is still executing the (long) monitor command.
9080 If needed, the user can interrupt gdb using C-c, obtaining
9081 an effect similar to stop on timeout. */
9086 error (_("Target does not support this command."));
9087 if (buf
[0] == 'O' && buf
[1] != 'K')
9089 remote_console_output (buf
+ 1); /* 'O' message from stub. */
9092 if (strcmp (buf
, "OK") == 0)
9094 if (strlen (buf
) == 3 && buf
[0] == 'E'
9095 && isdigit (buf
[1]) && isdigit (buf
[2]))
9097 error (_("Protocol error with Rcmd"));
9099 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
9101 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
9103 fputc_unfiltered (c
, outbuf
);
9109 static VEC(mem_region_s
) *
9110 remote_memory_map (struct target_ops
*ops
)
9112 VEC(mem_region_s
) *result
= NULL
;
9113 char *text
= target_read_stralloc (¤t_target
,
9114 TARGET_OBJECT_MEMORY_MAP
, NULL
);
9118 struct cleanup
*back_to
= make_cleanup (xfree
, text
);
9120 result
= parse_memory_map (text
);
9121 do_cleanups (back_to
);
9128 packet_command (char *args
, int from_tty
)
9130 struct remote_state
*rs
= get_remote_state ();
9132 if (!rs
->remote_desc
)
9133 error (_("command can only be used with remote target"));
9136 error (_("remote-packet command requires packet text as argument"));
9138 puts_filtered ("sending: ");
9139 print_packet (args
);
9140 puts_filtered ("\n");
9143 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9144 puts_filtered ("received: ");
9145 print_packet (rs
->buf
);
9146 puts_filtered ("\n");
9150 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
9152 static void display_thread_info (struct gdb_ext_thread_info
*info
);
9154 static void threadset_test_cmd (char *cmd
, int tty
);
9156 static void threadalive_test (char *cmd
, int tty
);
9158 static void threadlist_test_cmd (char *cmd
, int tty
);
9160 int get_and_display_threadinfo (threadref
*ref
);
9162 static void threadinfo_test_cmd (char *cmd
, int tty
);
9164 static int thread_display_step (threadref
*ref
, void *context
);
9166 static void threadlist_update_test_cmd (char *cmd
, int tty
);
9168 static void init_remote_threadtests (void);
9170 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
9173 threadset_test_cmd (char *cmd
, int tty
)
9175 int sample_thread
= SAMPLE_THREAD
;
9177 printf_filtered (_("Remote threadset test\n"));
9178 set_general_thread (sample_thread
);
9183 threadalive_test (char *cmd
, int tty
)
9185 int sample_thread
= SAMPLE_THREAD
;
9186 int pid
= ptid_get_pid (inferior_ptid
);
9187 ptid_t ptid
= ptid_build (pid
, 0, sample_thread
);
9189 if (remote_thread_alive (ptid
))
9190 printf_filtered ("PASS: Thread alive test\n");
9192 printf_filtered ("FAIL: Thread alive test\n");
9195 void output_threadid (char *title
, threadref
*ref
);
9198 output_threadid (char *title
, threadref
*ref
)
9202 pack_threadid (&hexid
[0], ref
); /* Convert threead id into hex. */
9204 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
9208 threadlist_test_cmd (char *cmd
, int tty
)
9211 threadref nextthread
;
9212 int done
, result_count
;
9213 threadref threadlist
[3];
9215 printf_filtered ("Remote Threadlist test\n");
9216 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
9217 &result_count
, &threadlist
[0]))
9218 printf_filtered ("FAIL: threadlist test\n");
9221 threadref
*scan
= threadlist
;
9222 threadref
*limit
= scan
+ result_count
;
9224 while (scan
< limit
)
9225 output_threadid (" thread ", scan
++);
9230 display_thread_info (struct gdb_ext_thread_info
*info
)
9232 output_threadid ("Threadid: ", &info
->threadid
);
9233 printf_filtered ("Name: %s\n ", info
->shortname
);
9234 printf_filtered ("State: %s\n", info
->display
);
9235 printf_filtered ("other: %s\n\n", info
->more_display
);
9239 get_and_display_threadinfo (threadref
*ref
)
9243 struct gdb_ext_thread_info threadinfo
;
9245 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
9246 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
9247 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
9248 display_thread_info (&threadinfo
);
9253 threadinfo_test_cmd (char *cmd
, int tty
)
9255 int athread
= SAMPLE_THREAD
;
9259 int_to_threadref (&thread
, athread
);
9260 printf_filtered ("Remote Threadinfo test\n");
9261 if (!get_and_display_threadinfo (&thread
))
9262 printf_filtered ("FAIL cannot get thread info\n");
9266 thread_display_step (threadref
*ref
, void *context
)
9268 /* output_threadid(" threadstep ",ref); *//* simple test */
9269 return get_and_display_threadinfo (ref
);
9273 threadlist_update_test_cmd (char *cmd
, int tty
)
9275 printf_filtered ("Remote Threadlist update test\n");
9276 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
9280 init_remote_threadtests (void)
9282 add_com ("tlist", class_obscure
, threadlist_test_cmd
,
9283 _("Fetch and print the remote list of "
9284 "thread identifiers, one pkt only"));
9285 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
9286 _("Fetch and display info about one thread"));
9287 add_com ("tset", class_obscure
, threadset_test_cmd
,
9288 _("Test setting to a different thread"));
9289 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
9290 _("Iterate through updating all remote thread info"));
9291 add_com ("talive", class_obscure
, threadalive_test
,
9292 _(" Remote thread alive test "));
9297 /* Convert a thread ID to a string. Returns the string in a static
9301 remote_pid_to_str (struct target_ops
*ops
, ptid_t ptid
)
9303 static char buf
[64];
9304 struct remote_state
*rs
= get_remote_state ();
9306 if (ptid_equal (ptid
, null_ptid
))
9307 return normal_pid_to_str (ptid
);
9308 else if (ptid_is_pid (ptid
))
9310 /* Printing an inferior target id. */
9312 /* When multi-process extensions are off, there's no way in the
9313 remote protocol to know the remote process id, if there's any
9314 at all. There's one exception --- when we're connected with
9315 target extended-remote, and we manually attached to a process
9316 with "attach PID". We don't record anywhere a flag that
9317 allows us to distinguish that case from the case of
9318 connecting with extended-remote and the stub already being
9319 attached to a process, and reporting yes to qAttached, hence
9320 no smart special casing here. */
9321 if (!remote_multi_process_p (rs
))
9323 xsnprintf (buf
, sizeof buf
, "Remote target");
9327 return normal_pid_to_str (ptid
);
9331 if (ptid_equal (magic_null_ptid
, ptid
))
9332 xsnprintf (buf
, sizeof buf
, "Thread <main>");
9333 else if (rs
->extended
&& remote_multi_process_p (rs
))
9334 xsnprintf (buf
, sizeof buf
, "Thread %d.%ld",
9335 ptid_get_pid (ptid
), ptid_get_tid (ptid
));
9337 xsnprintf (buf
, sizeof buf
, "Thread %ld",
9338 ptid_get_tid (ptid
));
9343 /* Get the address of the thread local variable in OBJFILE which is
9344 stored at OFFSET within the thread local storage for thread PTID. */
9347 remote_get_thread_local_address (struct target_ops
*ops
,
9348 ptid_t ptid
, CORE_ADDR lm
, CORE_ADDR offset
)
9350 if (remote_protocol_packets
[PACKET_qGetTLSAddr
].support
!= PACKET_DISABLE
)
9352 struct remote_state
*rs
= get_remote_state ();
9354 char *endp
= rs
->buf
+ get_remote_packet_size ();
9355 enum packet_result result
;
9357 strcpy (p
, "qGetTLSAddr:");
9359 p
= write_ptid (p
, endp
, ptid
);
9361 p
+= hexnumstr (p
, offset
);
9363 p
+= hexnumstr (p
, lm
);
9367 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9368 result
= packet_ok (rs
->buf
,
9369 &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
9370 if (result
== PACKET_OK
)
9374 unpack_varlen_hex (rs
->buf
, &result
);
9377 else if (result
== PACKET_UNKNOWN
)
9378 throw_error (TLS_GENERIC_ERROR
,
9379 _("Remote target doesn't support qGetTLSAddr packet"));
9381 throw_error (TLS_GENERIC_ERROR
,
9382 _("Remote target failed to process qGetTLSAddr request"));
9385 throw_error (TLS_GENERIC_ERROR
,
9386 _("TLS not supported or disabled on this target"));
9391 /* Provide thread local base, i.e. Thread Information Block address.
9392 Returns 1 if ptid is found and thread_local_base is non zero. */
9395 remote_get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
)
9397 if (remote_protocol_packets
[PACKET_qGetTIBAddr
].support
!= PACKET_DISABLE
)
9399 struct remote_state
*rs
= get_remote_state ();
9401 char *endp
= rs
->buf
+ get_remote_packet_size ();
9402 enum packet_result result
;
9404 strcpy (p
, "qGetTIBAddr:");
9406 p
= write_ptid (p
, endp
, ptid
);
9410 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9411 result
= packet_ok (rs
->buf
,
9412 &remote_protocol_packets
[PACKET_qGetTIBAddr
]);
9413 if (result
== PACKET_OK
)
9417 unpack_varlen_hex (rs
->buf
, &result
);
9419 *addr
= (CORE_ADDR
) result
;
9422 else if (result
== PACKET_UNKNOWN
)
9423 error (_("Remote target doesn't support qGetTIBAddr packet"));
9425 error (_("Remote target failed to process qGetTIBAddr request"));
9428 error (_("qGetTIBAddr not supported or disabled on this target"));
9433 /* Support for inferring a target description based on the current
9434 architecture and the size of a 'g' packet. While the 'g' packet
9435 can have any size (since optional registers can be left off the
9436 end), some sizes are easily recognizable given knowledge of the
9437 approximate architecture. */
9439 struct remote_g_packet_guess
9442 const struct target_desc
*tdesc
;
9444 typedef struct remote_g_packet_guess remote_g_packet_guess_s
;
9445 DEF_VEC_O(remote_g_packet_guess_s
);
9447 struct remote_g_packet_data
9449 VEC(remote_g_packet_guess_s
) *guesses
;
9452 static struct gdbarch_data
*remote_g_packet_data_handle
;
9455 remote_g_packet_data_init (struct obstack
*obstack
)
9457 return OBSTACK_ZALLOC (obstack
, struct remote_g_packet_data
);
9461 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
9462 const struct target_desc
*tdesc
)
9464 struct remote_g_packet_data
*data
9465 = gdbarch_data (gdbarch
, remote_g_packet_data_handle
);
9466 struct remote_g_packet_guess new_guess
, *guess
;
9469 gdb_assert (tdesc
!= NULL
);
9472 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
9474 if (guess
->bytes
== bytes
)
9475 internal_error (__FILE__
, __LINE__
,
9476 _("Duplicate g packet description added for size %d"),
9479 new_guess
.bytes
= bytes
;
9480 new_guess
.tdesc
= tdesc
;
9481 VEC_safe_push (remote_g_packet_guess_s
, data
->guesses
, &new_guess
);
9484 /* Return 1 if remote_read_description would do anything on this target
9485 and architecture, 0 otherwise. */
9488 remote_read_description_p (struct target_ops
*target
)
9490 struct remote_g_packet_data
*data
9491 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
);
9493 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
9499 static const struct target_desc
*
9500 remote_read_description (struct target_ops
*target
)
9502 struct remote_g_packet_data
*data
9503 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
);
9505 /* Do not try this during initial connection, when we do not know
9506 whether there is a running but stopped thread. */
9507 if (!target_has_execution
|| ptid_equal (inferior_ptid
, null_ptid
))
9510 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
9512 struct remote_g_packet_guess
*guess
;
9514 int bytes
= send_g_packet ();
9517 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
9519 if (guess
->bytes
== bytes
)
9520 return guess
->tdesc
;
9522 /* We discard the g packet. A minor optimization would be to
9523 hold on to it, and fill the register cache once we have selected
9524 an architecture, but it's too tricky to do safely. */
9530 /* Remote file transfer support. This is host-initiated I/O, not
9531 target-initiated; for target-initiated, see remote-fileio.c. */
9533 /* If *LEFT is at least the length of STRING, copy STRING to
9534 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9535 decrease *LEFT. Otherwise raise an error. */
9538 remote_buffer_add_string (char **buffer
, int *left
, char *string
)
9540 int len
= strlen (string
);
9543 error (_("Packet too long for target."));
9545 memcpy (*buffer
, string
, len
);
9549 /* NUL-terminate the buffer as a convenience, if there is
9555 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
9556 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9557 decrease *LEFT. Otherwise raise an error. */
9560 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
9563 if (2 * len
> *left
)
9564 error (_("Packet too long for target."));
9566 bin2hex (bytes
, *buffer
, len
);
9570 /* NUL-terminate the buffer as a convenience, if there is
9576 /* If *LEFT is large enough, convert VALUE to hex and add it to
9577 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9578 decrease *LEFT. Otherwise raise an error. */
9581 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
9583 int len
= hexnumlen (value
);
9586 error (_("Packet too long for target."));
9588 hexnumstr (*buffer
, value
);
9592 /* NUL-terminate the buffer as a convenience, if there is
9598 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
9599 value, *REMOTE_ERRNO to the remote error number or zero if none
9600 was included, and *ATTACHMENT to point to the start of the annex
9601 if any. The length of the packet isn't needed here; there may
9602 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
9604 Return 0 if the packet could be parsed, -1 if it could not. If
9605 -1 is returned, the other variables may not be initialized. */
9608 remote_hostio_parse_result (char *buffer
, int *retcode
,
9609 int *remote_errno
, char **attachment
)
9616 if (buffer
[0] != 'F')
9620 *retcode
= strtol (&buffer
[1], &p
, 16);
9621 if (errno
!= 0 || p
== &buffer
[1])
9624 /* Check for ",errno". */
9628 *remote_errno
= strtol (p
+ 1, &p2
, 16);
9629 if (errno
!= 0 || p
+ 1 == p2
)
9634 /* Check for ";attachment". If there is no attachment, the
9635 packet should end here. */
9638 *attachment
= p
+ 1;
9641 else if (*p
== '\0')
9647 /* Send a prepared I/O packet to the target and read its response.
9648 The prepared packet is in the global RS->BUF before this function
9649 is called, and the answer is there when we return.
9651 COMMAND_BYTES is the length of the request to send, which may include
9652 binary data. WHICH_PACKET is the packet configuration to check
9653 before attempting a packet. If an error occurs, *REMOTE_ERRNO
9654 is set to the error number and -1 is returned. Otherwise the value
9655 returned by the function is returned.
9657 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9658 attachment is expected; an error will be reported if there's a
9659 mismatch. If one is found, *ATTACHMENT will be set to point into
9660 the packet buffer and *ATTACHMENT_LEN will be set to the
9661 attachment's length. */
9664 remote_hostio_send_command (int command_bytes
, int which_packet
,
9665 int *remote_errno
, char **attachment
,
9666 int *attachment_len
)
9668 struct remote_state
*rs
= get_remote_state ();
9669 int ret
, bytes_read
;
9670 char *attachment_tmp
;
9672 if (!rs
->remote_desc
9673 || remote_protocol_packets
[which_packet
].support
== PACKET_DISABLE
)
9675 *remote_errno
= FILEIO_ENOSYS
;
9679 putpkt_binary (rs
->buf
, command_bytes
);
9680 bytes_read
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
9682 /* If it timed out, something is wrong. Don't try to parse the
9686 *remote_errno
= FILEIO_EINVAL
;
9690 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
9693 *remote_errno
= FILEIO_EINVAL
;
9695 case PACKET_UNKNOWN
:
9696 *remote_errno
= FILEIO_ENOSYS
;
9702 if (remote_hostio_parse_result (rs
->buf
, &ret
, remote_errno
,
9705 *remote_errno
= FILEIO_EINVAL
;
9709 /* Make sure we saw an attachment if and only if we expected one. */
9710 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
9711 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
9713 *remote_errno
= FILEIO_EINVAL
;
9717 /* If an attachment was found, it must point into the packet buffer;
9718 work out how many bytes there were. */
9719 if (attachment_tmp
!= NULL
)
9721 *attachment
= attachment_tmp
;
9722 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
);
9728 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
9729 remote file descriptor, or -1 if an error occurs (and set
9733 remote_hostio_open (const char *filename
, int flags
, int mode
,
9736 struct remote_state
*rs
= get_remote_state ();
9738 int left
= get_remote_packet_size () - 1;
9740 remote_buffer_add_string (&p
, &left
, "vFile:open:");
9742 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
9744 remote_buffer_add_string (&p
, &left
, ",");
9746 remote_buffer_add_int (&p
, &left
, flags
);
9747 remote_buffer_add_string (&p
, &left
, ",");
9749 remote_buffer_add_int (&p
, &left
, mode
);
9751 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_open
,
9752 remote_errno
, NULL
, NULL
);
9755 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9756 Return the number of bytes written, or -1 if an error occurs (and
9757 set *REMOTE_ERRNO). */
9760 remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
9761 ULONGEST offset
, int *remote_errno
)
9763 struct remote_state
*rs
= get_remote_state ();
9765 int left
= get_remote_packet_size ();
9768 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
9770 remote_buffer_add_int (&p
, &left
, fd
);
9771 remote_buffer_add_string (&p
, &left
, ",");
9773 remote_buffer_add_int (&p
, &left
, offset
);
9774 remote_buffer_add_string (&p
, &left
, ",");
9776 p
+= remote_escape_output (write_buf
, len
, (gdb_byte
*) p
, &out_len
,
9777 get_remote_packet_size () - (p
- rs
->buf
));
9779 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pwrite
,
9780 remote_errno
, NULL
, NULL
);
9783 /* Read up to LEN bytes FD on the remote target into READ_BUF
9784 Return the number of bytes read, or -1 if an error occurs (and
9785 set *REMOTE_ERRNO). */
9788 remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
9789 ULONGEST offset
, int *remote_errno
)
9791 struct remote_state
*rs
= get_remote_state ();
9794 int left
= get_remote_packet_size ();
9795 int ret
, attachment_len
;
9798 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
9800 remote_buffer_add_int (&p
, &left
, fd
);
9801 remote_buffer_add_string (&p
, &left
, ",");
9803 remote_buffer_add_int (&p
, &left
, len
);
9804 remote_buffer_add_string (&p
, &left
, ",");
9806 remote_buffer_add_int (&p
, &left
, offset
);
9808 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pread
,
9809 remote_errno
, &attachment
,
9815 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
9817 if (read_len
!= ret
)
9818 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
9823 /* Close FD on the remote target. Return 0, or -1 if an error occurs
9824 (and set *REMOTE_ERRNO). */
9827 remote_hostio_close (int fd
, int *remote_errno
)
9829 struct remote_state
*rs
= get_remote_state ();
9831 int left
= get_remote_packet_size () - 1;
9833 remote_buffer_add_string (&p
, &left
, "vFile:close:");
9835 remote_buffer_add_int (&p
, &left
, fd
);
9837 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_close
,
9838 remote_errno
, NULL
, NULL
);
9841 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
9842 occurs (and set *REMOTE_ERRNO). */
9845 remote_hostio_unlink (const char *filename
, int *remote_errno
)
9847 struct remote_state
*rs
= get_remote_state ();
9849 int left
= get_remote_packet_size () - 1;
9851 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
9853 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
9856 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_unlink
,
9857 remote_errno
, NULL
, NULL
);
9860 /* Read value of symbolic link FILENAME on the remote target. Return
9861 a null-terminated string allocated via xmalloc, or NULL if an error
9862 occurs (and set *REMOTE_ERRNO). */
9865 remote_hostio_readlink (const char *filename
, int *remote_errno
)
9867 struct remote_state
*rs
= get_remote_state ();
9870 int left
= get_remote_packet_size ();
9871 int len
, attachment_len
;
9875 remote_buffer_add_string (&p
, &left
, "vFile:readlink:");
9877 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
9880 len
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_readlink
,
9881 remote_errno
, &attachment
,
9887 ret
= xmalloc (len
+ 1);
9889 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
9890 (gdb_byte
*) ret
, len
);
9891 if (read_len
!= len
)
9892 error (_("Readlink returned %d, but %d bytes."), len
, read_len
);
9899 remote_fileio_errno_to_host (int errnum
)
9923 case FILEIO_ENOTDIR
:
9943 case FILEIO_ENAMETOOLONG
:
9944 return ENAMETOOLONG
;
9950 remote_hostio_error (int errnum
)
9952 int host_error
= remote_fileio_errno_to_host (errnum
);
9954 if (host_error
== -1)
9955 error (_("Unknown remote I/O error %d"), errnum
);
9957 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
9961 remote_hostio_close_cleanup (void *opaque
)
9963 int fd
= *(int *) opaque
;
9966 remote_hostio_close (fd
, &remote_errno
);
9971 remote_bfd_iovec_open (struct bfd
*abfd
, void *open_closure
)
9973 const char *filename
= bfd_get_filename (abfd
);
9974 int fd
, remote_errno
;
9977 gdb_assert (remote_filename_p (filename
));
9979 fd
= remote_hostio_open (filename
+ 7, FILEIO_O_RDONLY
, 0, &remote_errno
);
9982 errno
= remote_fileio_errno_to_host (remote_errno
);
9983 bfd_set_error (bfd_error_system_call
);
9987 stream
= xmalloc (sizeof (int));
9993 remote_bfd_iovec_close (struct bfd
*abfd
, void *stream
)
9995 int fd
= *(int *)stream
;
10000 /* Ignore errors on close; these may happen if the remote
10001 connection was already torn down. */
10002 remote_hostio_close (fd
, &remote_errno
);
10004 /* Zero means success. */
10009 remote_bfd_iovec_pread (struct bfd
*abfd
, void *stream
, void *buf
,
10010 file_ptr nbytes
, file_ptr offset
)
10012 int fd
= *(int *)stream
;
10014 file_ptr pos
, bytes
;
10017 while (nbytes
> pos
)
10019 bytes
= remote_hostio_pread (fd
, (gdb_byte
*) buf
+ pos
, nbytes
- pos
,
10020 offset
+ pos
, &remote_errno
);
10022 /* Success, but no bytes, means end-of-file. */
10026 errno
= remote_fileio_errno_to_host (remote_errno
);
10027 bfd_set_error (bfd_error_system_call
);
10038 remote_bfd_iovec_stat (struct bfd
*abfd
, void *stream
, struct stat
*sb
)
10040 /* FIXME: We should probably implement remote_hostio_stat. */
10041 sb
->st_size
= INT_MAX
;
10046 remote_filename_p (const char *filename
)
10048 return strncmp (filename
, "remote:", 7) == 0;
10052 remote_bfd_open (const char *remote_file
, const char *target
)
10054 bfd
*abfd
= gdb_bfd_openr_iovec (remote_file
, target
,
10055 remote_bfd_iovec_open
, NULL
,
10056 remote_bfd_iovec_pread
,
10057 remote_bfd_iovec_close
,
10058 remote_bfd_iovec_stat
);
10064 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
10066 struct cleanup
*back_to
, *close_cleanup
;
10067 int retcode
, fd
, remote_errno
, bytes
, io_size
;
10070 int bytes_in_buffer
;
10073 struct remote_state
*rs
= get_remote_state ();
10075 if (!rs
->remote_desc
)
10076 error (_("command can only be used with remote target"));
10078 file
= gdb_fopen_cloexec (local_file
, "rb");
10080 perror_with_name (local_file
);
10081 back_to
= make_cleanup_fclose (file
);
10083 fd
= remote_hostio_open (remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
10085 0700, &remote_errno
);
10087 remote_hostio_error (remote_errno
);
10089 /* Send up to this many bytes at once. They won't all fit in the
10090 remote packet limit, so we'll transfer slightly fewer. */
10091 io_size
= get_remote_packet_size ();
10092 buffer
= xmalloc (io_size
);
10093 make_cleanup (xfree
, buffer
);
10095 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
10097 bytes_in_buffer
= 0;
10100 while (bytes_in_buffer
|| !saw_eof
)
10104 bytes
= fread (buffer
+ bytes_in_buffer
, 1,
10105 io_size
- bytes_in_buffer
,
10110 error (_("Error reading %s."), local_file
);
10113 /* EOF. Unless there is something still in the
10114 buffer from the last iteration, we are done. */
10116 if (bytes_in_buffer
== 0)
10124 bytes
+= bytes_in_buffer
;
10125 bytes_in_buffer
= 0;
10127 retcode
= remote_hostio_pwrite (fd
, buffer
, bytes
,
10128 offset
, &remote_errno
);
10131 remote_hostio_error (remote_errno
);
10132 else if (retcode
== 0)
10133 error (_("Remote write of %d bytes returned 0!"), bytes
);
10134 else if (retcode
< bytes
)
10136 /* Short write. Save the rest of the read data for the next
10138 bytes_in_buffer
= bytes
- retcode
;
10139 memmove (buffer
, buffer
+ retcode
, bytes_in_buffer
);
10145 discard_cleanups (close_cleanup
);
10146 if (remote_hostio_close (fd
, &remote_errno
))
10147 remote_hostio_error (remote_errno
);
10150 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
10151 do_cleanups (back_to
);
10155 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
10157 struct cleanup
*back_to
, *close_cleanup
;
10158 int fd
, remote_errno
, bytes
, io_size
;
10162 struct remote_state
*rs
= get_remote_state ();
10164 if (!rs
->remote_desc
)
10165 error (_("command can only be used with remote target"));
10167 fd
= remote_hostio_open (remote_file
, FILEIO_O_RDONLY
, 0, &remote_errno
);
10169 remote_hostio_error (remote_errno
);
10171 file
= gdb_fopen_cloexec (local_file
, "wb");
10173 perror_with_name (local_file
);
10174 back_to
= make_cleanup_fclose (file
);
10176 /* Send up to this many bytes at once. They won't all fit in the
10177 remote packet limit, so we'll transfer slightly fewer. */
10178 io_size
= get_remote_packet_size ();
10179 buffer
= xmalloc (io_size
);
10180 make_cleanup (xfree
, buffer
);
10182 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
10187 bytes
= remote_hostio_pread (fd
, buffer
, io_size
, offset
, &remote_errno
);
10189 /* Success, but no bytes, means end-of-file. */
10192 remote_hostio_error (remote_errno
);
10196 bytes
= fwrite (buffer
, 1, bytes
, file
);
10198 perror_with_name (local_file
);
10201 discard_cleanups (close_cleanup
);
10202 if (remote_hostio_close (fd
, &remote_errno
))
10203 remote_hostio_error (remote_errno
);
10206 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
10207 do_cleanups (back_to
);
10211 remote_file_delete (const char *remote_file
, int from_tty
)
10213 int retcode
, remote_errno
;
10214 struct remote_state
*rs
= get_remote_state ();
10216 if (!rs
->remote_desc
)
10217 error (_("command can only be used with remote target"));
10219 retcode
= remote_hostio_unlink (remote_file
, &remote_errno
);
10221 remote_hostio_error (remote_errno
);
10224 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
10228 remote_put_command (char *args
, int from_tty
)
10230 struct cleanup
*back_to
;
10234 error_no_arg (_("file to put"));
10236 argv
= gdb_buildargv (args
);
10237 back_to
= make_cleanup_freeargv (argv
);
10238 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
10239 error (_("Invalid parameters to remote put"));
10241 remote_file_put (argv
[0], argv
[1], from_tty
);
10243 do_cleanups (back_to
);
10247 remote_get_command (char *args
, int from_tty
)
10249 struct cleanup
*back_to
;
10253 error_no_arg (_("file to get"));
10255 argv
= gdb_buildargv (args
);
10256 back_to
= make_cleanup_freeargv (argv
);
10257 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
10258 error (_("Invalid parameters to remote get"));
10260 remote_file_get (argv
[0], argv
[1], from_tty
);
10262 do_cleanups (back_to
);
10266 remote_delete_command (char *args
, int from_tty
)
10268 struct cleanup
*back_to
;
10272 error_no_arg (_("file to delete"));
10274 argv
= gdb_buildargv (args
);
10275 back_to
= make_cleanup_freeargv (argv
);
10276 if (argv
[0] == NULL
|| argv
[1] != NULL
)
10277 error (_("Invalid parameters to remote delete"));
10279 remote_file_delete (argv
[0], from_tty
);
10281 do_cleanups (back_to
);
10285 remote_command (char *args
, int from_tty
)
10287 help_list (remote_cmdlist
, "remote ", -1, gdb_stdout
);
10291 remote_can_execute_reverse (void)
10293 if (remote_protocol_packets
[PACKET_bs
].support
== PACKET_ENABLE
10294 || remote_protocol_packets
[PACKET_bc
].support
== PACKET_ENABLE
)
10301 remote_supports_non_stop (void)
10307 remote_supports_disable_randomization (void)
10309 /* Only supported in extended mode. */
10314 remote_supports_multi_process (void)
10316 struct remote_state
*rs
= get_remote_state ();
10318 /* Only extended-remote handles being attached to multiple
10319 processes, even though plain remote can use the multi-process
10320 thread id extensions, so that GDB knows the target process's
10322 return rs
->extended
&& remote_multi_process_p (rs
);
10326 remote_supports_cond_tracepoints (void)
10328 struct remote_state
*rs
= get_remote_state ();
10330 return rs
->cond_tracepoints
;
10334 remote_supports_cond_breakpoints (void)
10336 struct remote_state
*rs
= get_remote_state ();
10338 return rs
->cond_breakpoints
;
10342 remote_supports_fast_tracepoints (void)
10344 struct remote_state
*rs
= get_remote_state ();
10346 return rs
->fast_tracepoints
;
10350 remote_supports_static_tracepoints (void)
10352 struct remote_state
*rs
= get_remote_state ();
10354 return rs
->static_tracepoints
;
10358 remote_supports_install_in_trace (void)
10360 struct remote_state
*rs
= get_remote_state ();
10362 return rs
->install_in_trace
;
10366 remote_supports_enable_disable_tracepoint (void)
10368 struct remote_state
*rs
= get_remote_state ();
10370 return rs
->enable_disable_tracepoints
;
10374 remote_supports_string_tracing (void)
10376 struct remote_state
*rs
= get_remote_state ();
10378 return rs
->string_tracing
;
10382 remote_can_run_breakpoint_commands (void)
10384 struct remote_state
*rs
= get_remote_state ();
10386 return rs
->breakpoint_commands
;
10390 remote_trace_init (void)
10393 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10394 if (strcmp (target_buf
, "OK") != 0)
10395 error (_("Target does not support this command."));
10398 static void free_actions_list (char **actions_list
);
10399 static void free_actions_list_cleanup_wrapper (void *);
10401 free_actions_list_cleanup_wrapper (void *al
)
10403 free_actions_list (al
);
10407 free_actions_list (char **actions_list
)
10411 if (actions_list
== 0)
10414 for (ndx
= 0; actions_list
[ndx
]; ndx
++)
10415 xfree (actions_list
[ndx
]);
10417 xfree (actions_list
);
10420 /* Recursive routine to walk through command list including loops, and
10421 download packets for each command. */
10424 remote_download_command_source (int num
, ULONGEST addr
,
10425 struct command_line
*cmds
)
10427 struct remote_state
*rs
= get_remote_state ();
10428 struct command_line
*cmd
;
10430 for (cmd
= cmds
; cmd
; cmd
= cmd
->next
)
10432 QUIT
; /* Allow user to bail out with ^C. */
10433 strcpy (rs
->buf
, "QTDPsrc:");
10434 encode_source_string (num
, addr
, "cmd", cmd
->line
,
10435 rs
->buf
+ strlen (rs
->buf
),
10436 rs
->buf_size
- strlen (rs
->buf
));
10438 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10439 if (strcmp (target_buf
, "OK"))
10440 warning (_("Target does not support source download."));
10442 if (cmd
->control_type
== while_control
10443 || cmd
->control_type
== while_stepping_control
)
10445 remote_download_command_source (num
, addr
, *cmd
->body_list
);
10447 QUIT
; /* Allow user to bail out with ^C. */
10448 strcpy (rs
->buf
, "QTDPsrc:");
10449 encode_source_string (num
, addr
, "cmd", "end",
10450 rs
->buf
+ strlen (rs
->buf
),
10451 rs
->buf_size
- strlen (rs
->buf
));
10453 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10454 if (strcmp (target_buf
, "OK"))
10455 warning (_("Target does not support source download."));
10461 remote_download_tracepoint (struct bp_location
*loc
)
10463 #define BUF_SIZE 2048
10467 char buf
[BUF_SIZE
];
10468 char **tdp_actions
;
10469 char **stepping_actions
;
10471 struct cleanup
*old_chain
= NULL
;
10472 struct agent_expr
*aexpr
;
10473 struct cleanup
*aexpr_chain
= NULL
;
10475 struct breakpoint
*b
= loc
->owner
;
10476 struct tracepoint
*t
= (struct tracepoint
*) b
;
10478 encode_actions_rsp (loc
, &tdp_actions
, &stepping_actions
);
10479 old_chain
= make_cleanup (free_actions_list_cleanup_wrapper
,
10481 (void) make_cleanup (free_actions_list_cleanup_wrapper
,
10484 tpaddr
= loc
->address
;
10485 sprintf_vma (addrbuf
, tpaddr
);
10486 xsnprintf (buf
, BUF_SIZE
, "QTDP:%x:%s:%c:%lx:%x", b
->number
,
10487 addrbuf
, /* address */
10488 (b
->enable_state
== bp_enabled
? 'E' : 'D'),
10489 t
->step_count
, t
->pass_count
);
10490 /* Fast tracepoints are mostly handled by the target, but we can
10491 tell the target how big of an instruction block should be moved
10493 if (b
->type
== bp_fast_tracepoint
)
10495 /* Only test for support at download time; we may not know
10496 target capabilities at definition time. */
10497 if (remote_supports_fast_tracepoints ())
10501 if (gdbarch_fast_tracepoint_valid_at (target_gdbarch (),
10502 tpaddr
, &isize
, NULL
))
10503 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":F%x",
10506 /* If it passed validation at definition but fails now,
10507 something is very wrong. */
10508 internal_error (__FILE__
, __LINE__
,
10509 _("Fast tracepoint not "
10510 "valid during download"));
10513 /* Fast tracepoints are functionally identical to regular
10514 tracepoints, so don't take lack of support as a reason to
10515 give up on the trace run. */
10516 warning (_("Target does not support fast tracepoints, "
10517 "downloading %d as regular tracepoint"), b
->number
);
10519 else if (b
->type
== bp_static_tracepoint
)
10521 /* Only test for support at download time; we may not know
10522 target capabilities at definition time. */
10523 if (remote_supports_static_tracepoints ())
10525 struct static_tracepoint_marker marker
;
10527 if (target_static_tracepoint_marker_at (tpaddr
, &marker
))
10528 strcat (buf
, ":S");
10530 error (_("Static tracepoint not valid during download"));
10533 /* Fast tracepoints are functionally identical to regular
10534 tracepoints, so don't take lack of support as a reason
10535 to give up on the trace run. */
10536 error (_("Target does not support static tracepoints"));
10538 /* If the tracepoint has a conditional, make it into an agent
10539 expression and append to the definition. */
10542 /* Only test support at download time, we may not know target
10543 capabilities at definition time. */
10544 if (remote_supports_cond_tracepoints ())
10546 aexpr
= gen_eval_for_expr (tpaddr
, loc
->cond
);
10547 aexpr_chain
= make_cleanup_free_agent_expr (aexpr
);
10548 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":X%x,",
10550 pkt
= buf
+ strlen (buf
);
10551 for (ndx
= 0; ndx
< aexpr
->len
; ++ndx
)
10552 pkt
= pack_hex_byte (pkt
, aexpr
->buf
[ndx
]);
10554 do_cleanups (aexpr_chain
);
10557 warning (_("Target does not support conditional tracepoints, "
10558 "ignoring tp %d cond"), b
->number
);
10561 if (b
->commands
|| *default_collect
)
10564 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10565 if (strcmp (target_buf
, "OK"))
10566 error (_("Target does not support tracepoints."));
10568 /* do_single_steps (t); */
10571 for (ndx
= 0; tdp_actions
[ndx
]; ndx
++)
10573 QUIT
; /* Allow user to bail out with ^C. */
10574 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%c",
10575 b
->number
, addrbuf
, /* address */
10577 ((tdp_actions
[ndx
+ 1] || stepping_actions
)
10580 remote_get_noisy_reply (&target_buf
,
10582 if (strcmp (target_buf
, "OK"))
10583 error (_("Error on target while setting tracepoints."));
10586 if (stepping_actions
)
10588 for (ndx
= 0; stepping_actions
[ndx
]; ndx
++)
10590 QUIT
; /* Allow user to bail out with ^C. */
10591 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%s%s",
10592 b
->number
, addrbuf
, /* address */
10593 ((ndx
== 0) ? "S" : ""),
10594 stepping_actions
[ndx
],
10595 (stepping_actions
[ndx
+ 1] ? "-" : ""));
10597 remote_get_noisy_reply (&target_buf
,
10599 if (strcmp (target_buf
, "OK"))
10600 error (_("Error on target while setting tracepoints."));
10604 if (remote_protocol_packets
[PACKET_TracepointSource
].support
10607 if (b
->addr_string
)
10609 strcpy (buf
, "QTDPsrc:");
10610 encode_source_string (b
->number
, loc
->address
,
10611 "at", b
->addr_string
, buf
+ strlen (buf
),
10612 2048 - strlen (buf
));
10615 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10616 if (strcmp (target_buf
, "OK"))
10617 warning (_("Target does not support source download."));
10619 if (b
->cond_string
)
10621 strcpy (buf
, "QTDPsrc:");
10622 encode_source_string (b
->number
, loc
->address
,
10623 "cond", b
->cond_string
, buf
+ strlen (buf
),
10624 2048 - strlen (buf
));
10626 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10627 if (strcmp (target_buf
, "OK"))
10628 warning (_("Target does not support source download."));
10630 remote_download_command_source (b
->number
, loc
->address
,
10631 breakpoint_commands (b
));
10634 do_cleanups (old_chain
);
10638 remote_can_download_tracepoint (void)
10640 struct remote_state
*rs
= get_remote_state ();
10641 struct trace_status
*ts
;
10644 /* Don't try to install tracepoints until we've relocated our
10645 symbols, and fetched and merged the target's tracepoint list with
10647 if (rs
->starting_up
)
10650 ts
= current_trace_status ();
10651 status
= remote_get_trace_status (ts
);
10653 if (status
== -1 || !ts
->running_known
|| !ts
->running
)
10656 /* If we are in a tracing experiment, but remote stub doesn't support
10657 installing tracepoint in trace, we have to return. */
10658 if (!remote_supports_install_in_trace ())
10666 remote_download_trace_state_variable (struct trace_state_variable
*tsv
)
10668 struct remote_state
*rs
= get_remote_state ();
10671 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDV:%x:%s:%x:",
10672 tsv
->number
, phex ((ULONGEST
) tsv
->initial_value
, 8),
10674 p
= rs
->buf
+ strlen (rs
->buf
);
10675 if ((p
- rs
->buf
) + strlen (tsv
->name
) * 2 >= get_remote_packet_size ())
10676 error (_("Trace state variable name too long for tsv definition packet"));
10677 p
+= 2 * bin2hex ((gdb_byte
*) (tsv
->name
), p
, 0);
10680 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10681 if (*target_buf
== '\0')
10682 error (_("Target does not support this command."));
10683 if (strcmp (target_buf
, "OK") != 0)
10684 error (_("Error on target while downloading trace state variable."));
10688 remote_enable_tracepoint (struct bp_location
*location
)
10690 struct remote_state
*rs
= get_remote_state ();
10693 sprintf_vma (addr_buf
, location
->address
);
10694 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTEnable:%x:%s",
10695 location
->owner
->number
, addr_buf
);
10697 remote_get_noisy_reply (&rs
->buf
, &rs
->buf_size
);
10698 if (*rs
->buf
== '\0')
10699 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
10700 if (strcmp (rs
->buf
, "OK") != 0)
10701 error (_("Error on target while enabling tracepoint."));
10705 remote_disable_tracepoint (struct bp_location
*location
)
10707 struct remote_state
*rs
= get_remote_state ();
10710 sprintf_vma (addr_buf
, location
->address
);
10711 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisable:%x:%s",
10712 location
->owner
->number
, addr_buf
);
10714 remote_get_noisy_reply (&rs
->buf
, &rs
->buf_size
);
10715 if (*rs
->buf
== '\0')
10716 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
10717 if (strcmp (rs
->buf
, "OK") != 0)
10718 error (_("Error on target while disabling tracepoint."));
10722 remote_trace_set_readonly_regions (void)
10726 bfd_size_type size
;
10732 return; /* No information to give. */
10734 strcpy (target_buf
, "QTro");
10735 offset
= strlen (target_buf
);
10736 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
10738 char tmp1
[40], tmp2
[40];
10741 if ((s
->flags
& SEC_LOAD
) == 0 ||
10742 /* (s->flags & SEC_CODE) == 0 || */
10743 (s
->flags
& SEC_READONLY
) == 0)
10747 vma
= bfd_get_section_vma (abfd
, s
);
10748 size
= bfd_get_section_size (s
);
10749 sprintf_vma (tmp1
, vma
);
10750 sprintf_vma (tmp2
, vma
+ size
);
10751 sec_length
= 1 + strlen (tmp1
) + 1 + strlen (tmp2
);
10752 if (offset
+ sec_length
+ 1 > target_buf_size
)
10754 if (remote_protocol_packets
[PACKET_qXfer_traceframe_info
].support
10757 Too many sections for read-only sections definition packet."));
10760 xsnprintf (target_buf
+ offset
, target_buf_size
- offset
, ":%s,%s",
10762 offset
+= sec_length
;
10766 putpkt (target_buf
);
10767 getpkt (&target_buf
, &target_buf_size
, 0);
10772 remote_trace_start (void)
10774 putpkt ("QTStart");
10775 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10776 if (*target_buf
== '\0')
10777 error (_("Target does not support this command."));
10778 if (strcmp (target_buf
, "OK") != 0)
10779 error (_("Bogus reply from target: %s"), target_buf
);
10783 remote_get_trace_status (struct trace_status
*ts
)
10785 /* Initialize it just to avoid a GCC false warning. */
10787 /* FIXME we need to get register block size some other way. */
10788 extern int trace_regblock_size
;
10789 volatile struct gdb_exception ex
;
10790 enum packet_result result
;
10792 if (remote_protocol_packets
[PACKET_qTStatus
].support
== PACKET_DISABLE
)
10795 trace_regblock_size
= get_remote_arch_state ()->sizeof_g_packet
;
10797 putpkt ("qTStatus");
10799 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
10801 p
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10805 if (ex
.error
!= TARGET_CLOSE_ERROR
)
10807 exception_fprintf (gdb_stderr
, ex
, "qTStatus: ");
10810 throw_exception (ex
);
10813 result
= packet_ok (p
, &remote_protocol_packets
[PACKET_qTStatus
]);
10815 /* If the remote target doesn't do tracing, flag it. */
10816 if (result
== PACKET_UNKNOWN
)
10819 /* We're working with a live target. */
10820 ts
->filename
= NULL
;
10823 error (_("Bogus trace status reply from target: %s"), target_buf
);
10825 /* Function 'parse_trace_status' sets default value of each field of
10826 'ts' at first, so we don't have to do it here. */
10827 parse_trace_status (p
, ts
);
10829 return ts
->running
;
10833 remote_get_tracepoint_status (struct breakpoint
*bp
,
10834 struct uploaded_tp
*utp
)
10836 struct remote_state
*rs
= get_remote_state ();
10838 struct bp_location
*loc
;
10839 struct tracepoint
*tp
= (struct tracepoint
*) bp
;
10840 size_t size
= get_remote_packet_size ();
10844 tp
->base
.hit_count
= 0;
10845 tp
->traceframe_usage
= 0;
10846 for (loc
= tp
->base
.loc
; loc
; loc
= loc
->next
)
10848 /* If the tracepoint was never downloaded, don't go asking for
10850 if (tp
->number_on_target
== 0)
10852 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", tp
->number_on_target
,
10853 phex_nz (loc
->address
, 0));
10855 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10856 if (reply
&& *reply
)
10859 parse_tracepoint_status (reply
+ 1, bp
, utp
);
10865 utp
->hit_count
= 0;
10866 utp
->traceframe_usage
= 0;
10867 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", utp
->number
,
10868 phex_nz (utp
->addr
, 0));
10870 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10871 if (reply
&& *reply
)
10874 parse_tracepoint_status (reply
+ 1, bp
, utp
);
10880 remote_trace_stop (void)
10883 remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10884 if (*target_buf
== '\0')
10885 error (_("Target does not support this command."));
10886 if (strcmp (target_buf
, "OK") != 0)
10887 error (_("Bogus reply from target: %s"), target_buf
);
10891 remote_trace_find (enum trace_find_type type
, int num
,
10892 CORE_ADDR addr1
, CORE_ADDR addr2
,
10895 struct remote_state
*rs
= get_remote_state ();
10896 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10898 int target_frameno
= -1, target_tracept
= -1;
10900 /* Lookups other than by absolute frame number depend on the current
10901 trace selected, so make sure it is correct on the remote end
10903 if (type
!= tfind_number
)
10904 set_remote_traceframe ();
10907 strcpy (p
, "QTFrame:");
10908 p
= strchr (p
, '\0');
10912 xsnprintf (p
, endbuf
- p
, "%x", num
);
10915 xsnprintf (p
, endbuf
- p
, "pc:%s", phex_nz (addr1
, 0));
10918 xsnprintf (p
, endbuf
- p
, "tdp:%x", num
);
10921 xsnprintf (p
, endbuf
- p
, "range:%s:%s", phex_nz (addr1
, 0),
10922 phex_nz (addr2
, 0));
10924 case tfind_outside
:
10925 xsnprintf (p
, endbuf
- p
, "outside:%s:%s", phex_nz (addr1
, 0),
10926 phex_nz (addr2
, 0));
10929 error (_("Unknown trace find type %d"), type
);
10933 reply
= remote_get_noisy_reply (&(rs
->buf
), &rs
->buf_size
);
10934 if (*reply
== '\0')
10935 error (_("Target does not support this command."));
10937 while (reply
&& *reply
)
10942 target_frameno
= (int) strtol (p
, &reply
, 16);
10944 error (_("Unable to parse trace frame number"));
10945 /* Don't update our remote traceframe number cache on failure
10946 to select a remote traceframe. */
10947 if (target_frameno
== -1)
10952 target_tracept
= (int) strtol (p
, &reply
, 16);
10954 error (_("Unable to parse tracepoint number"));
10956 case 'O': /* "OK"? */
10957 if (reply
[1] == 'K' && reply
[2] == '\0')
10960 error (_("Bogus reply from target: %s"), reply
);
10963 error (_("Bogus reply from target: %s"), reply
);
10966 *tpp
= target_tracept
;
10968 rs
->remote_traceframe_number
= target_frameno
;
10969 return target_frameno
;
10973 remote_get_trace_state_variable_value (int tsvnum
, LONGEST
*val
)
10975 struct remote_state
*rs
= get_remote_state ();
10979 set_remote_traceframe ();
10981 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTV:%x", tsvnum
);
10983 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
10984 if (reply
&& *reply
)
10988 unpack_varlen_hex (reply
+ 1, &uval
);
10989 *val
= (LONGEST
) uval
;
10997 remote_save_trace_data (const char *filename
)
10999 struct remote_state
*rs
= get_remote_state ();
11003 strcpy (p
, "QTSave:");
11005 if ((p
- rs
->buf
) + strlen (filename
) * 2 >= get_remote_packet_size ())
11006 error (_("Remote file name too long for trace save packet"));
11007 p
+= 2 * bin2hex ((gdb_byte
*) filename
, p
, 0);
11010 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11011 if (*reply
== '\0')
11012 error (_("Target does not support this command."));
11013 if (strcmp (reply
, "OK") != 0)
11014 error (_("Bogus reply from target: %s"), reply
);
11018 /* This is basically a memory transfer, but needs to be its own packet
11019 because we don't know how the target actually organizes its trace
11020 memory, plus we want to be able to ask for as much as possible, but
11021 not be unhappy if we don't get as much as we ask for. */
11024 remote_get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
)
11026 struct remote_state
*rs
= get_remote_state ();
11032 strcpy (p
, "qTBuffer:");
11034 p
+= hexnumstr (p
, offset
);
11036 p
+= hexnumstr (p
, len
);
11040 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11041 if (reply
&& *reply
)
11043 /* 'l' by itself means we're at the end of the buffer and
11044 there is nothing more to get. */
11048 /* Convert the reply into binary. Limit the number of bytes to
11049 convert according to our passed-in buffer size, rather than
11050 what was returned in the packet; if the target is
11051 unexpectedly generous and gives us a bigger reply than we
11052 asked for, we don't want to crash. */
11053 rslt
= hex2bin (target_buf
, buf
, len
);
11057 /* Something went wrong, flag as an error. */
11062 remote_set_disconnected_tracing (int val
)
11064 struct remote_state
*rs
= get_remote_state ();
11066 if (rs
->disconnected_tracing
)
11070 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisconnected:%x", val
);
11072 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11073 if (*reply
== '\0')
11074 error (_("Target does not support this command."));
11075 if (strcmp (reply
, "OK") != 0)
11076 error (_("Bogus reply from target: %s"), reply
);
11079 warning (_("Target does not support disconnected tracing."));
11083 remote_core_of_thread (struct target_ops
*ops
, ptid_t ptid
)
11085 struct thread_info
*info
= find_thread_ptid (ptid
);
11087 if (info
&& info
->private)
11088 return info
->private->core
;
11093 remote_set_circular_trace_buffer (int val
)
11095 struct remote_state
*rs
= get_remote_state ();
11098 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTBuffer:circular:%x", val
);
11100 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11101 if (*reply
== '\0')
11102 error (_("Target does not support this command."));
11103 if (strcmp (reply
, "OK") != 0)
11104 error (_("Bogus reply from target: %s"), reply
);
11107 static struct traceframe_info
*
11108 remote_traceframe_info (void)
11112 text
= target_read_stralloc (¤t_target
,
11113 TARGET_OBJECT_TRACEFRAME_INFO
, NULL
);
11116 struct traceframe_info
*info
;
11117 struct cleanup
*back_to
= make_cleanup (xfree
, text
);
11119 info
= parse_traceframe_info (text
);
11120 do_cleanups (back_to
);
11127 /* Handle the qTMinFTPILen packet. Returns the minimum length of
11128 instruction on which a fast tracepoint may be placed. Returns -1
11129 if the packet is not supported, and 0 if the minimum instruction
11130 length is unknown. */
11133 remote_get_min_fast_tracepoint_insn_len (void)
11135 struct remote_state
*rs
= get_remote_state ();
11138 /* If we're not debugging a process yet, the IPA can't be
11140 if (!target_has_execution
)
11143 /* Make sure the remote is pointing at the right process. */
11144 set_general_process ();
11146 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTMinFTPILen");
11148 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11149 if (*reply
== '\0')
11153 ULONGEST min_insn_len
;
11155 unpack_varlen_hex (reply
, &min_insn_len
);
11157 return (int) min_insn_len
;
11162 remote_set_trace_buffer_size (LONGEST val
)
11164 if (remote_protocol_packets
[PACKET_QTBuffer_size
].support
11167 struct remote_state
*rs
= get_remote_state ();
11168 char *buf
= rs
->buf
;
11169 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
11170 enum packet_result result
;
11172 gdb_assert (val
>= 0 || val
== -1);
11173 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTBuffer:size:");
11174 /* Send -1 as literal "-1" to avoid host size dependency. */
11178 buf
+= hexnumstr (buf
, (ULONGEST
) -val
);
11181 buf
+= hexnumstr (buf
, (ULONGEST
) val
);
11184 remote_get_noisy_reply (&rs
->buf
, &rs
->buf_size
);
11185 result
= packet_ok (rs
->buf
,
11186 &remote_protocol_packets
[PACKET_QTBuffer_size
]);
11188 if (result
!= PACKET_OK
)
11189 warning (_("Bogus reply from target: %s"), rs
->buf
);
11194 remote_set_trace_notes (const char *user
, const char *notes
,
11195 const char *stop_notes
)
11197 struct remote_state
*rs
= get_remote_state ();
11199 char *buf
= rs
->buf
;
11200 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
11203 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTNotes:");
11206 buf
+= xsnprintf (buf
, endbuf
- buf
, "user:");
11207 nbytes
= bin2hex ((gdb_byte
*) user
, buf
, 0);
11213 buf
+= xsnprintf (buf
, endbuf
- buf
, "notes:");
11214 nbytes
= bin2hex ((gdb_byte
*) notes
, buf
, 0);
11220 buf
+= xsnprintf (buf
, endbuf
- buf
, "tstop:");
11221 nbytes
= bin2hex ((gdb_byte
*) stop_notes
, buf
, 0);
11225 /* Ensure the buffer is terminated. */
11229 reply
= remote_get_noisy_reply (&target_buf
, &target_buf_size
);
11230 if (*reply
== '\0')
11233 if (strcmp (reply
, "OK") != 0)
11234 error (_("Bogus reply from target: %s"), reply
);
11240 remote_use_agent (int use
)
11242 if (remote_protocol_packets
[PACKET_QAgent
].support
!= PACKET_DISABLE
)
11244 struct remote_state
*rs
= get_remote_state ();
11246 /* If the stub supports QAgent. */
11247 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAgent:%d", use
);
11249 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11251 if (strcmp (rs
->buf
, "OK") == 0)
11262 remote_can_use_agent (void)
11264 return (remote_protocol_packets
[PACKET_QAgent
].support
!= PACKET_DISABLE
);
11267 struct btrace_target_info
11269 /* The ptid of the traced thread. */
11273 /* Check whether the target supports branch tracing. */
11276 remote_supports_btrace (void)
11278 if (remote_protocol_packets
[PACKET_Qbtrace_off
].support
!= PACKET_ENABLE
)
11280 if (remote_protocol_packets
[PACKET_Qbtrace_bts
].support
!= PACKET_ENABLE
)
11282 if (remote_protocol_packets
[PACKET_qXfer_btrace
].support
!= PACKET_ENABLE
)
11288 /* Enable branch tracing. */
11290 static struct btrace_target_info
*
11291 remote_enable_btrace (ptid_t ptid
)
11293 struct btrace_target_info
*tinfo
= NULL
;
11294 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_Qbtrace_bts
];
11295 struct remote_state
*rs
= get_remote_state ();
11296 char *buf
= rs
->buf
;
11297 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
11299 if (packet
->support
!= PACKET_ENABLE
)
11300 error (_("Target does not support branch tracing."));
11302 set_general_thread (ptid
);
11304 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
11306 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11308 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
11310 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
11311 error (_("Could not enable branch tracing for %s: %s"),
11312 target_pid_to_str (ptid
), rs
->buf
+ 2);
11314 error (_("Could not enable branch tracing for %s."),
11315 target_pid_to_str (ptid
));
11318 tinfo
= xzalloc (sizeof (*tinfo
));
11319 tinfo
->ptid
= ptid
;
11324 /* Disable branch tracing. */
11327 remote_disable_btrace (struct btrace_target_info
*tinfo
)
11329 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_Qbtrace_off
];
11330 struct remote_state
*rs
= get_remote_state ();
11331 char *buf
= rs
->buf
;
11332 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
11334 if (packet
->support
!= PACKET_ENABLE
)
11335 error (_("Target does not support branch tracing."));
11337 set_general_thread (tinfo
->ptid
);
11339 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
11341 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11343 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
11345 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
11346 error (_("Could not disable branch tracing for %s: %s"),
11347 target_pid_to_str (tinfo
->ptid
), rs
->buf
+ 2);
11349 error (_("Could not disable branch tracing for %s."),
11350 target_pid_to_str (tinfo
->ptid
));
11356 /* Teardown branch tracing. */
11359 remote_teardown_btrace (struct btrace_target_info
*tinfo
)
11361 /* We must not talk to the target during teardown. */
11365 /* Read the branch trace. */
11367 static VEC (btrace_block_s
) *
11368 remote_read_btrace (struct btrace_target_info
*tinfo
,
11369 enum btrace_read_type type
)
11371 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_qXfer_btrace
];
11372 struct remote_state
*rs
= get_remote_state ();
11373 VEC (btrace_block_s
) *btrace
= NULL
;
11377 if (packet
->support
!= PACKET_ENABLE
)
11378 error (_("Target does not support branch tracing."));
11380 #if !defined(HAVE_LIBEXPAT)
11381 error (_("Cannot process branch tracing result. XML parsing not supported."));
11386 case btrace_read_all
:
11389 case btrace_read_new
:
11393 internal_error (__FILE__
, __LINE__
,
11394 _("Bad branch tracing read type: %u."),
11395 (unsigned int) type
);
11398 xml
= target_read_stralloc (¤t_target
,
11399 TARGET_OBJECT_BTRACE
, annex
);
11402 struct cleanup
*cleanup
= make_cleanup (xfree
, xml
);
11404 btrace
= parse_xml_btrace (xml
);
11405 do_cleanups (cleanup
);
11412 remote_augmented_libraries_svr4_read (void)
11414 struct remote_state
*rs
= get_remote_state ();
11416 return rs
->augmented_libraries_svr4_read
;
11420 init_remote_ops (void)
11422 remote_ops
.to_shortname
= "remote";
11423 remote_ops
.to_longname
= "Remote serial target in gdb-specific protocol";
11424 remote_ops
.to_doc
=
11425 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11426 Specify the serial device it is connected to\n\
11427 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
11428 remote_ops
.to_open
= remote_open
;
11429 remote_ops
.to_close
= remote_close
;
11430 remote_ops
.to_detach
= remote_detach
;
11431 remote_ops
.to_disconnect
= remote_disconnect
;
11432 remote_ops
.to_resume
= remote_resume
;
11433 remote_ops
.to_wait
= remote_wait
;
11434 remote_ops
.to_fetch_registers
= remote_fetch_registers
;
11435 remote_ops
.to_store_registers
= remote_store_registers
;
11436 remote_ops
.to_prepare_to_store
= remote_prepare_to_store
;
11437 remote_ops
.to_files_info
= remote_files_info
;
11438 remote_ops
.to_insert_breakpoint
= remote_insert_breakpoint
;
11439 remote_ops
.to_remove_breakpoint
= remote_remove_breakpoint
;
11440 remote_ops
.to_stopped_by_watchpoint
= remote_stopped_by_watchpoint
;
11441 remote_ops
.to_stopped_data_address
= remote_stopped_data_address
;
11442 remote_ops
.to_watchpoint_addr_within_range
=
11443 remote_watchpoint_addr_within_range
;
11444 remote_ops
.to_can_use_hw_breakpoint
= remote_check_watch_resources
;
11445 remote_ops
.to_insert_hw_breakpoint
= remote_insert_hw_breakpoint
;
11446 remote_ops
.to_remove_hw_breakpoint
= remote_remove_hw_breakpoint
;
11447 remote_ops
.to_region_ok_for_hw_watchpoint
11448 = remote_region_ok_for_hw_watchpoint
;
11449 remote_ops
.to_insert_watchpoint
= remote_insert_watchpoint
;
11450 remote_ops
.to_remove_watchpoint
= remote_remove_watchpoint
;
11451 remote_ops
.to_kill
= remote_kill
;
11452 remote_ops
.to_load
= generic_load
;
11453 remote_ops
.to_mourn_inferior
= remote_mourn
;
11454 remote_ops
.to_pass_signals
= remote_pass_signals
;
11455 remote_ops
.to_program_signals
= remote_program_signals
;
11456 remote_ops
.to_thread_alive
= remote_thread_alive
;
11457 remote_ops
.to_find_new_threads
= remote_threads_info
;
11458 remote_ops
.to_pid_to_str
= remote_pid_to_str
;
11459 remote_ops
.to_extra_thread_info
= remote_threads_extra_info
;
11460 remote_ops
.to_get_ada_task_ptid
= remote_get_ada_task_ptid
;
11461 remote_ops
.to_stop
= remote_stop
;
11462 remote_ops
.to_xfer_partial
= remote_xfer_partial
;
11463 remote_ops
.to_rcmd
= remote_rcmd
;
11464 remote_ops
.to_log_command
= serial_log_command
;
11465 remote_ops
.to_get_thread_local_address
= remote_get_thread_local_address
;
11466 remote_ops
.to_stratum
= process_stratum
;
11467 remote_ops
.to_has_all_memory
= default_child_has_all_memory
;
11468 remote_ops
.to_has_memory
= default_child_has_memory
;
11469 remote_ops
.to_has_stack
= default_child_has_stack
;
11470 remote_ops
.to_has_registers
= default_child_has_registers
;
11471 remote_ops
.to_has_execution
= default_child_has_execution
;
11472 remote_ops
.to_has_thread_control
= tc_schedlock
; /* can lock scheduler */
11473 remote_ops
.to_can_execute_reverse
= remote_can_execute_reverse
;
11474 remote_ops
.to_magic
= OPS_MAGIC
;
11475 remote_ops
.to_memory_map
= remote_memory_map
;
11476 remote_ops
.to_flash_erase
= remote_flash_erase
;
11477 remote_ops
.to_flash_done
= remote_flash_done
;
11478 remote_ops
.to_read_description
= remote_read_description
;
11479 remote_ops
.to_search_memory
= remote_search_memory
;
11480 remote_ops
.to_can_async_p
= remote_can_async_p
;
11481 remote_ops
.to_is_async_p
= remote_is_async_p
;
11482 remote_ops
.to_async
= remote_async
;
11483 remote_ops
.to_terminal_inferior
= remote_terminal_inferior
;
11484 remote_ops
.to_terminal_ours
= remote_terminal_ours
;
11485 remote_ops
.to_supports_non_stop
= remote_supports_non_stop
;
11486 remote_ops
.to_supports_multi_process
= remote_supports_multi_process
;
11487 remote_ops
.to_supports_disable_randomization
11488 = remote_supports_disable_randomization
;
11489 remote_ops
.to_fileio_open
= remote_hostio_open
;
11490 remote_ops
.to_fileio_pwrite
= remote_hostio_pwrite
;
11491 remote_ops
.to_fileio_pread
= remote_hostio_pread
;
11492 remote_ops
.to_fileio_close
= remote_hostio_close
;
11493 remote_ops
.to_fileio_unlink
= remote_hostio_unlink
;
11494 remote_ops
.to_fileio_readlink
= remote_hostio_readlink
;
11495 remote_ops
.to_supports_enable_disable_tracepoint
= remote_supports_enable_disable_tracepoint
;
11496 remote_ops
.to_supports_string_tracing
= remote_supports_string_tracing
;
11497 remote_ops
.to_supports_evaluation_of_breakpoint_conditions
= remote_supports_cond_breakpoints
;
11498 remote_ops
.to_can_run_breakpoint_commands
= remote_can_run_breakpoint_commands
;
11499 remote_ops
.to_trace_init
= remote_trace_init
;
11500 remote_ops
.to_download_tracepoint
= remote_download_tracepoint
;
11501 remote_ops
.to_can_download_tracepoint
= remote_can_download_tracepoint
;
11502 remote_ops
.to_download_trace_state_variable
11503 = remote_download_trace_state_variable
;
11504 remote_ops
.to_enable_tracepoint
= remote_enable_tracepoint
;
11505 remote_ops
.to_disable_tracepoint
= remote_disable_tracepoint
;
11506 remote_ops
.to_trace_set_readonly_regions
= remote_trace_set_readonly_regions
;
11507 remote_ops
.to_trace_start
= remote_trace_start
;
11508 remote_ops
.to_get_trace_status
= remote_get_trace_status
;
11509 remote_ops
.to_get_tracepoint_status
= remote_get_tracepoint_status
;
11510 remote_ops
.to_trace_stop
= remote_trace_stop
;
11511 remote_ops
.to_trace_find
= remote_trace_find
;
11512 remote_ops
.to_get_trace_state_variable_value
11513 = remote_get_trace_state_variable_value
;
11514 remote_ops
.to_save_trace_data
= remote_save_trace_data
;
11515 remote_ops
.to_upload_tracepoints
= remote_upload_tracepoints
;
11516 remote_ops
.to_upload_trace_state_variables
11517 = remote_upload_trace_state_variables
;
11518 remote_ops
.to_get_raw_trace_data
= remote_get_raw_trace_data
;
11519 remote_ops
.to_get_min_fast_tracepoint_insn_len
= remote_get_min_fast_tracepoint_insn_len
;
11520 remote_ops
.to_set_disconnected_tracing
= remote_set_disconnected_tracing
;
11521 remote_ops
.to_set_circular_trace_buffer
= remote_set_circular_trace_buffer
;
11522 remote_ops
.to_set_trace_buffer_size
= remote_set_trace_buffer_size
;
11523 remote_ops
.to_set_trace_notes
= remote_set_trace_notes
;
11524 remote_ops
.to_core_of_thread
= remote_core_of_thread
;
11525 remote_ops
.to_verify_memory
= remote_verify_memory
;
11526 remote_ops
.to_get_tib_address
= remote_get_tib_address
;
11527 remote_ops
.to_set_permissions
= remote_set_permissions
;
11528 remote_ops
.to_static_tracepoint_marker_at
11529 = remote_static_tracepoint_marker_at
;
11530 remote_ops
.to_static_tracepoint_markers_by_strid
11531 = remote_static_tracepoint_markers_by_strid
;
11532 remote_ops
.to_traceframe_info
= remote_traceframe_info
;
11533 remote_ops
.to_use_agent
= remote_use_agent
;
11534 remote_ops
.to_can_use_agent
= remote_can_use_agent
;
11535 remote_ops
.to_supports_btrace
= remote_supports_btrace
;
11536 remote_ops
.to_enable_btrace
= remote_enable_btrace
;
11537 remote_ops
.to_disable_btrace
= remote_disable_btrace
;
11538 remote_ops
.to_teardown_btrace
= remote_teardown_btrace
;
11539 remote_ops
.to_read_btrace
= remote_read_btrace
;
11540 remote_ops
.to_augmented_libraries_svr4_read
=
11541 remote_augmented_libraries_svr4_read
;
11544 /* Set up the extended remote vector by making a copy of the standard
11545 remote vector and adding to it. */
11548 init_extended_remote_ops (void)
11550 extended_remote_ops
= remote_ops
;
11552 extended_remote_ops
.to_shortname
= "extended-remote";
11553 extended_remote_ops
.to_longname
=
11554 "Extended remote serial target in gdb-specific protocol";
11555 extended_remote_ops
.to_doc
=
11556 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11557 Specify the serial device it is connected to (e.g. /dev/ttya).";
11558 extended_remote_ops
.to_open
= extended_remote_open
;
11559 extended_remote_ops
.to_create_inferior
= extended_remote_create_inferior
;
11560 extended_remote_ops
.to_mourn_inferior
= extended_remote_mourn
;
11561 extended_remote_ops
.to_detach
= extended_remote_detach
;
11562 extended_remote_ops
.to_attach
= extended_remote_attach
;
11563 extended_remote_ops
.to_kill
= extended_remote_kill
;
11564 extended_remote_ops
.to_supports_disable_randomization
11565 = extended_remote_supports_disable_randomization
;
11569 remote_can_async_p (void)
11571 struct remote_state
*rs
= get_remote_state ();
11573 if (!target_async_permitted
)
11574 /* We only enable async when the user specifically asks for it. */
11577 /* We're async whenever the serial device is. */
11578 return serial_can_async_p (rs
->remote_desc
);
11582 remote_is_async_p (void)
11584 struct remote_state
*rs
= get_remote_state ();
11586 if (!target_async_permitted
)
11587 /* We only enable async when the user specifically asks for it. */
11590 /* We're async whenever the serial device is. */
11591 return serial_is_async_p (rs
->remote_desc
);
11594 /* Pass the SERIAL event on and up to the client. One day this code
11595 will be able to delay notifying the client of an event until the
11596 point where an entire packet has been received. */
11598 static serial_event_ftype remote_async_serial_handler
;
11601 remote_async_serial_handler (struct serial
*scb
, void *context
)
11603 struct remote_state
*rs
= context
;
11605 /* Don't propogate error information up to the client. Instead let
11606 the client find out about the error by querying the target. */
11607 rs
->async_client_callback (INF_REG_EVENT
, rs
->async_client_context
);
11611 remote_async_inferior_event_handler (gdb_client_data data
)
11613 inferior_event_handler (INF_REG_EVENT
, NULL
);
11617 remote_async (void (*callback
) (enum inferior_event_type event_type
,
11618 void *context
), void *context
)
11620 struct remote_state
*rs
= get_remote_state ();
11622 if (callback
!= NULL
)
11624 serial_async (rs
->remote_desc
, remote_async_serial_handler
, rs
);
11625 rs
->async_client_callback
= callback
;
11626 rs
->async_client_context
= context
;
11629 serial_async (rs
->remote_desc
, NULL
, NULL
);
11633 set_remote_cmd (char *args
, int from_tty
)
11635 help_list (remote_set_cmdlist
, "set remote ", -1, gdb_stdout
);
11639 show_remote_cmd (char *args
, int from_tty
)
11641 /* We can't just use cmd_show_list here, because we want to skip
11642 the redundant "show remote Z-packet" and the legacy aliases. */
11643 struct cleanup
*showlist_chain
;
11644 struct cmd_list_element
*list
= remote_show_cmdlist
;
11645 struct ui_out
*uiout
= current_uiout
;
11647 showlist_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "showlist");
11648 for (; list
!= NULL
; list
= list
->next
)
11649 if (strcmp (list
->name
, "Z-packet") == 0)
11651 else if (list
->type
== not_set_cmd
)
11652 /* Alias commands are exactly like the original, except they
11653 don't have the normal type. */
11657 struct cleanup
*option_chain
11658 = make_cleanup_ui_out_tuple_begin_end (uiout
, "option");
11660 ui_out_field_string (uiout
, "name", list
->name
);
11661 ui_out_text (uiout
, ": ");
11662 if (list
->type
== show_cmd
)
11663 do_show_command ((char *) NULL
, from_tty
, list
);
11665 cmd_func (list
, NULL
, from_tty
);
11666 /* Close the tuple. */
11667 do_cleanups (option_chain
);
11670 /* Close the tuple. */
11671 do_cleanups (showlist_chain
);
11675 /* Function to be called whenever a new objfile (shlib) is detected. */
11677 remote_new_objfile (struct objfile
*objfile
)
11679 struct remote_state
*rs
= get_remote_state ();
11681 if (rs
->remote_desc
!= 0) /* Have a remote connection. */
11682 remote_check_symbols ();
11685 /* Pull all the tracepoints defined on the target and create local
11686 data structures representing them. We don't want to create real
11687 tracepoints yet, we don't want to mess up the user's existing
11691 remote_upload_tracepoints (struct uploaded_tp
**utpp
)
11693 struct remote_state
*rs
= get_remote_state ();
11696 /* Ask for a first packet of tracepoint definition. */
11698 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11700 while (*p
&& *p
!= 'l')
11702 parse_tracepoint_definition (p
, utpp
);
11703 /* Ask for another packet of tracepoint definition. */
11705 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11712 remote_upload_trace_state_variables (struct uploaded_tsv
**utsvp
)
11714 struct remote_state
*rs
= get_remote_state ();
11717 /* Ask for a first packet of variable definition. */
11719 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11721 while (*p
&& *p
!= 'l')
11723 parse_tsv_definition (p
, utsvp
);
11724 /* Ask for another packet of variable definition. */
11726 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11732 /* The "set/show range-stepping" show hook. */
11735 show_range_stepping (struct ui_file
*file
, int from_tty
,
11736 struct cmd_list_element
*c
,
11739 fprintf_filtered (file
,
11740 _("Debugger's willingness to use range stepping "
11741 "is %s.\n"), value
);
11744 /* The "set/show range-stepping" set hook. */
11747 set_range_stepping (char *ignore_args
, int from_tty
,
11748 struct cmd_list_element
*c
)
11750 struct remote_state
*rs
= get_remote_state ();
11752 /* Whene enabling, check whether range stepping is actually
11753 supported by the target, and warn if not. */
11754 if (use_range_stepping
)
11756 if (rs
->remote_desc
!= NULL
)
11758 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_SUPPORT_UNKNOWN
)
11759 remote_vcont_probe (rs
);
11761 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_ENABLE
11762 && rs
->supports_vCont
.r
)
11766 warning (_("Range stepping is not supported by the current target"));
11771 _initialize_remote (void)
11773 struct remote_state
*rs
;
11774 struct cmd_list_element
*cmd
;
11775 const char *cmd_name
;
11777 /* architecture specific data */
11778 remote_gdbarch_data_handle
=
11779 gdbarch_data_register_post_init (init_remote_state
);
11780 remote_g_packet_data_handle
=
11781 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
11783 /* Initialize the per-target state. At the moment there is only one
11784 of these, not one per target. Only one target is active at a
11786 remote_state
= new_remote_state ();
11788 init_remote_ops ();
11789 add_target (&remote_ops
);
11791 init_extended_remote_ops ();
11792 add_target (&extended_remote_ops
);
11794 /* Hook into new objfile notification. */
11795 observer_attach_new_objfile (remote_new_objfile
);
11796 /* We're no longer interested in notification events of an inferior
11798 observer_attach_inferior_exit (discard_pending_stop_replies
);
11800 /* Set up signal handlers. */
11801 async_sigint_remote_token
=
11802 create_async_signal_handler (async_remote_interrupt
, NULL
);
11803 async_sigint_remote_twice_token
=
11804 create_async_signal_handler (async_remote_interrupt_twice
, NULL
);
11807 init_remote_threadtests ();
11810 stop_reply_queue
= QUEUE_alloc (stop_reply_p
, stop_reply_xfree
);
11811 /* set/show remote ... */
11813 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
11814 Remote protocol specific variables\n\
11815 Configure various remote-protocol specific variables such as\n\
11816 the packets being used"),
11817 &remote_set_cmdlist
, "set remote ",
11818 0 /* allow-unknown */, &setlist
);
11819 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
11820 Remote protocol specific variables\n\
11821 Configure various remote-protocol specific variables such as\n\
11822 the packets being used"),
11823 &remote_show_cmdlist
, "show remote ",
11824 0 /* allow-unknown */, &showlist
);
11826 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
11827 Compare section data on target to the exec file.\n\
11828 Argument is a single section name (default: all loaded sections)."),
11831 add_cmd ("packet", class_maintenance
, packet_command
, _("\
11832 Send an arbitrary packet to a remote target.\n\
11833 maintenance packet TEXT\n\
11834 If GDB is talking to an inferior via the GDB serial protocol, then\n\
11835 this command sends the string TEXT to the inferior, and displays the\n\
11836 response packet. GDB supplies the initial `$' character, and the\n\
11837 terminating `#' character and checksum."),
11840 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
11841 Set whether to send break if interrupted."), _("\
11842 Show whether to send break if interrupted."), _("\
11843 If set, a break, instead of a cntrl-c, is sent to the remote target."),
11844 set_remotebreak
, show_remotebreak
,
11845 &setlist
, &showlist
);
11846 cmd_name
= "remotebreak";
11847 cmd
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
11848 deprecate_cmd (cmd
, "set remote interrupt-sequence");
11849 cmd_name
= "remotebreak"; /* needed because lookup_cmd updates the pointer */
11850 cmd
= lookup_cmd (&cmd_name
, showlist
, "", -1, 1);
11851 deprecate_cmd (cmd
, "show remote interrupt-sequence");
11853 add_setshow_enum_cmd ("interrupt-sequence", class_support
,
11854 interrupt_sequence_modes
, &interrupt_sequence_mode
,
11856 Set interrupt sequence to remote target."), _("\
11857 Show interrupt sequence to remote target."), _("\
11858 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
11859 NULL
, show_interrupt_sequence
,
11860 &remote_set_cmdlist
,
11861 &remote_show_cmdlist
);
11863 add_setshow_boolean_cmd ("interrupt-on-connect", class_support
,
11864 &interrupt_on_connect
, _("\
11865 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11866 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11867 If set, interrupt sequence is sent to remote target."),
11869 &remote_set_cmdlist
, &remote_show_cmdlist
);
11871 /* Install commands for configuring memory read/write packets. */
11873 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
11874 Set the maximum number of bytes per memory write packet (deprecated)."),
11876 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
11877 Show the maximum number of bytes per memory write packet (deprecated)."),
11879 add_cmd ("memory-write-packet-size", no_class
,
11880 set_memory_write_packet_size
, _("\
11881 Set the maximum number of bytes per memory-write packet.\n\
11882 Specify the number of bytes in a packet or 0 (zero) for the\n\
11883 default packet size. The actual limit is further reduced\n\
11884 dependent on the target. Specify ``fixed'' to disable the\n\
11885 further restriction and ``limit'' to enable that restriction."),
11886 &remote_set_cmdlist
);
11887 add_cmd ("memory-read-packet-size", no_class
,
11888 set_memory_read_packet_size
, _("\
11889 Set the maximum number of bytes per memory-read packet.\n\
11890 Specify the number of bytes in a packet or 0 (zero) for the\n\
11891 default packet size. The actual limit is further reduced\n\
11892 dependent on the target. Specify ``fixed'' to disable the\n\
11893 further restriction and ``limit'' to enable that restriction."),
11894 &remote_set_cmdlist
);
11895 add_cmd ("memory-write-packet-size", no_class
,
11896 show_memory_write_packet_size
,
11897 _("Show the maximum number of bytes per memory-write packet."),
11898 &remote_show_cmdlist
);
11899 add_cmd ("memory-read-packet-size", no_class
,
11900 show_memory_read_packet_size
,
11901 _("Show the maximum number of bytes per memory-read packet."),
11902 &remote_show_cmdlist
);
11904 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class
,
11905 &remote_hw_watchpoint_limit
, _("\
11906 Set the maximum number of target hardware watchpoints."), _("\
11907 Show the maximum number of target hardware watchpoints."), _("\
11908 Specify a negative limit for unlimited."),
11909 NULL
, NULL
, /* FIXME: i18n: The maximum
11910 number of target hardware
11911 watchpoints is %s. */
11912 &remote_set_cmdlist
, &remote_show_cmdlist
);
11913 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class
,
11914 &remote_hw_watchpoint_length_limit
, _("\
11915 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
11916 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
11917 Specify a negative limit for unlimited."),
11918 NULL
, NULL
, /* FIXME: i18n: The maximum
11919 length (in bytes) of a target
11920 hardware watchpoint is %s. */
11921 &remote_set_cmdlist
, &remote_show_cmdlist
);
11922 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class
,
11923 &remote_hw_breakpoint_limit
, _("\
11924 Set the maximum number of target hardware breakpoints."), _("\
11925 Show the maximum number of target hardware breakpoints."), _("\
11926 Specify a negative limit for unlimited."),
11927 NULL
, NULL
, /* FIXME: i18n: The maximum
11928 number of target hardware
11929 breakpoints is %s. */
11930 &remote_set_cmdlist
, &remote_show_cmdlist
);
11932 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure
,
11933 &remote_address_size
, _("\
11934 Set the maximum size of the address (in bits) in a memory packet."), _("\
11935 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
11937 NULL
, /* FIXME: i18n: */
11938 &setlist
, &showlist
);
11940 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
11941 "X", "binary-download", 1);
11943 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
11944 "vCont", "verbose-resume", 0);
11946 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
11947 "QPassSignals", "pass-signals", 0);
11949 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QProgramSignals
],
11950 "QProgramSignals", "program-signals", 0);
11952 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
11953 "qSymbol", "symbol-lookup", 0);
11955 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
11956 "P", "set-register", 1);
11958 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
11959 "p", "fetch-register", 1);
11961 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
11962 "Z0", "software-breakpoint", 0);
11964 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
11965 "Z1", "hardware-breakpoint", 0);
11967 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
11968 "Z2", "write-watchpoint", 0);
11970 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
11971 "Z3", "read-watchpoint", 0);
11973 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
11974 "Z4", "access-watchpoint", 0);
11976 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
11977 "qXfer:auxv:read", "read-aux-vector", 0);
11979 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
11980 "qXfer:features:read", "target-features", 0);
11982 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
11983 "qXfer:libraries:read", "library-info", 0);
11985 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries_svr4
],
11986 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
11988 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
11989 "qXfer:memory-map:read", "memory-map", 0);
11991 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_read
],
11992 "qXfer:spu:read", "read-spu-object", 0);
11994 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_write
],
11995 "qXfer:spu:write", "write-spu-object", 0);
11997 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_osdata
],
11998 "qXfer:osdata:read", "osdata", 0);
12000 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_threads
],
12001 "qXfer:threads:read", "threads", 0);
12003 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_read
],
12004 "qXfer:siginfo:read", "read-siginfo-object", 0);
12006 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_write
],
12007 "qXfer:siginfo:write", "write-siginfo-object", 0);
12009 add_packet_config_cmd
12010 (&remote_protocol_packets
[PACKET_qXfer_traceframe_info
],
12011 "qXfer:traceframe-info:read", "traceframe-info", 0);
12013 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_uib
],
12014 "qXfer:uib:read", "unwind-info-block", 0);
12016 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
12017 "qGetTLSAddr", "get-thread-local-storage-address",
12020 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTIBAddr
],
12021 "qGetTIBAddr", "get-thread-information-block-address",
12024 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bc
],
12025 "bc", "reverse-continue", 0);
12027 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bs
],
12028 "bs", "reverse-step", 0);
12030 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
12031 "qSupported", "supported-packets", 0);
12033 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
12034 "qSearch:memory", "search-memory", 0);
12036 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qTStatus
],
12037 "qTStatus", "trace-status", 0);
12039 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
12040 "vFile:open", "hostio-open", 0);
12042 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
12043 "vFile:pread", "hostio-pread", 0);
12045 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
12046 "vFile:pwrite", "hostio-pwrite", 0);
12048 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
12049 "vFile:close", "hostio-close", 0);
12051 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
12052 "vFile:unlink", "hostio-unlink", 0);
12054 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_readlink
],
12055 "vFile:readlink", "hostio-readlink", 0);
12057 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
12058 "vAttach", "attach", 0);
12060 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
12063 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartNoAckMode
],
12064 "QStartNoAckMode", "noack", 0);
12066 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vKill
],
12067 "vKill", "kill", 0);
12069 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qAttached
],
12070 "qAttached", "query-attached", 0);
12072 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalTracepoints
],
12073 "ConditionalTracepoints",
12074 "conditional-tracepoints", 0);
12076 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalBreakpoints
],
12077 "ConditionalBreakpoints",
12078 "conditional-breakpoints", 0);
12080 add_packet_config_cmd (&remote_protocol_packets
[PACKET_BreakpointCommands
],
12081 "BreakpointCommands",
12082 "breakpoint-commands", 0);
12084 add_packet_config_cmd (&remote_protocol_packets
[PACKET_FastTracepoints
],
12085 "FastTracepoints", "fast-tracepoints", 0);
12087 add_packet_config_cmd (&remote_protocol_packets
[PACKET_TracepointSource
],
12088 "TracepointSource", "TracepointSource", 0);
12090 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAllow
],
12091 "QAllow", "allow", 0);
12093 add_packet_config_cmd (&remote_protocol_packets
[PACKET_StaticTracepoints
],
12094 "StaticTracepoints", "static-tracepoints", 0);
12096 add_packet_config_cmd (&remote_protocol_packets
[PACKET_InstallInTrace
],
12097 "InstallInTrace", "install-in-trace", 0);
12099 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_statictrace_read
],
12100 "qXfer:statictrace:read", "read-sdata-object", 0);
12102 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_fdpic
],
12103 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
12105 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QDisableRandomization
],
12106 "QDisableRandomization", "disable-randomization", 0);
12108 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAgent
],
12109 "QAgent", "agent", 0);
12111 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QTBuffer_size
],
12112 "QTBuffer:size", "trace-buffer-size", 0);
12114 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_off
],
12115 "Qbtrace:off", "disable-btrace", 0);
12117 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_bts
],
12118 "Qbtrace:bts", "enable-btrace", 0);
12120 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace
],
12121 "qXfer:btrace", "read-btrace", 0);
12123 /* Keep the old ``set remote Z-packet ...'' working. Each individual
12124 Z sub-packet has its own set and show commands, but users may
12125 have sets to this variable in their .gdbinit files (or in their
12127 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
12128 &remote_Z_packet_detect
, _("\
12129 Set use of remote protocol `Z' packets"), _("\
12130 Show use of remote protocol `Z' packets "), _("\
12131 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
12133 set_remote_protocol_Z_packet_cmd
,
12134 show_remote_protocol_Z_packet_cmd
,
12135 /* FIXME: i18n: Use of remote protocol
12136 `Z' packets is %s. */
12137 &remote_set_cmdlist
, &remote_show_cmdlist
);
12139 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
12140 Manipulate files on the remote system\n\
12141 Transfer files to and from the remote target system."),
12142 &remote_cmdlist
, "remote ",
12143 0 /* allow-unknown */, &cmdlist
);
12145 add_cmd ("put", class_files
, remote_put_command
,
12146 _("Copy a local file to the remote system."),
12149 add_cmd ("get", class_files
, remote_get_command
,
12150 _("Copy a remote file to the local system."),
12153 add_cmd ("delete", class_files
, remote_delete_command
,
12154 _("Delete a remote file."),
12157 remote_exec_file
= xstrdup ("");
12158 add_setshow_string_noescape_cmd ("exec-file", class_files
,
12159 &remote_exec_file
, _("\
12160 Set the remote pathname for \"run\""), _("\
12161 Show the remote pathname for \"run\""), NULL
, NULL
, NULL
,
12162 &remote_set_cmdlist
, &remote_show_cmdlist
);
12164 add_setshow_boolean_cmd ("range-stepping", class_run
,
12165 &use_range_stepping
, _("\
12166 Enable or disable range stepping."), _("\
12167 Show whether target-assisted range stepping is enabled."), _("\
12168 If on, and the target supports it, when stepping a source line, GDB\n\
12169 tells the target to step the corresponding range of addresses itself instead\n\
12170 of issuing multiple single-steps. This speeds up source level\n\
12171 stepping. If off, GDB always issues single-steps, even if range\n\
12172 stepping is supported by the target. The default is on."),
12173 set_range_stepping
,
12174 show_range_stepping
,
12178 /* Eventually initialize fileio. See fileio.c */
12179 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);
12181 /* Take advantage of the fact that the LWP field is not used, to tag
12182 special ptids with it set to != 0. */
12183 magic_null_ptid
= ptid_build (42000, 1, -1);
12184 not_sent_ptid
= ptid_build (42000, 1, -2);
12185 any_thread_ptid
= ptid_build (42000, 1, 0);
12187 target_buf_size
= 2048;
12188 target_buf
= xmalloc (target_buf_size
);