1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* See the GDB User Guide for details of the GDB remote protocol. */
25 #include "gdb_string.h"
31 #include "exceptions.h"
33 /*#include "terminal.h" */
36 #include "gdb-stabs.h"
37 #include "gdbthread.h"
41 #include "gdb_assert.h"
44 #include "cli/cli-decode.h"
45 #include "cli/cli-setshow.h"
46 #include "target-descriptions.h"
51 #include "event-loop.h"
52 #include "event-top.h"
58 #include "gdbcore.h" /* for exec_bfd */
60 #include "remote-fileio.h"
61 #include "gdb/fileio.h"
63 #include "memory-map.h"
65 /* The size to align memory write packets, when practical. The protocol
66 does not guarantee any alignment, and gdb will generate short
67 writes and unaligned writes, but even as a best-effort attempt this
68 can improve bulk transfers. For instance, if a write is misaligned
69 relative to the target's data bus, the stub may need to make an extra
70 round trip fetching data from the target. This doesn't make a
71 huge difference, but it's easy to do, so we try to be helpful.
73 The alignment chosen is arbitrary; usually data bus width is
74 important here, not the possibly larger cache line size. */
75 enum { REMOTE_ALIGN_WRITES
= 16 };
77 /* Prototypes for local functions. */
78 static void cleanup_sigint_signal_handler (void *dummy
);
79 static void initialize_sigint_signal_handler (void);
80 static int getpkt_sane (char **buf
, long *sizeof_buf
, int forever
);
82 static void handle_remote_sigint (int);
83 static void handle_remote_sigint_twice (int);
84 static void async_remote_interrupt (gdb_client_data
);
85 void async_remote_interrupt_twice (gdb_client_data
);
87 static void remote_files_info (struct target_ops
*ignore
);
89 static void remote_prepare_to_store (struct regcache
*regcache
);
91 static void remote_fetch_registers (struct regcache
*regcache
, int regno
);
93 static void remote_resume (ptid_t ptid
, int step
,
94 enum target_signal siggnal
);
95 static void remote_open (char *name
, int from_tty
);
97 static void extended_remote_open (char *name
, int from_tty
);
99 static void remote_open_1 (char *, int, struct target_ops
*, int extended_p
);
101 static void remote_close (int quitting
);
103 static void remote_store_registers (struct regcache
*regcache
, int regno
);
105 static void remote_mourn (void);
107 static void extended_remote_restart (void);
109 static void extended_remote_mourn (void);
111 static void remote_mourn_1 (struct target_ops
*);
113 static void remote_send (char **buf
, long *sizeof_buf_p
);
115 static int readchar (int timeout
);
117 static ptid_t
remote_wait (ptid_t ptid
,
118 struct target_waitstatus
*status
);
120 static void remote_kill (void);
122 static int tohex (int nib
);
124 static int remote_can_async_p (void);
126 static int remote_is_async_p (void);
128 static void remote_async (void (*callback
) (enum inferior_event_type event_type
,
129 void *context
), void *context
);
131 static int remote_async_mask (int new_mask
);
133 static void remote_detach (char *args
, int from_tty
);
135 static void remote_interrupt (int signo
);
137 static void remote_interrupt_twice (int signo
);
139 static void interrupt_query (void);
141 static void set_general_thread (struct ptid ptid
);
142 static void set_continue_thread (struct ptid ptid
);
144 static int remote_thread_alive (ptid_t
);
146 static void get_offsets (void);
148 static void skip_frame (void);
150 static long read_frame (char **buf_p
, long *sizeof_buf
);
152 static int hexnumlen (ULONGEST num
);
154 static void init_remote_ops (void);
156 static void init_extended_remote_ops (void);
158 static void remote_stop (void);
160 static int ishex (int ch
, int *val
);
162 static int stubhex (int ch
);
164 static int hexnumstr (char *, ULONGEST
);
166 static int hexnumnstr (char *, ULONGEST
, int);
168 static CORE_ADDR
remote_address_masked (CORE_ADDR
);
170 static void print_packet (char *);
172 static unsigned long crc32 (unsigned char *, int, unsigned int);
174 static void compare_sections_command (char *, int);
176 static void packet_command (char *, int);
178 static int stub_unpack_int (char *buff
, int fieldlength
);
180 static ptid_t
remote_current_thread (ptid_t oldptid
);
182 static void remote_find_new_threads (void);
184 static void record_currthread (ptid_t currthread
);
186 static int fromhex (int a
);
188 static int hex2bin (const char *hex
, gdb_byte
*bin
, int count
);
190 static int bin2hex (const gdb_byte
*bin
, char *hex
, int count
);
192 static int putpkt_binary (char *buf
, int cnt
);
194 static void check_binary_download (CORE_ADDR addr
);
196 struct packet_config
;
198 static void show_packet_config_cmd (struct packet_config
*config
);
200 static void update_packet_config (struct packet_config
*config
);
202 static void set_remote_protocol_packet_cmd (char *args
, int from_tty
,
203 struct cmd_list_element
*c
);
205 static void show_remote_protocol_packet_cmd (struct ui_file
*file
,
207 struct cmd_list_element
*c
,
210 void _initialize_remote (void);
212 /* Controls if async mode is permitted. */
213 static int remote_async_permitted
= 0;
215 static int remote_async_permitted_set
= 0;
218 set_maintenance_remote_async_permitted (char *args
, int from_tty
,
219 struct cmd_list_element
*c
)
221 if (target_has_execution
)
223 remote_async_permitted_set
= remote_async_permitted
; /* revert */
224 error (_("Cannot change this setting while the inferior is running."));
227 remote_async_permitted
= remote_async_permitted_set
;
231 show_maintenance_remote_async_permitted (struct ui_file
*file
, int from_tty
,
232 struct cmd_list_element
*c
, const char *value
)
234 fprintf_filtered (file
, _("\
235 Controlling the remote inferior in asynchronous mode is %s.\n"),
241 static struct cmd_list_element
*remote_cmdlist
;
243 /* For "set remote" and "show remote". */
245 static struct cmd_list_element
*remote_set_cmdlist
;
246 static struct cmd_list_element
*remote_show_cmdlist
;
248 /* Description of the remote protocol state for the currently
249 connected target. This is per-target state, and independent of the
250 selected architecture. */
254 /* A buffer to use for incoming packets, and its current size. The
255 buffer is grown dynamically for larger incoming packets.
256 Outgoing packets may also be constructed in this buffer.
257 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
258 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
263 /* If we negotiated packet size explicitly (and thus can bypass
264 heuristics for the largest packet size that will not overflow
265 a buffer in the stub), this will be set to that packet size.
266 Otherwise zero, meaning to use the guessed size. */
267 long explicit_packet_size
;
269 /* remote_wait is normally called when the target is running and
270 waits for a stop reply packet. But sometimes we need to call it
271 when the target is already stopped. We can send a "?" packet
272 and have remote_wait read the response. Or, if we already have
273 the response, we can stash it in BUF and tell remote_wait to
274 skip calling getpkt. This flag is set when BUF contains a
275 stop reply packet and the target is not waiting. */
276 int cached_wait_status
;
279 /* This data could be associated with a target, but we do not always
280 have access to the current target when we need it, so for now it is
281 static. This will be fine for as long as only one target is in use
283 static struct remote_state remote_state
;
285 static struct remote_state
*
286 get_remote_state_raw (void)
288 return &remote_state
;
291 /* Description of the remote protocol for a given architecture. */
295 long offset
; /* Offset into G packet. */
296 long regnum
; /* GDB's internal register number. */
297 LONGEST pnum
; /* Remote protocol register number. */
298 int in_g_packet
; /* Always part of G packet. */
299 /* long size in bytes; == register_size (current_gdbarch, regnum);
301 /* char *name; == gdbarch_register_name (current_gdbarch, regnum);
305 struct remote_arch_state
307 /* Description of the remote protocol registers. */
308 long sizeof_g_packet
;
310 /* Description of the remote protocol registers indexed by REGNUM
311 (making an array gdbarch_num_regs in size). */
312 struct packet_reg
*regs
;
314 /* This is the size (in chars) of the first response to the ``g''
315 packet. It is used as a heuristic when determining the maximum
316 size of memory-read and memory-write packets. A target will
317 typically only reserve a buffer large enough to hold the ``g''
318 packet. The size does not include packet overhead (headers and
320 long actual_register_packet_size
;
322 /* This is the maximum size (in chars) of a non read/write packet.
323 It is also used as a cap on the size of read/write packets. */
324 long remote_packet_size
;
328 /* Handle for retreving the remote protocol data from gdbarch. */
329 static struct gdbarch_data
*remote_gdbarch_data_handle
;
331 static struct remote_arch_state
*
332 get_remote_arch_state (void)
334 return gdbarch_data (current_gdbarch
, remote_gdbarch_data_handle
);
337 /* Fetch the global remote target state. */
339 static struct remote_state
*
340 get_remote_state (void)
342 /* Make sure that the remote architecture state has been
343 initialized, because doing so might reallocate rs->buf. Any
344 function which calls getpkt also needs to be mindful of changes
345 to rs->buf, but this call limits the number of places which run
347 get_remote_arch_state ();
349 return get_remote_state_raw ();
353 compare_pnums (const void *lhs_
, const void *rhs_
)
355 const struct packet_reg
* const *lhs
= lhs_
;
356 const struct packet_reg
* const *rhs
= rhs_
;
358 if ((*lhs
)->pnum
< (*rhs
)->pnum
)
360 else if ((*lhs
)->pnum
== (*rhs
)->pnum
)
367 init_remote_state (struct gdbarch
*gdbarch
)
369 int regnum
, num_remote_regs
, offset
;
370 struct remote_state
*rs
= get_remote_state_raw ();
371 struct remote_arch_state
*rsa
;
372 struct packet_reg
**remote_regs
;
374 rsa
= GDBARCH_OBSTACK_ZALLOC (gdbarch
, struct remote_arch_state
);
376 /* Use the architecture to build a regnum<->pnum table, which will be
377 1:1 unless a feature set specifies otherwise. */
378 rsa
->regs
= GDBARCH_OBSTACK_CALLOC (gdbarch
,
379 gdbarch_num_regs (gdbarch
),
381 for (regnum
= 0; regnum
< gdbarch_num_regs (gdbarch
); regnum
++)
383 struct packet_reg
*r
= &rsa
->regs
[regnum
];
385 if (register_size (gdbarch
, regnum
) == 0)
386 /* Do not try to fetch zero-sized (placeholder) registers. */
389 r
->pnum
= gdbarch_remote_register_number (gdbarch
, regnum
);
394 /* Define the g/G packet format as the contents of each register
395 with a remote protocol number, in order of ascending protocol
398 remote_regs
= alloca (gdbarch_num_regs (gdbarch
)
399 * sizeof (struct packet_reg
*));
400 for (num_remote_regs
= 0, regnum
= 0;
401 regnum
< gdbarch_num_regs (gdbarch
);
403 if (rsa
->regs
[regnum
].pnum
!= -1)
404 remote_regs
[num_remote_regs
++] = &rsa
->regs
[regnum
];
406 qsort (remote_regs
, num_remote_regs
, sizeof (struct packet_reg
*),
409 for (regnum
= 0, offset
= 0; regnum
< num_remote_regs
; regnum
++)
411 remote_regs
[regnum
]->in_g_packet
= 1;
412 remote_regs
[regnum
]->offset
= offset
;
413 offset
+= register_size (gdbarch
, remote_regs
[regnum
]->regnum
);
416 /* Record the maximum possible size of the g packet - it may turn out
418 rsa
->sizeof_g_packet
= offset
;
420 /* Default maximum number of characters in a packet body. Many
421 remote stubs have a hardwired buffer size of 400 bytes
422 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
423 as the maximum packet-size to ensure that the packet and an extra
424 NUL character can always fit in the buffer. This stops GDB
425 trashing stubs that try to squeeze an extra NUL into what is
426 already a full buffer (As of 1999-12-04 that was most stubs). */
427 rsa
->remote_packet_size
= 400 - 1;
429 /* This one is filled in when a ``g'' packet is received. */
430 rsa
->actual_register_packet_size
= 0;
432 /* Should rsa->sizeof_g_packet needs more space than the
433 default, adjust the size accordingly. Remember that each byte is
434 encoded as two characters. 32 is the overhead for the packet
435 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
436 (``$NN:G...#NN'') is a better guess, the below has been padded a
438 if (rsa
->sizeof_g_packet
> ((rsa
->remote_packet_size
- 32) / 2))
439 rsa
->remote_packet_size
= (rsa
->sizeof_g_packet
* 2 + 32);
441 /* Make sure that the packet buffer is plenty big enough for
442 this architecture. */
443 if (rs
->buf_size
< rsa
->remote_packet_size
)
445 rs
->buf_size
= 2 * rsa
->remote_packet_size
;
446 rs
->buf
= xrealloc (rs
->buf
, rs
->buf_size
);
452 /* Return the current allowed size of a remote packet. This is
453 inferred from the current architecture, and should be used to
454 limit the length of outgoing packets. */
456 get_remote_packet_size (void)
458 struct remote_state
*rs
= get_remote_state ();
459 struct remote_arch_state
*rsa
= get_remote_arch_state ();
461 if (rs
->explicit_packet_size
)
462 return rs
->explicit_packet_size
;
464 return rsa
->remote_packet_size
;
467 static struct packet_reg
*
468 packet_reg_from_regnum (struct remote_arch_state
*rsa
, long regnum
)
470 if (regnum
< 0 && regnum
>= gdbarch_num_regs (current_gdbarch
))
474 struct packet_reg
*r
= &rsa
->regs
[regnum
];
475 gdb_assert (r
->regnum
== regnum
);
480 static struct packet_reg
*
481 packet_reg_from_pnum (struct remote_arch_state
*rsa
, LONGEST pnum
)
484 for (i
= 0; i
< gdbarch_num_regs (current_gdbarch
); i
++)
486 struct packet_reg
*r
= &rsa
->regs
[i
];
493 /* FIXME: graces/2002-08-08: These variables should eventually be
494 bound to an instance of the target object (as in gdbarch-tdep()),
495 when such a thing exists. */
497 /* This is set to the data address of the access causing the target
498 to stop for a watchpoint. */
499 static CORE_ADDR remote_watch_data_address
;
501 /* This is non-zero if target stopped for a watchpoint. */
502 static int remote_stopped_by_watchpoint_p
;
504 static struct target_ops remote_ops
;
506 static struct target_ops extended_remote_ops
;
508 static int remote_async_mask_value
= 1;
510 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
511 ``forever'' still use the normal timeout mechanism. This is
512 currently used by the ASYNC code to guarentee that target reads
513 during the initial connect always time-out. Once getpkt has been
514 modified to return a timeout indication and, in turn
515 remote_wait()/wait_for_inferior() have gained a timeout parameter
517 static int wait_forever_enabled_p
= 1;
520 /* This variable chooses whether to send a ^C or a break when the user
521 requests program interruption. Although ^C is usually what remote
522 systems expect, and that is the default here, sometimes a break is
523 preferable instead. */
525 static int remote_break
;
527 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
528 remote_open knows that we don't have a file open when the program
530 static struct serial
*remote_desc
= NULL
;
532 /* This variable sets the number of bits in an address that are to be
533 sent in a memory ("M" or "m") packet. Normally, after stripping
534 leading zeros, the entire address would be sent. This variable
535 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
536 initial implementation of remote.c restricted the address sent in
537 memory packets to ``host::sizeof long'' bytes - (typically 32
538 bits). Consequently, for 64 bit targets, the upper 32 bits of an
539 address was never sent. Since fixing this bug may cause a break in
540 some remote targets this variable is principly provided to
541 facilitate backward compatibility. */
543 static int remote_address_size
;
545 /* Temporary to track who currently owns the terminal. See
546 remote_terminal_* for more details. */
548 static int remote_async_terminal_ours_p
;
550 /* The executable file to use for "run" on the remote side. */
552 static char *remote_exec_file
= "";
555 /* User configurable variables for the number of characters in a
556 memory read/write packet. MIN (rsa->remote_packet_size,
557 rsa->sizeof_g_packet) is the default. Some targets need smaller
558 values (fifo overruns, et.al.) and some users need larger values
559 (speed up transfers). The variables ``preferred_*'' (the user
560 request), ``current_*'' (what was actually set) and ``forced_*''
561 (Positive - a soft limit, negative - a hard limit). */
563 struct memory_packet_config
570 /* Compute the current size of a read/write packet. Since this makes
571 use of ``actual_register_packet_size'' the computation is dynamic. */
574 get_memory_packet_size (struct memory_packet_config
*config
)
576 struct remote_state
*rs
= get_remote_state ();
577 struct remote_arch_state
*rsa
= get_remote_arch_state ();
579 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
580 law?) that some hosts don't cope very well with large alloca()
581 calls. Eventually the alloca() code will be replaced by calls to
582 xmalloc() and make_cleanups() allowing this restriction to either
583 be lifted or removed. */
584 #ifndef MAX_REMOTE_PACKET_SIZE
585 #define MAX_REMOTE_PACKET_SIZE 16384
587 /* NOTE: 20 ensures we can write at least one byte. */
588 #ifndef MIN_REMOTE_PACKET_SIZE
589 #define MIN_REMOTE_PACKET_SIZE 20
594 if (config
->size
<= 0)
595 what_they_get
= MAX_REMOTE_PACKET_SIZE
;
597 what_they_get
= config
->size
;
601 what_they_get
= get_remote_packet_size ();
602 /* Limit the packet to the size specified by the user. */
604 && what_they_get
> config
->size
)
605 what_they_get
= config
->size
;
607 /* Limit it to the size of the targets ``g'' response unless we have
608 permission from the stub to use a larger packet size. */
609 if (rs
->explicit_packet_size
== 0
610 && rsa
->actual_register_packet_size
> 0
611 && what_they_get
> rsa
->actual_register_packet_size
)
612 what_they_get
= rsa
->actual_register_packet_size
;
614 if (what_they_get
> MAX_REMOTE_PACKET_SIZE
)
615 what_they_get
= MAX_REMOTE_PACKET_SIZE
;
616 if (what_they_get
< MIN_REMOTE_PACKET_SIZE
)
617 what_they_get
= MIN_REMOTE_PACKET_SIZE
;
619 /* Make sure there is room in the global buffer for this packet
620 (including its trailing NUL byte). */
621 if (rs
->buf_size
< what_they_get
+ 1)
623 rs
->buf_size
= 2 * what_they_get
;
624 rs
->buf
= xrealloc (rs
->buf
, 2 * what_they_get
);
627 return what_they_get
;
630 /* Update the size of a read/write packet. If they user wants
631 something really big then do a sanity check. */
634 set_memory_packet_size (char *args
, struct memory_packet_config
*config
)
636 int fixed_p
= config
->fixed_p
;
637 long size
= config
->size
;
639 error (_("Argument required (integer, `fixed' or `limited')."));
640 else if (strcmp (args
, "hard") == 0
641 || strcmp (args
, "fixed") == 0)
643 else if (strcmp (args
, "soft") == 0
644 || strcmp (args
, "limit") == 0)
649 size
= strtoul (args
, &end
, 0);
651 error (_("Invalid %s (bad syntax)."), config
->name
);
653 /* Instead of explicitly capping the size of a packet to
654 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
655 instead allowed to set the size to something arbitrarily
657 if (size
> MAX_REMOTE_PACKET_SIZE
)
658 error (_("Invalid %s (too large)."), config
->name
);
662 if (fixed_p
&& !config
->fixed_p
)
664 if (! query (_("The target may not be able to correctly handle a %s\n"
665 "of %ld bytes. Change the packet size? "),
667 error (_("Packet size not changed."));
669 /* Update the config. */
670 config
->fixed_p
= fixed_p
;
675 show_memory_packet_size (struct memory_packet_config
*config
)
677 printf_filtered (_("The %s is %ld. "), config
->name
, config
->size
);
679 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
680 get_memory_packet_size (config
));
682 printf_filtered (_("Packets are limited to %ld bytes.\n"),
683 get_memory_packet_size (config
));
686 static struct memory_packet_config memory_write_packet_config
=
688 "memory-write-packet-size",
692 set_memory_write_packet_size (char *args
, int from_tty
)
694 set_memory_packet_size (args
, &memory_write_packet_config
);
698 show_memory_write_packet_size (char *args
, int from_tty
)
700 show_memory_packet_size (&memory_write_packet_config
);
704 get_memory_write_packet_size (void)
706 return get_memory_packet_size (&memory_write_packet_config
);
709 static struct memory_packet_config memory_read_packet_config
=
711 "memory-read-packet-size",
715 set_memory_read_packet_size (char *args
, int from_tty
)
717 set_memory_packet_size (args
, &memory_read_packet_config
);
721 show_memory_read_packet_size (char *args
, int from_tty
)
723 show_memory_packet_size (&memory_read_packet_config
);
727 get_memory_read_packet_size (void)
729 long size
= get_memory_packet_size (&memory_read_packet_config
);
730 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
731 extra buffer size argument before the memory read size can be
732 increased beyond this. */
733 if (size
> get_remote_packet_size ())
734 size
= get_remote_packet_size ();
739 /* Generic configuration support for packets the stub optionally
740 supports. Allows the user to specify the use of the packet as well
741 as allowing GDB to auto-detect support in the remote stub. */
745 PACKET_SUPPORT_UNKNOWN
= 0,
754 enum auto_boolean detect
;
755 enum packet_support support
;
758 /* Analyze a packet's return value and update the packet config
769 update_packet_config (struct packet_config
*config
)
771 switch (config
->detect
)
773 case AUTO_BOOLEAN_TRUE
:
774 config
->support
= PACKET_ENABLE
;
776 case AUTO_BOOLEAN_FALSE
:
777 config
->support
= PACKET_DISABLE
;
779 case AUTO_BOOLEAN_AUTO
:
780 config
->support
= PACKET_SUPPORT_UNKNOWN
;
786 show_packet_config_cmd (struct packet_config
*config
)
788 char *support
= "internal-error";
789 switch (config
->support
)
795 support
= "disabled";
797 case PACKET_SUPPORT_UNKNOWN
:
801 switch (config
->detect
)
803 case AUTO_BOOLEAN_AUTO
:
804 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
805 config
->name
, support
);
807 case AUTO_BOOLEAN_TRUE
:
808 case AUTO_BOOLEAN_FALSE
:
809 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
810 config
->name
, support
);
816 add_packet_config_cmd (struct packet_config
*config
, const char *name
,
817 const char *title
, int legacy
)
824 config
->title
= title
;
825 config
->detect
= AUTO_BOOLEAN_AUTO
;
826 config
->support
= PACKET_SUPPORT_UNKNOWN
;
827 set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet",
829 show_doc
= xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
831 /* set/show TITLE-packet {auto,on,off} */
832 cmd_name
= xstrprintf ("%s-packet", title
);
833 add_setshow_auto_boolean_cmd (cmd_name
, class_obscure
,
834 &config
->detect
, set_doc
, show_doc
, NULL
, /* help_doc */
835 set_remote_protocol_packet_cmd
,
836 show_remote_protocol_packet_cmd
,
837 &remote_set_cmdlist
, &remote_show_cmdlist
);
838 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
842 legacy_name
= xstrprintf ("%s-packet", name
);
843 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
844 &remote_set_cmdlist
);
845 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
846 &remote_show_cmdlist
);
850 static enum packet_result
851 packet_check_result (const char *buf
)
855 /* The stub recognized the packet request. Check that the
856 operation succeeded. */
858 && isxdigit (buf
[1]) && isxdigit (buf
[2])
860 /* "Enn" - definitly an error. */
863 /* Always treat "E." as an error. This will be used for
864 more verbose error messages, such as E.memtypes. */
865 if (buf
[0] == 'E' && buf
[1] == '.')
868 /* The packet may or may not be OK. Just assume it is. */
872 /* The stub does not support the packet. */
873 return PACKET_UNKNOWN
;
876 static enum packet_result
877 packet_ok (const char *buf
, struct packet_config
*config
)
879 enum packet_result result
;
881 result
= packet_check_result (buf
);
886 /* The stub recognized the packet request. */
887 switch (config
->support
)
889 case PACKET_SUPPORT_UNKNOWN
:
891 fprintf_unfiltered (gdb_stdlog
,
892 "Packet %s (%s) is supported\n",
893 config
->name
, config
->title
);
894 config
->support
= PACKET_ENABLE
;
897 internal_error (__FILE__
, __LINE__
,
898 _("packet_ok: attempt to use a disabled packet"));
905 /* The stub does not support the packet. */
906 switch (config
->support
)
909 if (config
->detect
== AUTO_BOOLEAN_AUTO
)
910 /* If the stub previously indicated that the packet was
911 supported then there is a protocol error.. */
912 error (_("Protocol error: %s (%s) conflicting enabled responses."),
913 config
->name
, config
->title
);
915 /* The user set it wrong. */
916 error (_("Enabled packet %s (%s) not recognized by stub"),
917 config
->name
, config
->title
);
919 case PACKET_SUPPORT_UNKNOWN
:
921 fprintf_unfiltered (gdb_stdlog
,
922 "Packet %s (%s) is NOT supported\n",
923 config
->name
, config
->title
);
924 config
->support
= PACKET_DISABLE
;
952 PACKET_qXfer_features
,
953 PACKET_qXfer_libraries
,
954 PACKET_qXfer_memory_map
,
955 PACKET_qXfer_spu_read
,
956 PACKET_qXfer_spu_write
,
960 PACKET_qSearch_memory
,
966 static struct packet_config remote_protocol_packets
[PACKET_MAX
];
969 set_remote_protocol_packet_cmd (char *args
, int from_tty
,
970 struct cmd_list_element
*c
)
972 struct packet_config
*packet
;
974 for (packet
= remote_protocol_packets
;
975 packet
< &remote_protocol_packets
[PACKET_MAX
];
978 if (&packet
->detect
== c
->var
)
980 update_packet_config (packet
);
984 internal_error (__FILE__
, __LINE__
, "Could not find config for %s",
989 show_remote_protocol_packet_cmd (struct ui_file
*file
, int from_tty
,
990 struct cmd_list_element
*c
,
993 struct packet_config
*packet
;
995 for (packet
= remote_protocol_packets
;
996 packet
< &remote_protocol_packets
[PACKET_MAX
];
999 if (&packet
->detect
== c
->var
)
1001 show_packet_config_cmd (packet
);
1005 internal_error (__FILE__
, __LINE__
, "Could not find config for %s",
1009 /* Should we try one of the 'Z' requests? */
1013 Z_PACKET_SOFTWARE_BP
,
1014 Z_PACKET_HARDWARE_BP
,
1021 /* For compatibility with older distributions. Provide a ``set remote
1022 Z-packet ...'' command that updates all the Z packet types. */
1024 static enum auto_boolean remote_Z_packet_detect
;
1027 set_remote_protocol_Z_packet_cmd (char *args
, int from_tty
,
1028 struct cmd_list_element
*c
)
1031 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1033 remote_protocol_packets
[PACKET_Z0
+ i
].detect
= remote_Z_packet_detect
;
1034 update_packet_config (&remote_protocol_packets
[PACKET_Z0
+ i
]);
1039 show_remote_protocol_Z_packet_cmd (struct ui_file
*file
, int from_tty
,
1040 struct cmd_list_element
*c
,
1044 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1046 show_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
+ i
]);
1050 /* Should we try the 'ThreadInfo' query packet?
1052 This variable (NOT available to the user: auto-detect only!)
1053 determines whether GDB will use the new, simpler "ThreadInfo"
1054 query or the older, more complex syntax for thread queries.
1055 This is an auto-detect variable (set to true at each connect,
1056 and set to false when the target fails to recognize it). */
1058 static int use_threadinfo_query
;
1059 static int use_threadextra_query
;
1061 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1062 static struct async_signal_handler
*sigint_remote_twice_token
;
1063 static struct async_signal_handler
*sigint_remote_token
;
1067 static ptid_t magic_null_ptid
;
1068 static ptid_t not_sent_ptid
;
1069 static ptid_t any_thread_ptid
;
1071 /* These are the threads which we last sent to the remote system. The
1072 TID member will be -1 for all or -2 for not sent yet. */
1074 static ptid_t general_thread
;
1075 static ptid_t continue_thread
;
1078 /* Call this function as a result of
1079 1) A halt indication (T packet) containing a thread id
1080 2) A direct query of currthread
1081 3) Successful execution of set thread
1085 record_currthread (ptid_t currthread
)
1087 general_thread
= currthread
;
1089 /* If this is a new thread, add it to GDB's thread list.
1090 If we leave it up to WFI to do this, bad things will happen. */
1091 if (!in_thread_list (currthread
))
1093 if (ptid_equal (pid_to_ptid (ptid_get_pid (currthread
)), inferior_ptid
))
1095 /* inferior_ptid has no thread member yet. This can happen
1096 with the vAttach -> remote_wait,"TAAthread:" path if the
1097 stub doesn't support qC. This is the first stop reported
1098 after an attach, so this is the main thread. Update the
1099 ptid in the thread list. */
1100 struct thread_info
*th
= find_thread_pid (inferior_ptid
);
1101 inferior_ptid
= th
->ptid
= currthread
;
1103 else if (ptid_equal (magic_null_ptid
, inferior_ptid
))
1105 /* inferior_ptid is not set yet. This can happen with the
1106 vRun -> remote_wait,"TAAthread:" path if the stub
1107 doesn't support qC. This is the first stop reported
1108 after an attach, so this is the main thread. Update the
1109 ptid in the thread list. */
1110 struct thread_info
*th
= find_thread_pid (inferior_ptid
);
1111 inferior_ptid
= th
->ptid
= currthread
;
1114 /* This is really a new thread. Add it. */
1115 add_thread (currthread
);
1119 static char *last_pass_packet
;
1121 /* If 'QPassSignals' is supported, tell the remote stub what signals
1122 it can simply pass through to the inferior without reporting. */
1125 remote_pass_signals (void)
1127 if (remote_protocol_packets
[PACKET_QPassSignals
].support
!= PACKET_DISABLE
)
1129 char *pass_packet
, *p
;
1130 int numsigs
= (int) TARGET_SIGNAL_LAST
;
1133 gdb_assert (numsigs
< 256);
1134 for (i
= 0; i
< numsigs
; i
++)
1136 if (signal_stop_state (i
) == 0
1137 && signal_print_state (i
) == 0
1138 && signal_pass_state (i
) == 1)
1141 pass_packet
= xmalloc (count
* 3 + strlen ("QPassSignals:") + 1);
1142 strcpy (pass_packet
, "QPassSignals:");
1143 p
= pass_packet
+ strlen (pass_packet
);
1144 for (i
= 0; i
< numsigs
; i
++)
1146 if (signal_stop_state (i
) == 0
1147 && signal_print_state (i
) == 0
1148 && signal_pass_state (i
) == 1)
1151 *p
++ = tohex (i
>> 4);
1152 *p
++ = tohex (i
& 15);
1161 if (!last_pass_packet
|| strcmp (last_pass_packet
, pass_packet
))
1163 struct remote_state
*rs
= get_remote_state ();
1164 char *buf
= rs
->buf
;
1166 putpkt (pass_packet
);
1167 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1168 packet_ok (buf
, &remote_protocol_packets
[PACKET_QPassSignals
]);
1169 if (last_pass_packet
)
1170 xfree (last_pass_packet
);
1171 last_pass_packet
= pass_packet
;
1174 xfree (pass_packet
);
1178 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1179 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1180 thread. If GEN is set, set the general thread, if not, then set
1181 the step/continue thread. */
1183 set_thread (struct ptid ptid
, int gen
)
1185 struct remote_state
*rs
= get_remote_state ();
1186 ptid_t state
= gen
? general_thread
: continue_thread
;
1187 char *buf
= rs
->buf
;
1188 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
1190 if (ptid_equal (state
, ptid
))
1194 *buf
++ = gen
? 'g' : 'c';
1195 if (ptid_equal (ptid
, magic_null_ptid
))
1196 xsnprintf (buf
, endbuf
- buf
, "0");
1197 else if (ptid_equal (ptid
, any_thread_ptid
))
1198 xsnprintf (buf
, endbuf
- buf
, "0");
1199 else if (ptid_equal (ptid
, minus_one_ptid
))
1200 xsnprintf (buf
, endbuf
- buf
, "-1");
1203 int tid
= ptid_get_tid (ptid
);
1205 xsnprintf (buf
, endbuf
- buf
, "-%x", -tid
);
1207 xsnprintf (buf
, endbuf
- buf
, "%x", tid
);
1210 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1212 general_thread
= ptid
;
1214 continue_thread
= ptid
;
1218 set_general_thread (struct ptid ptid
)
1220 set_thread (ptid
, 1);
1224 set_continue_thread (struct ptid ptid
)
1226 set_thread (ptid
, 0);
1230 /* Return nonzero if the thread PTID is still alive on the remote
1234 remote_thread_alive (ptid_t ptid
)
1236 struct remote_state
*rs
= get_remote_state ();
1237 int tid
= ptid_get_tid (ptid
);
1239 if (ptid_equal (ptid
, magic_null_ptid
))
1240 /* The main thread is always alive. */
1243 if (ptid_get_pid (ptid
) != 0 && ptid_get_tid (ptid
) == 0)
1244 /* The main thread is always alive. This can happen after a
1245 vAttach, if the remote side doesn't support
1250 xsnprintf (rs
->buf
, get_remote_packet_size (), "T-%08x", -tid
);
1252 xsnprintf (rs
->buf
, get_remote_packet_size (), "T%08x", tid
);
1254 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1255 return (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K');
1258 /* About these extended threadlist and threadinfo packets. They are
1259 variable length packets but, the fields within them are often fixed
1260 length. They are redundent enough to send over UDP as is the
1261 remote protocol in general. There is a matching unit test module
1264 #define OPAQUETHREADBYTES 8
1266 /* a 64 bit opaque identifier */
1267 typedef unsigned char threadref
[OPAQUETHREADBYTES
];
1269 /* WARNING: This threadref data structure comes from the remote O.S.,
1270 libstub protocol encoding, and remote.c. it is not particularly
1273 /* Right now, the internal structure is int. We want it to be bigger.
1277 typedef int gdb_threadref
; /* Internal GDB thread reference. */
1279 /* gdb_ext_thread_info is an internal GDB data structure which is
1280 equivalent to the reply of the remote threadinfo packet. */
1282 struct gdb_ext_thread_info
1284 threadref threadid
; /* External form of thread reference. */
1285 int active
; /* Has state interesting to GDB?
1287 char display
[256]; /* Brief state display, name,
1288 blocked/suspended. */
1289 char shortname
[32]; /* To be used to name threads. */
1290 char more_display
[256]; /* Long info, statistics, queue depth,
1294 /* The volume of remote transfers can be limited by submitting
1295 a mask containing bits specifying the desired information.
1296 Use a union of these values as the 'selection' parameter to
1297 get_thread_info. FIXME: Make these TAG names more thread specific.
1300 #define TAG_THREADID 1
1301 #define TAG_EXISTS 2
1302 #define TAG_DISPLAY 4
1303 #define TAG_THREADNAME 8
1304 #define TAG_MOREDISPLAY 16
1306 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1308 char *unpack_varlen_hex (char *buff
, ULONGEST
*result
);
1310 static char *unpack_nibble (char *buf
, int *val
);
1312 static char *pack_nibble (char *buf
, int nibble
);
1314 static char *pack_hex_byte (char *pkt
, int /* unsigned char */ byte
);
1316 static char *unpack_byte (char *buf
, int *value
);
1318 static char *pack_int (char *buf
, int value
);
1320 static char *unpack_int (char *buf
, int *value
);
1322 static char *unpack_string (char *src
, char *dest
, int length
);
1324 static char *pack_threadid (char *pkt
, threadref
*id
);
1326 static char *unpack_threadid (char *inbuf
, threadref
*id
);
1328 void int_to_threadref (threadref
*id
, int value
);
1330 static int threadref_to_int (threadref
*ref
);
1332 static void copy_threadref (threadref
*dest
, threadref
*src
);
1334 static int threadmatch (threadref
*dest
, threadref
*src
);
1336 static char *pack_threadinfo_request (char *pkt
, int mode
,
1339 static int remote_unpack_thread_info_response (char *pkt
,
1340 threadref
*expectedref
,
1341 struct gdb_ext_thread_info
1345 static int remote_get_threadinfo (threadref
*threadid
,
1346 int fieldset
, /*TAG mask */
1347 struct gdb_ext_thread_info
*info
);
1349 static char *pack_threadlist_request (char *pkt
, int startflag
,
1351 threadref
*nextthread
);
1353 static int parse_threadlist_response (char *pkt
,
1355 threadref
*original_echo
,
1356 threadref
*resultlist
,
1359 static int remote_get_threadlist (int startflag
,
1360 threadref
*nextthread
,
1364 threadref
*threadlist
);
1366 typedef int (*rmt_thread_action
) (threadref
*ref
, void *context
);
1368 static int remote_threadlist_iterator (rmt_thread_action stepfunction
,
1369 void *context
, int looplimit
);
1371 static int remote_newthread_step (threadref
*ref
, void *context
);
1373 /* Encode 64 bits in 16 chars of hex. */
1375 static const char hexchars
[] = "0123456789abcdef";
1378 ishex (int ch
, int *val
)
1380 if ((ch
>= 'a') && (ch
<= 'f'))
1382 *val
= ch
- 'a' + 10;
1385 if ((ch
>= 'A') && (ch
<= 'F'))
1387 *val
= ch
- 'A' + 10;
1390 if ((ch
>= '0') && (ch
<= '9'))
1401 if (ch
>= 'a' && ch
<= 'f')
1402 return ch
- 'a' + 10;
1403 if (ch
>= '0' && ch
<= '9')
1405 if (ch
>= 'A' && ch
<= 'F')
1406 return ch
- 'A' + 10;
1411 stub_unpack_int (char *buff
, int fieldlength
)
1418 nibble
= stubhex (*buff
++);
1422 retval
= retval
<< 4;
1428 unpack_varlen_hex (char *buff
, /* packet to parse */
1432 ULONGEST retval
= 0;
1434 while (ishex (*buff
, &nibble
))
1437 retval
= retval
<< 4;
1438 retval
|= nibble
& 0x0f;
1445 unpack_nibble (char *buf
, int *val
)
1447 *val
= fromhex (*buf
++);
1452 pack_nibble (char *buf
, int nibble
)
1454 *buf
++ = hexchars
[(nibble
& 0x0f)];
1459 pack_hex_byte (char *pkt
, int byte
)
1461 *pkt
++ = hexchars
[(byte
>> 4) & 0xf];
1462 *pkt
++ = hexchars
[(byte
& 0xf)];
1467 unpack_byte (char *buf
, int *value
)
1469 *value
= stub_unpack_int (buf
, 2);
1474 pack_int (char *buf
, int value
)
1476 buf
= pack_hex_byte (buf
, (value
>> 24) & 0xff);
1477 buf
= pack_hex_byte (buf
, (value
>> 16) & 0xff);
1478 buf
= pack_hex_byte (buf
, (value
>> 8) & 0x0ff);
1479 buf
= pack_hex_byte (buf
, (value
& 0xff));
1484 unpack_int (char *buf
, int *value
)
1486 *value
= stub_unpack_int (buf
, 8);
1490 #if 0 /* Currently unused, uncomment when needed. */
1491 static char *pack_string (char *pkt
, char *string
);
1494 pack_string (char *pkt
, char *string
)
1499 len
= strlen (string
);
1501 len
= 200; /* Bigger than most GDB packets, junk??? */
1502 pkt
= pack_hex_byte (pkt
, len
);
1506 if ((ch
== '\0') || (ch
== '#'))
1507 ch
= '*'; /* Protect encapsulation. */
1512 #endif /* 0 (unused) */
1515 unpack_string (char *src
, char *dest
, int length
)
1524 pack_threadid (char *pkt
, threadref
*id
)
1527 unsigned char *altid
;
1529 altid
= (unsigned char *) id
;
1530 limit
= pkt
+ BUF_THREAD_ID_SIZE
;
1532 pkt
= pack_hex_byte (pkt
, *altid
++);
1538 unpack_threadid (char *inbuf
, threadref
*id
)
1541 char *limit
= inbuf
+ BUF_THREAD_ID_SIZE
;
1544 altref
= (char *) id
;
1546 while (inbuf
< limit
)
1548 x
= stubhex (*inbuf
++);
1549 y
= stubhex (*inbuf
++);
1550 *altref
++ = (x
<< 4) | y
;
1555 /* Externally, threadrefs are 64 bits but internally, they are still
1556 ints. This is due to a mismatch of specifications. We would like
1557 to use 64bit thread references internally. This is an adapter
1561 int_to_threadref (threadref
*id
, int value
)
1563 unsigned char *scan
;
1565 scan
= (unsigned char *) id
;
1571 *scan
++ = (value
>> 24) & 0xff;
1572 *scan
++ = (value
>> 16) & 0xff;
1573 *scan
++ = (value
>> 8) & 0xff;
1574 *scan
++ = (value
& 0xff);
1578 threadref_to_int (threadref
*ref
)
1581 unsigned char *scan
;
1587 value
= (value
<< 8) | ((*scan
++) & 0xff);
1592 copy_threadref (threadref
*dest
, threadref
*src
)
1595 unsigned char *csrc
, *cdest
;
1597 csrc
= (unsigned char *) src
;
1598 cdest
= (unsigned char *) dest
;
1605 threadmatch (threadref
*dest
, threadref
*src
)
1607 /* Things are broken right now, so just assume we got a match. */
1609 unsigned char *srcp
, *destp
;
1611 srcp
= (char *) src
;
1612 destp
= (char *) dest
;
1616 result
&= (*srcp
++ == *destp
++) ? 1 : 0;
1623 threadid:1, # always request threadid
1630 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1633 pack_threadinfo_request (char *pkt
, int mode
, threadref
*id
)
1635 *pkt
++ = 'q'; /* Info Query */
1636 *pkt
++ = 'P'; /* process or thread info */
1637 pkt
= pack_int (pkt
, mode
); /* mode */
1638 pkt
= pack_threadid (pkt
, id
); /* threadid */
1639 *pkt
= '\0'; /* terminate */
1643 /* These values tag the fields in a thread info response packet. */
1644 /* Tagging the fields allows us to request specific fields and to
1645 add more fields as time goes by. */
1647 #define TAG_THREADID 1 /* Echo the thread identifier. */
1648 #define TAG_EXISTS 2 /* Is this process defined enough to
1649 fetch registers and its stack? */
1650 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1651 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
1652 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1656 remote_unpack_thread_info_response (char *pkt
, threadref
*expectedref
,
1657 struct gdb_ext_thread_info
*info
)
1659 struct remote_state
*rs
= get_remote_state ();
1663 char *limit
= pkt
+ rs
->buf_size
; /* Plausible parsing limit. */
1666 /* info->threadid = 0; FIXME: implement zero_threadref. */
1668 info
->display
[0] = '\0';
1669 info
->shortname
[0] = '\0';
1670 info
->more_display
[0] = '\0';
1672 /* Assume the characters indicating the packet type have been
1674 pkt
= unpack_int (pkt
, &mask
); /* arg mask */
1675 pkt
= unpack_threadid (pkt
, &ref
);
1678 warning (_("Incomplete response to threadinfo request."));
1679 if (!threadmatch (&ref
, expectedref
))
1680 { /* This is an answer to a different request. */
1681 warning (_("ERROR RMT Thread info mismatch."));
1684 copy_threadref (&info
->threadid
, &ref
);
1686 /* Loop on tagged fields , try to bail if somthing goes wrong. */
1688 /* Packets are terminated with nulls. */
1689 while ((pkt
< limit
) && mask
&& *pkt
)
1691 pkt
= unpack_int (pkt
, &tag
); /* tag */
1692 pkt
= unpack_byte (pkt
, &length
); /* length */
1693 if (!(tag
& mask
)) /* Tags out of synch with mask. */
1695 warning (_("ERROR RMT: threadinfo tag mismatch."));
1699 if (tag
== TAG_THREADID
)
1703 warning (_("ERROR RMT: length of threadid is not 16."));
1707 pkt
= unpack_threadid (pkt
, &ref
);
1708 mask
= mask
& ~TAG_THREADID
;
1711 if (tag
== TAG_EXISTS
)
1713 info
->active
= stub_unpack_int (pkt
, length
);
1715 mask
= mask
& ~(TAG_EXISTS
);
1718 warning (_("ERROR RMT: 'exists' length too long."));
1724 if (tag
== TAG_THREADNAME
)
1726 pkt
= unpack_string (pkt
, &info
->shortname
[0], length
);
1727 mask
= mask
& ~TAG_THREADNAME
;
1730 if (tag
== TAG_DISPLAY
)
1732 pkt
= unpack_string (pkt
, &info
->display
[0], length
);
1733 mask
= mask
& ~TAG_DISPLAY
;
1736 if (tag
== TAG_MOREDISPLAY
)
1738 pkt
= unpack_string (pkt
, &info
->more_display
[0], length
);
1739 mask
= mask
& ~TAG_MOREDISPLAY
;
1742 warning (_("ERROR RMT: unknown thread info tag."));
1743 break; /* Not a tag we know about. */
1749 remote_get_threadinfo (threadref
*threadid
, int fieldset
, /* TAG mask */
1750 struct gdb_ext_thread_info
*info
)
1752 struct remote_state
*rs
= get_remote_state ();
1755 pack_threadinfo_request (rs
->buf
, fieldset
, threadid
);
1757 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1758 result
= remote_unpack_thread_info_response (rs
->buf
+ 2,
1763 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1766 pack_threadlist_request (char *pkt
, int startflag
, int threadcount
,
1767 threadref
*nextthread
)
1769 *pkt
++ = 'q'; /* info query packet */
1770 *pkt
++ = 'L'; /* Process LIST or threadLIST request */
1771 pkt
= pack_nibble (pkt
, startflag
); /* initflag 1 bytes */
1772 pkt
= pack_hex_byte (pkt
, threadcount
); /* threadcount 2 bytes */
1773 pkt
= pack_threadid (pkt
, nextthread
); /* 64 bit thread identifier */
1778 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1781 parse_threadlist_response (char *pkt
, int result_limit
,
1782 threadref
*original_echo
, threadref
*resultlist
,
1785 struct remote_state
*rs
= get_remote_state ();
1787 int count
, resultcount
, done
;
1790 /* Assume the 'q' and 'M chars have been stripped. */
1791 limit
= pkt
+ (rs
->buf_size
- BUF_THREAD_ID_SIZE
);
1792 /* done parse past here */
1793 pkt
= unpack_byte (pkt
, &count
); /* count field */
1794 pkt
= unpack_nibble (pkt
, &done
);
1795 /* The first threadid is the argument threadid. */
1796 pkt
= unpack_threadid (pkt
, original_echo
); /* should match query packet */
1797 while ((count
-- > 0) && (pkt
< limit
))
1799 pkt
= unpack_threadid (pkt
, resultlist
++);
1800 if (resultcount
++ >= result_limit
)
1809 remote_get_threadlist (int startflag
, threadref
*nextthread
, int result_limit
,
1810 int *done
, int *result_count
, threadref
*threadlist
)
1812 struct remote_state
*rs
= get_remote_state ();
1813 static threadref echo_nextthread
;
1816 /* Trancate result limit to be smaller than the packet size. */
1817 if ((((result_limit
+ 1) * BUF_THREAD_ID_SIZE
) + 10) >= get_remote_packet_size ())
1818 result_limit
= (get_remote_packet_size () / BUF_THREAD_ID_SIZE
) - 2;
1820 pack_threadlist_request (rs
->buf
, startflag
, result_limit
, nextthread
);
1822 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1824 if (*rs
->buf
== '\0')
1828 parse_threadlist_response (rs
->buf
+ 2, result_limit
, &echo_nextthread
,
1831 if (!threadmatch (&echo_nextthread
, nextthread
))
1833 /* FIXME: This is a good reason to drop the packet. */
1834 /* Possably, there is a duplicate response. */
1836 retransmit immediatly - race conditions
1837 retransmit after timeout - yes
1839 wait for packet, then exit
1841 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
1842 return 0; /* I choose simply exiting. */
1844 if (*result_count
<= 0)
1848 warning (_("RMT ERROR : failed to get remote thread list."));
1851 return result
; /* break; */
1853 if (*result_count
> result_limit
)
1856 warning (_("RMT ERROR: threadlist response longer than requested."));
1862 /* This is the interface between remote and threads, remotes upper
1865 /* remote_find_new_threads retrieves the thread list and for each
1866 thread in the list, looks up the thread in GDB's internal list,
1867 adding the thread if it does not already exist. This involves
1868 getting partial thread lists from the remote target so, polling the
1869 quit_flag is required. */
1872 /* About this many threadisds fit in a packet. */
1874 #define MAXTHREADLISTRESULTS 32
1877 remote_threadlist_iterator (rmt_thread_action stepfunction
, void *context
,
1880 int done
, i
, result_count
;
1884 static threadref nextthread
;
1885 static threadref resultthreadlist
[MAXTHREADLISTRESULTS
];
1890 if (loopcount
++ > looplimit
)
1893 warning (_("Remote fetch threadlist -infinite loop-."));
1896 if (!remote_get_threadlist (startflag
, &nextthread
, MAXTHREADLISTRESULTS
,
1897 &done
, &result_count
, resultthreadlist
))
1902 /* Clear for later iterations. */
1904 /* Setup to resume next batch of thread references, set nextthread. */
1905 if (result_count
>= 1)
1906 copy_threadref (&nextthread
, &resultthreadlist
[result_count
- 1]);
1908 while (result_count
--)
1909 if (!(result
= (*stepfunction
) (&resultthreadlist
[i
++], context
)))
1916 remote_newthread_step (threadref
*ref
, void *context
)
1918 int pid
= ptid_get_pid (inferior_ptid
);
1919 ptid_t ptid
= ptid_build (pid
, 0, threadref_to_int (ref
));
1921 if (!in_thread_list (ptid
))
1923 return 1; /* continue iterator */
1926 #define CRAZY_MAX_THREADS 1000
1929 remote_current_thread (ptid_t oldpid
)
1931 struct remote_state
*rs
= get_remote_state ();
1937 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1938 if (rs
->buf
[0] == 'Q' && rs
->buf
[1] == 'C')
1940 /* Use strtoul here, so we'll correctly parse values whose
1941 highest bit is set. The protocol carries them as a simple
1942 series of hex digits; in the absence of a sign, strtol will
1943 see such values as positive numbers out of range for signed
1944 'long', and return LONG_MAX to indicate an overflow. */
1945 tid
= strtoul (&rs
->buf
[2], NULL
, 16);
1946 pid
= ptid_get_pid (oldpid
);
1947 return ptid_build (pid
, 0, tid
);
1953 /* Find new threads for info threads command.
1954 * Original version, using John Metzler's thread protocol.
1958 remote_find_new_threads (void)
1960 remote_threadlist_iterator (remote_newthread_step
, 0,
1965 * Find all threads for info threads command.
1966 * Uses new thread protocol contributed by Cisco.
1967 * Falls back and attempts to use the older method (above)
1968 * if the target doesn't respond to the new method.
1972 remote_threads_info (void)
1974 struct remote_state
*rs
= get_remote_state ();
1980 if (remote_desc
== 0) /* paranoia */
1981 error (_("Command can only be used when connected to the remote target."));
1983 if (use_threadinfo_query
)
1985 putpkt ("qfThreadInfo");
1986 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1988 if (bufp
[0] != '\0') /* q packet recognized */
1990 while (*bufp
++ == 'm') /* reply contains one or more TID */
1994 /* Use strtoul here, so we'll correctly parse values
1995 whose highest bit is set. The protocol carries
1996 them as a simple series of hex digits; in the
1997 absence of a sign, strtol will see such values as
1998 positive numbers out of range for signed 'long',
1999 and return LONG_MAX to indicate an overflow. */
2000 tid
= strtoul (bufp
, &bufp
, 16);
2001 pid
= ptid_get_pid (inferior_ptid
);
2002 new_thread
= ptid_build (pid
, 0, tid
);
2003 if (tid
!= 0 && !in_thread_list (new_thread
))
2004 add_thread (new_thread
);
2006 while (*bufp
++ == ','); /* comma-separated list */
2007 putpkt ("qsThreadInfo");
2008 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2015 /* Else fall back to old method based on jmetzler protocol. */
2016 use_threadinfo_query
= 0;
2017 remote_find_new_threads ();
2022 * Collect a descriptive string about the given thread.
2023 * The target may say anything it wants to about the thread
2024 * (typically info about its blocked / runnable state, name, etc.).
2025 * This string will appear in the info threads display.
2027 * Optional: targets are not required to implement this function.
2031 remote_threads_extra_info (struct thread_info
*tp
)
2033 struct remote_state
*rs
= get_remote_state ();
2037 struct gdb_ext_thread_info threadinfo
;
2038 static char display_buf
[100]; /* arbitrary... */
2039 int n
= 0; /* position in display_buf */
2041 if (remote_desc
== 0) /* paranoia */
2042 internal_error (__FILE__
, __LINE__
,
2043 _("remote_threads_extra_info"));
2045 if (use_threadextra_query
)
2047 xsnprintf (rs
->buf
, get_remote_packet_size (), "qThreadExtraInfo,%lx",
2048 ptid_get_tid (tp
->ptid
));
2050 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2051 if (rs
->buf
[0] != 0)
2053 n
= min (strlen (rs
->buf
) / 2, sizeof (display_buf
));
2054 result
= hex2bin (rs
->buf
, (gdb_byte
*) display_buf
, n
);
2055 display_buf
[result
] = '\0';
2060 /* If the above query fails, fall back to the old method. */
2061 use_threadextra_query
= 0;
2062 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
2063 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
2064 int_to_threadref (&id
, ptid_get_tid (tp
->ptid
));
2065 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
2066 if (threadinfo
.active
)
2068 if (*threadinfo
.shortname
)
2069 n
+= xsnprintf (&display_buf
[0], sizeof (display_buf
) - n
,
2070 " Name: %s,", threadinfo
.shortname
);
2071 if (*threadinfo
.display
)
2072 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2073 " State: %s,", threadinfo
.display
);
2074 if (*threadinfo
.more_display
)
2075 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2076 " Priority: %s", threadinfo
.more_display
);
2080 /* For purely cosmetic reasons, clear up trailing commas. */
2081 if (',' == display_buf
[n
-1])
2082 display_buf
[n
-1] = ' ';
2090 /* Restart the remote side; this is an extended protocol operation. */
2093 extended_remote_restart (void)
2095 struct remote_state
*rs
= get_remote_state ();
2097 /* Send the restart command; for reasons I don't understand the
2098 remote side really expects a number after the "R". */
2099 xsnprintf (rs
->buf
, get_remote_packet_size (), "R%x", 0);
2102 remote_fileio_reset ();
2105 /* Clean up connection to a remote debugger. */
2108 remote_close (int quitting
)
2111 serial_close (remote_desc
);
2115 /* Query the remote side for the text, data and bss offsets. */
2120 struct remote_state
*rs
= get_remote_state ();
2123 int lose
, num_segments
= 0, do_sections
, do_segments
;
2124 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
2125 struct section_offsets
*offs
;
2126 struct symfile_segment_data
*data
;
2128 if (symfile_objfile
== NULL
)
2131 putpkt ("qOffsets");
2132 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2135 if (buf
[0] == '\000')
2136 return; /* Return silently. Stub doesn't support
2140 warning (_("Remote failure reply: %s"), buf
);
2144 /* Pick up each field in turn. This used to be done with scanf, but
2145 scanf will make trouble if CORE_ADDR size doesn't match
2146 conversion directives correctly. The following code will work
2147 with any size of CORE_ADDR. */
2148 text_addr
= data_addr
= bss_addr
= 0;
2152 if (strncmp (ptr
, "Text=", 5) == 0)
2155 /* Don't use strtol, could lose on big values. */
2156 while (*ptr
&& *ptr
!= ';')
2157 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
2159 if (strncmp (ptr
, ";Data=", 6) == 0)
2162 while (*ptr
&& *ptr
!= ';')
2163 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
2168 if (!lose
&& strncmp (ptr
, ";Bss=", 5) == 0)
2171 while (*ptr
&& *ptr
!= ';')
2172 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
2174 if (bss_addr
!= data_addr
)
2175 warning (_("Target reported unsupported offsets: %s"), buf
);
2180 else if (strncmp (ptr
, "TextSeg=", 8) == 0)
2183 /* Don't use strtol, could lose on big values. */
2184 while (*ptr
&& *ptr
!= ';')
2185 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
2188 if (strncmp (ptr
, ";DataSeg=", 9) == 0)
2191 while (*ptr
&& *ptr
!= ';')
2192 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
2200 error (_("Malformed response to offset query, %s"), buf
);
2201 else if (*ptr
!= '\0')
2202 warning (_("Target reported unsupported offsets: %s"), buf
);
2204 offs
= ((struct section_offsets
*)
2205 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
2206 memcpy (offs
, symfile_objfile
->section_offsets
,
2207 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
2209 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
2210 do_segments
= (data
!= NULL
);
2211 do_sections
= num_segments
== 0;
2213 if (num_segments
> 0)
2215 segments
[0] = text_addr
;
2216 segments
[1] = data_addr
;
2218 /* If we have two segments, we can still try to relocate everything
2219 by assuming that the .text and .data offsets apply to the whole
2220 text and data segments. Convert the offsets given in the packet
2221 to base addresses for symfile_map_offsets_to_segments. */
2222 else if (data
&& data
->num_segments
== 2)
2224 segments
[0] = data
->segment_bases
[0] + text_addr
;
2225 segments
[1] = data
->segment_bases
[1] + data_addr
;
2228 /* If the object file has only one segment, assume that it is text
2229 rather than data; main programs with no writable data are rare,
2230 but programs with no code are useless. Of course the code might
2231 have ended up in the data segment... to detect that we would need
2232 the permissions here. */
2233 else if (data
&& data
->num_segments
== 1)
2235 segments
[0] = data
->segment_bases
[0] + text_addr
;
2238 /* There's no way to relocate by segment. */
2244 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
2245 offs
, num_segments
, segments
);
2247 if (ret
== 0 && !do_sections
)
2248 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2255 free_symfile_segment_data (data
);
2259 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
2261 /* This is a temporary kludge to force data and bss to use the same offsets
2262 because that's what nlmconv does now. The real solution requires changes
2263 to the stub and remote.c that I don't have time to do right now. */
2265 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
2266 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
2269 objfile_relocate (symfile_objfile
, offs
);
2272 /* Stub for catch_exception. */
2274 struct start_remote_args
2278 /* The current target. */
2279 struct target_ops
*target
;
2281 /* Non-zero if this is an extended-remote target. */
2286 remote_start_remote (struct ui_out
*uiout
, void *opaque
)
2288 struct remote_state
*rs
= get_remote_state ();
2289 struct start_remote_args
*args
= opaque
;
2290 char *wait_status
= NULL
;
2292 immediate_quit
++; /* Allow user to interrupt it. */
2294 /* Ack any packet which the remote side has already sent. */
2295 serial_write (remote_desc
, "+", 1);
2297 /* Check whether the target is running now. */
2299 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2301 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
2303 if (args
->extended_p
)
2305 /* We're connected, but not running. Drop out before we
2306 call start_remote. */
2307 target_mark_exited (args
->target
);
2311 error (_("The target is not running (try extended-remote?)"));
2315 if (args
->extended_p
)
2316 target_mark_running (args
->target
);
2318 /* Save the reply for later. */
2319 wait_status
= alloca (strlen (rs
->buf
) + 1);
2320 strcpy (wait_status
, rs
->buf
);
2324 init_thread_list ();
2326 /* Let the stub know that we want it to return the thread. */
2327 set_continue_thread (minus_one_ptid
);
2329 /* Without this, some commands which require an active target
2330 (such as kill) won't work. This variable serves (at least)
2331 double duty as both the pid of the target process (if it has
2332 such), and as a flag indicating that a target is active.
2333 These functions should be split out into seperate variables,
2334 especially since GDB will someday have a notion of debugging
2335 several processes. */
2336 inferior_ptid
= magic_null_ptid
;
2338 /* Now, if we have thread information, update inferior_ptid. */
2339 inferior_ptid
= remote_current_thread (inferior_ptid
);
2341 /* Always add the main thread. */
2342 add_thread_silent (inferior_ptid
);
2344 get_offsets (); /* Get text, data & bss offsets. */
2346 /* Use the previously fetched status. */
2347 gdb_assert (wait_status
!= NULL
);
2348 strcpy (rs
->buf
, wait_status
);
2349 rs
->cached_wait_status
= 1;
2352 start_remote (args
->from_tty
); /* Initialize gdb process mechanisms. */
2355 /* Open a connection to a remote debugger.
2356 NAME is the filename used for communication. */
2359 remote_open (char *name
, int from_tty
)
2361 remote_open_1 (name
, from_tty
, &remote_ops
, 0);
2364 /* Open a connection to a remote debugger using the extended
2365 remote gdb protocol. NAME is the filename used for communication. */
2368 extended_remote_open (char *name
, int from_tty
)
2370 remote_open_1 (name
, from_tty
, &extended_remote_ops
, 1 /*extended_p */);
2373 /* Generic code for opening a connection to a remote target. */
2376 init_all_packet_configs (void)
2379 for (i
= 0; i
< PACKET_MAX
; i
++)
2380 update_packet_config (&remote_protocol_packets
[i
]);
2383 /* Symbol look-up. */
2386 remote_check_symbols (struct objfile
*objfile
)
2388 struct remote_state
*rs
= get_remote_state ();
2389 char *msg
, *reply
, *tmp
;
2390 struct minimal_symbol
*sym
;
2393 if (remote_protocol_packets
[PACKET_qSymbol
].support
== PACKET_DISABLE
)
2396 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2397 because we need both at the same time. */
2398 msg
= alloca (get_remote_packet_size ());
2400 /* Invite target to request symbol lookups. */
2402 putpkt ("qSymbol::");
2403 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2404 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSymbol
]);
2407 while (strncmp (reply
, "qSymbol:", 8) == 0)
2410 end
= hex2bin (tmp
, (gdb_byte
*) msg
, strlen (tmp
) / 2);
2412 sym
= lookup_minimal_symbol (msg
, NULL
, NULL
);
2414 xsnprintf (msg
, get_remote_packet_size (), "qSymbol::%s", &reply
[8]);
2417 CORE_ADDR sym_addr
= SYMBOL_VALUE_ADDRESS (sym
);
2419 /* If this is a function address, return the start of code
2420 instead of any data function descriptor. */
2421 sym_addr
= gdbarch_convert_from_func_ptr_addr (current_gdbarch
,
2425 xsnprintf (msg
, get_remote_packet_size (), "qSymbol:%s:%s",
2426 paddr_nz (sym_addr
), &reply
[8]);
2430 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2435 static struct serial
*
2436 remote_serial_open (char *name
)
2438 static int udp_warning
= 0;
2440 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2441 of in ser-tcp.c, because it is the remote protocol assuming that the
2442 serial connection is reliable and not the serial connection promising
2444 if (!udp_warning
&& strncmp (name
, "udp:", 4) == 0)
2447 The remote protocol may be unreliable over UDP.\n\
2448 Some events may be lost, rendering further debugging impossible."));
2452 return serial_open (name
);
2455 /* This type describes each known response to the qSupported
2457 struct protocol_feature
2459 /* The name of this protocol feature. */
2462 /* The default for this protocol feature. */
2463 enum packet_support default_support
;
2465 /* The function to call when this feature is reported, or after
2466 qSupported processing if the feature is not supported.
2467 The first argument points to this structure. The second
2468 argument indicates whether the packet requested support be
2469 enabled, disabled, or probed (or the default, if this function
2470 is being called at the end of processing and this feature was
2471 not reported). The third argument may be NULL; if not NULL, it
2472 is a NUL-terminated string taken from the packet following
2473 this feature's name and an equals sign. */
2474 void (*func
) (const struct protocol_feature
*, enum packet_support
,
2477 /* The corresponding packet for this feature. Only used if
2478 FUNC is remote_supported_packet. */
2483 remote_supported_packet (const struct protocol_feature
*feature
,
2484 enum packet_support support
,
2485 const char *argument
)
2489 warning (_("Remote qSupported response supplied an unexpected value for"
2490 " \"%s\"."), feature
->name
);
2494 if (remote_protocol_packets
[feature
->packet
].support
2495 == PACKET_SUPPORT_UNKNOWN
)
2496 remote_protocol_packets
[feature
->packet
].support
= support
;
2500 remote_packet_size (const struct protocol_feature
*feature
,
2501 enum packet_support support
, const char *value
)
2503 struct remote_state
*rs
= get_remote_state ();
2508 if (support
!= PACKET_ENABLE
)
2511 if (value
== NULL
|| *value
== '\0')
2513 warning (_("Remote target reported \"%s\" without a size."),
2519 packet_size
= strtol (value
, &value_end
, 16);
2520 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
2522 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2523 feature
->name
, value
);
2527 if (packet_size
> MAX_REMOTE_PACKET_SIZE
)
2529 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2530 packet_size
, MAX_REMOTE_PACKET_SIZE
);
2531 packet_size
= MAX_REMOTE_PACKET_SIZE
;
2534 /* Record the new maximum packet size. */
2535 rs
->explicit_packet_size
= packet_size
;
2538 static struct protocol_feature remote_protocol_features
[] = {
2539 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
2540 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
2541 PACKET_qXfer_auxv
},
2542 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
2543 PACKET_qXfer_features
},
2544 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
2545 PACKET_qXfer_libraries
},
2546 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
2547 PACKET_qXfer_memory_map
},
2548 { "qXfer:spu:read", PACKET_DISABLE
, remote_supported_packet
,
2549 PACKET_qXfer_spu_read
},
2550 { "qXfer:spu:write", PACKET_DISABLE
, remote_supported_packet
,
2551 PACKET_qXfer_spu_write
},
2552 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
2553 PACKET_QPassSignals
},
2557 remote_query_supported (void)
2559 struct remote_state
*rs
= get_remote_state ();
2562 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
2564 /* The packet support flags are handled differently for this packet
2565 than for most others. We treat an error, a disabled packet, and
2566 an empty response identically: any features which must be reported
2567 to be used will be automatically disabled. An empty buffer
2568 accomplishes this, since that is also the representation for a list
2569 containing no features. */
2572 if (remote_protocol_packets
[PACKET_qSupported
].support
!= PACKET_DISABLE
)
2574 putpkt ("qSupported");
2575 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2577 /* If an error occured, warn, but do not return - just reset the
2578 buffer to empty and go on to disable features. */
2579 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
2582 warning (_("Remote failure reply: %s"), rs
->buf
);
2587 memset (seen
, 0, sizeof (seen
));
2592 enum packet_support is_supported
;
2593 char *p
, *end
, *name_end
, *value
;
2595 /* First separate out this item from the rest of the packet. If
2596 there's another item after this, we overwrite the separator
2597 (terminated strings are much easier to work with). */
2599 end
= strchr (p
, ';');
2602 end
= p
+ strlen (p
);
2612 warning (_("empty item in \"qSupported\" response"));
2617 name_end
= strchr (p
, '=');
2620 /* This is a name=value entry. */
2621 is_supported
= PACKET_ENABLE
;
2622 value
= name_end
+ 1;
2631 is_supported
= PACKET_ENABLE
;
2635 is_supported
= PACKET_DISABLE
;
2639 is_supported
= PACKET_SUPPORT_UNKNOWN
;
2643 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p
);
2649 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
2650 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
2652 const struct protocol_feature
*feature
;
2655 feature
= &remote_protocol_features
[i
];
2656 feature
->func (feature
, is_supported
, value
);
2661 /* If we increased the packet size, make sure to increase the global
2662 buffer size also. We delay this until after parsing the entire
2663 qSupported packet, because this is the same buffer we were
2665 if (rs
->buf_size
< rs
->explicit_packet_size
)
2667 rs
->buf_size
= rs
->explicit_packet_size
;
2668 rs
->buf
= xrealloc (rs
->buf
, rs
->buf_size
);
2671 /* Handle the defaults for unmentioned features. */
2672 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
2675 const struct protocol_feature
*feature
;
2677 feature
= &remote_protocol_features
[i
];
2678 feature
->func (feature
, feature
->default_support
, NULL
);
2684 remote_open_1 (char *name
, int from_tty
, struct target_ops
*target
, int extended_p
)
2686 struct remote_state
*rs
= get_remote_state ();
2688 error (_("To open a remote debug connection, you need to specify what\n"
2689 "serial device is attached to the remote system\n"
2690 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
2692 /* See FIXME above. */
2693 if (!remote_async_permitted
)
2694 wait_forever_enabled_p
= 1;
2696 /* If we're connected to a running target, target_preopen will kill it.
2697 But if we're connected to a target system with no running process,
2698 then we will still be connected when it returns. Ask this question
2699 first, before target_preopen has a chance to kill anything. */
2700 if (remote_desc
!= NULL
&& !target_has_execution
)
2703 || query (_("Already connected to a remote target. Disconnect? ")))
2706 error (_("Still connected."));
2709 target_preopen (from_tty
);
2711 unpush_target (target
);
2713 /* This time without a query. If we were connected to an
2714 extended-remote target and target_preopen killed the running
2715 process, we may still be connected. If we are starting "target
2716 remote" now, the extended-remote target will not have been
2717 removed by unpush_target. */
2718 if (remote_desc
!= NULL
&& !target_has_execution
)
2721 /* Make sure we send the passed signals list the next time we resume. */
2722 xfree (last_pass_packet
);
2723 last_pass_packet
= NULL
;
2725 remote_fileio_reset ();
2726 reopen_exec_file ();
2729 remote_desc
= remote_serial_open (name
);
2731 perror_with_name (name
);
2733 if (baud_rate
!= -1)
2735 if (serial_setbaudrate (remote_desc
, baud_rate
))
2737 /* The requested speed could not be set. Error out to
2738 top level after closing remote_desc. Take care to
2739 set remote_desc to NULL to avoid closing remote_desc
2741 serial_close (remote_desc
);
2743 perror_with_name (name
);
2747 serial_raw (remote_desc
);
2749 /* If there is something sitting in the buffer we might take it as a
2750 response to a command, which would be bad. */
2751 serial_flush_input (remote_desc
);
2755 puts_filtered ("Remote debugging using ");
2756 puts_filtered (name
);
2757 puts_filtered ("\n");
2759 push_target (target
); /* Switch to using remote target now. */
2761 /* Assume that the target is running, unless we learn otherwise. */
2762 target_mark_running (target
);
2764 /* Reset the target state; these things will be queried either by
2765 remote_query_supported or as they are needed. */
2766 init_all_packet_configs ();
2767 rs
->explicit_packet_size
= 0;
2769 general_thread
= not_sent_ptid
;
2770 continue_thread
= not_sent_ptid
;
2772 /* Probe for ability to use "ThreadInfo" query, as required. */
2773 use_threadinfo_query
= 1;
2774 use_threadextra_query
= 1;
2776 /* The first packet we send to the target is the optional "supported
2777 packets" request. If the target can answer this, it will tell us
2778 which later probes to skip. */
2779 remote_query_supported ();
2781 /* Next, if the target can specify a description, read it. We do
2782 this before anything involving memory or registers. */
2783 target_find_description ();
2785 if (remote_async_permitted
)
2787 /* With this target we start out by owning the terminal. */
2788 remote_async_terminal_ours_p
= 1;
2790 /* FIXME: cagney/1999-09-23: During the initial connection it is
2791 assumed that the target is already ready and able to respond to
2792 requests. Unfortunately remote_start_remote() eventually calls
2793 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2794 around this. Eventually a mechanism that allows
2795 wait_for_inferior() to expect/get timeouts will be
2797 wait_forever_enabled_p
= 0;
2800 /* First delete any symbols previously loaded from shared libraries. */
2801 no_shared_libraries (NULL
, 0);
2803 /* Start the remote connection. If error() or QUIT, discard this
2804 target (we'd otherwise be in an inconsistent state) and then
2805 propogate the error on up the exception chain. This ensures that
2806 the caller doesn't stumble along blindly assuming that the
2807 function succeeded. The CLI doesn't have this problem but other
2808 UI's, such as MI do.
2810 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2811 this function should return an error indication letting the
2812 caller restore the previous state. Unfortunately the command
2813 ``target remote'' is directly wired to this function making that
2814 impossible. On a positive note, the CLI side of this problem has
2815 been fixed - the function set_cmd_context() makes it possible for
2816 all the ``target ....'' commands to share a common callback
2817 function. See cli-dump.c. */
2819 struct gdb_exception ex
;
2820 struct start_remote_args args
;
2822 args
.from_tty
= from_tty
;
2823 args
.target
= target
;
2824 args
.extended_p
= extended_p
;
2826 ex
= catch_exception (uiout
, remote_start_remote
, &args
, RETURN_MASK_ALL
);
2830 if (remote_async_permitted
)
2831 wait_forever_enabled_p
= 1;
2832 throw_exception (ex
);
2836 if (remote_async_permitted
)
2837 wait_forever_enabled_p
= 1;
2841 /* Tell the remote that we are using the extended protocol. */
2843 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2846 /* If we connected to a live target, do some additional setup. */
2847 if (target_has_execution
)
2849 if (exec_bfd
) /* No use without an exec file. */
2850 remote_check_symbols (symfile_objfile
);
2854 /* This takes a program previously attached to and detaches it. After
2855 this is done, GDB can be used to debug some other program. We
2856 better not have left any breakpoints in the target program or it'll
2857 die when it hits one. */
2860 remote_detach_1 (char *args
, int from_tty
, int extended
)
2862 struct remote_state
*rs
= get_remote_state ();
2865 error (_("Argument given to \"detach\" when remotely debugging."));
2867 if (!target_has_execution
)
2868 error (_("No process to detach from."));
2870 /* Tell the remote target to detach. */
2871 strcpy (rs
->buf
, "D");
2873 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2875 if (rs
->buf
[0] == 'E')
2876 error (_("Can't detach process."));
2878 /* Unregister the file descriptor from the event loop. */
2879 if (target_is_async_p ())
2880 serial_async (remote_desc
, NULL
, 0);
2882 target_mourn_inferior ();
2886 puts_filtered ("Detached from remote process.\n");
2888 puts_filtered ("Ending remote debugging.\n");
2893 remote_detach (char *args
, int from_tty
)
2895 remote_detach_1 (args
, from_tty
, 0);
2899 extended_remote_detach (char *args
, int from_tty
)
2901 remote_detach_1 (args
, from_tty
, 1);
2904 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2907 remote_disconnect (struct target_ops
*target
, char *args
, int from_tty
)
2910 error (_("Argument given to \"disconnect\" when remotely debugging."));
2912 /* Unregister the file descriptor from the event loop. */
2913 if (target_is_async_p ())
2914 serial_async (remote_desc
, NULL
, 0);
2916 /* Make sure we unpush even the extended remote targets; mourn
2917 won't do it. So call remote_mourn_1 directly instead of
2918 target_mourn_inferior. */
2919 remote_mourn_1 (target
);
2922 puts_filtered ("Ending remote debugging.\n");
2925 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
2926 be chatty about it. */
2929 extended_remote_attach_1 (struct target_ops
*target
, char *args
, int from_tty
)
2931 struct remote_state
*rs
= get_remote_state ();
2934 char *wait_status
= NULL
;
2937 error_no_arg (_("process-id to attach"));
2940 pid
= strtol (args
, &dummy
, 0);
2941 /* Some targets don't set errno on errors, grrr! */
2942 if (pid
== 0 && args
== dummy
)
2943 error (_("Illegal process-id: %s."), args
);
2945 if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
2946 error (_("This target does not support attaching to a process"));
2948 sprintf (rs
->buf
, "vAttach;%x", pid
);
2950 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2952 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vAttach
]) == PACKET_OK
)
2955 printf_unfiltered (_("Attached to %s\n"),
2956 target_pid_to_str (pid_to_ptid (pid
)));
2958 /* Save the reply for later. */
2959 wait_status
= alloca (strlen (rs
->buf
) + 1);
2960 strcpy (wait_status
, rs
->buf
);
2962 else if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
2963 error (_("This target does not support attaching to a process"));
2965 error (_("Attaching to %s failed"),
2966 target_pid_to_str (pid_to_ptid (pid
)));
2968 target_mark_running (target
);
2969 inferior_ptid
= pid_to_ptid (pid
);
2971 /* Now, if we have thread information, update inferior_ptid. */
2972 inferior_ptid
= remote_current_thread (inferior_ptid
);
2974 /* Now, add the main thread to the thread list. */
2975 add_thread_silent (inferior_ptid
);
2979 /* Next, if the target can specify a description, read it. We do
2980 this before anything involving memory or registers. */
2981 target_find_description ();
2983 /* Use the previously fetched status. */
2984 gdb_assert (wait_status
!= NULL
);
2985 strcpy (rs
->buf
, wait_status
);
2986 rs
->cached_wait_status
= 1;
2990 extended_remote_attach (char *args
, int from_tty
)
2992 extended_remote_attach_1 (&extended_remote_ops
, args
, from_tty
);
2995 /* Convert hex digit A to a number. */
3000 if (a
>= '0' && a
<= '9')
3002 else if (a
>= 'a' && a
<= 'f')
3003 return a
- 'a' + 10;
3004 else if (a
>= 'A' && a
<= 'F')
3005 return a
- 'A' + 10;
3007 error (_("Reply contains invalid hex digit %d"), a
);
3011 hex2bin (const char *hex
, gdb_byte
*bin
, int count
)
3015 for (i
= 0; i
< count
; i
++)
3017 if (hex
[0] == 0 || hex
[1] == 0)
3019 /* Hex string is short, or of uneven length.
3020 Return the count that has been converted so far. */
3023 *bin
++ = fromhex (hex
[0]) * 16 + fromhex (hex
[1]);
3029 /* Convert number NIB to a hex digit. */
3037 return 'a' + nib
- 10;
3041 bin2hex (const gdb_byte
*bin
, char *hex
, int count
)
3044 /* May use a length, or a nul-terminated string as input. */
3046 count
= strlen ((char *) bin
);
3048 for (i
= 0; i
< count
; i
++)
3050 *hex
++ = tohex ((*bin
>> 4) & 0xf);
3051 *hex
++ = tohex (*bin
++ & 0xf);
3057 /* Check for the availability of vCont. This function should also check
3061 remote_vcont_probe (struct remote_state
*rs
)
3065 strcpy (rs
->buf
, "vCont?");
3067 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3070 /* Make sure that the features we assume are supported. */
3071 if (strncmp (buf
, "vCont", 5) == 0)
3074 int support_s
, support_S
, support_c
, support_C
;
3080 while (p
&& *p
== ';')
3083 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3085 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3087 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3089 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3092 p
= strchr (p
, ';');
3095 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3096 BUF will make packet_ok disable the packet. */
3097 if (!support_s
|| !support_S
|| !support_c
|| !support_C
)
3101 packet_ok (buf
, &remote_protocol_packets
[PACKET_vCont
]);
3104 /* Resume the remote inferior by using a "vCont" packet. The thread
3105 to be resumed is PTID; STEP and SIGGNAL indicate whether the
3106 resumed thread should be single-stepped and/or signalled. If PTID
3107 equals minus_one_ptid, then all threads are resumed; the thread to
3108 be stepped and/or signalled is given in the global INFERIOR_PTID.
3109 This function returns non-zero iff it resumes the inferior.
3111 This function issues a strict subset of all possible vCont commands at the
3115 remote_vcont_resume (ptid_t ptid
, int step
, enum target_signal siggnal
)
3117 struct remote_state
*rs
= get_remote_state ();
3119 struct cleanup
*old_cleanup
;
3121 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_SUPPORT_UNKNOWN
)
3122 remote_vcont_probe (rs
);
3124 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_DISABLE
)
3127 /* If we could generate a wider range of packets, we'd have to worry
3128 about overflowing BUF. Should there be a generic
3129 "multi-part-packet" packet? */
3131 if (ptid_equal (ptid
, magic_null_ptid
))
3133 /* MAGIC_NULL_PTID means that we don't have any active threads,
3134 so we don't have any TID numbers the inferior will
3135 understand. Make sure to only send forms that do not specify
3137 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3138 outbuf
= xstrprintf ("vCont;S%02x", siggnal
);
3140 outbuf
= xstrprintf ("vCont;s");
3141 else if (siggnal
!= TARGET_SIGNAL_0
)
3142 outbuf
= xstrprintf ("vCont;C%02x", siggnal
);
3144 outbuf
= xstrprintf ("vCont;c");
3146 else if (ptid_equal (ptid
, minus_one_ptid
))
3148 /* Resume all threads, with preference for INFERIOR_PTID. */
3149 int tid
= ptid_get_tid (inferior_ptid
);
3150 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3151 outbuf
= xstrprintf ("vCont;S%02x:%x;c", siggnal
, tid
);
3153 outbuf
= xstrprintf ("vCont;s:%x;c", tid
);
3154 else if (siggnal
!= TARGET_SIGNAL_0
)
3155 outbuf
= xstrprintf ("vCont;C%02x:%x;c", siggnal
, tid
);
3157 outbuf
= xstrprintf ("vCont;c");
3161 /* Scheduler locking; resume only PTID. */
3162 int tid
= ptid_get_tid (ptid
);
3163 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3164 outbuf
= xstrprintf ("vCont;S%02x:%x", siggnal
, tid
);
3166 outbuf
= xstrprintf ("vCont;s:%x", tid
);
3167 else if (siggnal
!= TARGET_SIGNAL_0
)
3168 outbuf
= xstrprintf ("vCont;C%02x:%x", siggnal
, tid
);
3170 outbuf
= xstrprintf ("vCont;c:%x", tid
);
3173 gdb_assert (outbuf
&& strlen (outbuf
) < get_remote_packet_size ());
3174 old_cleanup
= make_cleanup (xfree
, outbuf
);
3178 do_cleanups (old_cleanup
);
3183 /* Tell the remote machine to resume. */
3185 static enum target_signal last_sent_signal
= TARGET_SIGNAL_0
;
3187 static int last_sent_step
;
3190 remote_resume (ptid_t ptid
, int step
, enum target_signal siggnal
)
3192 struct remote_state
*rs
= get_remote_state ();
3195 last_sent_signal
= siggnal
;
3196 last_sent_step
= step
;
3198 /* Update the inferior on signals to silently pass, if they've changed. */
3199 remote_pass_signals ();
3201 /* The vCont packet doesn't need to specify threads via Hc. */
3202 if (remote_vcont_resume (ptid
, step
, siggnal
))
3205 /* All other supported resume packets do use Hc, so set the continue
3207 if (ptid_equal (ptid
, minus_one_ptid
))
3208 set_continue_thread (any_thread_ptid
);
3210 set_continue_thread (ptid
);
3213 if (siggnal
!= TARGET_SIGNAL_0
)
3215 buf
[0] = step
? 'S' : 'C';
3216 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
3217 buf
[2] = tohex (((int) siggnal
) & 0xf);
3221 strcpy (buf
, step
? "s" : "c");
3226 /* We are about to start executing the inferior, let's register it
3227 with the event loop. NOTE: this is the one place where all the
3228 execution commands end up. We could alternatively do this in each
3229 of the execution commands in infcmd.c. */
3230 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3231 into infcmd.c in order to allow inferior function calls to work
3232 NOT asynchronously. */
3233 if (target_can_async_p ())
3234 target_async (inferior_event_handler
, 0);
3235 /* Tell the world that the target is now executing. */
3236 /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
3237 this? Instead, should the client of target just assume (for
3238 async targets) that the target is going to start executing? Is
3239 this information already found in the continuation block? */
3240 if (target_is_async_p ())
3241 target_executing
= 1;
3245 /* Set up the signal handler for SIGINT, while the target is
3246 executing, ovewriting the 'regular' SIGINT signal handler. */
3248 initialize_sigint_signal_handler (void)
3250 signal (SIGINT
, handle_remote_sigint
);
3253 /* Signal handler for SIGINT, while the target is executing. */
3255 handle_remote_sigint (int sig
)
3257 signal (sig
, handle_remote_sigint_twice
);
3258 mark_async_signal_handler_wrapper (sigint_remote_token
);
3261 /* Signal handler for SIGINT, installed after SIGINT has already been
3262 sent once. It will take effect the second time that the user sends
3265 handle_remote_sigint_twice (int sig
)
3267 signal (sig
, handle_remote_sigint
);
3268 mark_async_signal_handler_wrapper (sigint_remote_twice_token
);
3271 /* Perform the real interruption of the target execution, in response
3274 async_remote_interrupt (gdb_client_data arg
)
3277 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt called\n");
3282 /* Perform interrupt, if the first attempt did not succeed. Just give
3283 up on the target alltogether. */
3285 async_remote_interrupt_twice (gdb_client_data arg
)
3288 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt_twice called\n");
3293 /* Reinstall the usual SIGINT handlers, after the target has
3296 cleanup_sigint_signal_handler (void *dummy
)
3298 signal (SIGINT
, handle_sigint
);
3301 /* Send ^C to target to halt it. Target will respond, and send us a
3303 static void (*ofunc
) (int);
3305 /* The command line interface's stop routine. This function is installed
3306 as a signal handler for SIGINT. The first time a user requests a
3307 stop, we call remote_stop to send a break or ^C. If there is no
3308 response from the target (it didn't stop when the user requested it),
3309 we ask the user if he'd like to detach from the target. */
3311 remote_interrupt (int signo
)
3313 /* If this doesn't work, try more severe steps. */
3314 signal (signo
, remote_interrupt_twice
);
3316 gdb_call_async_signal_handler (sigint_remote_token
, 1);
3319 /* The user typed ^C twice. */
3322 remote_interrupt_twice (int signo
)
3324 signal (signo
, ofunc
);
3325 gdb_call_async_signal_handler (sigint_remote_twice_token
, 1);
3326 signal (signo
, remote_interrupt
);
3329 /* This is the generic stop called via the target vector. When a target
3330 interrupt is requested, either by the command line or the GUI, we
3331 will eventually end up here. */
3335 /* Send a break or a ^C, depending on user preference. */
3337 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
3340 serial_send_break (remote_desc
);
3342 serial_write (remote_desc
, "\003", 1);
3345 /* Ask the user what to do when an interrupt is received. */
3348 interrupt_query (void)
3350 target_terminal_ours ();
3352 if (query ("Interrupted while waiting for the program.\n\
3353 Give up (and stop debugging it)? "))
3355 target_mourn_inferior ();
3356 signal (SIGINT
, handle_sigint
);
3357 deprecated_throw_reason (RETURN_QUIT
);
3360 target_terminal_inferior ();
3363 /* Enable/disable target terminal ownership. Most targets can use
3364 terminal groups to control terminal ownership. Remote targets are
3365 different in that explicit transfer of ownership to/from GDB/target
3369 remote_terminal_inferior (void)
3371 if (!remote_async_permitted
)
3372 /* Nothing to do. */
3375 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
3376 sync_execution here. This function should only be called when
3377 GDB is resuming the inferior in the forground. A background
3378 resume (``run&'') should leave GDB in control of the terminal and
3379 consequently should not call this code. */
3380 if (!sync_execution
)
3382 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
3383 calls target_terminal_*() idenpotent. The event-loop GDB talking
3384 to an asynchronous target with a synchronous command calls this
3385 function from both event-top.c and infrun.c/infcmd.c. Once GDB
3386 stops trying to transfer the terminal to the target when it
3387 shouldn't this guard can go away. */
3388 if (!remote_async_terminal_ours_p
)
3390 delete_file_handler (input_fd
);
3391 remote_async_terminal_ours_p
= 0;
3392 initialize_sigint_signal_handler ();
3393 /* NOTE: At this point we could also register our selves as the
3394 recipient of all input. Any characters typed could then be
3395 passed on down to the target. */
3399 remote_terminal_ours (void)
3401 if (!remote_async_permitted
)
3402 /* Nothing to do. */
3405 /* See FIXME in remote_terminal_inferior. */
3406 if (!sync_execution
)
3408 /* See FIXME in remote_terminal_inferior. */
3409 if (remote_async_terminal_ours_p
)
3411 cleanup_sigint_signal_handler (NULL
);
3412 add_file_handler (input_fd
, stdin_event_handler
, 0);
3413 remote_async_terminal_ours_p
= 1;
3417 remote_console_output (char *msg
)
3421 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
3424 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
3427 fputs_unfiltered (tb
, gdb_stdtarg
);
3429 gdb_flush (gdb_stdtarg
);
3432 /* Wait until the remote machine stops, then return,
3433 storing status in STATUS just as `wait' would. */
3436 remote_wait (ptid_t ptid
, struct target_waitstatus
*status
)
3438 struct remote_state
*rs
= get_remote_state ();
3439 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3440 ULONGEST thread_num
= -1;
3441 ULONGEST process_num
= -1;
3443 int solibs_changed
= 0;
3445 status
->kind
= TARGET_WAITKIND_EXITED
;
3446 status
->value
.integer
= 0;
3452 if (rs
->cached_wait_status
)
3453 /* Use the cached wait status, but only once. */
3454 rs
->cached_wait_status
= 0;
3457 if (!target_is_async_p ())
3459 ofunc
= signal (SIGINT
, remote_interrupt
);
3460 /* If the user hit C-c before this packet, or between packets,
3461 pretend that it was hit right here. */
3465 remote_interrupt (SIGINT
);
3468 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3469 _never_ wait for ever -> test on target_is_async_p().
3470 However, before we do that we need to ensure that the caller
3471 knows how to take the target into/out of async mode. */
3472 getpkt (&rs
->buf
, &rs
->buf_size
, wait_forever_enabled_p
);
3473 if (!target_is_async_p ())
3474 signal (SIGINT
, ofunc
);
3479 remote_stopped_by_watchpoint_p
= 0;
3483 case 'E': /* Error of some sort. */
3484 /* We're out of sync with the target now. Did it continue or not?
3485 Not is more likely, so report a stop. */
3486 warning (_("Remote failure reply: %s"), buf
);
3487 status
->kind
= TARGET_WAITKIND_STOPPED
;
3488 status
->value
.sig
= TARGET_SIGNAL_0
;
3490 case 'F': /* File-I/O request. */
3491 remote_fileio_request (buf
);
3493 case 'T': /* Status with PC, SP, FP, ... */
3495 gdb_byte regs
[MAX_REGISTER_SIZE
];
3497 /* Expedited reply, containing Signal, {regno, reg} repeat. */
3498 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
3500 n... = register number
3501 r... = register contents
3503 p
= &buf
[3]; /* after Txx */
3512 /* If the packet contains a register number, save it
3513 in pnum and set p1 to point to the character
3514 following it. Otherwise p1 points to p. */
3516 /* If this packet is an awatch packet, don't parse the
3517 'a' as a register number. */
3519 if (strncmp (p
, "awatch", strlen("awatch")) != 0)
3521 /* Read the ``P'' register number. */
3522 pnum
= strtol (p
, &p_temp
, 16);
3528 if (p1
== p
) /* No register number present here. */
3530 p1
= strchr (p
, ':');
3532 error (_("Malformed packet(a) (missing colon): %s\n\
3535 if (strncmp (p
, "thread", p1
- p
) == 0)
3537 p_temp
= unpack_varlen_hex (++p1
, &thread_num
);
3540 else if ((strncmp (p
, "watch", p1
- p
) == 0)
3541 || (strncmp (p
, "rwatch", p1
- p
) == 0)
3542 || (strncmp (p
, "awatch", p1
- p
) == 0))
3544 remote_stopped_by_watchpoint_p
= 1;
3545 p
= unpack_varlen_hex (++p1
, &addr
);
3546 remote_watch_data_address
= (CORE_ADDR
)addr
;
3548 else if (strncmp (p
, "library", p1
- p
) == 0)
3552 while (*p_temp
&& *p_temp
!= ';')
3560 /* Silently skip unknown optional info. */
3561 p_temp
= strchr (p1
+ 1, ';');
3568 struct packet_reg
*reg
= packet_reg_from_pnum (rsa
, pnum
);
3572 error (_("Malformed packet(b) (missing colon): %s\n\
3578 error (_("Remote sent bad register number %s: %s\n\
3580 phex_nz (pnum
, 0), p
, buf
);
3582 fieldsize
= hex2bin (p
, regs
,
3583 register_size (current_gdbarch
,
3586 if (fieldsize
< register_size (current_gdbarch
,
3588 warning (_("Remote reply is too short: %s"), buf
);
3589 regcache_raw_supply (get_current_regcache (),
3594 error (_("Remote register badly formatted: %s\nhere: %s"),
3600 case 'S': /* Old style status, just signal only. */
3602 status
->kind
= TARGET_WAITKIND_LOADED
;
3605 status
->kind
= TARGET_WAITKIND_STOPPED
;
3606 status
->value
.sig
= (enum target_signal
)
3607 (((fromhex (buf
[1])) << 4) + (fromhex (buf
[2])));
3610 case 'W': /* Target exited. */
3612 /* The remote process exited. */
3613 status
->kind
= TARGET_WAITKIND_EXITED
;
3614 status
->value
.integer
= (fromhex (buf
[1]) << 4) + fromhex (buf
[2]);
3618 status
->kind
= TARGET_WAITKIND_SIGNALLED
;
3619 status
->value
.sig
= (enum target_signal
)
3620 (((fromhex (buf
[1])) << 4) + (fromhex (buf
[2])));
3623 case 'O': /* Console output. */
3624 remote_console_output (buf
+ 1);
3625 if (target_can_async_p ())
3627 /* Return immediately to the event loop. The event loop
3628 will still be waiting on the inferior afterwards. */
3629 status
->kind
= TARGET_WAITKIND_IGNORE
;
3635 if (last_sent_signal
!= TARGET_SIGNAL_0
)
3637 /* Zero length reply means that we tried 'S' or 'C' and
3638 the remote system doesn't support it. */
3639 target_terminal_ours_for_output ();
3641 ("Can't send signals to this remote system. %s not sent.\n",
3642 target_signal_to_name (last_sent_signal
));
3643 last_sent_signal
= TARGET_SIGNAL_0
;
3644 target_terminal_inferior ();
3646 strcpy ((char *) buf
, last_sent_step
? "s" : "c");
3647 putpkt ((char *) buf
);
3650 /* else fallthrough */
3652 warning (_("Invalid remote reply: %s"), buf
);
3657 if (thread_num
!= -1)
3660 ptid
= ptid_build (ptid_get_pid (inferior_ptid
), 0, thread_num
);
3661 record_currthread (ptid
);
3665 return inferior_ptid
;
3668 /* Fetch a single register using a 'p' packet. */
3671 fetch_register_using_p (struct regcache
*regcache
, struct packet_reg
*reg
)
3673 struct remote_state
*rs
= get_remote_state ();
3675 char regp
[MAX_REGISTER_SIZE
];
3678 if (remote_protocol_packets
[PACKET_p
].support
== PACKET_DISABLE
)
3681 if (reg
->pnum
== -1)
3686 p
+= hexnumstr (p
, reg
->pnum
);
3688 remote_send (&rs
->buf
, &rs
->buf_size
);
3692 switch (packet_ok (buf
, &remote_protocol_packets
[PACKET_p
]))
3696 case PACKET_UNKNOWN
:
3699 error (_("Could not fetch register \"%s\""),
3700 gdbarch_register_name (get_regcache_arch (regcache
), reg
->regnum
));
3703 /* If this register is unfetchable, tell the regcache. */
3706 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
3710 /* Otherwise, parse and supply the value. */
3716 error (_("fetch_register_using_p: early buf termination"));
3718 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
3721 regcache_raw_supply (regcache
, reg
->regnum
, regp
);
3725 /* Fetch the registers included in the target's 'g' packet. */
3728 send_g_packet (void)
3730 struct remote_state
*rs
= get_remote_state ();
3735 sprintf (rs
->buf
, "g");
3736 remote_send (&rs
->buf
, &rs
->buf_size
);
3738 /* We can get out of synch in various cases. If the first character
3739 in the buffer is not a hex character, assume that has happened
3740 and try to fetch another packet to read. */
3741 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
3742 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
3743 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
3744 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
3747 fprintf_unfiltered (gdb_stdlog
,
3748 "Bad register packet; fetching a new packet\n");
3749 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3752 buf_len
= strlen (rs
->buf
);
3754 /* Sanity check the received packet. */
3755 if (buf_len
% 2 != 0)
3756 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
);
3762 process_g_packet (struct regcache
*regcache
)
3764 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
3765 struct remote_state
*rs
= get_remote_state ();
3766 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3771 buf_len
= strlen (rs
->buf
);
3773 /* Further sanity checks, with knowledge of the architecture. */
3774 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
3775 error (_("Remote 'g' packet reply is too long: %s"), rs
->buf
);
3777 /* Save the size of the packet sent to us by the target. It is used
3778 as a heuristic when determining the max size of packets that the
3779 target can safely receive. */
3780 if (rsa
->actual_register_packet_size
== 0)
3781 rsa
->actual_register_packet_size
= buf_len
;
3783 /* If this is smaller than we guessed the 'g' packet would be,
3784 update our records. A 'g' reply that doesn't include a register's
3785 value implies either that the register is not available, or that
3786 the 'p' packet must be used. */
3787 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
3789 rsa
->sizeof_g_packet
= buf_len
/ 2;
3791 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
3793 if (rsa
->regs
[i
].pnum
== -1)
3796 if (rsa
->regs
[i
].offset
>= rsa
->sizeof_g_packet
)
3797 rsa
->regs
[i
].in_g_packet
= 0;
3799 rsa
->regs
[i
].in_g_packet
= 1;
3803 regs
= alloca (rsa
->sizeof_g_packet
);
3805 /* Unimplemented registers read as all bits zero. */
3806 memset (regs
, 0, rsa
->sizeof_g_packet
);
3808 /* Reply describes registers byte by byte, each byte encoded as two
3809 hex characters. Suck them all up, then supply them to the
3810 register cacheing/storage mechanism. */
3813 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
3815 if (p
[0] == 0 || p
[1] == 0)
3816 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
3817 internal_error (__FILE__
, __LINE__
,
3818 "unexpected end of 'g' packet reply");
3820 if (p
[0] == 'x' && p
[1] == 'x')
3821 regs
[i
] = 0; /* 'x' */
3823 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
3829 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
3831 struct packet_reg
*r
= &rsa
->regs
[i
];
3834 if (r
->offset
* 2 >= strlen (rs
->buf
))
3835 /* This shouldn't happen - we adjusted in_g_packet above. */
3836 internal_error (__FILE__
, __LINE__
,
3837 "unexpected end of 'g' packet reply");
3838 else if (rs
->buf
[r
->offset
* 2] == 'x')
3840 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
));
3841 /* The register isn't available, mark it as such (at
3842 the same time setting the value to zero). */
3843 regcache_raw_supply (regcache
, r
->regnum
, NULL
);
3846 regcache_raw_supply (regcache
, r
->regnum
,
3854 fetch_registers_using_g (struct regcache
*regcache
)
3857 process_g_packet (regcache
);
3861 remote_fetch_registers (struct regcache
*regcache
, int regnum
)
3863 struct remote_state
*rs
= get_remote_state ();
3864 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3867 set_general_thread (inferior_ptid
);
3871 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
3872 gdb_assert (reg
!= NULL
);
3874 /* If this register might be in the 'g' packet, try that first -
3875 we are likely to read more than one register. If this is the
3876 first 'g' packet, we might be overly optimistic about its
3877 contents, so fall back to 'p'. */
3878 if (reg
->in_g_packet
)
3880 fetch_registers_using_g (regcache
);
3881 if (reg
->in_g_packet
)
3885 if (fetch_register_using_p (regcache
, reg
))
3888 /* This register is not available. */
3889 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
3894 fetch_registers_using_g (regcache
);
3896 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3897 if (!rsa
->regs
[i
].in_g_packet
)
3898 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
3900 /* This register is not available. */
3901 regcache_raw_supply (regcache
, i
, NULL
);
3905 /* Prepare to store registers. Since we may send them all (using a
3906 'G' request), we have to read out the ones we don't want to change
3910 remote_prepare_to_store (struct regcache
*regcache
)
3912 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3914 gdb_byte buf
[MAX_REGISTER_SIZE
];
3916 /* Make sure the entire registers array is valid. */
3917 switch (remote_protocol_packets
[PACKET_P
].support
)
3919 case PACKET_DISABLE
:
3920 case PACKET_SUPPORT_UNKNOWN
:
3921 /* Make sure all the necessary registers are cached. */
3922 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3923 if (rsa
->regs
[i
].in_g_packet
)
3924 regcache_raw_read (regcache
, rsa
->regs
[i
].regnum
, buf
);
3931 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
3932 packet was not recognized. */
3935 store_register_using_P (const struct regcache
*regcache
, struct packet_reg
*reg
)
3937 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
3938 struct remote_state
*rs
= get_remote_state ();
3939 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3940 /* Try storing a single register. */
3941 char *buf
= rs
->buf
;
3942 gdb_byte regp
[MAX_REGISTER_SIZE
];
3945 if (remote_protocol_packets
[PACKET_P
].support
== PACKET_DISABLE
)
3948 if (reg
->pnum
== -1)
3951 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
3952 p
= buf
+ strlen (buf
);
3953 regcache_raw_collect (regcache
, reg
->regnum
, regp
);
3954 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
3955 remote_send (&rs
->buf
, &rs
->buf_size
);
3957 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
3962 error (_("Could not write register \"%s\""),
3963 gdbarch_register_name (gdbarch
, reg
->regnum
));
3964 case PACKET_UNKNOWN
:
3967 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
3971 /* Store register REGNUM, or all registers if REGNUM == -1, from the
3972 contents of the register cache buffer. FIXME: ignores errors. */
3975 store_registers_using_G (const struct regcache
*regcache
)
3977 struct remote_state
*rs
= get_remote_state ();
3978 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3982 /* Extract all the registers in the regcache copying them into a
3986 regs
= alloca (rsa
->sizeof_g_packet
);
3987 memset (regs
, 0, rsa
->sizeof_g_packet
);
3988 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3990 struct packet_reg
*r
= &rsa
->regs
[i
];
3992 regcache_raw_collect (regcache
, r
->regnum
, regs
+ r
->offset
);
3996 /* Command describes registers byte by byte,
3997 each byte encoded as two hex characters. */
4000 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
4002 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
4003 remote_send (&rs
->buf
, &rs
->buf_size
);
4006 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
4007 of the register cache buffer. FIXME: ignores errors. */
4010 remote_store_registers (struct regcache
*regcache
, int regnum
)
4012 struct remote_state
*rs
= get_remote_state ();
4013 struct remote_arch_state
*rsa
= get_remote_arch_state ();
4016 set_general_thread (inferior_ptid
);
4020 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
4021 gdb_assert (reg
!= NULL
);
4023 /* Always prefer to store registers using the 'P' packet if
4024 possible; we often change only a small number of registers.
4025 Sometimes we change a larger number; we'd need help from a
4026 higher layer to know to use 'G'. */
4027 if (store_register_using_P (regcache
, reg
))
4030 /* For now, don't complain if we have no way to write the
4031 register. GDB loses track of unavailable registers too
4032 easily. Some day, this may be an error. We don't have
4033 any way to read the register, either... */
4034 if (!reg
->in_g_packet
)
4037 store_registers_using_G (regcache
);
4041 store_registers_using_G (regcache
);
4043 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
4044 if (!rsa
->regs
[i
].in_g_packet
)
4045 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
4046 /* See above for why we do not issue an error here. */
4051 /* Return the number of hex digits in num. */
4054 hexnumlen (ULONGEST num
)
4058 for (i
= 0; num
!= 0; i
++)
4064 /* Set BUF to the minimum number of hex digits representing NUM. */
4067 hexnumstr (char *buf
, ULONGEST num
)
4069 int len
= hexnumlen (num
);
4070 return hexnumnstr (buf
, num
, len
);
4074 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
4077 hexnumnstr (char *buf
, ULONGEST num
, int width
)
4083 for (i
= width
- 1; i
>= 0; i
--)
4085 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
4092 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
4095 remote_address_masked (CORE_ADDR addr
)
4097 int address_size
= remote_address_size
;
4098 /* If "remoteaddresssize" was not set, default to target address size. */
4100 address_size
= gdbarch_addr_bit (current_gdbarch
);
4102 if (address_size
> 0
4103 && address_size
< (sizeof (ULONGEST
) * 8))
4105 /* Only create a mask when that mask can safely be constructed
4106 in a ULONGEST variable. */
4108 mask
= (mask
<< address_size
) - 1;
4114 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
4115 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
4116 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
4117 (which may be more than *OUT_LEN due to escape characters). The
4118 total number of bytes in the output buffer will be at most
4122 remote_escape_output (const gdb_byte
*buffer
, int len
,
4123 gdb_byte
*out_buf
, int *out_len
,
4126 int input_index
, output_index
;
4129 for (input_index
= 0; input_index
< len
; input_index
++)
4131 gdb_byte b
= buffer
[input_index
];
4133 if (b
== '$' || b
== '#' || b
== '}')
4135 /* These must be escaped. */
4136 if (output_index
+ 2 > out_maxlen
)
4138 out_buf
[output_index
++] = '}';
4139 out_buf
[output_index
++] = b
^ 0x20;
4143 if (output_index
+ 1 > out_maxlen
)
4145 out_buf
[output_index
++] = b
;
4149 *out_len
= input_index
;
4150 return output_index
;
4153 /* Convert BUFFER, escaped data LEN bytes long, into binary data
4154 in OUT_BUF. Return the number of bytes written to OUT_BUF.
4155 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
4157 This function reverses remote_escape_output. It allows more
4158 escaped characters than that function does, in particular because
4159 '*' must be escaped to avoid the run-length encoding processing
4160 in reading packets. */
4163 remote_unescape_input (const gdb_byte
*buffer
, int len
,
4164 gdb_byte
*out_buf
, int out_maxlen
)
4166 int input_index
, output_index
;
4171 for (input_index
= 0; input_index
< len
; input_index
++)
4173 gdb_byte b
= buffer
[input_index
];
4175 if (output_index
+ 1 > out_maxlen
)
4177 warning (_("Received too much data from remote target;"
4178 " ignoring overflow."));
4179 return output_index
;
4184 out_buf
[output_index
++] = b
^ 0x20;
4190 out_buf
[output_index
++] = b
;
4194 error (_("Unmatched escape character in target response."));
4196 return output_index
;
4199 /* Determine whether the remote target supports binary downloading.
4200 This is accomplished by sending a no-op memory write of zero length
4201 to the target at the specified address. It does not suffice to send
4202 the whole packet, since many stubs strip the eighth bit and
4203 subsequently compute a wrong checksum, which causes real havoc with
4206 NOTE: This can still lose if the serial line is not eight-bit
4207 clean. In cases like this, the user should clear "remote
4211 check_binary_download (CORE_ADDR addr
)
4213 struct remote_state
*rs
= get_remote_state ();
4215 switch (remote_protocol_packets
[PACKET_X
].support
)
4217 case PACKET_DISABLE
:
4221 case PACKET_SUPPORT_UNKNOWN
:
4227 p
+= hexnumstr (p
, (ULONGEST
) addr
);
4229 p
+= hexnumstr (p
, (ULONGEST
) 0);
4233 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
4234 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4236 if (rs
->buf
[0] == '\0')
4239 fprintf_unfiltered (gdb_stdlog
,
4240 "binary downloading NOT suppported by target\n");
4241 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
4246 fprintf_unfiltered (gdb_stdlog
,
4247 "binary downloading suppported by target\n");
4248 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
4255 /* Write memory data directly to the remote machine.
4256 This does not inform the data cache; the data cache uses this.
4257 HEADER is the starting part of the packet.
4258 MEMADDR is the address in the remote memory space.
4259 MYADDR is the address of the buffer in our space.
4260 LEN is the number of bytes.
4261 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
4262 should send data as binary ('X'), or hex-encoded ('M').
4264 The function creates packet of the form
4265 <HEADER><ADDRESS>,<LENGTH>:<DATA>
4267 where encoding of <DATA> is termined by PACKET_FORMAT.
4269 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
4272 Returns the number of bytes transferred, or 0 (setting errno) for
4273 error. Only transfer a single packet. */
4276 remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
4277 const gdb_byte
*myaddr
, int len
,
4278 char packet_format
, int use_length
)
4280 struct remote_state
*rs
= get_remote_state ();
4290 if (packet_format
!= 'X' && packet_format
!= 'M')
4291 internal_error (__FILE__
, __LINE__
,
4292 "remote_write_bytes_aux: bad packet format");
4297 payload_size
= get_memory_write_packet_size ();
4299 /* The packet buffer will be large enough for the payload;
4300 get_memory_packet_size ensures this. */
4303 /* Compute the size of the actual payload by subtracting out the
4304 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
4306 payload_size
-= strlen ("$,:#NN");
4308 /* The comma won't be used. */
4310 header_length
= strlen (header
);
4311 payload_size
-= header_length
;
4312 payload_size
-= hexnumlen (memaddr
);
4314 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
4316 strcat (rs
->buf
, header
);
4317 p
= rs
->buf
+ strlen (header
);
4319 /* Compute a best guess of the number of bytes actually transfered. */
4320 if (packet_format
== 'X')
4322 /* Best guess at number of bytes that will fit. */
4323 todo
= min (len
, payload_size
);
4325 payload_size
-= hexnumlen (todo
);
4326 todo
= min (todo
, payload_size
);
4330 /* Num bytes that will fit. */
4331 todo
= min (len
, payload_size
/ 2);
4333 payload_size
-= hexnumlen (todo
);
4334 todo
= min (todo
, payload_size
/ 2);
4338 internal_error (__FILE__
, __LINE__
,
4339 _("minumum packet size too small to write data"));
4341 /* If we already need another packet, then try to align the end
4342 of this packet to a useful boundary. */
4343 if (todo
> 2 * REMOTE_ALIGN_WRITES
&& todo
< len
)
4344 todo
= ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
4346 /* Append "<memaddr>". */
4347 memaddr
= remote_address_masked (memaddr
);
4348 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
4355 /* Append <len>. Retain the location/size of <len>. It may need to
4356 be adjusted once the packet body has been created. */
4358 plenlen
= hexnumstr (p
, (ULONGEST
) todo
);
4366 /* Append the packet body. */
4367 if (packet_format
== 'X')
4369 /* Binary mode. Send target system values byte by byte, in
4370 increasing byte addresses. Only escape certain critical
4372 payload_length
= remote_escape_output (myaddr
, todo
, p
, &nr_bytes
,
4375 /* If not all TODO bytes fit, then we'll need another packet. Make
4376 a second try to keep the end of the packet aligned. Don't do
4377 this if the packet is tiny. */
4378 if (nr_bytes
< todo
&& nr_bytes
> 2 * REMOTE_ALIGN_WRITES
)
4382 new_nr_bytes
= (((memaddr
+ nr_bytes
) & ~(REMOTE_ALIGN_WRITES
- 1))
4384 if (new_nr_bytes
!= nr_bytes
)
4385 payload_length
= remote_escape_output (myaddr
, new_nr_bytes
,
4390 p
+= payload_length
;
4391 if (use_length
&& nr_bytes
< todo
)
4393 /* Escape chars have filled up the buffer prematurely,
4394 and we have actually sent fewer bytes than planned.
4395 Fix-up the length field of the packet. Use the same
4396 number of characters as before. */
4397 plen
+= hexnumnstr (plen
, (ULONGEST
) nr_bytes
, plenlen
);
4398 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
4403 /* Normal mode: Send target system values byte by byte, in
4404 increasing byte addresses. Each byte is encoded as a two hex
4406 nr_bytes
= bin2hex (myaddr
, p
, todo
);
4410 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
4411 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4413 if (rs
->buf
[0] == 'E')
4415 /* There is no correspondance between what the remote protocol
4416 uses for errors and errno codes. We would like a cleaner way
4417 of representing errors (big enough to include errno codes,
4418 bfd_error codes, and others). But for now just return EIO. */
4423 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
4424 fewer bytes than we'd planned. */
4428 /* Write memory data directly to the remote machine.
4429 This does not inform the data cache; the data cache uses this.
4430 MEMADDR is the address in the remote memory space.
4431 MYADDR is the address of the buffer in our space.
4432 LEN is the number of bytes.
4434 Returns number of bytes transferred, or 0 (setting errno) for
4435 error. Only transfer a single packet. */
4438 remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
4440 char *packet_format
= 0;
4442 /* Check whether the target supports binary download. */
4443 check_binary_download (memaddr
);
4445 switch (remote_protocol_packets
[PACKET_X
].support
)
4448 packet_format
= "X";
4450 case PACKET_DISABLE
:
4451 packet_format
= "M";
4453 case PACKET_SUPPORT_UNKNOWN
:
4454 internal_error (__FILE__
, __LINE__
,
4455 _("remote_write_bytes: bad internal state"));
4457 internal_error (__FILE__
, __LINE__
, _("bad switch"));
4460 return remote_write_bytes_aux (packet_format
,
4461 memaddr
, myaddr
, len
, packet_format
[0], 1);
4464 /* Read memory data directly from the remote machine.
4465 This does not use the data cache; the data cache uses this.
4466 MEMADDR is the address in the remote memory space.
4467 MYADDR is the address of the buffer in our space.
4468 LEN is the number of bytes.
4470 Returns number of bytes transferred, or 0 for error. */
4472 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
4473 remote targets) shouldn't attempt to read the entire buffer.
4474 Instead it should read a single packet worth of data and then
4475 return the byte size of that packet to the caller. The caller (its
4476 caller and its callers caller ;-) already contains code for
4477 handling partial reads. */
4480 remote_read_bytes (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
4482 struct remote_state
*rs
= get_remote_state ();
4483 int max_buf_size
; /* Max size of packet output buffer. */
4489 max_buf_size
= get_memory_read_packet_size ();
4490 /* The packet buffer will be large enough for the payload;
4491 get_memory_packet_size ensures this. */
4500 todo
= min (len
, max_buf_size
/ 2); /* num bytes that will fit */
4502 /* construct "m"<memaddr>","<len>" */
4503 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
4504 memaddr
= remote_address_masked (memaddr
);
4507 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
4509 p
+= hexnumstr (p
, (ULONGEST
) todo
);
4513 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4515 if (rs
->buf
[0] == 'E'
4516 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
4517 && rs
->buf
[3] == '\0')
4519 /* There is no correspondance between what the remote
4520 protocol uses for errors and errno codes. We would like
4521 a cleaner way of representing errors (big enough to
4522 include errno codes, bfd_error codes, and others). But
4523 for now just return EIO. */
4528 /* Reply describes memory byte by byte,
4529 each byte encoded as two hex characters. */
4532 if ((i
= hex2bin (p
, myaddr
, todo
)) < todo
)
4534 /* Reply is short. This means that we were able to read
4535 only part of what we wanted to. */
4536 return i
+ (origlen
- len
);
4545 /* Read or write LEN bytes from inferior memory at MEMADDR,
4546 transferring to or from debugger address BUFFER. Write to inferior
4547 if SHOULD_WRITE is nonzero. Returns length of data written or
4548 read; 0 for error. TARGET is unused. */
4551 remote_xfer_memory (CORE_ADDR mem_addr
, gdb_byte
*buffer
, int mem_len
,
4552 int should_write
, struct mem_attrib
*attrib
,
4553 struct target_ops
*target
)
4558 res
= remote_write_bytes (mem_addr
, buffer
, mem_len
);
4560 res
= remote_read_bytes (mem_addr
, buffer
, mem_len
);
4565 /* Sends a packet with content determined by the printf format string
4566 FORMAT and the remaining arguments, then gets the reply. Returns
4567 whether the packet was a success, a failure, or unknown. */
4570 remote_send_printf (const char *format
, ...)
4572 struct remote_state
*rs
= get_remote_state ();
4573 int max_size
= get_remote_packet_size ();
4576 va_start (ap
, format
);
4579 if (vsnprintf (rs
->buf
, max_size
, format
, ap
) >= max_size
)
4580 internal_error (__FILE__
, __LINE__
, "Too long remote packet.");
4582 if (putpkt (rs
->buf
) < 0)
4583 error (_("Communication problem with target."));
4586 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4588 return packet_check_result (rs
->buf
);
4592 restore_remote_timeout (void *p
)
4594 int value
= *(int *)p
;
4595 remote_timeout
= value
;
4598 /* Flash writing can take quite some time. We'll set
4599 effectively infinite timeout for flash operations.
4600 In future, we'll need to decide on a better approach. */
4601 static const int remote_flash_timeout
= 1000;
4604 remote_flash_erase (struct target_ops
*ops
,
4605 ULONGEST address
, LONGEST length
)
4607 int saved_remote_timeout
= remote_timeout
;
4608 enum packet_result ret
;
4610 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4611 &saved_remote_timeout
);
4612 remote_timeout
= remote_flash_timeout
;
4614 ret
= remote_send_printf ("vFlashErase:%s,%s",
4619 case PACKET_UNKNOWN
:
4620 error (_("Remote target does not support flash erase"));
4622 error (_("Error erasing flash with vFlashErase packet"));
4627 do_cleanups (back_to
);
4631 remote_flash_write (struct target_ops
*ops
,
4632 ULONGEST address
, LONGEST length
,
4633 const gdb_byte
*data
)
4635 int saved_remote_timeout
= remote_timeout
;
4637 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4638 &saved_remote_timeout
);
4640 remote_timeout
= remote_flash_timeout
;
4641 ret
= remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 'X', 0);
4642 do_cleanups (back_to
);
4648 remote_flash_done (struct target_ops
*ops
)
4650 int saved_remote_timeout
= remote_timeout
;
4652 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4653 &saved_remote_timeout
);
4655 remote_timeout
= remote_flash_timeout
;
4656 ret
= remote_send_printf ("vFlashDone");
4657 do_cleanups (back_to
);
4661 case PACKET_UNKNOWN
:
4662 error (_("Remote target does not support vFlashDone"));
4664 error (_("Error finishing flash operation"));
4671 remote_files_info (struct target_ops
*ignore
)
4673 puts_filtered ("Debugging a target over a serial line.\n");
4676 /* Stuff for dealing with the packets which are part of this protocol.
4677 See comment at top of file for details. */
4679 /* Read a single character from the remote end. */
4682 readchar (int timeout
)
4686 ch
= serial_readchar (remote_desc
, timeout
);
4691 switch ((enum serial_rc
) ch
)
4694 target_mourn_inferior ();
4695 error (_("Remote connection closed"));
4698 perror_with_name (_("Remote communication error"));
4700 case SERIAL_TIMEOUT
:
4706 /* Send the command in *BUF to the remote machine, and read the reply
4707 into *BUF. Report an error if we get an error reply. Resize
4708 *BUF using xrealloc if necessary to hold the result, and update
4712 remote_send (char **buf
,
4716 getpkt (buf
, sizeof_buf
, 0);
4718 if ((*buf
)[0] == 'E')
4719 error (_("Remote failure reply: %s"), *buf
);
4722 /* Display a null-terminated packet on stdout, for debugging, using C
4726 print_packet (char *buf
)
4728 puts_filtered ("\"");
4729 fputstr_filtered (buf
, '"', gdb_stdout
);
4730 puts_filtered ("\"");
4736 return putpkt_binary (buf
, strlen (buf
));
4739 /* Send a packet to the remote machine, with error checking. The data
4740 of the packet is in BUF. The string in BUF can be at most
4741 get_remote_packet_size () - 5 to account for the $, # and checksum,
4742 and for a possible /0 if we are debugging (remote_debug) and want
4743 to print the sent packet as a string. */
4746 putpkt_binary (char *buf
, int cnt
)
4748 struct remote_state
*rs
= get_remote_state ();
4750 unsigned char csum
= 0;
4751 char *buf2
= alloca (cnt
+ 6);
4757 /* We're sending out a new packet. Make sure we don't look at a
4758 stale cached response. */
4759 rs
->cached_wait_status
= 0;
4761 /* Copy the packet into buffer BUF2, encapsulating it
4762 and giving it a checksum. */
4767 for (i
= 0; i
< cnt
; i
++)
4773 *p
++ = tohex ((csum
>> 4) & 0xf);
4774 *p
++ = tohex (csum
& 0xf);
4776 /* Send it over and over until we get a positive ack. */
4780 int started_error_output
= 0;
4785 fprintf_unfiltered (gdb_stdlog
, "Sending packet: ");
4786 fputstrn_unfiltered (buf2
, p
- buf2
, 0, gdb_stdlog
);
4787 fprintf_unfiltered (gdb_stdlog
, "...");
4788 gdb_flush (gdb_stdlog
);
4790 if (serial_write (remote_desc
, buf2
, p
- buf2
))
4791 perror_with_name (_("putpkt: write failed"));
4793 /* Read until either a timeout occurs (-2) or '+' is read. */
4796 ch
= readchar (remote_timeout
);
4804 case SERIAL_TIMEOUT
:
4806 if (started_error_output
)
4808 putchar_unfiltered ('\n');
4809 started_error_output
= 0;
4818 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
4822 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
4823 case SERIAL_TIMEOUT
:
4827 break; /* Retransmit buffer. */
4831 fprintf_unfiltered (gdb_stdlog
,
4832 "Packet instead of Ack, ignoring it\n");
4833 /* It's probably an old response sent because an ACK
4834 was lost. Gobble up the packet and ack it so it
4835 doesn't get retransmitted when we resend this
4838 serial_write (remote_desc
, "+", 1);
4839 continue; /* Now, go look for +. */
4844 if (!started_error_output
)
4846 started_error_output
= 1;
4847 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
4849 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
4853 break; /* Here to retransmit. */
4857 /* This is wrong. If doing a long backtrace, the user should be
4858 able to get out next time we call QUIT, without anything as
4859 violent as interrupt_query. If we want to provide a way out of
4860 here without getting to the next QUIT, it should be based on
4861 hitting ^C twice as in remote_wait. */
4871 /* Come here after finding the start of a frame when we expected an
4872 ack. Do our best to discard the rest of this packet. */
4881 c
= readchar (remote_timeout
);
4884 case SERIAL_TIMEOUT
:
4885 /* Nothing we can do. */
4888 /* Discard the two bytes of checksum and stop. */
4889 c
= readchar (remote_timeout
);
4891 c
= readchar (remote_timeout
);
4894 case '*': /* Run length encoding. */
4895 /* Discard the repeat count. */
4896 c
= readchar (remote_timeout
);
4901 /* A regular character. */
4907 /* Come here after finding the start of the frame. Collect the rest
4908 into *BUF, verifying the checksum, length, and handling run-length
4909 compression. NUL terminate the buffer. If there is not enough room,
4910 expand *BUF using xrealloc.
4912 Returns -1 on error, number of characters in buffer (ignoring the
4913 trailing NULL) on success. (could be extended to return one of the
4914 SERIAL status indications). */
4917 read_frame (char **buf_p
,
4930 c
= readchar (remote_timeout
);
4933 case SERIAL_TIMEOUT
:
4935 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
4939 fputs_filtered ("Saw new packet start in middle of old one\n",
4941 return -1; /* Start a new packet, count retries. */
4944 unsigned char pktcsum
;
4950 check_0
= readchar (remote_timeout
);
4952 check_1
= readchar (remote_timeout
);
4954 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
4957 fputs_filtered ("Timeout in checksum, retrying\n",
4961 else if (check_0
< 0 || check_1
< 0)
4964 fputs_filtered ("Communication error in checksum\n",
4969 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
4970 if (csum
== pktcsum
)
4975 fprintf_filtered (gdb_stdlog
,
4976 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
4978 fputstrn_filtered (buf
, bc
, 0, gdb_stdlog
);
4979 fputs_filtered ("\n", gdb_stdlog
);
4981 /* Number of characters in buffer ignoring trailing
4985 case '*': /* Run length encoding. */
4990 c
= readchar (remote_timeout
);
4992 repeat
= c
- ' ' + 3; /* Compute repeat count. */
4994 /* The character before ``*'' is repeated. */
4996 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
4998 if (bc
+ repeat
- 1 >= *sizeof_buf
- 1)
5000 /* Make some more room in the buffer. */
5001 *sizeof_buf
+= repeat
;
5002 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
5006 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
5012 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
5016 if (bc
>= *sizeof_buf
- 1)
5018 /* Make some more room in the buffer. */
5020 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
5031 /* Read a packet from the remote machine, with error checking, and
5032 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5033 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5034 rather than timing out; this is used (in synchronous mode) to wait
5035 for a target that is is executing user code to stop. */
5036 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
5037 don't have to change all the calls to getpkt to deal with the
5038 return value, because at the moment I don't know what the right
5039 thing to do it for those. */
5047 timed_out
= getpkt_sane (buf
, sizeof_buf
, forever
);
5051 /* Read a packet from the remote machine, with error checking, and
5052 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5053 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5054 rather than timing out; this is used (in synchronous mode) to wait
5055 for a target that is is executing user code to stop. If FOREVER ==
5056 0, this function is allowed to time out gracefully and return an
5057 indication of this to the caller. Otherwise return the number
5060 getpkt_sane (char **buf
, long *sizeof_buf
, int forever
)
5062 struct remote_state
*rs
= get_remote_state ();
5068 /* We're reading a new response. Make sure we don't look at a
5069 previously cached response. */
5070 rs
->cached_wait_status
= 0;
5072 strcpy (*buf
, "timeout");
5076 timeout
= watchdog
> 0 ? watchdog
: -1;
5080 timeout
= remote_timeout
;
5084 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
5086 /* This can loop forever if the remote side sends us characters
5087 continuously, but if it pauses, we'll get a zero from
5088 readchar because of timeout. Then we'll count that as a
5091 /* Note that we will only wait forever prior to the start of a
5092 packet. After that, we expect characters to arrive at a
5093 brisk pace. They should show up within remote_timeout
5098 c
= readchar (timeout
);
5100 if (c
== SERIAL_TIMEOUT
)
5102 if (forever
) /* Watchdog went off? Kill the target. */
5105 target_mourn_inferior ();
5106 error (_("Watchdog timeout has expired. Target detached."));
5109 fputs_filtered ("Timed out.\n", gdb_stdlog
);
5115 /* We've found the start of a packet, now collect the data. */
5117 val
= read_frame (buf
, sizeof_buf
);
5123 fprintf_unfiltered (gdb_stdlog
, "Packet received: ");
5124 fputstrn_unfiltered (*buf
, val
, 0, gdb_stdlog
);
5125 fprintf_unfiltered (gdb_stdlog
, "\n");
5127 serial_write (remote_desc
, "+", 1);
5131 /* Try the whole thing again. */
5133 serial_write (remote_desc
, "-", 1);
5136 /* We have tried hard enough, and just can't receive the packet.
5139 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
5140 serial_write (remote_desc
, "+", 1);
5147 /* Unregister the file descriptor from the event loop. */
5148 if (target_is_async_p ())
5149 serial_async (remote_desc
, NULL
, 0);
5151 /* Use catch_errors so the user can quit from gdb even when we
5152 aren't on speaking terms with the remote system. */
5153 catch_errors ((catch_errors_ftype
*) putpkt
, "k", "", RETURN_MASK_ERROR
);
5155 /* Don't wait for it to die. I'm not really sure it matters whether
5156 we do or not. For the existing stubs, kill is a noop. */
5157 target_mourn_inferior ();
5163 remote_mourn_1 (&remote_ops
);
5166 /* Worker function for remote_mourn. */
5168 remote_mourn_1 (struct target_ops
*target
)
5170 unpush_target (target
);
5171 generic_mourn_inferior ();
5175 extended_remote_mourn_1 (struct target_ops
*target
)
5177 struct remote_state
*rs
= get_remote_state ();
5179 /* Unlike "target remote", we do not want to unpush the target; then
5180 the next time the user says "run", we won't be connected. */
5182 /* Call common code to mark the inferior as not running. */
5183 generic_mourn_inferior ();
5185 /* Check whether the target is running now - some remote stubs
5186 automatically restart after kill. */
5188 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5190 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
5192 /* Assume that the target has been restarted. Set inferior_ptid
5193 so that bits of core GDB realizes there's something here, e.g.,
5194 so that the user can say "kill" again. */
5195 inferior_ptid
= remote_current_thread (magic_null_ptid
);
5196 add_thread_silent (inferior_ptid
);
5200 /* Mark this (still pushed) target as not executable until we
5202 target_mark_exited (target
);
5207 extended_remote_mourn (void)
5209 extended_remote_mourn_1 (&extended_remote_ops
);
5213 extended_remote_run (char *args
)
5215 struct remote_state
*rs
= get_remote_state ();
5219 /* If the user has disabled vRun support, or we have detected that
5220 support is not available, do not try it. */
5221 if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
5224 strcpy (rs
->buf
, "vRun;");
5225 len
= strlen (rs
->buf
);
5227 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
5228 error (_("Remote file name too long for run packet"));
5229 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
+ len
, 0);
5233 struct cleanup
*back_to
;
5237 argv
= buildargv (args
);
5238 back_to
= make_cleanup ((void (*) (void *)) freeargv
, argv
);
5239 for (i
= 0; argv
[i
] != NULL
; i
++)
5241 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
5242 error (_("Argument list too long for run packet"));
5243 rs
->buf
[len
++] = ';';
5244 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
+ len
, 0);
5246 do_cleanups (back_to
);
5249 rs
->buf
[len
++] = '\0';
5252 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5254 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]) == PACKET_OK
)
5256 /* We have a wait response; we don't need it, though. All is well. */
5259 else if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
5260 /* It wasn't disabled before, but it is now. */
5264 if (remote_exec_file
[0] == '\0')
5265 error (_("Running the default executable on the remote target failed; "
5266 "try \"set remote exec-file\"?"));
5268 error (_("Running \"%s\" on the remote target failed"),
5273 /* In the extended protocol we want to be able to do things like
5274 "run" and have them basically work as expected. So we need
5275 a special create_inferior function. We support changing the
5276 executable file and the command line arguments, but not the
5280 extended_remote_create_inferior_1 (char *exec_file
, char *args
,
5281 char **env
, int from_tty
)
5283 /* If running asynchronously, register the target file descriptor
5284 with the event loop. */
5285 if (target_can_async_p ())
5286 target_async (inferior_event_handler
, 0);
5288 /* Now restart the remote server. */
5289 if (extended_remote_run (args
) == -1)
5291 /* vRun was not supported. Fail if we need it to do what the
5293 if (remote_exec_file
[0])
5294 error (_("Remote target does not support \"set remote exec-file\""));
5296 error (_("Remote target does not support \"set args\" or run <ARGS>"));
5298 /* Fall back to "R". */
5299 extended_remote_restart ();
5302 /* Clean up from the last time we ran, before we mark the target
5303 running again. This will mark breakpoints uninserted, and
5304 get_offsets may insert breakpoints. */
5305 init_thread_list ();
5306 init_wait_for_inferior ();
5308 /* Now mark the inferior as running before we do anything else. */
5310 inferior_ptid
= magic_null_ptid
;
5312 add_thread_silent (inferior_ptid
);
5314 target_mark_running (&extended_remote_ops
);
5316 /* Get updated offsets, if the stub uses qOffsets. */
5321 extended_remote_create_inferior (char *exec_file
, char *args
,
5322 char **env
, int from_tty
)
5324 extended_remote_create_inferior_1 (exec_file
, args
, env
, from_tty
);
5328 /* Insert a breakpoint. On targets that have software breakpoint
5329 support, we ask the remote target to do the work; on targets
5330 which don't, we insert a traditional memory breakpoint. */
5333 remote_insert_breakpoint (struct bp_target_info
*bp_tgt
)
5335 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
5336 If it succeeds, then set the support to PACKET_ENABLE. If it
5337 fails, and the user has explicitly requested the Z support then
5338 report an error, otherwise, mark it disabled and go on. */
5340 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
5342 CORE_ADDR addr
= bp_tgt
->placed_address
;
5343 struct remote_state
*rs
;
5347 gdbarch_breakpoint_from_pc
5348 (current_gdbarch
, &addr
, &bpsize
);
5350 rs
= get_remote_state ();
5356 addr
= (ULONGEST
) remote_address_masked (addr
);
5357 p
+= hexnumstr (p
, addr
);
5358 sprintf (p
, ",%d", bpsize
);
5361 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5363 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
5368 bp_tgt
->placed_address
= addr
;
5369 bp_tgt
->placed_size
= bpsize
;
5371 case PACKET_UNKNOWN
:
5376 return memory_insert_breakpoint (bp_tgt
);
5380 remote_remove_breakpoint (struct bp_target_info
*bp_tgt
)
5382 CORE_ADDR addr
= bp_tgt
->placed_address
;
5383 struct remote_state
*rs
= get_remote_state ();
5386 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
5394 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
5395 p
+= hexnumstr (p
, addr
);
5396 sprintf (p
, ",%d", bp_tgt
->placed_size
);
5399 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5401 return (rs
->buf
[0] == 'E');
5404 return memory_remove_breakpoint (bp_tgt
);
5408 watchpoint_to_Z_packet (int type
)
5413 return Z_PACKET_WRITE_WP
;
5416 return Z_PACKET_READ_WP
;
5419 return Z_PACKET_ACCESS_WP
;
5422 internal_error (__FILE__
, __LINE__
,
5423 _("hw_bp_to_z: bad watchpoint type %d"), type
);
5428 remote_insert_watchpoint (CORE_ADDR addr
, int len
, int type
)
5430 struct remote_state
*rs
= get_remote_state ();
5432 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
5434 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
5437 sprintf (rs
->buf
, "Z%x,", packet
);
5438 p
= strchr (rs
->buf
, '\0');
5439 addr
= remote_address_masked (addr
);
5440 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5441 sprintf (p
, ",%x", len
);
5444 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5446 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
5449 case PACKET_UNKNOWN
:
5454 internal_error (__FILE__
, __LINE__
,
5455 _("remote_insert_watchpoint: reached end of function"));
5460 remote_remove_watchpoint (CORE_ADDR addr
, int len
, int type
)
5462 struct remote_state
*rs
= get_remote_state ();
5464 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
5466 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
5469 sprintf (rs
->buf
, "z%x,", packet
);
5470 p
= strchr (rs
->buf
, '\0');
5471 addr
= remote_address_masked (addr
);
5472 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5473 sprintf (p
, ",%x", len
);
5475 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5477 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
5480 case PACKET_UNKNOWN
:
5485 internal_error (__FILE__
, __LINE__
,
5486 _("remote_remove_watchpoint: reached end of function"));
5490 int remote_hw_watchpoint_limit
= -1;
5491 int remote_hw_breakpoint_limit
= -1;
5494 remote_check_watch_resources (int type
, int cnt
, int ot
)
5496 if (type
== bp_hardware_breakpoint
)
5498 if (remote_hw_breakpoint_limit
== 0)
5500 else if (remote_hw_breakpoint_limit
< 0)
5502 else if (cnt
<= remote_hw_breakpoint_limit
)
5507 if (remote_hw_watchpoint_limit
== 0)
5509 else if (remote_hw_watchpoint_limit
< 0)
5513 else if (cnt
<= remote_hw_watchpoint_limit
)
5520 remote_stopped_by_watchpoint (void)
5522 return remote_stopped_by_watchpoint_p
;
5526 remote_stopped_data_address (struct target_ops
*target
, CORE_ADDR
*addr_p
)
5529 if (remote_stopped_by_watchpoint ())
5531 *addr_p
= remote_watch_data_address
;
5540 remote_insert_hw_breakpoint (struct bp_target_info
*bp_tgt
)
5543 struct remote_state
*rs
;
5546 /* The length field should be set to the size of a breakpoint
5547 instruction, even though we aren't inserting one ourselves. */
5549 gdbarch_breakpoint_from_pc
5550 (current_gdbarch
, &bp_tgt
->placed_address
, &bp_tgt
->placed_size
);
5552 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
5555 rs
= get_remote_state ();
5562 addr
= remote_address_masked (bp_tgt
->placed_address
);
5563 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5564 sprintf (p
, ",%x", bp_tgt
->placed_size
);
5567 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5569 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
5572 case PACKET_UNKNOWN
:
5577 internal_error (__FILE__
, __LINE__
,
5578 _("remote_insert_hw_breakpoint: reached end of function"));
5583 remote_remove_hw_breakpoint (struct bp_target_info
*bp_tgt
)
5586 struct remote_state
*rs
= get_remote_state ();
5589 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
5596 addr
= remote_address_masked (bp_tgt
->placed_address
);
5597 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5598 sprintf (p
, ",%x", bp_tgt
->placed_size
);
5601 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5603 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
5606 case PACKET_UNKNOWN
:
5611 internal_error (__FILE__
, __LINE__
,
5612 _("remote_remove_hw_breakpoint: reached end of function"));
5615 /* Some targets are only capable of doing downloads, and afterwards
5616 they switch to the remote serial protocol. This function provides
5617 a clean way to get from the download target to the remote target.
5618 It's basically just a wrapper so that we don't have to expose any
5619 of the internal workings of remote.c.
5621 Prior to calling this routine, you should shutdown the current
5622 target code, else you will get the "A program is being debugged
5623 already..." message. Usually a call to pop_target() suffices. */
5626 push_remote_target (char *name
, int from_tty
)
5628 printf_filtered (_("Switching to remote protocol\n"));
5629 remote_open (name
, from_tty
);
5632 /* Table used by the crc32 function to calcuate the checksum. */
5634 static unsigned long crc32_table
[256] =
5637 static unsigned long
5638 crc32 (unsigned char *buf
, int len
, unsigned int crc
)
5640 if (!crc32_table
[1])
5642 /* Initialize the CRC table and the decoding table. */
5646 for (i
= 0; i
< 256; i
++)
5648 for (c
= i
<< 24, j
= 8; j
> 0; --j
)
5649 c
= c
& 0x80000000 ? (c
<< 1) ^ 0x04c11db7 : (c
<< 1);
5656 crc
= (crc
<< 8) ^ crc32_table
[((crc
>> 24) ^ *buf
) & 255];
5662 /* compare-sections command
5664 With no arguments, compares each loadable section in the exec bfd
5665 with the same memory range on the target, and reports mismatches.
5666 Useful for verifying the image on the target against the exec file.
5667 Depends on the target understanding the new "qCRC:" request. */
5669 /* FIXME: cagney/1999-10-26: This command should be broken down into a
5670 target method (target verify memory) and generic version of the
5671 actual command. This will allow other high-level code (especially
5672 generic_load()) to make use of this target functionality. */
5675 compare_sections_command (char *args
, int from_tty
)
5677 struct remote_state
*rs
= get_remote_state ();
5679 unsigned long host_crc
, target_crc
;
5680 extern bfd
*exec_bfd
;
5681 struct cleanup
*old_chain
;
5684 const char *sectname
;
5691 error (_("command cannot be used without an exec file"));
5692 if (!current_target
.to_shortname
||
5693 strcmp (current_target
.to_shortname
, "remote") != 0)
5694 error (_("command can only be used with remote target"));
5696 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
5698 if (!(s
->flags
& SEC_LOAD
))
5699 continue; /* skip non-loadable section */
5701 size
= bfd_get_section_size (s
);
5703 continue; /* skip zero-length section */
5705 sectname
= bfd_get_section_name (exec_bfd
, s
);
5706 if (args
&& strcmp (args
, sectname
) != 0)
5707 continue; /* not the section selected by user */
5709 matched
= 1; /* do this section */
5711 /* FIXME: assumes lma can fit into long. */
5712 xsnprintf (rs
->buf
, get_remote_packet_size (), "qCRC:%lx,%lx",
5713 (long) lma
, (long) size
);
5716 /* Be clever; compute the host_crc before waiting for target
5718 sectdata
= xmalloc (size
);
5719 old_chain
= make_cleanup (xfree
, sectdata
);
5720 bfd_get_section_contents (exec_bfd
, s
, sectdata
, 0, size
);
5721 host_crc
= crc32 ((unsigned char *) sectdata
, size
, 0xffffffff);
5723 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5724 if (rs
->buf
[0] == 'E')
5725 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
5726 sectname
, paddr (lma
), paddr (lma
+ size
));
5727 if (rs
->buf
[0] != 'C')
5728 error (_("remote target does not support this operation"));
5730 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
5731 target_crc
= target_crc
* 16 + fromhex (*tmp
);
5733 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
5734 sectname
, paddr (lma
), paddr (lma
+ size
));
5735 if (host_crc
== target_crc
)
5736 printf_filtered ("matched.\n");
5739 printf_filtered ("MIS-MATCHED!\n");
5743 do_cleanups (old_chain
);
5746 warning (_("One or more sections of the remote executable does not match\n\
5747 the loaded file\n"));
5748 if (args
&& !matched
)
5749 printf_filtered (_("No loaded section named '%s'.\n"), args
);
5752 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
5753 into remote target. The number of bytes written to the remote
5754 target is returned, or -1 for error. */
5757 remote_write_qxfer (struct target_ops
*ops
, const char *object_name
,
5758 const char *annex
, const gdb_byte
*writebuf
,
5759 ULONGEST offset
, LONGEST len
,
5760 struct packet_config
*packet
)
5765 struct remote_state
*rs
= get_remote_state ();
5766 int max_size
= get_memory_write_packet_size ();
5768 if (packet
->support
== PACKET_DISABLE
)
5771 /* Insert header. */
5772 i
= snprintf (rs
->buf
, max_size
,
5773 "qXfer:%s:write:%s:%s:",
5774 object_name
, annex
? annex
: "",
5775 phex_nz (offset
, sizeof offset
));
5776 max_size
-= (i
+ 1);
5778 /* Escape as much data as fits into rs->buf. */
5779 buf_len
= remote_escape_output
5780 (writebuf
, len
, (rs
->buf
+ i
), &max_size
, max_size
);
5782 if (putpkt_binary (rs
->buf
, i
+ buf_len
) < 0
5783 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
5784 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
5787 unpack_varlen_hex (rs
->buf
, &n
);
5791 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
5792 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
5793 number of bytes read is returned, or 0 for EOF, or -1 for error.
5794 The number of bytes read may be less than LEN without indicating an
5795 EOF. PACKET is checked and updated to indicate whether the remote
5796 target supports this object. */
5799 remote_read_qxfer (struct target_ops
*ops
, const char *object_name
,
5801 gdb_byte
*readbuf
, ULONGEST offset
, LONGEST len
,
5802 struct packet_config
*packet
)
5804 static char *finished_object
;
5805 static char *finished_annex
;
5806 static ULONGEST finished_offset
;
5808 struct remote_state
*rs
= get_remote_state ();
5809 unsigned int total
= 0;
5810 LONGEST i
, n
, packet_len
;
5812 if (packet
->support
== PACKET_DISABLE
)
5815 /* Check whether we've cached an end-of-object packet that matches
5817 if (finished_object
)
5819 if (strcmp (object_name
, finished_object
) == 0
5820 && strcmp (annex
? annex
: "", finished_annex
) == 0
5821 && offset
== finished_offset
)
5824 /* Otherwise, we're now reading something different. Discard
5826 xfree (finished_object
);
5827 xfree (finished_annex
);
5828 finished_object
= NULL
;
5829 finished_annex
= NULL
;
5832 /* Request only enough to fit in a single packet. The actual data
5833 may not, since we don't know how much of it will need to be escaped;
5834 the target is free to respond with slightly less data. We subtract
5835 five to account for the response type and the protocol frame. */
5836 n
= min (get_remote_packet_size () - 5, len
);
5837 snprintf (rs
->buf
, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
5838 object_name
, annex
? annex
: "",
5839 phex_nz (offset
, sizeof offset
),
5840 phex_nz (n
, sizeof n
));
5841 i
= putpkt (rs
->buf
);
5846 packet_len
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
5847 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
5850 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
5851 error (_("Unknown remote qXfer reply: %s"), rs
->buf
);
5853 /* 'm' means there is (or at least might be) more data after this
5854 batch. That does not make sense unless there's at least one byte
5855 of data in this reply. */
5856 if (rs
->buf
[0] == 'm' && packet_len
== 1)
5857 error (_("Remote qXfer reply contained no data."));
5859 /* Got some data. */
5860 i
= remote_unescape_input (rs
->buf
+ 1, packet_len
- 1, readbuf
, n
);
5862 /* 'l' is an EOF marker, possibly including a final block of data,
5863 or possibly empty. If we have the final block of a non-empty
5864 object, record this fact to bypass a subsequent partial read. */
5865 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
5867 finished_object
= xstrdup (object_name
);
5868 finished_annex
= xstrdup (annex
? annex
: "");
5869 finished_offset
= offset
+ i
;
5876 remote_xfer_partial (struct target_ops
*ops
, enum target_object object
,
5877 const char *annex
, gdb_byte
*readbuf
,
5878 const gdb_byte
*writebuf
, ULONGEST offset
, LONGEST len
)
5880 struct remote_state
*rs
= get_remote_state ();
5885 /* Handle memory using the standard memory routines. */
5886 if (object
== TARGET_OBJECT_MEMORY
)
5891 /* If the remote target is connected but not running, we should
5892 pass this request down to a lower stratum (e.g. the executable
5894 if (!target_has_execution
)
5897 if (writebuf
!= NULL
)
5898 xfered
= remote_write_bytes (offset
, writebuf
, len
);
5900 xfered
= remote_read_bytes (offset
, readbuf
, len
);
5904 else if (xfered
== 0 && errno
== 0)
5910 /* Handle SPU memory using qxfer packets. */
5911 if (object
== TARGET_OBJECT_SPU
)
5914 return remote_read_qxfer (ops
, "spu", annex
, readbuf
, offset
, len
,
5915 &remote_protocol_packets
5916 [PACKET_qXfer_spu_read
]);
5918 return remote_write_qxfer (ops
, "spu", annex
, writebuf
, offset
, len
,
5919 &remote_protocol_packets
5920 [PACKET_qXfer_spu_write
]);
5923 /* Only handle flash writes. */
5924 if (writebuf
!= NULL
)
5930 case TARGET_OBJECT_FLASH
:
5931 xfered
= remote_flash_write (ops
, offset
, len
, writebuf
);
5935 else if (xfered
== 0 && errno
== 0)
5945 /* Map pre-existing objects onto letters. DO NOT do this for new
5946 objects!!! Instead specify new query packets. */
5949 case TARGET_OBJECT_AVR
:
5953 case TARGET_OBJECT_AUXV
:
5954 gdb_assert (annex
== NULL
);
5955 return remote_read_qxfer (ops
, "auxv", annex
, readbuf
, offset
, len
,
5956 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
5958 case TARGET_OBJECT_AVAILABLE_FEATURES
:
5959 return remote_read_qxfer
5960 (ops
, "features", annex
, readbuf
, offset
, len
,
5961 &remote_protocol_packets
[PACKET_qXfer_features
]);
5963 case TARGET_OBJECT_LIBRARIES
:
5964 return remote_read_qxfer
5965 (ops
, "libraries", annex
, readbuf
, offset
, len
,
5966 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
5968 case TARGET_OBJECT_MEMORY_MAP
:
5969 gdb_assert (annex
== NULL
);
5970 return remote_read_qxfer (ops
, "memory-map", annex
, readbuf
, offset
, len
,
5971 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
5977 /* Note: a zero OFFSET and LEN can be used to query the minimum
5979 if (offset
== 0 && len
== 0)
5980 return (get_remote_packet_size ());
5981 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
5982 large enough let the caller deal with it. */
5983 if (len
< get_remote_packet_size ())
5985 len
= get_remote_packet_size ();
5987 /* Except for querying the minimum buffer size, target must be open. */
5989 error (_("remote query is only available after target open"));
5991 gdb_assert (annex
!= NULL
);
5992 gdb_assert (readbuf
!= NULL
);
5998 /* We used one buffer char for the remote protocol q command and
5999 another for the query type. As the remote protocol encapsulation
6000 uses 4 chars plus one extra in case we are debugging
6001 (remote_debug), we have PBUFZIZ - 7 left to pack the query
6004 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
6006 /* Bad caller may have sent forbidden characters. */
6007 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
6012 gdb_assert (annex
[i
] == '\0');
6014 i
= putpkt (rs
->buf
);
6018 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6019 strcpy ((char *) readbuf
, rs
->buf
);
6021 return strlen ((char *) readbuf
);
6025 remote_search_memory (struct target_ops
* ops
,
6026 CORE_ADDR start_addr
, ULONGEST search_space_len
,
6027 const gdb_byte
*pattern
, ULONGEST pattern_len
,
6028 CORE_ADDR
*found_addrp
)
6030 struct remote_state
*rs
= get_remote_state ();
6031 int max_size
= get_memory_write_packet_size ();
6032 struct packet_config
*packet
=
6033 &remote_protocol_packets
[PACKET_qSearch_memory
];
6034 /* number of packet bytes used to encode the pattern,
6035 this could be more than PATTERN_LEN due to escape characters */
6036 int escaped_pattern_len
;
6037 /* amount of pattern that was encodable in the packet */
6038 int used_pattern_len
;
6041 ULONGEST found_addr
;
6043 /* Don't go to the target if we don't have to.
6044 This is done before checking packet->support to avoid the possibility that
6045 a success for this edge case means the facility works in general. */
6046 if (pattern_len
> search_space_len
)
6048 if (pattern_len
== 0)
6050 *found_addrp
= start_addr
;
6054 /* If we already know the packet isn't supported, fall back to the simple
6055 way of searching memory. */
6057 if (packet
->support
== PACKET_DISABLE
)
6059 /* Target doesn't provided special support, fall back and use the
6060 standard support (copy memory and do the search here). */
6061 return simple_search_memory (ops
, start_addr
, search_space_len
,
6062 pattern
, pattern_len
, found_addrp
);
6065 /* Insert header. */
6066 i
= snprintf (rs
->buf
, max_size
,
6067 "qSearch:memory:%s;%s;",
6068 paddr_nz (start_addr
),
6069 phex_nz (search_space_len
, sizeof (search_space_len
)));
6070 max_size
-= (i
+ 1);
6072 /* Escape as much data as fits into rs->buf. */
6073 escaped_pattern_len
=
6074 remote_escape_output (pattern
, pattern_len
, (rs
->buf
+ i
),
6075 &used_pattern_len
, max_size
);
6077 /* Bail if the pattern is too large. */
6078 if (used_pattern_len
!= pattern_len
)
6079 error ("Pattern is too large to transmit to remote target.");
6081 if (putpkt_binary (rs
->buf
, i
+ escaped_pattern_len
) < 0
6082 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
6083 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
6085 /* The request may not have worked because the command is not
6086 supported. If so, fall back to the simple way. */
6087 if (packet
->support
== PACKET_DISABLE
)
6089 return simple_search_memory (ops
, start_addr
, search_space_len
,
6090 pattern
, pattern_len
, found_addrp
);
6095 if (rs
->buf
[0] == '0')
6097 else if (rs
->buf
[0] == '1')
6100 if (rs
->buf
[1] != ',')
6101 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
6102 unpack_varlen_hex (rs
->buf
+ 2, &found_addr
);
6103 *found_addrp
= found_addr
;
6106 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
6112 remote_rcmd (char *command
,
6113 struct ui_file
*outbuf
)
6115 struct remote_state
*rs
= get_remote_state ();
6119 error (_("remote rcmd is only available after target open"));
6121 /* Send a NULL command across as an empty command. */
6122 if (command
== NULL
)
6125 /* The query prefix. */
6126 strcpy (rs
->buf
, "qRcmd,");
6127 p
= strchr (rs
->buf
, '\0');
6129 if ((strlen (rs
->buf
) + strlen (command
) * 2 + 8/*misc*/) > get_remote_packet_size ())
6130 error (_("\"monitor\" command ``%s'' is too long."), command
);
6132 /* Encode the actual command. */
6133 bin2hex ((gdb_byte
*) command
, p
, 0);
6135 if (putpkt (rs
->buf
) < 0)
6136 error (_("Communication problem with target."));
6138 /* get/display the response */
6143 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
6145 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6148 error (_("Target does not support this command."));
6149 if (buf
[0] == 'O' && buf
[1] != 'K')
6151 remote_console_output (buf
+ 1); /* 'O' message from stub. */
6154 if (strcmp (buf
, "OK") == 0)
6156 if (strlen (buf
) == 3 && buf
[0] == 'E'
6157 && isdigit (buf
[1]) && isdigit (buf
[2]))
6159 error (_("Protocol error with Rcmd"));
6161 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
6163 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
6164 fputc_unfiltered (c
, outbuf
);
6170 static VEC(mem_region_s
) *
6171 remote_memory_map (struct target_ops
*ops
)
6173 VEC(mem_region_s
) *result
= NULL
;
6174 char *text
= target_read_stralloc (¤t_target
,
6175 TARGET_OBJECT_MEMORY_MAP
, NULL
);
6179 struct cleanup
*back_to
= make_cleanup (xfree
, text
);
6180 result
= parse_memory_map (text
);
6181 do_cleanups (back_to
);
6188 packet_command (char *args
, int from_tty
)
6190 struct remote_state
*rs
= get_remote_state ();
6193 error (_("command can only be used with remote target"));
6196 error (_("remote-packet command requires packet text as argument"));
6198 puts_filtered ("sending: ");
6199 print_packet (args
);
6200 puts_filtered ("\n");
6203 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6204 puts_filtered ("received: ");
6205 print_packet (rs
->buf
);
6206 puts_filtered ("\n");
6210 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
6212 static void display_thread_info (struct gdb_ext_thread_info
*info
);
6214 static void threadset_test_cmd (char *cmd
, int tty
);
6216 static void threadalive_test (char *cmd
, int tty
);
6218 static void threadlist_test_cmd (char *cmd
, int tty
);
6220 int get_and_display_threadinfo (threadref
*ref
);
6222 static void threadinfo_test_cmd (char *cmd
, int tty
);
6224 static int thread_display_step (threadref
*ref
, void *context
);
6226 static void threadlist_update_test_cmd (char *cmd
, int tty
);
6228 static void init_remote_threadtests (void);
6230 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
6233 threadset_test_cmd (char *cmd
, int tty
)
6235 int sample_thread
= SAMPLE_THREAD
;
6237 printf_filtered (_("Remote threadset test\n"));
6238 set_general_thread (sample_thread
);
6243 threadalive_test (char *cmd
, int tty
)
6245 int sample_thread
= SAMPLE_THREAD
;
6246 int pid
= ptid_get_pid (inferior_ptid
);
6247 ptid_t ptid
= ptid_build (pid
, 0, sample_thread
);
6249 if (remote_thread_alive (ptid
))
6250 printf_filtered ("PASS: Thread alive test\n");
6252 printf_filtered ("FAIL: Thread alive test\n");
6255 void output_threadid (char *title
, threadref
*ref
);
6258 output_threadid (char *title
, threadref
*ref
)
6262 pack_threadid (&hexid
[0], ref
); /* Convert threead id into hex. */
6264 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
6268 threadlist_test_cmd (char *cmd
, int tty
)
6271 threadref nextthread
;
6272 int done
, result_count
;
6273 threadref threadlist
[3];
6275 printf_filtered ("Remote Threadlist test\n");
6276 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
6277 &result_count
, &threadlist
[0]))
6278 printf_filtered ("FAIL: threadlist test\n");
6281 threadref
*scan
= threadlist
;
6282 threadref
*limit
= scan
+ result_count
;
6284 while (scan
< limit
)
6285 output_threadid (" thread ", scan
++);
6290 display_thread_info (struct gdb_ext_thread_info
*info
)
6292 output_threadid ("Threadid: ", &info
->threadid
);
6293 printf_filtered ("Name: %s\n ", info
->shortname
);
6294 printf_filtered ("State: %s\n", info
->display
);
6295 printf_filtered ("other: %s\n\n", info
->more_display
);
6299 get_and_display_threadinfo (threadref
*ref
)
6303 struct gdb_ext_thread_info threadinfo
;
6305 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
6306 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
6307 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
6308 display_thread_info (&threadinfo
);
6313 threadinfo_test_cmd (char *cmd
, int tty
)
6315 int athread
= SAMPLE_THREAD
;
6319 int_to_threadref (&thread
, athread
);
6320 printf_filtered ("Remote Threadinfo test\n");
6321 if (!get_and_display_threadinfo (&thread
))
6322 printf_filtered ("FAIL cannot get thread info\n");
6326 thread_display_step (threadref
*ref
, void *context
)
6328 /* output_threadid(" threadstep ",ref); *//* simple test */
6329 return get_and_display_threadinfo (ref
);
6333 threadlist_update_test_cmd (char *cmd
, int tty
)
6335 printf_filtered ("Remote Threadlist update test\n");
6336 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
6340 init_remote_threadtests (void)
6342 add_com ("tlist", class_obscure
, threadlist_test_cmd
, _("\
6343 Fetch and print the remote list of thread identifiers, one pkt only"));
6344 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
6345 _("Fetch and display info about one thread"));
6346 add_com ("tset", class_obscure
, threadset_test_cmd
,
6347 _("Test setting to a different thread"));
6348 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
6349 _("Iterate through updating all remote thread info"));
6350 add_com ("talive", class_obscure
, threadalive_test
,
6351 _(" Remote thread alive test "));
6356 /* Convert a thread ID to a string. Returns the string in a static
6360 remote_pid_to_str (ptid_t ptid
)
6362 static char buf
[64];
6364 if (ptid_equal (magic_null_ptid
, ptid
))
6366 xsnprintf (buf
, sizeof buf
, "Thread <main>");
6369 else if (ptid_get_tid (ptid
) != 0)
6371 xsnprintf (buf
, sizeof buf
, "Thread %ld",
6372 ptid_get_tid (ptid
));
6376 return normal_pid_to_str (ptid
);
6379 /* Get the address of the thread local variable in OBJFILE which is
6380 stored at OFFSET within the thread local storage for thread PTID. */
6383 remote_get_thread_local_address (ptid_t ptid
, CORE_ADDR lm
, CORE_ADDR offset
)
6385 if (remote_protocol_packets
[PACKET_qGetTLSAddr
].support
!= PACKET_DISABLE
)
6387 struct remote_state
*rs
= get_remote_state ();
6389 enum packet_result result
;
6391 strcpy (p
, "qGetTLSAddr:");
6393 p
+= hexnumstr (p
, ptid_get_tid (ptid
));
6395 p
+= hexnumstr (p
, offset
);
6397 p
+= hexnumstr (p
, lm
);
6401 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6402 result
= packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
6403 if (result
== PACKET_OK
)
6407 unpack_varlen_hex (rs
->buf
, &result
);
6410 else if (result
== PACKET_UNKNOWN
)
6411 throw_error (TLS_GENERIC_ERROR
,
6412 _("Remote target doesn't support qGetTLSAddr packet"));
6414 throw_error (TLS_GENERIC_ERROR
,
6415 _("Remote target failed to process qGetTLSAddr request"));
6418 throw_error (TLS_GENERIC_ERROR
,
6419 _("TLS not supported or disabled on this target"));
6424 /* Support for inferring a target description based on the current
6425 architecture and the size of a 'g' packet. While the 'g' packet
6426 can have any size (since optional registers can be left off the
6427 end), some sizes are easily recognizable given knowledge of the
6428 approximate architecture. */
6430 struct remote_g_packet_guess
6433 const struct target_desc
*tdesc
;
6435 typedef struct remote_g_packet_guess remote_g_packet_guess_s
;
6436 DEF_VEC_O(remote_g_packet_guess_s
);
6438 struct remote_g_packet_data
6440 VEC(remote_g_packet_guess_s
) *guesses
;
6443 static struct gdbarch_data
*remote_g_packet_data_handle
;
6446 remote_g_packet_data_init (struct obstack
*obstack
)
6448 return OBSTACK_ZALLOC (obstack
, struct remote_g_packet_data
);
6452 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
6453 const struct target_desc
*tdesc
)
6455 struct remote_g_packet_data
*data
6456 = gdbarch_data (gdbarch
, remote_g_packet_data_handle
);
6457 struct remote_g_packet_guess new_guess
, *guess
;
6460 gdb_assert (tdesc
!= NULL
);
6463 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
6465 if (guess
->bytes
== bytes
)
6466 internal_error (__FILE__
, __LINE__
,
6467 "Duplicate g packet description added for size %d",
6470 new_guess
.bytes
= bytes
;
6471 new_guess
.tdesc
= tdesc
;
6472 VEC_safe_push (remote_g_packet_guess_s
, data
->guesses
, &new_guess
);
6475 static const struct target_desc
*
6476 remote_read_description (struct target_ops
*target
)
6478 struct remote_g_packet_data
*data
6479 = gdbarch_data (current_gdbarch
, remote_g_packet_data_handle
);
6481 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
6483 struct remote_g_packet_guess
*guess
;
6485 int bytes
= send_g_packet ();
6488 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
6490 if (guess
->bytes
== bytes
)
6491 return guess
->tdesc
;
6493 /* We discard the g packet. A minor optimization would be to
6494 hold on to it, and fill the register cache once we have selected
6495 an architecture, but it's too tricky to do safely. */
6501 /* Remote file transfer support. This is host-initiated I/O, not
6502 target-initiated; for target-initiated, see remote-fileio.c. */
6504 /* If *LEFT is at least the length of STRING, copy STRING to
6505 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6506 decrease *LEFT. Otherwise raise an error. */
6509 remote_buffer_add_string (char **buffer
, int *left
, char *string
)
6511 int len
= strlen (string
);
6514 error (_("Packet too long for target."));
6516 memcpy (*buffer
, string
, len
);
6520 /* NUL-terminate the buffer as a convenience, if there is
6526 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
6527 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6528 decrease *LEFT. Otherwise raise an error. */
6531 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
6534 if (2 * len
> *left
)
6535 error (_("Packet too long for target."));
6537 bin2hex (bytes
, *buffer
, len
);
6541 /* NUL-terminate the buffer as a convenience, if there is
6547 /* If *LEFT is large enough, convert VALUE to hex and add it to
6548 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6549 decrease *LEFT. Otherwise raise an error. */
6552 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
6554 int len
= hexnumlen (value
);
6557 error (_("Packet too long for target."));
6559 hexnumstr (*buffer
, value
);
6563 /* NUL-terminate the buffer as a convenience, if there is
6569 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
6570 value, *REMOTE_ERRNO to the remote error number or zero if none
6571 was included, and *ATTACHMENT to point to the start of the annex
6572 if any. The length of the packet isn't needed here; there may
6573 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
6575 Return 0 if the packet could be parsed, -1 if it could not. If
6576 -1 is returned, the other variables may not be initialized. */
6579 remote_hostio_parse_result (char *buffer
, int *retcode
,
6580 int *remote_errno
, char **attachment
)
6587 if (buffer
[0] != 'F')
6591 *retcode
= strtol (&buffer
[1], &p
, 16);
6592 if (errno
!= 0 || p
== &buffer
[1])
6595 /* Check for ",errno". */
6599 *remote_errno
= strtol (p
+ 1, &p2
, 16);
6600 if (errno
!= 0 || p
+ 1 == p2
)
6605 /* Check for ";attachment". If there is no attachment, the
6606 packet should end here. */
6609 *attachment
= p
+ 1;
6612 else if (*p
== '\0')
6618 /* Send a prepared I/O packet to the target and read its response.
6619 The prepared packet is in the global RS->BUF before this function
6620 is called, and the answer is there when we return.
6622 COMMAND_BYTES is the length of the request to send, which may include
6623 binary data. WHICH_PACKET is the packet configuration to check
6624 before attempting a packet. If an error occurs, *REMOTE_ERRNO
6625 is set to the error number and -1 is returned. Otherwise the value
6626 returned by the function is returned.
6628 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
6629 attachment is expected; an error will be reported if there's a
6630 mismatch. If one is found, *ATTACHMENT will be set to point into
6631 the packet buffer and *ATTACHMENT_LEN will be set to the
6632 attachment's length. */
6635 remote_hostio_send_command (int command_bytes
, int which_packet
,
6636 int *remote_errno
, char **attachment
,
6637 int *attachment_len
)
6639 struct remote_state
*rs
= get_remote_state ();
6640 int ret
, bytes_read
;
6641 char *attachment_tmp
;
6643 if (remote_protocol_packets
[which_packet
].support
== PACKET_DISABLE
)
6645 *remote_errno
= FILEIO_ENOSYS
;
6649 putpkt_binary (rs
->buf
, command_bytes
);
6650 bytes_read
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
6652 /* If it timed out, something is wrong. Don't try to parse the
6656 *remote_errno
= FILEIO_EINVAL
;
6660 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
6663 *remote_errno
= FILEIO_EINVAL
;
6665 case PACKET_UNKNOWN
:
6666 *remote_errno
= FILEIO_ENOSYS
;
6672 if (remote_hostio_parse_result (rs
->buf
, &ret
, remote_errno
,
6675 *remote_errno
= FILEIO_EINVAL
;
6679 /* Make sure we saw an attachment if and only if we expected one. */
6680 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
6681 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
6683 *remote_errno
= FILEIO_EINVAL
;
6687 /* If an attachment was found, it must point into the packet buffer;
6688 work out how many bytes there were. */
6689 if (attachment_tmp
!= NULL
)
6691 *attachment
= attachment_tmp
;
6692 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
);
6698 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
6699 remote file descriptor, or -1 if an error occurs (and set
6703 remote_hostio_open (const char *filename
, int flags
, int mode
,
6706 struct remote_state
*rs
= get_remote_state ();
6708 int left
= get_remote_packet_size () - 1;
6710 remote_buffer_add_string (&p
, &left
, "vFile:open:");
6712 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
6714 remote_buffer_add_string (&p
, &left
, ",");
6716 remote_buffer_add_int (&p
, &left
, flags
);
6717 remote_buffer_add_string (&p
, &left
, ",");
6719 remote_buffer_add_int (&p
, &left
, mode
);
6721 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_open
,
6722 remote_errno
, NULL
, NULL
);
6725 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
6726 Return the number of bytes written, or -1 if an error occurs (and
6727 set *REMOTE_ERRNO). */
6730 remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
6731 ULONGEST offset
, int *remote_errno
)
6733 struct remote_state
*rs
= get_remote_state ();
6735 int left
= get_remote_packet_size ();
6738 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
6740 remote_buffer_add_int (&p
, &left
, fd
);
6741 remote_buffer_add_string (&p
, &left
, ",");
6743 remote_buffer_add_int (&p
, &left
, offset
);
6744 remote_buffer_add_string (&p
, &left
, ",");
6746 p
+= remote_escape_output (write_buf
, len
, p
, &out_len
,
6747 get_remote_packet_size () - (p
- rs
->buf
));
6749 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pwrite
,
6750 remote_errno
, NULL
, NULL
);
6753 /* Read up to LEN bytes FD on the remote target into READ_BUF
6754 Return the number of bytes read, or -1 if an error occurs (and
6755 set *REMOTE_ERRNO). */
6758 remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
6759 ULONGEST offset
, int *remote_errno
)
6761 struct remote_state
*rs
= get_remote_state ();
6764 int left
= get_remote_packet_size ();
6765 int ret
, attachment_len
;
6768 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
6770 remote_buffer_add_int (&p
, &left
, fd
);
6771 remote_buffer_add_string (&p
, &left
, ",");
6773 remote_buffer_add_int (&p
, &left
, len
);
6774 remote_buffer_add_string (&p
, &left
, ",");
6776 remote_buffer_add_int (&p
, &left
, offset
);
6778 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pread
,
6779 remote_errno
, &attachment
,
6785 read_len
= remote_unescape_input (attachment
, attachment_len
,
6787 if (read_len
!= ret
)
6788 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
6793 /* Close FD on the remote target. Return 0, or -1 if an error occurs
6794 (and set *REMOTE_ERRNO). */
6797 remote_hostio_close (int fd
, int *remote_errno
)
6799 struct remote_state
*rs
= get_remote_state ();
6801 int left
= get_remote_packet_size () - 1;
6803 remote_buffer_add_string (&p
, &left
, "vFile:close:");
6805 remote_buffer_add_int (&p
, &left
, fd
);
6807 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_close
,
6808 remote_errno
, NULL
, NULL
);
6811 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
6812 occurs (and set *REMOTE_ERRNO). */
6815 remote_hostio_unlink (const char *filename
, int *remote_errno
)
6817 struct remote_state
*rs
= get_remote_state ();
6819 int left
= get_remote_packet_size () - 1;
6821 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
6823 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
6826 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_unlink
,
6827 remote_errno
, NULL
, NULL
);
6831 remote_fileio_errno_to_host (int errnum
)
6855 case FILEIO_ENOTDIR
:
6875 case FILEIO_ENAMETOOLONG
:
6876 return ENAMETOOLONG
;
6882 remote_hostio_error (int errnum
)
6884 int host_error
= remote_fileio_errno_to_host (errnum
);
6886 if (host_error
== -1)
6887 error (_("Unknown remote I/O error %d"), errnum
);
6889 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
6893 fclose_cleanup (void *file
)
6899 remote_hostio_close_cleanup (void *opaque
)
6901 int fd
= *(int *) opaque
;
6904 remote_hostio_close (fd
, &remote_errno
);
6908 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
6910 struct cleanup
*back_to
, *close_cleanup
;
6911 int retcode
, fd
, remote_errno
, bytes
, io_size
;
6914 int bytes_in_buffer
;
6919 error (_("command can only be used with remote target"));
6921 file
= fopen (local_file
, "rb");
6923 perror_with_name (local_file
);
6924 back_to
= make_cleanup (fclose_cleanup
, file
);
6926 fd
= remote_hostio_open (remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
6928 0700, &remote_errno
);
6930 remote_hostio_error (remote_errno
);
6932 /* Send up to this many bytes at once. They won't all fit in the
6933 remote packet limit, so we'll transfer slightly fewer. */
6934 io_size
= get_remote_packet_size ();
6935 buffer
= xmalloc (io_size
);
6936 make_cleanup (xfree
, buffer
);
6938 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
6940 bytes_in_buffer
= 0;
6943 while (bytes_in_buffer
|| !saw_eof
)
6947 bytes
= fread (buffer
+ bytes_in_buffer
, 1, io_size
- bytes_in_buffer
,
6952 error (_("Error reading %s."), local_file
);
6955 /* EOF. Unless there is something still in the
6956 buffer from the last iteration, we are done. */
6958 if (bytes_in_buffer
== 0)
6966 bytes
+= bytes_in_buffer
;
6967 bytes_in_buffer
= 0;
6969 retcode
= remote_hostio_pwrite (fd
, buffer
, bytes
, offset
, &remote_errno
);
6972 remote_hostio_error (remote_errno
);
6973 else if (retcode
== 0)
6974 error (_("Remote write of %d bytes returned 0!"), bytes
);
6975 else if (retcode
< bytes
)
6977 /* Short write. Save the rest of the read data for the next
6979 bytes_in_buffer
= bytes
- retcode
;
6980 memmove (buffer
, buffer
+ retcode
, bytes_in_buffer
);
6986 discard_cleanups (close_cleanup
);
6987 if (remote_hostio_close (fd
, &remote_errno
))
6988 remote_hostio_error (remote_errno
);
6991 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
6992 do_cleanups (back_to
);
6996 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
6998 struct cleanup
*back_to
, *close_cleanup
;
6999 int retcode
, fd
, remote_errno
, bytes
, io_size
;
7005 error (_("command can only be used with remote target"));
7007 fd
= remote_hostio_open (remote_file
, FILEIO_O_RDONLY
, 0, &remote_errno
);
7009 remote_hostio_error (remote_errno
);
7011 file
= fopen (local_file
, "wb");
7013 perror_with_name (local_file
);
7014 back_to
= make_cleanup (fclose_cleanup
, file
);
7016 /* Send up to this many bytes at once. They won't all fit in the
7017 remote packet limit, so we'll transfer slightly fewer. */
7018 io_size
= get_remote_packet_size ();
7019 buffer
= xmalloc (io_size
);
7020 make_cleanup (xfree
, buffer
);
7022 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
7027 bytes
= remote_hostio_pread (fd
, buffer
, io_size
, offset
, &remote_errno
);
7029 /* Success, but no bytes, means end-of-file. */
7032 remote_hostio_error (remote_errno
);
7036 bytes
= fwrite (buffer
, 1, bytes
, file
);
7038 perror_with_name (local_file
);
7041 discard_cleanups (close_cleanup
);
7042 if (remote_hostio_close (fd
, &remote_errno
))
7043 remote_hostio_error (remote_errno
);
7046 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
7047 do_cleanups (back_to
);
7051 remote_file_delete (const char *remote_file
, int from_tty
)
7053 int retcode
, remote_errno
;
7056 error (_("command can only be used with remote target"));
7058 retcode
= remote_hostio_unlink (remote_file
, &remote_errno
);
7060 remote_hostio_error (remote_errno
);
7063 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
7067 remote_put_command (char *args
, int from_tty
)
7069 struct cleanup
*back_to
;
7072 argv
= buildargv (args
);
7075 back_to
= make_cleanup_freeargv (argv
);
7076 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
7077 error (_("Invalid parameters to remote put"));
7079 remote_file_put (argv
[0], argv
[1], from_tty
);
7081 do_cleanups (back_to
);
7085 remote_get_command (char *args
, int from_tty
)
7087 struct cleanup
*back_to
;
7090 argv
= buildargv (args
);
7093 back_to
= make_cleanup_freeargv (argv
);
7094 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
7095 error (_("Invalid parameters to remote get"));
7097 remote_file_get (argv
[0], argv
[1], from_tty
);
7099 do_cleanups (back_to
);
7103 remote_delete_command (char *args
, int from_tty
)
7105 struct cleanup
*back_to
;
7108 argv
= buildargv (args
);
7111 back_to
= make_cleanup_freeargv (argv
);
7112 if (argv
[0] == NULL
|| argv
[1] != NULL
)
7113 error (_("Invalid parameters to remote delete"));
7115 remote_file_delete (argv
[0], from_tty
);
7117 do_cleanups (back_to
);
7121 remote_command (char *args
, int from_tty
)
7123 help_list (remote_cmdlist
, "remote ", -1, gdb_stdout
);
7127 init_remote_ops (void)
7129 remote_ops
.to_shortname
= "remote";
7130 remote_ops
.to_longname
= "Remote serial target in gdb-specific protocol";
7132 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
7133 Specify the serial device it is connected to\n\
7134 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
7135 remote_ops
.to_open
= remote_open
;
7136 remote_ops
.to_close
= remote_close
;
7137 remote_ops
.to_detach
= remote_detach
;
7138 remote_ops
.to_disconnect
= remote_disconnect
;
7139 remote_ops
.to_resume
= remote_resume
;
7140 remote_ops
.to_wait
= remote_wait
;
7141 remote_ops
.to_fetch_registers
= remote_fetch_registers
;
7142 remote_ops
.to_store_registers
= remote_store_registers
;
7143 remote_ops
.to_prepare_to_store
= remote_prepare_to_store
;
7144 remote_ops
.deprecated_xfer_memory
= remote_xfer_memory
;
7145 remote_ops
.to_files_info
= remote_files_info
;
7146 remote_ops
.to_insert_breakpoint
= remote_insert_breakpoint
;
7147 remote_ops
.to_remove_breakpoint
= remote_remove_breakpoint
;
7148 remote_ops
.to_stopped_by_watchpoint
= remote_stopped_by_watchpoint
;
7149 remote_ops
.to_stopped_data_address
= remote_stopped_data_address
;
7150 remote_ops
.to_can_use_hw_breakpoint
= remote_check_watch_resources
;
7151 remote_ops
.to_insert_hw_breakpoint
= remote_insert_hw_breakpoint
;
7152 remote_ops
.to_remove_hw_breakpoint
= remote_remove_hw_breakpoint
;
7153 remote_ops
.to_insert_watchpoint
= remote_insert_watchpoint
;
7154 remote_ops
.to_remove_watchpoint
= remote_remove_watchpoint
;
7155 remote_ops
.to_kill
= remote_kill
;
7156 remote_ops
.to_load
= generic_load
;
7157 remote_ops
.to_mourn_inferior
= remote_mourn
;
7158 remote_ops
.to_thread_alive
= remote_thread_alive
;
7159 remote_ops
.to_find_new_threads
= remote_threads_info
;
7160 remote_ops
.to_pid_to_str
= remote_pid_to_str
;
7161 remote_ops
.to_extra_thread_info
= remote_threads_extra_info
;
7162 remote_ops
.to_stop
= remote_stop
;
7163 remote_ops
.to_xfer_partial
= remote_xfer_partial
;
7164 remote_ops
.to_rcmd
= remote_rcmd
;
7165 remote_ops
.to_log_command
= serial_log_command
;
7166 remote_ops
.to_get_thread_local_address
= remote_get_thread_local_address
;
7167 remote_ops
.to_stratum
= process_stratum
;
7168 remote_ops
.to_has_all_memory
= 1;
7169 remote_ops
.to_has_memory
= 1;
7170 remote_ops
.to_has_stack
= 1;
7171 remote_ops
.to_has_registers
= 1;
7172 remote_ops
.to_has_execution
= 1;
7173 remote_ops
.to_has_thread_control
= tc_schedlock
; /* can lock scheduler */
7174 remote_ops
.to_magic
= OPS_MAGIC
;
7175 remote_ops
.to_memory_map
= remote_memory_map
;
7176 remote_ops
.to_flash_erase
= remote_flash_erase
;
7177 remote_ops
.to_flash_done
= remote_flash_done
;
7178 remote_ops
.to_read_description
= remote_read_description
;
7179 remote_ops
.to_search_memory
= remote_search_memory
;
7180 remote_ops
.to_can_async_p
= remote_can_async_p
;
7181 remote_ops
.to_is_async_p
= remote_is_async_p
;
7182 remote_ops
.to_async
= remote_async
;
7183 remote_ops
.to_async_mask
= remote_async_mask
;
7184 remote_ops
.to_terminal_inferior
= remote_terminal_inferior
;
7185 remote_ops
.to_terminal_ours
= remote_terminal_ours
;
7188 /* Set up the extended remote vector by making a copy of the standard
7189 remote vector and adding to it. */
7192 init_extended_remote_ops (void)
7194 extended_remote_ops
= remote_ops
;
7196 extended_remote_ops
.to_shortname
= "extended-remote";
7197 extended_remote_ops
.to_longname
=
7198 "Extended remote serial target in gdb-specific protocol";
7199 extended_remote_ops
.to_doc
=
7200 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
7201 Specify the serial device it is connected to (e.g. /dev/ttya).";
7202 extended_remote_ops
.to_open
= extended_remote_open
;
7203 extended_remote_ops
.to_create_inferior
= extended_remote_create_inferior
;
7204 extended_remote_ops
.to_mourn_inferior
= extended_remote_mourn
;
7205 extended_remote_ops
.to_detach
= extended_remote_detach
;
7206 extended_remote_ops
.to_attach
= extended_remote_attach
;
7210 remote_can_async_p (void)
7212 if (!remote_async_permitted
)
7213 /* We only enable async when the user specifically asks for it. */
7216 /* We're async whenever the serial device is. */
7217 return remote_async_mask_value
&& serial_can_async_p (remote_desc
);
7221 remote_is_async_p (void)
7223 if (!remote_async_permitted
)
7224 /* We only enable async when the user specifically asks for it. */
7227 /* We're async whenever the serial device is. */
7228 return remote_async_mask_value
&& serial_is_async_p (remote_desc
);
7231 /* Pass the SERIAL event on and up to the client. One day this code
7232 will be able to delay notifying the client of an event until the
7233 point where an entire packet has been received. */
7235 static void (*async_client_callback
) (enum inferior_event_type event_type
,
7237 static void *async_client_context
;
7238 static serial_event_ftype remote_async_serial_handler
;
7241 remote_async_serial_handler (struct serial
*scb
, void *context
)
7243 /* Don't propogate error information up to the client. Instead let
7244 the client find out about the error by querying the target. */
7245 async_client_callback (INF_REG_EVENT
, async_client_context
);
7249 remote_async (void (*callback
) (enum inferior_event_type event_type
,
7250 void *context
), void *context
)
7252 if (remote_async_mask_value
== 0)
7253 internal_error (__FILE__
, __LINE__
,
7254 _("Calling remote_async when async is masked"));
7256 if (callback
!= NULL
)
7258 serial_async (remote_desc
, remote_async_serial_handler
, NULL
);
7259 async_client_callback
= callback
;
7260 async_client_context
= context
;
7263 serial_async (remote_desc
, NULL
, NULL
);
7267 remote_async_mask (int new_mask
)
7269 int curr_mask
= remote_async_mask_value
;
7270 remote_async_mask_value
= new_mask
;
7275 set_remote_cmd (char *args
, int from_tty
)
7277 help_list (remote_set_cmdlist
, "set remote ", -1, gdb_stdout
);
7281 show_remote_cmd (char *args
, int from_tty
)
7283 /* We can't just use cmd_show_list here, because we want to skip
7284 the redundant "show remote Z-packet" and the legacy aliases. */
7285 struct cleanup
*showlist_chain
;
7286 struct cmd_list_element
*list
= remote_show_cmdlist
;
7288 showlist_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "showlist");
7289 for (; list
!= NULL
; list
= list
->next
)
7290 if (strcmp (list
->name
, "Z-packet") == 0)
7292 else if (list
->type
== not_set_cmd
)
7293 /* Alias commands are exactly like the original, except they
7294 don't have the normal type. */
7298 struct cleanup
*option_chain
7299 = make_cleanup_ui_out_tuple_begin_end (uiout
, "option");
7300 ui_out_field_string (uiout
, "name", list
->name
);
7301 ui_out_text (uiout
, ": ");
7302 if (list
->type
== show_cmd
)
7303 do_setshow_command ((char *) NULL
, from_tty
, list
);
7305 cmd_func (list
, NULL
, from_tty
);
7306 /* Close the tuple. */
7307 do_cleanups (option_chain
);
7310 /* Close the tuple. */
7311 do_cleanups (showlist_chain
);
7315 /* Function to be called whenever a new objfile (shlib) is detected. */
7317 remote_new_objfile (struct objfile
*objfile
)
7319 if (remote_desc
!= 0) /* Have a remote connection. */
7320 remote_check_symbols (objfile
);
7324 _initialize_remote (void)
7326 struct remote_state
*rs
;
7328 /* architecture specific data */
7329 remote_gdbarch_data_handle
=
7330 gdbarch_data_register_post_init (init_remote_state
);
7331 remote_g_packet_data_handle
=
7332 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
7334 /* Initialize the per-target state. At the moment there is only one
7335 of these, not one per target. Only one target is active at a
7336 time. The default buffer size is unimportant; it will be expanded
7337 whenever a larger buffer is needed. */
7338 rs
= get_remote_state_raw ();
7340 rs
->buf
= xmalloc (rs
->buf_size
);
7343 add_target (&remote_ops
);
7345 init_extended_remote_ops ();
7346 add_target (&extended_remote_ops
);
7348 /* Hook into new objfile notification. */
7349 observer_attach_new_objfile (remote_new_objfile
);
7351 /* Set up signal handlers. */
7352 sigint_remote_token
=
7353 create_async_signal_handler (async_remote_interrupt
, NULL
);
7354 sigint_remote_twice_token
=
7355 create_async_signal_handler (inferior_event_handler_wrapper
, NULL
);
7358 init_remote_threadtests ();
7361 /* set/show remote ... */
7363 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
7364 Remote protocol specific variables\n\
7365 Configure various remote-protocol specific variables such as\n\
7366 the packets being used"),
7367 &remote_set_cmdlist
, "set remote ",
7368 0 /* allow-unknown */, &setlist
);
7369 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
7370 Remote protocol specific variables\n\
7371 Configure various remote-protocol specific variables such as\n\
7372 the packets being used"),
7373 &remote_show_cmdlist
, "show remote ",
7374 0 /* allow-unknown */, &showlist
);
7376 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
7377 Compare section data on target to the exec file.\n\
7378 Argument is a single section name (default: all loaded sections)."),
7381 add_cmd ("packet", class_maintenance
, packet_command
, _("\
7382 Send an arbitrary packet to a remote target.\n\
7383 maintenance packet TEXT\n\
7384 If GDB is talking to an inferior via the GDB serial protocol, then\n\
7385 this command sends the string TEXT to the inferior, and displays the\n\
7386 response packet. GDB supplies the initial `$' character, and the\n\
7387 terminating `#' character and checksum."),
7390 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
7391 Set whether to send break if interrupted."), _("\
7392 Show whether to send break if interrupted."), _("\
7393 If set, a break, instead of a cntrl-c, is sent to the remote target."),
7394 NULL
, NULL
, /* FIXME: i18n: Whether to send break if interrupted is %s. */
7395 &setlist
, &showlist
);
7397 /* Install commands for configuring memory read/write packets. */
7399 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
7400 Set the maximum number of bytes per memory write packet (deprecated)."),
7402 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
7403 Show the maximum number of bytes per memory write packet (deprecated)."),
7405 add_cmd ("memory-write-packet-size", no_class
,
7406 set_memory_write_packet_size
, _("\
7407 Set the maximum number of bytes per memory-write packet.\n\
7408 Specify the number of bytes in a packet or 0 (zero) for the\n\
7409 default packet size. The actual limit is further reduced\n\
7410 dependent on the target. Specify ``fixed'' to disable the\n\
7411 further restriction and ``limit'' to enable that restriction."),
7412 &remote_set_cmdlist
);
7413 add_cmd ("memory-read-packet-size", no_class
,
7414 set_memory_read_packet_size
, _("\
7415 Set the maximum number of bytes per memory-read packet.\n\
7416 Specify the number of bytes in a packet or 0 (zero) for the\n\
7417 default packet size. The actual limit is further reduced\n\
7418 dependent on the target. Specify ``fixed'' to disable the\n\
7419 further restriction and ``limit'' to enable that restriction."),
7420 &remote_set_cmdlist
);
7421 add_cmd ("memory-write-packet-size", no_class
,
7422 show_memory_write_packet_size
,
7423 _("Show the maximum number of bytes per memory-write packet."),
7424 &remote_show_cmdlist
);
7425 add_cmd ("memory-read-packet-size", no_class
,
7426 show_memory_read_packet_size
,
7427 _("Show the maximum number of bytes per memory-read packet."),
7428 &remote_show_cmdlist
);
7430 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class
,
7431 &remote_hw_watchpoint_limit
, _("\
7432 Set the maximum number of target hardware watchpoints."), _("\
7433 Show the maximum number of target hardware watchpoints."), _("\
7434 Specify a negative limit for unlimited."),
7435 NULL
, NULL
, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
7436 &remote_set_cmdlist
, &remote_show_cmdlist
);
7437 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class
,
7438 &remote_hw_breakpoint_limit
, _("\
7439 Set the maximum number of target hardware breakpoints."), _("\
7440 Show the maximum number of target hardware breakpoints."), _("\
7441 Specify a negative limit for unlimited."),
7442 NULL
, NULL
, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
7443 &remote_set_cmdlist
, &remote_show_cmdlist
);
7445 add_setshow_integer_cmd ("remoteaddresssize", class_obscure
,
7446 &remote_address_size
, _("\
7447 Set the maximum size of the address (in bits) in a memory packet."), _("\
7448 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
7450 NULL
, /* FIXME: i18n: */
7451 &setlist
, &showlist
);
7453 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
7454 "X", "binary-download", 1);
7456 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
7457 "vCont", "verbose-resume", 0);
7459 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
7460 "QPassSignals", "pass-signals", 0);
7462 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
7463 "qSymbol", "symbol-lookup", 0);
7465 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
7466 "P", "set-register", 1);
7468 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
7469 "p", "fetch-register", 1);
7471 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
7472 "Z0", "software-breakpoint", 0);
7474 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
7475 "Z1", "hardware-breakpoint", 0);
7477 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
7478 "Z2", "write-watchpoint", 0);
7480 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
7481 "Z3", "read-watchpoint", 0);
7483 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
7484 "Z4", "access-watchpoint", 0);
7486 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
7487 "qXfer:auxv:read", "read-aux-vector", 0);
7489 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
7490 "qXfer:features:read", "target-features", 0);
7492 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
7493 "qXfer:libraries:read", "library-info", 0);
7495 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
7496 "qXfer:memory-map:read", "memory-map", 0);
7498 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_read
],
7499 "qXfer:spu:read", "read-spu-object", 0);
7501 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_write
],
7502 "qXfer:spu:write", "write-spu-object", 0);
7504 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
7505 "qGetTLSAddr", "get-thread-local-storage-address",
7508 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
7509 "qSupported", "supported-packets", 0);
7511 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
7512 "qSearch:memory", "search-memory", 0);
7514 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
7515 "vFile:open", "hostio-open", 0);
7517 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
7518 "vFile:pread", "hostio-pread", 0);
7520 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
7521 "vFile:pwrite", "hostio-pwrite", 0);
7523 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
7524 "vFile:close", "hostio-close", 0);
7526 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
7527 "vFile:unlink", "hostio-unlink", 0);
7529 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
7530 "vAttach", "attach", 0);
7532 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
7535 /* Keep the old ``set remote Z-packet ...'' working. Each individual
7536 Z sub-packet has its own set and show commands, but users may
7537 have sets to this variable in their .gdbinit files (or in their
7539 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
7540 &remote_Z_packet_detect
, _("\
7541 Set use of remote protocol `Z' packets"), _("\
7542 Show use of remote protocol `Z' packets "), _("\
7543 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7545 set_remote_protocol_Z_packet_cmd
,
7546 show_remote_protocol_Z_packet_cmd
, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
7547 &remote_set_cmdlist
, &remote_show_cmdlist
);
7549 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
7550 Manipulate files on the remote system\n\
7551 Transfer files to and from the remote target system."),
7552 &remote_cmdlist
, "remote ",
7553 0 /* allow-unknown */, &cmdlist
);
7555 add_cmd ("put", class_files
, remote_put_command
,
7556 _("Copy a local file to the remote system."),
7559 add_cmd ("get", class_files
, remote_get_command
,
7560 _("Copy a remote file to the local system."),
7563 add_cmd ("delete", class_files
, remote_delete_command
,
7564 _("Delete a remote file."),
7567 remote_exec_file
= xstrdup ("");
7568 add_setshow_string_noescape_cmd ("exec-file", class_files
,
7569 &remote_exec_file
, _("\
7570 Set the remote pathname for \"run\""), _("\
7571 Show the remote pathname for \"run\""), NULL
, NULL
, NULL
,
7572 &remote_set_cmdlist
, &remote_show_cmdlist
);
7574 add_setshow_boolean_cmd ("remote-async", class_maintenance
,
7575 &remote_async_permitted_set
, _("\
7576 Set whether gdb controls the remote inferior in asynchronous mode."), _("\
7577 Show whether gdb controls the remote inferior in asynchronous mode."), _("\
7578 Tells gdb whether to control the remote inferior in asynchronous mode."),
7579 set_maintenance_remote_async_permitted
,
7580 show_maintenance_remote_async_permitted
,
7581 &maintenance_set_cmdlist
,
7582 &maintenance_show_cmdlist
);
7585 /* Eventually initialize fileio. See fileio.c */
7586 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);
7588 /* Take advantage of the fact that the LWP field is not used, to tag
7589 special ptids with it set to != 0. */
7590 magic_null_ptid
= ptid_build (0, 1, -1);
7591 not_sent_ptid
= ptid_build (0, 1, -2);
7592 any_thread_ptid
= ptid_build (0, 1, 0);