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 (ptid_t
);
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 (ptid_equal (tp
->ptid
, magic_null_ptid
)
2046 || (ptid_get_pid (tp
->ptid
) != 0 && ptid_get_tid (tp
->ptid
) == 0))
2047 /* This is the main thread which was added by GDB. The remote
2048 server doesn't know about it. */
2051 if (use_threadextra_query
)
2053 xsnprintf (rs
->buf
, get_remote_packet_size (), "qThreadExtraInfo,%lx",
2054 ptid_get_tid (tp
->ptid
));
2056 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2057 if (rs
->buf
[0] != 0)
2059 n
= min (strlen (rs
->buf
) / 2, sizeof (display_buf
));
2060 result
= hex2bin (rs
->buf
, (gdb_byte
*) display_buf
, n
);
2061 display_buf
[result
] = '\0';
2066 /* If the above query fails, fall back to the old method. */
2067 use_threadextra_query
= 0;
2068 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
2069 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
2070 int_to_threadref (&id
, ptid_get_tid (tp
->ptid
));
2071 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
2072 if (threadinfo
.active
)
2074 if (*threadinfo
.shortname
)
2075 n
+= xsnprintf (&display_buf
[0], sizeof (display_buf
) - n
,
2076 " Name: %s,", threadinfo
.shortname
);
2077 if (*threadinfo
.display
)
2078 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2079 " State: %s,", threadinfo
.display
);
2080 if (*threadinfo
.more_display
)
2081 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
2082 " Priority: %s", threadinfo
.more_display
);
2086 /* For purely cosmetic reasons, clear up trailing commas. */
2087 if (',' == display_buf
[n
-1])
2088 display_buf
[n
-1] = ' ';
2096 /* Restart the remote side; this is an extended protocol operation. */
2099 extended_remote_restart (void)
2101 struct remote_state
*rs
= get_remote_state ();
2103 /* Send the restart command; for reasons I don't understand the
2104 remote side really expects a number after the "R". */
2105 xsnprintf (rs
->buf
, get_remote_packet_size (), "R%x", 0);
2108 remote_fileio_reset ();
2111 /* Clean up connection to a remote debugger. */
2114 remote_close (int quitting
)
2117 serial_close (remote_desc
);
2121 /* Query the remote side for the text, data and bss offsets. */
2126 struct remote_state
*rs
= get_remote_state ();
2129 int lose
, num_segments
= 0, do_sections
, do_segments
;
2130 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
2131 struct section_offsets
*offs
;
2132 struct symfile_segment_data
*data
;
2134 if (symfile_objfile
== NULL
)
2137 putpkt ("qOffsets");
2138 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2141 if (buf
[0] == '\000')
2142 return; /* Return silently. Stub doesn't support
2146 warning (_("Remote failure reply: %s"), buf
);
2150 /* Pick up each field in turn. This used to be done with scanf, but
2151 scanf will make trouble if CORE_ADDR size doesn't match
2152 conversion directives correctly. The following code will work
2153 with any size of CORE_ADDR. */
2154 text_addr
= data_addr
= bss_addr
= 0;
2158 if (strncmp (ptr
, "Text=", 5) == 0)
2161 /* Don't use strtol, could lose on big values. */
2162 while (*ptr
&& *ptr
!= ';')
2163 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
2165 if (strncmp (ptr
, ";Data=", 6) == 0)
2168 while (*ptr
&& *ptr
!= ';')
2169 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
2174 if (!lose
&& strncmp (ptr
, ";Bss=", 5) == 0)
2177 while (*ptr
&& *ptr
!= ';')
2178 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
2180 if (bss_addr
!= data_addr
)
2181 warning (_("Target reported unsupported offsets: %s"), buf
);
2186 else if (strncmp (ptr
, "TextSeg=", 8) == 0)
2189 /* Don't use strtol, could lose on big values. */
2190 while (*ptr
&& *ptr
!= ';')
2191 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
2194 if (strncmp (ptr
, ";DataSeg=", 9) == 0)
2197 while (*ptr
&& *ptr
!= ';')
2198 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
2206 error (_("Malformed response to offset query, %s"), buf
);
2207 else if (*ptr
!= '\0')
2208 warning (_("Target reported unsupported offsets: %s"), buf
);
2210 offs
= ((struct section_offsets
*)
2211 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
2212 memcpy (offs
, symfile_objfile
->section_offsets
,
2213 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
2215 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
2216 do_segments
= (data
!= NULL
);
2217 do_sections
= num_segments
== 0;
2219 if (num_segments
> 0)
2221 segments
[0] = text_addr
;
2222 segments
[1] = data_addr
;
2224 /* If we have two segments, we can still try to relocate everything
2225 by assuming that the .text and .data offsets apply to the whole
2226 text and data segments. Convert the offsets given in the packet
2227 to base addresses for symfile_map_offsets_to_segments. */
2228 else if (data
&& data
->num_segments
== 2)
2230 segments
[0] = data
->segment_bases
[0] + text_addr
;
2231 segments
[1] = data
->segment_bases
[1] + data_addr
;
2234 /* If the object file has only one segment, assume that it is text
2235 rather than data; main programs with no writable data are rare,
2236 but programs with no code are useless. Of course the code might
2237 have ended up in the data segment... to detect that we would need
2238 the permissions here. */
2239 else if (data
&& data
->num_segments
== 1)
2241 segments
[0] = data
->segment_bases
[0] + text_addr
;
2244 /* There's no way to relocate by segment. */
2250 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
2251 offs
, num_segments
, segments
);
2253 if (ret
== 0 && !do_sections
)
2254 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2261 free_symfile_segment_data (data
);
2265 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
2267 /* This is a temporary kludge to force data and bss to use the same offsets
2268 because that's what nlmconv does now. The real solution requires changes
2269 to the stub and remote.c that I don't have time to do right now. */
2271 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
2272 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
2275 objfile_relocate (symfile_objfile
, offs
);
2278 /* Stub for catch_exception. */
2280 struct start_remote_args
2284 /* The current target. */
2285 struct target_ops
*target
;
2287 /* Non-zero if this is an extended-remote target. */
2292 remote_start_remote (struct ui_out
*uiout
, void *opaque
)
2294 struct remote_state
*rs
= get_remote_state ();
2295 struct start_remote_args
*args
= opaque
;
2296 char *wait_status
= NULL
;
2298 immediate_quit
++; /* Allow user to interrupt it. */
2300 /* Ack any packet which the remote side has already sent. */
2301 serial_write (remote_desc
, "+", 1);
2303 /* Check whether the target is running now. */
2305 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2307 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
2309 if (args
->extended_p
)
2311 /* We're connected, but not running. Drop out before we
2312 call start_remote. */
2313 target_mark_exited (args
->target
);
2317 error (_("The target is not running (try extended-remote?)"));
2321 if (args
->extended_p
)
2322 target_mark_running (args
->target
);
2324 /* Save the reply for later. */
2325 wait_status
= alloca (strlen (rs
->buf
) + 1);
2326 strcpy (wait_status
, rs
->buf
);
2330 init_thread_list ();
2332 /* Let the stub know that we want it to return the thread. */
2333 set_continue_thread (minus_one_ptid
);
2335 /* Without this, some commands which require an active target
2336 (such as kill) won't work. This variable serves (at least)
2337 double duty as both the pid of the target process (if it has
2338 such), and as a flag indicating that a target is active.
2339 These functions should be split out into seperate variables,
2340 especially since GDB will someday have a notion of debugging
2341 several processes. */
2342 inferior_ptid
= magic_null_ptid
;
2344 /* Now, if we have thread information, update inferior_ptid. */
2345 inferior_ptid
= remote_current_thread (inferior_ptid
);
2347 /* Always add the main thread. */
2348 add_thread_silent (inferior_ptid
);
2350 get_offsets (); /* Get text, data & bss offsets. */
2352 /* Use the previously fetched status. */
2353 gdb_assert (wait_status
!= NULL
);
2354 strcpy (rs
->buf
, wait_status
);
2355 rs
->cached_wait_status
= 1;
2358 start_remote (args
->from_tty
); /* Initialize gdb process mechanisms. */
2361 /* Open a connection to a remote debugger.
2362 NAME is the filename used for communication. */
2365 remote_open (char *name
, int from_tty
)
2367 remote_open_1 (name
, from_tty
, &remote_ops
, 0);
2370 /* Open a connection to a remote debugger using the extended
2371 remote gdb protocol. NAME is the filename used for communication. */
2374 extended_remote_open (char *name
, int from_tty
)
2376 remote_open_1 (name
, from_tty
, &extended_remote_ops
, 1 /*extended_p */);
2379 /* Generic code for opening a connection to a remote target. */
2382 init_all_packet_configs (void)
2385 for (i
= 0; i
< PACKET_MAX
; i
++)
2386 update_packet_config (&remote_protocol_packets
[i
]);
2389 /* Symbol look-up. */
2392 remote_check_symbols (struct objfile
*objfile
)
2394 struct remote_state
*rs
= get_remote_state ();
2395 char *msg
, *reply
, *tmp
;
2396 struct minimal_symbol
*sym
;
2399 if (remote_protocol_packets
[PACKET_qSymbol
].support
== PACKET_DISABLE
)
2402 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2403 because we need both at the same time. */
2404 msg
= alloca (get_remote_packet_size ());
2406 /* Invite target to request symbol lookups. */
2408 putpkt ("qSymbol::");
2409 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2410 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSymbol
]);
2413 while (strncmp (reply
, "qSymbol:", 8) == 0)
2416 end
= hex2bin (tmp
, (gdb_byte
*) msg
, strlen (tmp
) / 2);
2418 sym
= lookup_minimal_symbol (msg
, NULL
, NULL
);
2420 xsnprintf (msg
, get_remote_packet_size (), "qSymbol::%s", &reply
[8]);
2423 CORE_ADDR sym_addr
= SYMBOL_VALUE_ADDRESS (sym
);
2425 /* If this is a function address, return the start of code
2426 instead of any data function descriptor. */
2427 sym_addr
= gdbarch_convert_from_func_ptr_addr (current_gdbarch
,
2431 xsnprintf (msg
, get_remote_packet_size (), "qSymbol:%s:%s",
2432 paddr_nz (sym_addr
), &reply
[8]);
2436 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2441 static struct serial
*
2442 remote_serial_open (char *name
)
2444 static int udp_warning
= 0;
2446 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2447 of in ser-tcp.c, because it is the remote protocol assuming that the
2448 serial connection is reliable and not the serial connection promising
2450 if (!udp_warning
&& strncmp (name
, "udp:", 4) == 0)
2453 The remote protocol may be unreliable over UDP.\n\
2454 Some events may be lost, rendering further debugging impossible."));
2458 return serial_open (name
);
2461 /* This type describes each known response to the qSupported
2463 struct protocol_feature
2465 /* The name of this protocol feature. */
2468 /* The default for this protocol feature. */
2469 enum packet_support default_support
;
2471 /* The function to call when this feature is reported, or after
2472 qSupported processing if the feature is not supported.
2473 The first argument points to this structure. The second
2474 argument indicates whether the packet requested support be
2475 enabled, disabled, or probed (or the default, if this function
2476 is being called at the end of processing and this feature was
2477 not reported). The third argument may be NULL; if not NULL, it
2478 is a NUL-terminated string taken from the packet following
2479 this feature's name and an equals sign. */
2480 void (*func
) (const struct protocol_feature
*, enum packet_support
,
2483 /* The corresponding packet for this feature. Only used if
2484 FUNC is remote_supported_packet. */
2489 remote_supported_packet (const struct protocol_feature
*feature
,
2490 enum packet_support support
,
2491 const char *argument
)
2495 warning (_("Remote qSupported response supplied an unexpected value for"
2496 " \"%s\"."), feature
->name
);
2500 if (remote_protocol_packets
[feature
->packet
].support
2501 == PACKET_SUPPORT_UNKNOWN
)
2502 remote_protocol_packets
[feature
->packet
].support
= support
;
2506 remote_packet_size (const struct protocol_feature
*feature
,
2507 enum packet_support support
, const char *value
)
2509 struct remote_state
*rs
= get_remote_state ();
2514 if (support
!= PACKET_ENABLE
)
2517 if (value
== NULL
|| *value
== '\0')
2519 warning (_("Remote target reported \"%s\" without a size."),
2525 packet_size
= strtol (value
, &value_end
, 16);
2526 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
2528 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2529 feature
->name
, value
);
2533 if (packet_size
> MAX_REMOTE_PACKET_SIZE
)
2535 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2536 packet_size
, MAX_REMOTE_PACKET_SIZE
);
2537 packet_size
= MAX_REMOTE_PACKET_SIZE
;
2540 /* Record the new maximum packet size. */
2541 rs
->explicit_packet_size
= packet_size
;
2544 static struct protocol_feature remote_protocol_features
[] = {
2545 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
2546 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
2547 PACKET_qXfer_auxv
},
2548 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
2549 PACKET_qXfer_features
},
2550 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
2551 PACKET_qXfer_libraries
},
2552 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
2553 PACKET_qXfer_memory_map
},
2554 { "qXfer:spu:read", PACKET_DISABLE
, remote_supported_packet
,
2555 PACKET_qXfer_spu_read
},
2556 { "qXfer:spu:write", PACKET_DISABLE
, remote_supported_packet
,
2557 PACKET_qXfer_spu_write
},
2558 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
2559 PACKET_QPassSignals
},
2563 remote_query_supported (void)
2565 struct remote_state
*rs
= get_remote_state ();
2568 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
2570 /* The packet support flags are handled differently for this packet
2571 than for most others. We treat an error, a disabled packet, and
2572 an empty response identically: any features which must be reported
2573 to be used will be automatically disabled. An empty buffer
2574 accomplishes this, since that is also the representation for a list
2575 containing no features. */
2578 if (remote_protocol_packets
[PACKET_qSupported
].support
!= PACKET_DISABLE
)
2580 putpkt ("qSupported");
2581 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2583 /* If an error occured, warn, but do not return - just reset the
2584 buffer to empty and go on to disable features. */
2585 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
2588 warning (_("Remote failure reply: %s"), rs
->buf
);
2593 memset (seen
, 0, sizeof (seen
));
2598 enum packet_support is_supported
;
2599 char *p
, *end
, *name_end
, *value
;
2601 /* First separate out this item from the rest of the packet. If
2602 there's another item after this, we overwrite the separator
2603 (terminated strings are much easier to work with). */
2605 end
= strchr (p
, ';');
2608 end
= p
+ strlen (p
);
2618 warning (_("empty item in \"qSupported\" response"));
2623 name_end
= strchr (p
, '=');
2626 /* This is a name=value entry. */
2627 is_supported
= PACKET_ENABLE
;
2628 value
= name_end
+ 1;
2637 is_supported
= PACKET_ENABLE
;
2641 is_supported
= PACKET_DISABLE
;
2645 is_supported
= PACKET_SUPPORT_UNKNOWN
;
2649 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p
);
2655 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
2656 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
2658 const struct protocol_feature
*feature
;
2661 feature
= &remote_protocol_features
[i
];
2662 feature
->func (feature
, is_supported
, value
);
2667 /* If we increased the packet size, make sure to increase the global
2668 buffer size also. We delay this until after parsing the entire
2669 qSupported packet, because this is the same buffer we were
2671 if (rs
->buf_size
< rs
->explicit_packet_size
)
2673 rs
->buf_size
= rs
->explicit_packet_size
;
2674 rs
->buf
= xrealloc (rs
->buf
, rs
->buf_size
);
2677 /* Handle the defaults for unmentioned features. */
2678 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
2681 const struct protocol_feature
*feature
;
2683 feature
= &remote_protocol_features
[i
];
2684 feature
->func (feature
, feature
->default_support
, NULL
);
2690 remote_open_1 (char *name
, int from_tty
, struct target_ops
*target
, int extended_p
)
2692 struct remote_state
*rs
= get_remote_state ();
2694 error (_("To open a remote debug connection, you need to specify what\n"
2695 "serial device is attached to the remote system\n"
2696 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
2698 /* See FIXME above. */
2699 if (!remote_async_permitted
)
2700 wait_forever_enabled_p
= 1;
2702 /* If we're connected to a running target, target_preopen will kill it.
2703 But if we're connected to a target system with no running process,
2704 then we will still be connected when it returns. Ask this question
2705 first, before target_preopen has a chance to kill anything. */
2706 if (remote_desc
!= NULL
&& !target_has_execution
)
2709 || query (_("Already connected to a remote target. Disconnect? ")))
2712 error (_("Still connected."));
2715 target_preopen (from_tty
);
2717 unpush_target (target
);
2719 /* This time without a query. If we were connected to an
2720 extended-remote target and target_preopen killed the running
2721 process, we may still be connected. If we are starting "target
2722 remote" now, the extended-remote target will not have been
2723 removed by unpush_target. */
2724 if (remote_desc
!= NULL
&& !target_has_execution
)
2727 /* Make sure we send the passed signals list the next time we resume. */
2728 xfree (last_pass_packet
);
2729 last_pass_packet
= NULL
;
2731 remote_fileio_reset ();
2732 reopen_exec_file ();
2735 remote_desc
= remote_serial_open (name
);
2737 perror_with_name (name
);
2739 if (baud_rate
!= -1)
2741 if (serial_setbaudrate (remote_desc
, baud_rate
))
2743 /* The requested speed could not be set. Error out to
2744 top level after closing remote_desc. Take care to
2745 set remote_desc to NULL to avoid closing remote_desc
2747 serial_close (remote_desc
);
2749 perror_with_name (name
);
2753 serial_raw (remote_desc
);
2755 /* If there is something sitting in the buffer we might take it as a
2756 response to a command, which would be bad. */
2757 serial_flush_input (remote_desc
);
2761 puts_filtered ("Remote debugging using ");
2762 puts_filtered (name
);
2763 puts_filtered ("\n");
2765 push_target (target
); /* Switch to using remote target now. */
2767 /* Assume that the target is running, unless we learn otherwise. */
2768 target_mark_running (target
);
2770 /* Reset the target state; these things will be queried either by
2771 remote_query_supported or as they are needed. */
2772 init_all_packet_configs ();
2773 rs
->explicit_packet_size
= 0;
2775 general_thread
= not_sent_ptid
;
2776 continue_thread
= not_sent_ptid
;
2778 /* Probe for ability to use "ThreadInfo" query, as required. */
2779 use_threadinfo_query
= 1;
2780 use_threadextra_query
= 1;
2782 /* The first packet we send to the target is the optional "supported
2783 packets" request. If the target can answer this, it will tell us
2784 which later probes to skip. */
2785 remote_query_supported ();
2787 /* Next, if the target can specify a description, read it. We do
2788 this before anything involving memory or registers. */
2789 target_find_description ();
2791 if (remote_async_permitted
)
2793 /* With this target we start out by owning the terminal. */
2794 remote_async_terminal_ours_p
= 1;
2796 /* FIXME: cagney/1999-09-23: During the initial connection it is
2797 assumed that the target is already ready and able to respond to
2798 requests. Unfortunately remote_start_remote() eventually calls
2799 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2800 around this. Eventually a mechanism that allows
2801 wait_for_inferior() to expect/get timeouts will be
2803 wait_forever_enabled_p
= 0;
2806 /* First delete any symbols previously loaded from shared libraries. */
2807 no_shared_libraries (NULL
, 0);
2809 /* Start the remote connection. If error() or QUIT, discard this
2810 target (we'd otherwise be in an inconsistent state) and then
2811 propogate the error on up the exception chain. This ensures that
2812 the caller doesn't stumble along blindly assuming that the
2813 function succeeded. The CLI doesn't have this problem but other
2814 UI's, such as MI do.
2816 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2817 this function should return an error indication letting the
2818 caller restore the previous state. Unfortunately the command
2819 ``target remote'' is directly wired to this function making that
2820 impossible. On a positive note, the CLI side of this problem has
2821 been fixed - the function set_cmd_context() makes it possible for
2822 all the ``target ....'' commands to share a common callback
2823 function. See cli-dump.c. */
2825 struct gdb_exception ex
;
2826 struct start_remote_args args
;
2828 args
.from_tty
= from_tty
;
2829 args
.target
= target
;
2830 args
.extended_p
= extended_p
;
2832 ex
= catch_exception (uiout
, remote_start_remote
, &args
, RETURN_MASK_ALL
);
2836 if (remote_async_permitted
)
2837 wait_forever_enabled_p
= 1;
2838 throw_exception (ex
);
2842 if (remote_async_permitted
)
2843 wait_forever_enabled_p
= 1;
2847 /* Tell the remote that we are using the extended protocol. */
2849 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2852 /* If we connected to a live target, do some additional setup. */
2853 if (target_has_execution
)
2855 if (exec_bfd
) /* No use without an exec file. */
2856 remote_check_symbols (symfile_objfile
);
2860 /* This takes a program previously attached to and detaches it. After
2861 this is done, GDB can be used to debug some other program. We
2862 better not have left any breakpoints in the target program or it'll
2863 die when it hits one. */
2866 remote_detach_1 (char *args
, int from_tty
, int extended
)
2868 struct remote_state
*rs
= get_remote_state ();
2871 error (_("Argument given to \"detach\" when remotely debugging."));
2873 if (!target_has_execution
)
2874 error (_("No process to detach from."));
2876 /* Tell the remote target to detach. */
2877 strcpy (rs
->buf
, "D");
2879 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2881 if (rs
->buf
[0] == 'E')
2882 error (_("Can't detach process."));
2884 /* Unregister the file descriptor from the event loop. */
2885 if (target_is_async_p ())
2886 serial_async (remote_desc
, NULL
, 0);
2888 target_mourn_inferior ();
2892 puts_filtered ("Detached from remote process.\n");
2894 puts_filtered ("Ending remote debugging.\n");
2899 remote_detach (char *args
, int from_tty
)
2901 remote_detach_1 (args
, from_tty
, 0);
2905 extended_remote_detach (char *args
, int from_tty
)
2907 remote_detach_1 (args
, from_tty
, 1);
2910 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2913 remote_disconnect (struct target_ops
*target
, char *args
, int from_tty
)
2916 error (_("Argument given to \"disconnect\" when remotely debugging."));
2918 /* Unregister the file descriptor from the event loop. */
2919 if (target_is_async_p ())
2920 serial_async (remote_desc
, NULL
, 0);
2922 /* Make sure we unpush even the extended remote targets; mourn
2923 won't do it. So call remote_mourn_1 directly instead of
2924 target_mourn_inferior. */
2925 remote_mourn_1 (target
);
2928 puts_filtered ("Ending remote debugging.\n");
2931 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
2932 be chatty about it. */
2935 extended_remote_attach_1 (struct target_ops
*target
, char *args
, int from_tty
)
2937 struct remote_state
*rs
= get_remote_state ();
2940 char *wait_status
= NULL
;
2943 error_no_arg (_("process-id to attach"));
2946 pid
= strtol (args
, &dummy
, 0);
2947 /* Some targets don't set errno on errors, grrr! */
2948 if (pid
== 0 && args
== dummy
)
2949 error (_("Illegal process-id: %s."), args
);
2951 if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
2952 error (_("This target does not support attaching to a process"));
2954 sprintf (rs
->buf
, "vAttach;%x", pid
);
2956 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2958 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vAttach
]) == PACKET_OK
)
2961 printf_unfiltered (_("Attached to %s\n"),
2962 target_pid_to_str (pid_to_ptid (pid
)));
2964 /* Save the reply for later. */
2965 wait_status
= alloca (strlen (rs
->buf
) + 1);
2966 strcpy (wait_status
, rs
->buf
);
2968 else if (remote_protocol_packets
[PACKET_vAttach
].support
== PACKET_DISABLE
)
2969 error (_("This target does not support attaching to a process"));
2971 error (_("Attaching to %s failed"),
2972 target_pid_to_str (pid_to_ptid (pid
)));
2974 target_mark_running (target
);
2975 inferior_ptid
= pid_to_ptid (pid
);
2977 /* Now, if we have thread information, update inferior_ptid. */
2978 inferior_ptid
= remote_current_thread (inferior_ptid
);
2980 /* Now, add the main thread to the thread list. */
2981 add_thread_silent (inferior_ptid
);
2985 /* Next, if the target can specify a description, read it. We do
2986 this before anything involving memory or registers. */
2987 target_find_description ();
2989 /* Use the previously fetched status. */
2990 gdb_assert (wait_status
!= NULL
);
2991 strcpy (rs
->buf
, wait_status
);
2992 rs
->cached_wait_status
= 1;
2996 extended_remote_attach (char *args
, int from_tty
)
2998 extended_remote_attach_1 (&extended_remote_ops
, args
, from_tty
);
3001 /* Convert hex digit A to a number. */
3006 if (a
>= '0' && a
<= '9')
3008 else if (a
>= 'a' && a
<= 'f')
3009 return a
- 'a' + 10;
3010 else if (a
>= 'A' && a
<= 'F')
3011 return a
- 'A' + 10;
3013 error (_("Reply contains invalid hex digit %d"), a
);
3017 hex2bin (const char *hex
, gdb_byte
*bin
, int count
)
3021 for (i
= 0; i
< count
; i
++)
3023 if (hex
[0] == 0 || hex
[1] == 0)
3025 /* Hex string is short, or of uneven length.
3026 Return the count that has been converted so far. */
3029 *bin
++ = fromhex (hex
[0]) * 16 + fromhex (hex
[1]);
3035 /* Convert number NIB to a hex digit. */
3043 return 'a' + nib
- 10;
3047 bin2hex (const gdb_byte
*bin
, char *hex
, int count
)
3050 /* May use a length, or a nul-terminated string as input. */
3052 count
= strlen ((char *) bin
);
3054 for (i
= 0; i
< count
; i
++)
3056 *hex
++ = tohex ((*bin
>> 4) & 0xf);
3057 *hex
++ = tohex (*bin
++ & 0xf);
3063 /* Check for the availability of vCont. This function should also check
3067 remote_vcont_probe (struct remote_state
*rs
)
3071 strcpy (rs
->buf
, "vCont?");
3073 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3076 /* Make sure that the features we assume are supported. */
3077 if (strncmp (buf
, "vCont", 5) == 0)
3080 int support_s
, support_S
, support_c
, support_C
;
3086 while (p
&& *p
== ';')
3089 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3091 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3093 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3095 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
3098 p
= strchr (p
, ';');
3101 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3102 BUF will make packet_ok disable the packet. */
3103 if (!support_s
|| !support_S
|| !support_c
|| !support_C
)
3107 packet_ok (buf
, &remote_protocol_packets
[PACKET_vCont
]);
3110 /* Resume the remote inferior by using a "vCont" packet. The thread
3111 to be resumed is PTID; STEP and SIGGNAL indicate whether the
3112 resumed thread should be single-stepped and/or signalled. If PTID
3113 equals minus_one_ptid, then all threads are resumed; the thread to
3114 be stepped and/or signalled is given in the global INFERIOR_PTID.
3115 This function returns non-zero iff it resumes the inferior.
3117 This function issues a strict subset of all possible vCont commands at the
3121 remote_vcont_resume (ptid_t ptid
, int step
, enum target_signal siggnal
)
3123 struct remote_state
*rs
= get_remote_state ();
3125 struct cleanup
*old_cleanup
;
3127 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_SUPPORT_UNKNOWN
)
3128 remote_vcont_probe (rs
);
3130 if (remote_protocol_packets
[PACKET_vCont
].support
== PACKET_DISABLE
)
3133 /* If we could generate a wider range of packets, we'd have to worry
3134 about overflowing BUF. Should there be a generic
3135 "multi-part-packet" packet? */
3137 if (ptid_equal (ptid
, magic_null_ptid
))
3139 /* MAGIC_NULL_PTID means that we don't have any active threads,
3140 so we don't have any TID numbers the inferior will
3141 understand. Make sure to only send forms that do not specify
3143 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3144 outbuf
= xstrprintf ("vCont;S%02x", siggnal
);
3146 outbuf
= xstrprintf ("vCont;s");
3147 else if (siggnal
!= TARGET_SIGNAL_0
)
3148 outbuf
= xstrprintf ("vCont;C%02x", siggnal
);
3150 outbuf
= xstrprintf ("vCont;c");
3152 else if (ptid_equal (ptid
, minus_one_ptid
))
3154 /* Resume all threads, with preference for INFERIOR_PTID. */
3155 int tid
= ptid_get_tid (inferior_ptid
);
3156 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3157 outbuf
= xstrprintf ("vCont;S%02x:%x;c", siggnal
, tid
);
3159 outbuf
= xstrprintf ("vCont;s:%x;c", tid
);
3160 else if (siggnal
!= TARGET_SIGNAL_0
)
3161 outbuf
= xstrprintf ("vCont;C%02x:%x;c", siggnal
, tid
);
3163 outbuf
= xstrprintf ("vCont;c");
3167 /* Scheduler locking; resume only PTID. */
3168 int tid
= ptid_get_tid (ptid
);
3169 if (step
&& siggnal
!= TARGET_SIGNAL_0
)
3170 outbuf
= xstrprintf ("vCont;S%02x:%x", siggnal
, tid
);
3172 outbuf
= xstrprintf ("vCont;s:%x", tid
);
3173 else if (siggnal
!= TARGET_SIGNAL_0
)
3174 outbuf
= xstrprintf ("vCont;C%02x:%x", siggnal
, tid
);
3176 outbuf
= xstrprintf ("vCont;c:%x", tid
);
3179 gdb_assert (outbuf
&& strlen (outbuf
) < get_remote_packet_size ());
3180 old_cleanup
= make_cleanup (xfree
, outbuf
);
3184 do_cleanups (old_cleanup
);
3189 /* Tell the remote machine to resume. */
3191 static enum target_signal last_sent_signal
= TARGET_SIGNAL_0
;
3193 static int last_sent_step
;
3196 remote_resume (ptid_t ptid
, int step
, enum target_signal siggnal
)
3198 struct remote_state
*rs
= get_remote_state ();
3201 last_sent_signal
= siggnal
;
3202 last_sent_step
= step
;
3204 /* Update the inferior on signals to silently pass, if they've changed. */
3205 remote_pass_signals ();
3207 /* The vCont packet doesn't need to specify threads via Hc. */
3208 if (remote_vcont_resume (ptid
, step
, siggnal
))
3211 /* All other supported resume packets do use Hc, so set the continue
3213 if (ptid_equal (ptid
, minus_one_ptid
))
3214 set_continue_thread (any_thread_ptid
);
3216 set_continue_thread (ptid
);
3219 if (siggnal
!= TARGET_SIGNAL_0
)
3221 buf
[0] = step
? 'S' : 'C';
3222 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
3223 buf
[2] = tohex (((int) siggnal
) & 0xf);
3227 strcpy (buf
, step
? "s" : "c");
3232 /* We are about to start executing the inferior, let's register it
3233 with the event loop. NOTE: this is the one place where all the
3234 execution commands end up. We could alternatively do this in each
3235 of the execution commands in infcmd.c. */
3236 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3237 into infcmd.c in order to allow inferior function calls to work
3238 NOT asynchronously. */
3239 if (target_can_async_p ())
3240 target_async (inferior_event_handler
, 0);
3244 /* Set up the signal handler for SIGINT, while the target is
3245 executing, ovewriting the 'regular' SIGINT signal handler. */
3247 initialize_sigint_signal_handler (void)
3249 signal (SIGINT
, handle_remote_sigint
);
3252 /* Signal handler for SIGINT, while the target is executing. */
3254 handle_remote_sigint (int sig
)
3256 signal (sig
, handle_remote_sigint_twice
);
3257 mark_async_signal_handler_wrapper (sigint_remote_token
);
3260 /* Signal handler for SIGINT, installed after SIGINT has already been
3261 sent once. It will take effect the second time that the user sends
3264 handle_remote_sigint_twice (int sig
)
3266 signal (sig
, handle_remote_sigint
);
3267 mark_async_signal_handler_wrapper (sigint_remote_twice_token
);
3270 /* Perform the real interruption of the target execution, in response
3273 async_remote_interrupt (gdb_client_data arg
)
3276 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt called\n");
3278 target_stop (inferior_ptid
);
3281 /* Perform interrupt, if the first attempt did not succeed. Just give
3282 up on the target alltogether. */
3284 async_remote_interrupt_twice (gdb_client_data arg
)
3287 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt_twice called\n");
3292 /* Reinstall the usual SIGINT handlers, after the target has
3295 cleanup_sigint_signal_handler (void *dummy
)
3297 signal (SIGINT
, handle_sigint
);
3300 /* Send ^C to target to halt it. Target will respond, and send us a
3302 static void (*ofunc
) (int);
3304 /* The command line interface's stop routine. This function is installed
3305 as a signal handler for SIGINT. The first time a user requests a
3306 stop, we call remote_stop to send a break or ^C. If there is no
3307 response from the target (it didn't stop when the user requested it),
3308 we ask the user if he'd like to detach from the target. */
3310 remote_interrupt (int signo
)
3312 /* If this doesn't work, try more severe steps. */
3313 signal (signo
, remote_interrupt_twice
);
3315 gdb_call_async_signal_handler (sigint_remote_token
, 1);
3318 /* The user typed ^C twice. */
3321 remote_interrupt_twice (int signo
)
3323 signal (signo
, ofunc
);
3324 gdb_call_async_signal_handler (sigint_remote_twice_token
, 1);
3325 signal (signo
, remote_interrupt
);
3328 /* This is the generic stop called via the target vector. When a target
3329 interrupt is requested, either by the command line or the GUI, we
3330 will eventually end up here. */
3332 remote_stop (ptid_t ptid
)
3334 /* Send a break or a ^C, depending on user preference. */
3336 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
3339 serial_send_break (remote_desc
);
3341 serial_write (remote_desc
, "\003", 1);
3344 /* Ask the user what to do when an interrupt is received. */
3347 interrupt_query (void)
3349 target_terminal_ours ();
3351 if (query ("Interrupted while waiting for the program.\n\
3352 Give up (and stop debugging it)? "))
3354 target_mourn_inferior ();
3355 signal (SIGINT
, handle_sigint
);
3356 deprecated_throw_reason (RETURN_QUIT
);
3359 target_terminal_inferior ();
3362 /* Enable/disable target terminal ownership. Most targets can use
3363 terminal groups to control terminal ownership. Remote targets are
3364 different in that explicit transfer of ownership to/from GDB/target
3368 remote_terminal_inferior (void)
3370 if (!remote_async_permitted
)
3371 /* Nothing to do. */
3374 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
3375 sync_execution here. This function should only be called when
3376 GDB is resuming the inferior in the forground. A background
3377 resume (``run&'') should leave GDB in control of the terminal and
3378 consequently should not call this code. */
3379 if (!sync_execution
)
3381 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
3382 calls target_terminal_*() idenpotent. The event-loop GDB talking
3383 to an asynchronous target with a synchronous command calls this
3384 function from both event-top.c and infrun.c/infcmd.c. Once GDB
3385 stops trying to transfer the terminal to the target when it
3386 shouldn't this guard can go away. */
3387 if (!remote_async_terminal_ours_p
)
3389 delete_file_handler (input_fd
);
3390 remote_async_terminal_ours_p
= 0;
3391 initialize_sigint_signal_handler ();
3392 /* NOTE: At this point we could also register our selves as the
3393 recipient of all input. Any characters typed could then be
3394 passed on down to the target. */
3398 remote_terminal_ours (void)
3400 if (!remote_async_permitted
)
3401 /* Nothing to do. */
3404 /* See FIXME in remote_terminal_inferior. */
3405 if (!sync_execution
)
3407 /* See FIXME in remote_terminal_inferior. */
3408 if (remote_async_terminal_ours_p
)
3410 cleanup_sigint_signal_handler (NULL
);
3411 add_file_handler (input_fd
, stdin_event_handler
, 0);
3412 remote_async_terminal_ours_p
= 1;
3416 remote_console_output (char *msg
)
3420 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
3423 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
3426 fputs_unfiltered (tb
, gdb_stdtarg
);
3428 gdb_flush (gdb_stdtarg
);
3431 /* Wait until the remote machine stops, then return,
3432 storing status in STATUS just as `wait' would. */
3435 remote_wait (ptid_t ptid
, struct target_waitstatus
*status
)
3437 struct remote_state
*rs
= get_remote_state ();
3438 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3439 ULONGEST thread_num
= -1;
3440 ULONGEST process_num
= -1;
3442 int solibs_changed
= 0;
3444 status
->kind
= TARGET_WAITKIND_EXITED
;
3445 status
->value
.integer
= 0;
3451 if (rs
->cached_wait_status
)
3452 /* Use the cached wait status, but only once. */
3453 rs
->cached_wait_status
= 0;
3456 if (!target_is_async_p ())
3458 ofunc
= signal (SIGINT
, remote_interrupt
);
3459 /* If the user hit C-c before this packet, or between packets,
3460 pretend that it was hit right here. */
3464 remote_interrupt (SIGINT
);
3467 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3468 _never_ wait for ever -> test on target_is_async_p().
3469 However, before we do that we need to ensure that the caller
3470 knows how to take the target into/out of async mode. */
3471 getpkt (&rs
->buf
, &rs
->buf_size
, wait_forever_enabled_p
);
3472 if (!target_is_async_p ())
3473 signal (SIGINT
, ofunc
);
3478 remote_stopped_by_watchpoint_p
= 0;
3482 case 'E': /* Error of some sort. */
3483 /* We're out of sync with the target now. Did it continue or not?
3484 Not is more likely, so report a stop. */
3485 warning (_("Remote failure reply: %s"), buf
);
3486 status
->kind
= TARGET_WAITKIND_STOPPED
;
3487 status
->value
.sig
= TARGET_SIGNAL_0
;
3489 case 'F': /* File-I/O request. */
3490 remote_fileio_request (buf
);
3492 case 'T': /* Status with PC, SP, FP, ... */
3494 gdb_byte regs
[MAX_REGISTER_SIZE
];
3496 /* Expedited reply, containing Signal, {regno, reg} repeat. */
3497 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
3499 n... = register number
3500 r... = register contents
3502 p
= &buf
[3]; /* after Txx */
3511 /* If the packet contains a register number, save it
3512 in pnum and set p1 to point to the character
3513 following it. Otherwise p1 points to p. */
3515 /* If this packet is an awatch packet, don't parse the
3516 'a' as a register number. */
3518 if (strncmp (p
, "awatch", strlen("awatch")) != 0)
3520 /* Read the ``P'' register number. */
3521 pnum
= strtol (p
, &p_temp
, 16);
3527 if (p1
== p
) /* No register number present here. */
3529 p1
= strchr (p
, ':');
3531 error (_("Malformed packet(a) (missing colon): %s\n\
3534 if (strncmp (p
, "thread", p1
- p
) == 0)
3536 p_temp
= unpack_varlen_hex (++p1
, &thread_num
);
3539 else if ((strncmp (p
, "watch", p1
- p
) == 0)
3540 || (strncmp (p
, "rwatch", p1
- p
) == 0)
3541 || (strncmp (p
, "awatch", p1
- p
) == 0))
3543 remote_stopped_by_watchpoint_p
= 1;
3544 p
= unpack_varlen_hex (++p1
, &addr
);
3545 remote_watch_data_address
= (CORE_ADDR
)addr
;
3547 else if (strncmp (p
, "library", p1
- p
) == 0)
3551 while (*p_temp
&& *p_temp
!= ';')
3559 /* Silently skip unknown optional info. */
3560 p_temp
= strchr (p1
+ 1, ';');
3567 struct packet_reg
*reg
= packet_reg_from_pnum (rsa
, pnum
);
3571 error (_("Malformed packet(b) (missing colon): %s\n\
3577 error (_("Remote sent bad register number %s: %s\n\
3579 phex_nz (pnum
, 0), p
, buf
);
3581 fieldsize
= hex2bin (p
, regs
,
3582 register_size (current_gdbarch
,
3585 if (fieldsize
< register_size (current_gdbarch
,
3587 warning (_("Remote reply is too short: %s"), buf
);
3588 regcache_raw_supply (get_current_regcache (),
3593 error (_("Remote register badly formatted: %s\nhere: %s"),
3599 case 'S': /* Old style status, just signal only. */
3601 status
->kind
= TARGET_WAITKIND_LOADED
;
3604 status
->kind
= TARGET_WAITKIND_STOPPED
;
3605 status
->value
.sig
= (enum target_signal
)
3606 (((fromhex (buf
[1])) << 4) + (fromhex (buf
[2])));
3609 case 'W': /* Target exited. */
3611 /* The remote process exited. */
3612 status
->kind
= TARGET_WAITKIND_EXITED
;
3613 status
->value
.integer
= (fromhex (buf
[1]) << 4) + fromhex (buf
[2]);
3617 status
->kind
= TARGET_WAITKIND_SIGNALLED
;
3618 status
->value
.sig
= (enum target_signal
)
3619 (((fromhex (buf
[1])) << 4) + (fromhex (buf
[2])));
3622 case 'O': /* Console output. */
3623 remote_console_output (buf
+ 1);
3624 if (target_can_async_p ())
3626 /* Return immediately to the event loop. The event loop
3627 will still be waiting on the inferior afterwards. */
3628 status
->kind
= TARGET_WAITKIND_IGNORE
;
3634 if (last_sent_signal
!= TARGET_SIGNAL_0
)
3636 /* Zero length reply means that we tried 'S' or 'C' and
3637 the remote system doesn't support it. */
3638 target_terminal_ours_for_output ();
3640 ("Can't send signals to this remote system. %s not sent.\n",
3641 target_signal_to_name (last_sent_signal
));
3642 last_sent_signal
= TARGET_SIGNAL_0
;
3643 target_terminal_inferior ();
3645 strcpy ((char *) buf
, last_sent_step
? "s" : "c");
3646 putpkt ((char *) buf
);
3649 /* else fallthrough */
3651 warning (_("Invalid remote reply: %s"), buf
);
3656 if (thread_num
!= -1)
3659 ptid
= ptid_build (ptid_get_pid (inferior_ptid
), 0, thread_num
);
3660 record_currthread (ptid
);
3664 return inferior_ptid
;
3667 /* Fetch a single register using a 'p' packet. */
3670 fetch_register_using_p (struct regcache
*regcache
, struct packet_reg
*reg
)
3672 struct remote_state
*rs
= get_remote_state ();
3674 char regp
[MAX_REGISTER_SIZE
];
3677 if (remote_protocol_packets
[PACKET_p
].support
== PACKET_DISABLE
)
3680 if (reg
->pnum
== -1)
3685 p
+= hexnumstr (p
, reg
->pnum
);
3687 remote_send (&rs
->buf
, &rs
->buf_size
);
3691 switch (packet_ok (buf
, &remote_protocol_packets
[PACKET_p
]))
3695 case PACKET_UNKNOWN
:
3698 error (_("Could not fetch register \"%s\""),
3699 gdbarch_register_name (get_regcache_arch (regcache
), reg
->regnum
));
3702 /* If this register is unfetchable, tell the regcache. */
3705 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
3709 /* Otherwise, parse and supply the value. */
3715 error (_("fetch_register_using_p: early buf termination"));
3717 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
3720 regcache_raw_supply (regcache
, reg
->regnum
, regp
);
3724 /* Fetch the registers included in the target's 'g' packet. */
3727 send_g_packet (void)
3729 struct remote_state
*rs
= get_remote_state ();
3734 sprintf (rs
->buf
, "g");
3735 remote_send (&rs
->buf
, &rs
->buf_size
);
3737 /* We can get out of synch in various cases. If the first character
3738 in the buffer is not a hex character, assume that has happened
3739 and try to fetch another packet to read. */
3740 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
3741 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
3742 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
3743 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
3746 fprintf_unfiltered (gdb_stdlog
,
3747 "Bad register packet; fetching a new packet\n");
3748 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3751 buf_len
= strlen (rs
->buf
);
3753 /* Sanity check the received packet. */
3754 if (buf_len
% 2 != 0)
3755 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
);
3761 process_g_packet (struct regcache
*regcache
)
3763 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
3764 struct remote_state
*rs
= get_remote_state ();
3765 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3770 buf_len
= strlen (rs
->buf
);
3772 /* Further sanity checks, with knowledge of the architecture. */
3773 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
3774 error (_("Remote 'g' packet reply is too long: %s"), rs
->buf
);
3776 /* Save the size of the packet sent to us by the target. It is used
3777 as a heuristic when determining the max size of packets that the
3778 target can safely receive. */
3779 if (rsa
->actual_register_packet_size
== 0)
3780 rsa
->actual_register_packet_size
= buf_len
;
3782 /* If this is smaller than we guessed the 'g' packet would be,
3783 update our records. A 'g' reply that doesn't include a register's
3784 value implies either that the register is not available, or that
3785 the 'p' packet must be used. */
3786 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
3788 rsa
->sizeof_g_packet
= buf_len
/ 2;
3790 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
3792 if (rsa
->regs
[i
].pnum
== -1)
3795 if (rsa
->regs
[i
].offset
>= rsa
->sizeof_g_packet
)
3796 rsa
->regs
[i
].in_g_packet
= 0;
3798 rsa
->regs
[i
].in_g_packet
= 1;
3802 regs
= alloca (rsa
->sizeof_g_packet
);
3804 /* Unimplemented registers read as all bits zero. */
3805 memset (regs
, 0, rsa
->sizeof_g_packet
);
3807 /* Reply describes registers byte by byte, each byte encoded as two
3808 hex characters. Suck them all up, then supply them to the
3809 register cacheing/storage mechanism. */
3812 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
3814 if (p
[0] == 0 || p
[1] == 0)
3815 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
3816 internal_error (__FILE__
, __LINE__
,
3817 "unexpected end of 'g' packet reply");
3819 if (p
[0] == 'x' && p
[1] == 'x')
3820 regs
[i
] = 0; /* 'x' */
3822 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
3828 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
3830 struct packet_reg
*r
= &rsa
->regs
[i
];
3833 if (r
->offset
* 2 >= strlen (rs
->buf
))
3834 /* This shouldn't happen - we adjusted in_g_packet above. */
3835 internal_error (__FILE__
, __LINE__
,
3836 "unexpected end of 'g' packet reply");
3837 else if (rs
->buf
[r
->offset
* 2] == 'x')
3839 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
));
3840 /* The register isn't available, mark it as such (at
3841 the same time setting the value to zero). */
3842 regcache_raw_supply (regcache
, r
->regnum
, NULL
);
3845 regcache_raw_supply (regcache
, r
->regnum
,
3853 fetch_registers_using_g (struct regcache
*regcache
)
3856 process_g_packet (regcache
);
3860 remote_fetch_registers (struct regcache
*regcache
, int regnum
)
3862 struct remote_state
*rs
= get_remote_state ();
3863 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3866 set_general_thread (inferior_ptid
);
3870 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
3871 gdb_assert (reg
!= NULL
);
3873 /* If this register might be in the 'g' packet, try that first -
3874 we are likely to read more than one register. If this is the
3875 first 'g' packet, we might be overly optimistic about its
3876 contents, so fall back to 'p'. */
3877 if (reg
->in_g_packet
)
3879 fetch_registers_using_g (regcache
);
3880 if (reg
->in_g_packet
)
3884 if (fetch_register_using_p (regcache
, reg
))
3887 /* This register is not available. */
3888 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
3893 fetch_registers_using_g (regcache
);
3895 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3896 if (!rsa
->regs
[i
].in_g_packet
)
3897 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
3899 /* This register is not available. */
3900 regcache_raw_supply (regcache
, i
, NULL
);
3904 /* Prepare to store registers. Since we may send them all (using a
3905 'G' request), we have to read out the ones we don't want to change
3909 remote_prepare_to_store (struct regcache
*regcache
)
3911 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3913 gdb_byte buf
[MAX_REGISTER_SIZE
];
3915 /* Make sure the entire registers array is valid. */
3916 switch (remote_protocol_packets
[PACKET_P
].support
)
3918 case PACKET_DISABLE
:
3919 case PACKET_SUPPORT_UNKNOWN
:
3920 /* Make sure all the necessary registers are cached. */
3921 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3922 if (rsa
->regs
[i
].in_g_packet
)
3923 regcache_raw_read (regcache
, rsa
->regs
[i
].regnum
, buf
);
3930 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
3931 packet was not recognized. */
3934 store_register_using_P (const struct regcache
*regcache
, struct packet_reg
*reg
)
3936 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
3937 struct remote_state
*rs
= get_remote_state ();
3938 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3939 /* Try storing a single register. */
3940 char *buf
= rs
->buf
;
3941 gdb_byte regp
[MAX_REGISTER_SIZE
];
3944 if (remote_protocol_packets
[PACKET_P
].support
== PACKET_DISABLE
)
3947 if (reg
->pnum
== -1)
3950 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
3951 p
= buf
+ strlen (buf
);
3952 regcache_raw_collect (regcache
, reg
->regnum
, regp
);
3953 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
3954 remote_send (&rs
->buf
, &rs
->buf_size
);
3956 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
3961 error (_("Could not write register \"%s\""),
3962 gdbarch_register_name (gdbarch
, reg
->regnum
));
3963 case PACKET_UNKNOWN
:
3966 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
3970 /* Store register REGNUM, or all registers if REGNUM == -1, from the
3971 contents of the register cache buffer. FIXME: ignores errors. */
3974 store_registers_using_G (const struct regcache
*regcache
)
3976 struct remote_state
*rs
= get_remote_state ();
3977 struct remote_arch_state
*rsa
= get_remote_arch_state ();
3981 /* Extract all the registers in the regcache copying them into a
3985 regs
= alloca (rsa
->sizeof_g_packet
);
3986 memset (regs
, 0, rsa
->sizeof_g_packet
);
3987 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
3989 struct packet_reg
*r
= &rsa
->regs
[i
];
3991 regcache_raw_collect (regcache
, r
->regnum
, regs
+ r
->offset
);
3995 /* Command describes registers byte by byte,
3996 each byte encoded as two hex characters. */
3999 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
4001 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
4002 remote_send (&rs
->buf
, &rs
->buf_size
);
4005 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
4006 of the register cache buffer. FIXME: ignores errors. */
4009 remote_store_registers (struct regcache
*regcache
, int regnum
)
4011 struct remote_state
*rs
= get_remote_state ();
4012 struct remote_arch_state
*rsa
= get_remote_arch_state ();
4015 set_general_thread (inferior_ptid
);
4019 struct packet_reg
*reg
= packet_reg_from_regnum (rsa
, regnum
);
4020 gdb_assert (reg
!= NULL
);
4022 /* Always prefer to store registers using the 'P' packet if
4023 possible; we often change only a small number of registers.
4024 Sometimes we change a larger number; we'd need help from a
4025 higher layer to know to use 'G'. */
4026 if (store_register_using_P (regcache
, reg
))
4029 /* For now, don't complain if we have no way to write the
4030 register. GDB loses track of unavailable registers too
4031 easily. Some day, this may be an error. We don't have
4032 any way to read the register, either... */
4033 if (!reg
->in_g_packet
)
4036 store_registers_using_G (regcache
);
4040 store_registers_using_G (regcache
);
4042 for (i
= 0; i
< gdbarch_num_regs (get_regcache_arch (regcache
)); i
++)
4043 if (!rsa
->regs
[i
].in_g_packet
)
4044 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
4045 /* See above for why we do not issue an error here. */
4050 /* Return the number of hex digits in num. */
4053 hexnumlen (ULONGEST num
)
4057 for (i
= 0; num
!= 0; i
++)
4063 /* Set BUF to the minimum number of hex digits representing NUM. */
4066 hexnumstr (char *buf
, ULONGEST num
)
4068 int len
= hexnumlen (num
);
4069 return hexnumnstr (buf
, num
, len
);
4073 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
4076 hexnumnstr (char *buf
, ULONGEST num
, int width
)
4082 for (i
= width
- 1; i
>= 0; i
--)
4084 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
4091 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
4094 remote_address_masked (CORE_ADDR addr
)
4096 int address_size
= remote_address_size
;
4097 /* If "remoteaddresssize" was not set, default to target address size. */
4099 address_size
= gdbarch_addr_bit (current_gdbarch
);
4101 if (address_size
> 0
4102 && address_size
< (sizeof (ULONGEST
) * 8))
4104 /* Only create a mask when that mask can safely be constructed
4105 in a ULONGEST variable. */
4107 mask
= (mask
<< address_size
) - 1;
4113 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
4114 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
4115 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
4116 (which may be more than *OUT_LEN due to escape characters). The
4117 total number of bytes in the output buffer will be at most
4121 remote_escape_output (const gdb_byte
*buffer
, int len
,
4122 gdb_byte
*out_buf
, int *out_len
,
4125 int input_index
, output_index
;
4128 for (input_index
= 0; input_index
< len
; input_index
++)
4130 gdb_byte b
= buffer
[input_index
];
4132 if (b
== '$' || b
== '#' || b
== '}')
4134 /* These must be escaped. */
4135 if (output_index
+ 2 > out_maxlen
)
4137 out_buf
[output_index
++] = '}';
4138 out_buf
[output_index
++] = b
^ 0x20;
4142 if (output_index
+ 1 > out_maxlen
)
4144 out_buf
[output_index
++] = b
;
4148 *out_len
= input_index
;
4149 return output_index
;
4152 /* Convert BUFFER, escaped data LEN bytes long, into binary data
4153 in OUT_BUF. Return the number of bytes written to OUT_BUF.
4154 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
4156 This function reverses remote_escape_output. It allows more
4157 escaped characters than that function does, in particular because
4158 '*' must be escaped to avoid the run-length encoding processing
4159 in reading packets. */
4162 remote_unescape_input (const gdb_byte
*buffer
, int len
,
4163 gdb_byte
*out_buf
, int out_maxlen
)
4165 int input_index
, output_index
;
4170 for (input_index
= 0; input_index
< len
; input_index
++)
4172 gdb_byte b
= buffer
[input_index
];
4174 if (output_index
+ 1 > out_maxlen
)
4176 warning (_("Received too much data from remote target;"
4177 " ignoring overflow."));
4178 return output_index
;
4183 out_buf
[output_index
++] = b
^ 0x20;
4189 out_buf
[output_index
++] = b
;
4193 error (_("Unmatched escape character in target response."));
4195 return output_index
;
4198 /* Determine whether the remote target supports binary downloading.
4199 This is accomplished by sending a no-op memory write of zero length
4200 to the target at the specified address. It does not suffice to send
4201 the whole packet, since many stubs strip the eighth bit and
4202 subsequently compute a wrong checksum, which causes real havoc with
4205 NOTE: This can still lose if the serial line is not eight-bit
4206 clean. In cases like this, the user should clear "remote
4210 check_binary_download (CORE_ADDR addr
)
4212 struct remote_state
*rs
= get_remote_state ();
4214 switch (remote_protocol_packets
[PACKET_X
].support
)
4216 case PACKET_DISABLE
:
4220 case PACKET_SUPPORT_UNKNOWN
:
4226 p
+= hexnumstr (p
, (ULONGEST
) addr
);
4228 p
+= hexnumstr (p
, (ULONGEST
) 0);
4232 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
4233 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4235 if (rs
->buf
[0] == '\0')
4238 fprintf_unfiltered (gdb_stdlog
,
4239 "binary downloading NOT suppported by target\n");
4240 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
4245 fprintf_unfiltered (gdb_stdlog
,
4246 "binary downloading suppported by target\n");
4247 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
4254 /* Write memory data directly to the remote machine.
4255 This does not inform the data cache; the data cache uses this.
4256 HEADER is the starting part of the packet.
4257 MEMADDR is the address in the remote memory space.
4258 MYADDR is the address of the buffer in our space.
4259 LEN is the number of bytes.
4260 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
4261 should send data as binary ('X'), or hex-encoded ('M').
4263 The function creates packet of the form
4264 <HEADER><ADDRESS>,<LENGTH>:<DATA>
4266 where encoding of <DATA> is termined by PACKET_FORMAT.
4268 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
4271 Returns the number of bytes transferred, or 0 (setting errno) for
4272 error. Only transfer a single packet. */
4275 remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
4276 const gdb_byte
*myaddr
, int len
,
4277 char packet_format
, int use_length
)
4279 struct remote_state
*rs
= get_remote_state ();
4289 if (packet_format
!= 'X' && packet_format
!= 'M')
4290 internal_error (__FILE__
, __LINE__
,
4291 "remote_write_bytes_aux: bad packet format");
4296 payload_size
= get_memory_write_packet_size ();
4298 /* The packet buffer will be large enough for the payload;
4299 get_memory_packet_size ensures this. */
4302 /* Compute the size of the actual payload by subtracting out the
4303 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
4305 payload_size
-= strlen ("$,:#NN");
4307 /* The comma won't be used. */
4309 header_length
= strlen (header
);
4310 payload_size
-= header_length
;
4311 payload_size
-= hexnumlen (memaddr
);
4313 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
4315 strcat (rs
->buf
, header
);
4316 p
= rs
->buf
+ strlen (header
);
4318 /* Compute a best guess of the number of bytes actually transfered. */
4319 if (packet_format
== 'X')
4321 /* Best guess at number of bytes that will fit. */
4322 todo
= min (len
, payload_size
);
4324 payload_size
-= hexnumlen (todo
);
4325 todo
= min (todo
, payload_size
);
4329 /* Num bytes that will fit. */
4330 todo
= min (len
, payload_size
/ 2);
4332 payload_size
-= hexnumlen (todo
);
4333 todo
= min (todo
, payload_size
/ 2);
4337 internal_error (__FILE__
, __LINE__
,
4338 _("minumum packet size too small to write data"));
4340 /* If we already need another packet, then try to align the end
4341 of this packet to a useful boundary. */
4342 if (todo
> 2 * REMOTE_ALIGN_WRITES
&& todo
< len
)
4343 todo
= ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
4345 /* Append "<memaddr>". */
4346 memaddr
= remote_address_masked (memaddr
);
4347 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
4354 /* Append <len>. Retain the location/size of <len>. It may need to
4355 be adjusted once the packet body has been created. */
4357 plenlen
= hexnumstr (p
, (ULONGEST
) todo
);
4365 /* Append the packet body. */
4366 if (packet_format
== 'X')
4368 /* Binary mode. Send target system values byte by byte, in
4369 increasing byte addresses. Only escape certain critical
4371 payload_length
= remote_escape_output (myaddr
, todo
, p
, &nr_bytes
,
4374 /* If not all TODO bytes fit, then we'll need another packet. Make
4375 a second try to keep the end of the packet aligned. Don't do
4376 this if the packet is tiny. */
4377 if (nr_bytes
< todo
&& nr_bytes
> 2 * REMOTE_ALIGN_WRITES
)
4381 new_nr_bytes
= (((memaddr
+ nr_bytes
) & ~(REMOTE_ALIGN_WRITES
- 1))
4383 if (new_nr_bytes
!= nr_bytes
)
4384 payload_length
= remote_escape_output (myaddr
, new_nr_bytes
,
4389 p
+= payload_length
;
4390 if (use_length
&& nr_bytes
< todo
)
4392 /* Escape chars have filled up the buffer prematurely,
4393 and we have actually sent fewer bytes than planned.
4394 Fix-up the length field of the packet. Use the same
4395 number of characters as before. */
4396 plen
+= hexnumnstr (plen
, (ULONGEST
) nr_bytes
, plenlen
);
4397 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
4402 /* Normal mode: Send target system values byte by byte, in
4403 increasing byte addresses. Each byte is encoded as a two hex
4405 nr_bytes
= bin2hex (myaddr
, p
, todo
);
4409 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
4410 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4412 if (rs
->buf
[0] == 'E')
4414 /* There is no correspondance between what the remote protocol
4415 uses for errors and errno codes. We would like a cleaner way
4416 of representing errors (big enough to include errno codes,
4417 bfd_error codes, and others). But for now just return EIO. */
4422 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
4423 fewer bytes than we'd planned. */
4427 /* Write memory data directly to the remote machine.
4428 This does not inform the data cache; the data cache uses this.
4429 MEMADDR is the address in the remote memory space.
4430 MYADDR is the address of the buffer in our space.
4431 LEN is the number of bytes.
4433 Returns number of bytes transferred, or 0 (setting errno) for
4434 error. Only transfer a single packet. */
4437 remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, int len
)
4439 char *packet_format
= 0;
4441 /* Check whether the target supports binary download. */
4442 check_binary_download (memaddr
);
4444 switch (remote_protocol_packets
[PACKET_X
].support
)
4447 packet_format
= "X";
4449 case PACKET_DISABLE
:
4450 packet_format
= "M";
4452 case PACKET_SUPPORT_UNKNOWN
:
4453 internal_error (__FILE__
, __LINE__
,
4454 _("remote_write_bytes: bad internal state"));
4456 internal_error (__FILE__
, __LINE__
, _("bad switch"));
4459 return remote_write_bytes_aux (packet_format
,
4460 memaddr
, myaddr
, len
, packet_format
[0], 1);
4463 /* Read memory data directly from the remote machine.
4464 This does not use the data cache; the data cache uses this.
4465 MEMADDR is the address in the remote memory space.
4466 MYADDR is the address of the buffer in our space.
4467 LEN is the number of bytes.
4469 Returns number of bytes transferred, or 0 for error. */
4471 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
4472 remote targets) shouldn't attempt to read the entire buffer.
4473 Instead it should read a single packet worth of data and then
4474 return the byte size of that packet to the caller. The caller (its
4475 caller and its callers caller ;-) already contains code for
4476 handling partial reads. */
4479 remote_read_bytes (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
)
4481 struct remote_state
*rs
= get_remote_state ();
4482 int max_buf_size
; /* Max size of packet output buffer. */
4488 max_buf_size
= get_memory_read_packet_size ();
4489 /* The packet buffer will be large enough for the payload;
4490 get_memory_packet_size ensures this. */
4499 todo
= min (len
, max_buf_size
/ 2); /* num bytes that will fit */
4501 /* construct "m"<memaddr>","<len>" */
4502 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
4503 memaddr
= remote_address_masked (memaddr
);
4506 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
4508 p
+= hexnumstr (p
, (ULONGEST
) todo
);
4512 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4514 if (rs
->buf
[0] == 'E'
4515 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
4516 && rs
->buf
[3] == '\0')
4518 /* There is no correspondance between what the remote
4519 protocol uses for errors and errno codes. We would like
4520 a cleaner way of representing errors (big enough to
4521 include errno codes, bfd_error codes, and others). But
4522 for now just return EIO. */
4527 /* Reply describes memory byte by byte,
4528 each byte encoded as two hex characters. */
4531 if ((i
= hex2bin (p
, myaddr
, todo
)) < todo
)
4533 /* Reply is short. This means that we were able to read
4534 only part of what we wanted to. */
4535 return i
+ (origlen
- len
);
4544 /* Read or write LEN bytes from inferior memory at MEMADDR,
4545 transferring to or from debugger address BUFFER. Write to inferior
4546 if SHOULD_WRITE is nonzero. Returns length of data written or
4547 read; 0 for error. TARGET is unused. */
4550 remote_xfer_memory (CORE_ADDR mem_addr
, gdb_byte
*buffer
, int mem_len
,
4551 int should_write
, struct mem_attrib
*attrib
,
4552 struct target_ops
*target
)
4557 res
= remote_write_bytes (mem_addr
, buffer
, mem_len
);
4559 res
= remote_read_bytes (mem_addr
, buffer
, mem_len
);
4564 /* Sends a packet with content determined by the printf format string
4565 FORMAT and the remaining arguments, then gets the reply. Returns
4566 whether the packet was a success, a failure, or unknown. */
4569 remote_send_printf (const char *format
, ...)
4571 struct remote_state
*rs
= get_remote_state ();
4572 int max_size
= get_remote_packet_size ();
4575 va_start (ap
, format
);
4578 if (vsnprintf (rs
->buf
, max_size
, format
, ap
) >= max_size
)
4579 internal_error (__FILE__
, __LINE__
, "Too long remote packet.");
4581 if (putpkt (rs
->buf
) < 0)
4582 error (_("Communication problem with target."));
4585 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4587 return packet_check_result (rs
->buf
);
4591 restore_remote_timeout (void *p
)
4593 int value
= *(int *)p
;
4594 remote_timeout
= value
;
4597 /* Flash writing can take quite some time. We'll set
4598 effectively infinite timeout for flash operations.
4599 In future, we'll need to decide on a better approach. */
4600 static const int remote_flash_timeout
= 1000;
4603 remote_flash_erase (struct target_ops
*ops
,
4604 ULONGEST address
, LONGEST length
)
4606 int saved_remote_timeout
= remote_timeout
;
4607 enum packet_result ret
;
4609 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4610 &saved_remote_timeout
);
4611 remote_timeout
= remote_flash_timeout
;
4613 ret
= remote_send_printf ("vFlashErase:%s,%s",
4618 case PACKET_UNKNOWN
:
4619 error (_("Remote target does not support flash erase"));
4621 error (_("Error erasing flash with vFlashErase packet"));
4626 do_cleanups (back_to
);
4630 remote_flash_write (struct target_ops
*ops
,
4631 ULONGEST address
, LONGEST length
,
4632 const gdb_byte
*data
)
4634 int saved_remote_timeout
= remote_timeout
;
4636 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4637 &saved_remote_timeout
);
4639 remote_timeout
= remote_flash_timeout
;
4640 ret
= remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 'X', 0);
4641 do_cleanups (back_to
);
4647 remote_flash_done (struct target_ops
*ops
)
4649 int saved_remote_timeout
= remote_timeout
;
4651 struct cleanup
*back_to
= make_cleanup (restore_remote_timeout
,
4652 &saved_remote_timeout
);
4654 remote_timeout
= remote_flash_timeout
;
4655 ret
= remote_send_printf ("vFlashDone");
4656 do_cleanups (back_to
);
4660 case PACKET_UNKNOWN
:
4661 error (_("Remote target does not support vFlashDone"));
4663 error (_("Error finishing flash operation"));
4670 remote_files_info (struct target_ops
*ignore
)
4672 puts_filtered ("Debugging a target over a serial line.\n");
4675 /* Stuff for dealing with the packets which are part of this protocol.
4676 See comment at top of file for details. */
4678 /* Read a single character from the remote end. */
4681 readchar (int timeout
)
4685 ch
= serial_readchar (remote_desc
, timeout
);
4690 switch ((enum serial_rc
) ch
)
4693 target_mourn_inferior ();
4694 error (_("Remote connection closed"));
4697 perror_with_name (_("Remote communication error"));
4699 case SERIAL_TIMEOUT
:
4705 /* Send the command in *BUF to the remote machine, and read the reply
4706 into *BUF. Report an error if we get an error reply. Resize
4707 *BUF using xrealloc if necessary to hold the result, and update
4711 remote_send (char **buf
,
4715 getpkt (buf
, sizeof_buf
, 0);
4717 if ((*buf
)[0] == 'E')
4718 error (_("Remote failure reply: %s"), *buf
);
4721 /* Display a null-terminated packet on stdout, for debugging, using C
4725 print_packet (char *buf
)
4727 puts_filtered ("\"");
4728 fputstr_filtered (buf
, '"', gdb_stdout
);
4729 puts_filtered ("\"");
4735 return putpkt_binary (buf
, strlen (buf
));
4738 /* Send a packet to the remote machine, with error checking. The data
4739 of the packet is in BUF. The string in BUF can be at most
4740 get_remote_packet_size () - 5 to account for the $, # and checksum,
4741 and for a possible /0 if we are debugging (remote_debug) and want
4742 to print the sent packet as a string. */
4745 putpkt_binary (char *buf
, int cnt
)
4747 struct remote_state
*rs
= get_remote_state ();
4749 unsigned char csum
= 0;
4750 char *buf2
= alloca (cnt
+ 6);
4756 /* We're sending out a new packet. Make sure we don't look at a
4757 stale cached response. */
4758 rs
->cached_wait_status
= 0;
4760 /* Copy the packet into buffer BUF2, encapsulating it
4761 and giving it a checksum. */
4766 for (i
= 0; i
< cnt
; i
++)
4772 *p
++ = tohex ((csum
>> 4) & 0xf);
4773 *p
++ = tohex (csum
& 0xf);
4775 /* Send it over and over until we get a positive ack. */
4779 int started_error_output
= 0;
4784 fprintf_unfiltered (gdb_stdlog
, "Sending packet: ");
4785 fputstrn_unfiltered (buf2
, p
- buf2
, 0, gdb_stdlog
);
4786 fprintf_unfiltered (gdb_stdlog
, "...");
4787 gdb_flush (gdb_stdlog
);
4789 if (serial_write (remote_desc
, buf2
, p
- buf2
))
4790 perror_with_name (_("putpkt: write failed"));
4792 /* Read until either a timeout occurs (-2) or '+' is read. */
4795 ch
= readchar (remote_timeout
);
4803 case SERIAL_TIMEOUT
:
4805 if (started_error_output
)
4807 putchar_unfiltered ('\n');
4808 started_error_output
= 0;
4817 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
4821 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
4822 case SERIAL_TIMEOUT
:
4826 break; /* Retransmit buffer. */
4830 fprintf_unfiltered (gdb_stdlog
,
4831 "Packet instead of Ack, ignoring it\n");
4832 /* It's probably an old response sent because an ACK
4833 was lost. Gobble up the packet and ack it so it
4834 doesn't get retransmitted when we resend this
4837 serial_write (remote_desc
, "+", 1);
4838 continue; /* Now, go look for +. */
4843 if (!started_error_output
)
4845 started_error_output
= 1;
4846 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
4848 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
4852 break; /* Here to retransmit. */
4856 /* This is wrong. If doing a long backtrace, the user should be
4857 able to get out next time we call QUIT, without anything as
4858 violent as interrupt_query. If we want to provide a way out of
4859 here without getting to the next QUIT, it should be based on
4860 hitting ^C twice as in remote_wait. */
4870 /* Come here after finding the start of a frame when we expected an
4871 ack. Do our best to discard the rest of this packet. */
4880 c
= readchar (remote_timeout
);
4883 case SERIAL_TIMEOUT
:
4884 /* Nothing we can do. */
4887 /* Discard the two bytes of checksum and stop. */
4888 c
= readchar (remote_timeout
);
4890 c
= readchar (remote_timeout
);
4893 case '*': /* Run length encoding. */
4894 /* Discard the repeat count. */
4895 c
= readchar (remote_timeout
);
4900 /* A regular character. */
4906 /* Come here after finding the start of the frame. Collect the rest
4907 into *BUF, verifying the checksum, length, and handling run-length
4908 compression. NUL terminate the buffer. If there is not enough room,
4909 expand *BUF using xrealloc.
4911 Returns -1 on error, number of characters in buffer (ignoring the
4912 trailing NULL) on success. (could be extended to return one of the
4913 SERIAL status indications). */
4916 read_frame (char **buf_p
,
4929 c
= readchar (remote_timeout
);
4932 case SERIAL_TIMEOUT
:
4934 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
4938 fputs_filtered ("Saw new packet start in middle of old one\n",
4940 return -1; /* Start a new packet, count retries. */
4943 unsigned char pktcsum
;
4949 check_0
= readchar (remote_timeout
);
4951 check_1
= readchar (remote_timeout
);
4953 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
4956 fputs_filtered ("Timeout in checksum, retrying\n",
4960 else if (check_0
< 0 || check_1
< 0)
4963 fputs_filtered ("Communication error in checksum\n",
4968 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
4969 if (csum
== pktcsum
)
4974 fprintf_filtered (gdb_stdlog
,
4975 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
4977 fputstrn_filtered (buf
, bc
, 0, gdb_stdlog
);
4978 fputs_filtered ("\n", gdb_stdlog
);
4980 /* Number of characters in buffer ignoring trailing
4984 case '*': /* Run length encoding. */
4989 c
= readchar (remote_timeout
);
4991 repeat
= c
- ' ' + 3; /* Compute repeat count. */
4993 /* The character before ``*'' is repeated. */
4995 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
4997 if (bc
+ repeat
- 1 >= *sizeof_buf
- 1)
4999 /* Make some more room in the buffer. */
5000 *sizeof_buf
+= repeat
;
5001 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
5005 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
5011 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
5015 if (bc
>= *sizeof_buf
- 1)
5017 /* Make some more room in the buffer. */
5019 *buf_p
= xrealloc (*buf_p
, *sizeof_buf
);
5030 /* Read a packet from the remote machine, with error checking, and
5031 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5032 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5033 rather than timing out; this is used (in synchronous mode) to wait
5034 for a target that is is executing user code to stop. */
5035 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
5036 don't have to change all the calls to getpkt to deal with the
5037 return value, because at the moment I don't know what the right
5038 thing to do it for those. */
5046 timed_out
= getpkt_sane (buf
, sizeof_buf
, forever
);
5050 /* Read a packet from the remote machine, with error checking, and
5051 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5052 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5053 rather than timing out; this is used (in synchronous mode) to wait
5054 for a target that is is executing user code to stop. If FOREVER ==
5055 0, this function is allowed to time out gracefully and return an
5056 indication of this to the caller. Otherwise return the number
5059 getpkt_sane (char **buf
, long *sizeof_buf
, int forever
)
5061 struct remote_state
*rs
= get_remote_state ();
5067 /* We're reading a new response. Make sure we don't look at a
5068 previously cached response. */
5069 rs
->cached_wait_status
= 0;
5071 strcpy (*buf
, "timeout");
5075 timeout
= watchdog
> 0 ? watchdog
: -1;
5079 timeout
= remote_timeout
;
5083 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
5085 /* This can loop forever if the remote side sends us characters
5086 continuously, but if it pauses, we'll get a zero from
5087 readchar because of timeout. Then we'll count that as a
5090 /* Note that we will only wait forever prior to the start of a
5091 packet. After that, we expect characters to arrive at a
5092 brisk pace. They should show up within remote_timeout
5097 c
= readchar (timeout
);
5099 if (c
== SERIAL_TIMEOUT
)
5101 if (forever
) /* Watchdog went off? Kill the target. */
5104 target_mourn_inferior ();
5105 error (_("Watchdog timeout has expired. Target detached."));
5108 fputs_filtered ("Timed out.\n", gdb_stdlog
);
5114 /* We've found the start of a packet, now collect the data. */
5116 val
= read_frame (buf
, sizeof_buf
);
5122 fprintf_unfiltered (gdb_stdlog
, "Packet received: ");
5123 fputstrn_unfiltered (*buf
, val
, 0, gdb_stdlog
);
5124 fprintf_unfiltered (gdb_stdlog
, "\n");
5126 serial_write (remote_desc
, "+", 1);
5130 /* Try the whole thing again. */
5132 serial_write (remote_desc
, "-", 1);
5135 /* We have tried hard enough, and just can't receive the packet.
5138 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
5139 serial_write (remote_desc
, "+", 1);
5146 /* Unregister the file descriptor from the event loop. */
5147 if (target_is_async_p ())
5148 serial_async (remote_desc
, NULL
, 0);
5150 /* Use catch_errors so the user can quit from gdb even when we
5151 aren't on speaking terms with the remote system. */
5152 catch_errors ((catch_errors_ftype
*) putpkt
, "k", "", RETURN_MASK_ERROR
);
5154 /* Don't wait for it to die. I'm not really sure it matters whether
5155 we do or not. For the existing stubs, kill is a noop. */
5156 target_mourn_inferior ();
5162 remote_mourn_1 (&remote_ops
);
5165 /* Worker function for remote_mourn. */
5167 remote_mourn_1 (struct target_ops
*target
)
5169 unpush_target (target
);
5170 generic_mourn_inferior ();
5174 extended_remote_mourn_1 (struct target_ops
*target
)
5176 struct remote_state
*rs
= get_remote_state ();
5178 /* Unlike "target remote", we do not want to unpush the target; then
5179 the next time the user says "run", we won't be connected. */
5181 /* Call common code to mark the inferior as not running. */
5182 generic_mourn_inferior ();
5184 /* Check whether the target is running now - some remote stubs
5185 automatically restart after kill. */
5187 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5189 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
5191 /* Assume that the target has been restarted. Set inferior_ptid
5192 so that bits of core GDB realizes there's something here, e.g.,
5193 so that the user can say "kill" again. */
5194 inferior_ptid
= remote_current_thread (magic_null_ptid
);
5195 add_thread_silent (inferior_ptid
);
5199 /* Mark this (still pushed) target as not executable until we
5201 target_mark_exited (target
);
5206 extended_remote_mourn (void)
5208 extended_remote_mourn_1 (&extended_remote_ops
);
5212 extended_remote_run (char *args
)
5214 struct remote_state
*rs
= get_remote_state ();
5218 /* If the user has disabled vRun support, or we have detected that
5219 support is not available, do not try it. */
5220 if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
5223 strcpy (rs
->buf
, "vRun;");
5224 len
= strlen (rs
->buf
);
5226 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
5227 error (_("Remote file name too long for run packet"));
5228 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
+ len
, 0);
5232 struct cleanup
*back_to
;
5236 argv
= buildargv (args
);
5237 back_to
= make_cleanup ((void (*) (void *)) freeargv
, argv
);
5238 for (i
= 0; argv
[i
] != NULL
; i
++)
5240 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
5241 error (_("Argument list too long for run packet"));
5242 rs
->buf
[len
++] = ';';
5243 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
+ len
, 0);
5245 do_cleanups (back_to
);
5248 rs
->buf
[len
++] = '\0';
5251 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5253 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]) == PACKET_OK
)
5255 /* We have a wait response; we don't need it, though. All is well. */
5258 else if (remote_protocol_packets
[PACKET_vRun
].support
== PACKET_DISABLE
)
5259 /* It wasn't disabled before, but it is now. */
5263 if (remote_exec_file
[0] == '\0')
5264 error (_("Running the default executable on the remote target failed; "
5265 "try \"set remote exec-file\"?"));
5267 error (_("Running \"%s\" on the remote target failed"),
5272 /* In the extended protocol we want to be able to do things like
5273 "run" and have them basically work as expected. So we need
5274 a special create_inferior function. We support changing the
5275 executable file and the command line arguments, but not the
5279 extended_remote_create_inferior_1 (char *exec_file
, char *args
,
5280 char **env
, int from_tty
)
5282 /* If running asynchronously, register the target file descriptor
5283 with the event loop. */
5284 if (target_can_async_p ())
5285 target_async (inferior_event_handler
, 0);
5287 /* Now restart the remote server. */
5288 if (extended_remote_run (args
) == -1)
5290 /* vRun was not supported. Fail if we need it to do what the
5292 if (remote_exec_file
[0])
5293 error (_("Remote target does not support \"set remote exec-file\""));
5295 error (_("Remote target does not support \"set args\" or run <ARGS>"));
5297 /* Fall back to "R". */
5298 extended_remote_restart ();
5301 /* Clean up from the last time we ran, before we mark the target
5302 running again. This will mark breakpoints uninserted, and
5303 get_offsets may insert breakpoints. */
5304 init_thread_list ();
5305 init_wait_for_inferior ();
5307 /* Now mark the inferior as running before we do anything else. */
5309 inferior_ptid
= magic_null_ptid
;
5311 add_thread_silent (inferior_ptid
);
5313 target_mark_running (&extended_remote_ops
);
5315 /* Get updated offsets, if the stub uses qOffsets. */
5320 extended_remote_create_inferior (char *exec_file
, char *args
,
5321 char **env
, int from_tty
)
5323 extended_remote_create_inferior_1 (exec_file
, args
, env
, from_tty
);
5327 /* Insert a breakpoint. On targets that have software breakpoint
5328 support, we ask the remote target to do the work; on targets
5329 which don't, we insert a traditional memory breakpoint. */
5332 remote_insert_breakpoint (struct bp_target_info
*bp_tgt
)
5334 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
5335 If it succeeds, then set the support to PACKET_ENABLE. If it
5336 fails, and the user has explicitly requested the Z support then
5337 report an error, otherwise, mark it disabled and go on. */
5339 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
5341 CORE_ADDR addr
= bp_tgt
->placed_address
;
5342 struct remote_state
*rs
;
5346 gdbarch_breakpoint_from_pc
5347 (current_gdbarch
, &addr
, &bpsize
);
5349 rs
= get_remote_state ();
5355 addr
= (ULONGEST
) remote_address_masked (addr
);
5356 p
+= hexnumstr (p
, addr
);
5357 sprintf (p
, ",%d", bpsize
);
5360 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5362 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
5367 bp_tgt
->placed_address
= addr
;
5368 bp_tgt
->placed_size
= bpsize
;
5370 case PACKET_UNKNOWN
:
5375 return memory_insert_breakpoint (bp_tgt
);
5379 remote_remove_breakpoint (struct bp_target_info
*bp_tgt
)
5381 CORE_ADDR addr
= bp_tgt
->placed_address
;
5382 struct remote_state
*rs
= get_remote_state ();
5385 if (remote_protocol_packets
[PACKET_Z0
].support
!= PACKET_DISABLE
)
5393 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
5394 p
+= hexnumstr (p
, addr
);
5395 sprintf (p
, ",%d", bp_tgt
->placed_size
);
5398 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5400 return (rs
->buf
[0] == 'E');
5403 return memory_remove_breakpoint (bp_tgt
);
5407 watchpoint_to_Z_packet (int type
)
5412 return Z_PACKET_WRITE_WP
;
5415 return Z_PACKET_READ_WP
;
5418 return Z_PACKET_ACCESS_WP
;
5421 internal_error (__FILE__
, __LINE__
,
5422 _("hw_bp_to_z: bad watchpoint type %d"), type
);
5427 remote_insert_watchpoint (CORE_ADDR addr
, int len
, int type
)
5429 struct remote_state
*rs
= get_remote_state ();
5431 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
5433 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
5436 sprintf (rs
->buf
, "Z%x,", packet
);
5437 p
= strchr (rs
->buf
, '\0');
5438 addr
= remote_address_masked (addr
);
5439 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5440 sprintf (p
, ",%x", len
);
5443 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5445 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
5448 case PACKET_UNKNOWN
:
5453 internal_error (__FILE__
, __LINE__
,
5454 _("remote_insert_watchpoint: reached end of function"));
5459 remote_remove_watchpoint (CORE_ADDR addr
, int len
, int type
)
5461 struct remote_state
*rs
= get_remote_state ();
5463 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
5465 if (remote_protocol_packets
[PACKET_Z0
+ packet
].support
== PACKET_DISABLE
)
5468 sprintf (rs
->buf
, "z%x,", packet
);
5469 p
= strchr (rs
->buf
, '\0');
5470 addr
= remote_address_masked (addr
);
5471 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5472 sprintf (p
, ",%x", len
);
5474 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5476 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
5479 case PACKET_UNKNOWN
:
5484 internal_error (__FILE__
, __LINE__
,
5485 _("remote_remove_watchpoint: reached end of function"));
5489 int remote_hw_watchpoint_limit
= -1;
5490 int remote_hw_breakpoint_limit
= -1;
5493 remote_check_watch_resources (int type
, int cnt
, int ot
)
5495 if (type
== bp_hardware_breakpoint
)
5497 if (remote_hw_breakpoint_limit
== 0)
5499 else if (remote_hw_breakpoint_limit
< 0)
5501 else if (cnt
<= remote_hw_breakpoint_limit
)
5506 if (remote_hw_watchpoint_limit
== 0)
5508 else if (remote_hw_watchpoint_limit
< 0)
5512 else if (cnt
<= remote_hw_watchpoint_limit
)
5519 remote_stopped_by_watchpoint (void)
5521 return remote_stopped_by_watchpoint_p
;
5525 remote_stopped_data_address (struct target_ops
*target
, CORE_ADDR
*addr_p
)
5528 if (remote_stopped_by_watchpoint ())
5530 *addr_p
= remote_watch_data_address
;
5539 remote_insert_hw_breakpoint (struct bp_target_info
*bp_tgt
)
5542 struct remote_state
*rs
;
5545 /* The length field should be set to the size of a breakpoint
5546 instruction, even though we aren't inserting one ourselves. */
5548 gdbarch_breakpoint_from_pc
5549 (current_gdbarch
, &bp_tgt
->placed_address
, &bp_tgt
->placed_size
);
5551 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
5554 rs
= get_remote_state ();
5561 addr
= remote_address_masked (bp_tgt
->placed_address
);
5562 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5563 sprintf (p
, ",%x", bp_tgt
->placed_size
);
5566 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5568 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
5571 case PACKET_UNKNOWN
:
5576 internal_error (__FILE__
, __LINE__
,
5577 _("remote_insert_hw_breakpoint: reached end of function"));
5582 remote_remove_hw_breakpoint (struct bp_target_info
*bp_tgt
)
5585 struct remote_state
*rs
= get_remote_state ();
5588 if (remote_protocol_packets
[PACKET_Z1
].support
== PACKET_DISABLE
)
5595 addr
= remote_address_masked (bp_tgt
->placed_address
);
5596 p
+= hexnumstr (p
, (ULONGEST
) addr
);
5597 sprintf (p
, ",%x", bp_tgt
->placed_size
);
5600 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5602 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
5605 case PACKET_UNKNOWN
:
5610 internal_error (__FILE__
, __LINE__
,
5611 _("remote_remove_hw_breakpoint: reached end of function"));
5614 /* Some targets are only capable of doing downloads, and afterwards
5615 they switch to the remote serial protocol. This function provides
5616 a clean way to get from the download target to the remote target.
5617 It's basically just a wrapper so that we don't have to expose any
5618 of the internal workings of remote.c.
5620 Prior to calling this routine, you should shutdown the current
5621 target code, else you will get the "A program is being debugged
5622 already..." message. Usually a call to pop_target() suffices. */
5625 push_remote_target (char *name
, int from_tty
)
5627 printf_filtered (_("Switching to remote protocol\n"));
5628 remote_open (name
, from_tty
);
5631 /* Table used by the crc32 function to calcuate the checksum. */
5633 static unsigned long crc32_table
[256] =
5636 static unsigned long
5637 crc32 (unsigned char *buf
, int len
, unsigned int crc
)
5639 if (!crc32_table
[1])
5641 /* Initialize the CRC table and the decoding table. */
5645 for (i
= 0; i
< 256; i
++)
5647 for (c
= i
<< 24, j
= 8; j
> 0; --j
)
5648 c
= c
& 0x80000000 ? (c
<< 1) ^ 0x04c11db7 : (c
<< 1);
5655 crc
= (crc
<< 8) ^ crc32_table
[((crc
>> 24) ^ *buf
) & 255];
5661 /* compare-sections command
5663 With no arguments, compares each loadable section in the exec bfd
5664 with the same memory range on the target, and reports mismatches.
5665 Useful for verifying the image on the target against the exec file.
5666 Depends on the target understanding the new "qCRC:" request. */
5668 /* FIXME: cagney/1999-10-26: This command should be broken down into a
5669 target method (target verify memory) and generic version of the
5670 actual command. This will allow other high-level code (especially
5671 generic_load()) to make use of this target functionality. */
5674 compare_sections_command (char *args
, int from_tty
)
5676 struct remote_state
*rs
= get_remote_state ();
5678 unsigned long host_crc
, target_crc
;
5679 extern bfd
*exec_bfd
;
5680 struct cleanup
*old_chain
;
5683 const char *sectname
;
5690 error (_("command cannot be used without an exec file"));
5691 if (!current_target
.to_shortname
||
5692 strcmp (current_target
.to_shortname
, "remote") != 0)
5693 error (_("command can only be used with remote target"));
5695 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
5697 if (!(s
->flags
& SEC_LOAD
))
5698 continue; /* skip non-loadable section */
5700 size
= bfd_get_section_size (s
);
5702 continue; /* skip zero-length section */
5704 sectname
= bfd_get_section_name (exec_bfd
, s
);
5705 if (args
&& strcmp (args
, sectname
) != 0)
5706 continue; /* not the section selected by user */
5708 matched
= 1; /* do this section */
5710 /* FIXME: assumes lma can fit into long. */
5711 xsnprintf (rs
->buf
, get_remote_packet_size (), "qCRC:%lx,%lx",
5712 (long) lma
, (long) size
);
5715 /* Be clever; compute the host_crc before waiting for target
5717 sectdata
= xmalloc (size
);
5718 old_chain
= make_cleanup (xfree
, sectdata
);
5719 bfd_get_section_contents (exec_bfd
, s
, sectdata
, 0, size
);
5720 host_crc
= crc32 ((unsigned char *) sectdata
, size
, 0xffffffff);
5722 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5723 if (rs
->buf
[0] == 'E')
5724 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
5725 sectname
, paddr (lma
), paddr (lma
+ size
));
5726 if (rs
->buf
[0] != 'C')
5727 error (_("remote target does not support this operation"));
5729 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
5730 target_crc
= target_crc
* 16 + fromhex (*tmp
);
5732 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
5733 sectname
, paddr (lma
), paddr (lma
+ size
));
5734 if (host_crc
== target_crc
)
5735 printf_filtered ("matched.\n");
5738 printf_filtered ("MIS-MATCHED!\n");
5742 do_cleanups (old_chain
);
5745 warning (_("One or more sections of the remote executable does not match\n\
5746 the loaded file\n"));
5747 if (args
&& !matched
)
5748 printf_filtered (_("No loaded section named '%s'.\n"), args
);
5751 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
5752 into remote target. The number of bytes written to the remote
5753 target is returned, or -1 for error. */
5756 remote_write_qxfer (struct target_ops
*ops
, const char *object_name
,
5757 const char *annex
, const gdb_byte
*writebuf
,
5758 ULONGEST offset
, LONGEST len
,
5759 struct packet_config
*packet
)
5764 struct remote_state
*rs
= get_remote_state ();
5765 int max_size
= get_memory_write_packet_size ();
5767 if (packet
->support
== PACKET_DISABLE
)
5770 /* Insert header. */
5771 i
= snprintf (rs
->buf
, max_size
,
5772 "qXfer:%s:write:%s:%s:",
5773 object_name
, annex
? annex
: "",
5774 phex_nz (offset
, sizeof offset
));
5775 max_size
-= (i
+ 1);
5777 /* Escape as much data as fits into rs->buf. */
5778 buf_len
= remote_escape_output
5779 (writebuf
, len
, (rs
->buf
+ i
), &max_size
, max_size
);
5781 if (putpkt_binary (rs
->buf
, i
+ buf_len
) < 0
5782 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
5783 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
5786 unpack_varlen_hex (rs
->buf
, &n
);
5790 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
5791 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
5792 number of bytes read is returned, or 0 for EOF, or -1 for error.
5793 The number of bytes read may be less than LEN without indicating an
5794 EOF. PACKET is checked and updated to indicate whether the remote
5795 target supports this object. */
5798 remote_read_qxfer (struct target_ops
*ops
, const char *object_name
,
5800 gdb_byte
*readbuf
, ULONGEST offset
, LONGEST len
,
5801 struct packet_config
*packet
)
5803 static char *finished_object
;
5804 static char *finished_annex
;
5805 static ULONGEST finished_offset
;
5807 struct remote_state
*rs
= get_remote_state ();
5808 unsigned int total
= 0;
5809 LONGEST i
, n
, packet_len
;
5811 if (packet
->support
== PACKET_DISABLE
)
5814 /* Check whether we've cached an end-of-object packet that matches
5816 if (finished_object
)
5818 if (strcmp (object_name
, finished_object
) == 0
5819 && strcmp (annex
? annex
: "", finished_annex
) == 0
5820 && offset
== finished_offset
)
5823 /* Otherwise, we're now reading something different. Discard
5825 xfree (finished_object
);
5826 xfree (finished_annex
);
5827 finished_object
= NULL
;
5828 finished_annex
= NULL
;
5831 /* Request only enough to fit in a single packet. The actual data
5832 may not, since we don't know how much of it will need to be escaped;
5833 the target is free to respond with slightly less data. We subtract
5834 five to account for the response type and the protocol frame. */
5835 n
= min (get_remote_packet_size () - 5, len
);
5836 snprintf (rs
->buf
, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
5837 object_name
, annex
? annex
: "",
5838 phex_nz (offset
, sizeof offset
),
5839 phex_nz (n
, sizeof n
));
5840 i
= putpkt (rs
->buf
);
5845 packet_len
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
5846 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
5849 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
5850 error (_("Unknown remote qXfer reply: %s"), rs
->buf
);
5852 /* 'm' means there is (or at least might be) more data after this
5853 batch. That does not make sense unless there's at least one byte
5854 of data in this reply. */
5855 if (rs
->buf
[0] == 'm' && packet_len
== 1)
5856 error (_("Remote qXfer reply contained no data."));
5858 /* Got some data. */
5859 i
= remote_unescape_input (rs
->buf
+ 1, packet_len
- 1, readbuf
, n
);
5861 /* 'l' is an EOF marker, possibly including a final block of data,
5862 or possibly empty. If we have the final block of a non-empty
5863 object, record this fact to bypass a subsequent partial read. */
5864 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
5866 finished_object
= xstrdup (object_name
);
5867 finished_annex
= xstrdup (annex
? annex
: "");
5868 finished_offset
= offset
+ i
;
5875 remote_xfer_partial (struct target_ops
*ops
, enum target_object object
,
5876 const char *annex
, gdb_byte
*readbuf
,
5877 const gdb_byte
*writebuf
, ULONGEST offset
, LONGEST len
)
5879 struct remote_state
*rs
= get_remote_state ();
5884 /* Handle memory using the standard memory routines. */
5885 if (object
== TARGET_OBJECT_MEMORY
)
5890 /* If the remote target is connected but not running, we should
5891 pass this request down to a lower stratum (e.g. the executable
5893 if (!target_has_execution
)
5896 if (writebuf
!= NULL
)
5897 xfered
= remote_write_bytes (offset
, writebuf
, len
);
5899 xfered
= remote_read_bytes (offset
, readbuf
, len
);
5903 else if (xfered
== 0 && errno
== 0)
5909 /* Handle SPU memory using qxfer packets. */
5910 if (object
== TARGET_OBJECT_SPU
)
5913 return remote_read_qxfer (ops
, "spu", annex
, readbuf
, offset
, len
,
5914 &remote_protocol_packets
5915 [PACKET_qXfer_spu_read
]);
5917 return remote_write_qxfer (ops
, "spu", annex
, writebuf
, offset
, len
,
5918 &remote_protocol_packets
5919 [PACKET_qXfer_spu_write
]);
5922 /* Only handle flash writes. */
5923 if (writebuf
!= NULL
)
5929 case TARGET_OBJECT_FLASH
:
5930 xfered
= remote_flash_write (ops
, offset
, len
, writebuf
);
5934 else if (xfered
== 0 && errno
== 0)
5944 /* Map pre-existing objects onto letters. DO NOT do this for new
5945 objects!!! Instead specify new query packets. */
5948 case TARGET_OBJECT_AVR
:
5952 case TARGET_OBJECT_AUXV
:
5953 gdb_assert (annex
== NULL
);
5954 return remote_read_qxfer (ops
, "auxv", annex
, readbuf
, offset
, len
,
5955 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
5957 case TARGET_OBJECT_AVAILABLE_FEATURES
:
5958 return remote_read_qxfer
5959 (ops
, "features", annex
, readbuf
, offset
, len
,
5960 &remote_protocol_packets
[PACKET_qXfer_features
]);
5962 case TARGET_OBJECT_LIBRARIES
:
5963 return remote_read_qxfer
5964 (ops
, "libraries", annex
, readbuf
, offset
, len
,
5965 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
5967 case TARGET_OBJECT_MEMORY_MAP
:
5968 gdb_assert (annex
== NULL
);
5969 return remote_read_qxfer (ops
, "memory-map", annex
, readbuf
, offset
, len
,
5970 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
5976 /* Note: a zero OFFSET and LEN can be used to query the minimum
5978 if (offset
== 0 && len
== 0)
5979 return (get_remote_packet_size ());
5980 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
5981 large enough let the caller deal with it. */
5982 if (len
< get_remote_packet_size ())
5984 len
= get_remote_packet_size ();
5986 /* Except for querying the minimum buffer size, target must be open. */
5988 error (_("remote query is only available after target open"));
5990 gdb_assert (annex
!= NULL
);
5991 gdb_assert (readbuf
!= NULL
);
5997 /* We used one buffer char for the remote protocol q command and
5998 another for the query type. As the remote protocol encapsulation
5999 uses 4 chars plus one extra in case we are debugging
6000 (remote_debug), we have PBUFZIZ - 7 left to pack the query
6003 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
6005 /* Bad caller may have sent forbidden characters. */
6006 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
6011 gdb_assert (annex
[i
] == '\0');
6013 i
= putpkt (rs
->buf
);
6017 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6018 strcpy ((char *) readbuf
, rs
->buf
);
6020 return strlen ((char *) readbuf
);
6024 remote_search_memory (struct target_ops
* ops
,
6025 CORE_ADDR start_addr
, ULONGEST search_space_len
,
6026 const gdb_byte
*pattern
, ULONGEST pattern_len
,
6027 CORE_ADDR
*found_addrp
)
6029 struct remote_state
*rs
= get_remote_state ();
6030 int max_size
= get_memory_write_packet_size ();
6031 struct packet_config
*packet
=
6032 &remote_protocol_packets
[PACKET_qSearch_memory
];
6033 /* number of packet bytes used to encode the pattern,
6034 this could be more than PATTERN_LEN due to escape characters */
6035 int escaped_pattern_len
;
6036 /* amount of pattern that was encodable in the packet */
6037 int used_pattern_len
;
6040 ULONGEST found_addr
;
6042 /* Don't go to the target if we don't have to.
6043 This is done before checking packet->support to avoid the possibility that
6044 a success for this edge case means the facility works in general. */
6045 if (pattern_len
> search_space_len
)
6047 if (pattern_len
== 0)
6049 *found_addrp
= start_addr
;
6053 /* If we already know the packet isn't supported, fall back to the simple
6054 way of searching memory. */
6056 if (packet
->support
== PACKET_DISABLE
)
6058 /* Target doesn't provided special support, fall back and use the
6059 standard support (copy memory and do the search here). */
6060 return simple_search_memory (ops
, start_addr
, search_space_len
,
6061 pattern
, pattern_len
, found_addrp
);
6064 /* Insert header. */
6065 i
= snprintf (rs
->buf
, max_size
,
6066 "qSearch:memory:%s;%s;",
6067 paddr_nz (start_addr
),
6068 phex_nz (search_space_len
, sizeof (search_space_len
)));
6069 max_size
-= (i
+ 1);
6071 /* Escape as much data as fits into rs->buf. */
6072 escaped_pattern_len
=
6073 remote_escape_output (pattern
, pattern_len
, (rs
->buf
+ i
),
6074 &used_pattern_len
, max_size
);
6076 /* Bail if the pattern is too large. */
6077 if (used_pattern_len
!= pattern_len
)
6078 error ("Pattern is too large to transmit to remote target.");
6080 if (putpkt_binary (rs
->buf
, i
+ escaped_pattern_len
) < 0
6081 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
6082 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
6084 /* The request may not have worked because the command is not
6085 supported. If so, fall back to the simple way. */
6086 if (packet
->support
== PACKET_DISABLE
)
6088 return simple_search_memory (ops
, start_addr
, search_space_len
,
6089 pattern
, pattern_len
, found_addrp
);
6094 if (rs
->buf
[0] == '0')
6096 else if (rs
->buf
[0] == '1')
6099 if (rs
->buf
[1] != ',')
6100 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
6101 unpack_varlen_hex (rs
->buf
+ 2, &found_addr
);
6102 *found_addrp
= found_addr
;
6105 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
6111 remote_rcmd (char *command
,
6112 struct ui_file
*outbuf
)
6114 struct remote_state
*rs
= get_remote_state ();
6118 error (_("remote rcmd is only available after target open"));
6120 /* Send a NULL command across as an empty command. */
6121 if (command
== NULL
)
6124 /* The query prefix. */
6125 strcpy (rs
->buf
, "qRcmd,");
6126 p
= strchr (rs
->buf
, '\0');
6128 if ((strlen (rs
->buf
) + strlen (command
) * 2 + 8/*misc*/) > get_remote_packet_size ())
6129 error (_("\"monitor\" command ``%s'' is too long."), command
);
6131 /* Encode the actual command. */
6132 bin2hex ((gdb_byte
*) command
, p
, 0);
6134 if (putpkt (rs
->buf
) < 0)
6135 error (_("Communication problem with target."));
6137 /* get/display the response */
6142 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
6144 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6147 error (_("Target does not support this command."));
6148 if (buf
[0] == 'O' && buf
[1] != 'K')
6150 remote_console_output (buf
+ 1); /* 'O' message from stub. */
6153 if (strcmp (buf
, "OK") == 0)
6155 if (strlen (buf
) == 3 && buf
[0] == 'E'
6156 && isdigit (buf
[1]) && isdigit (buf
[2]))
6158 error (_("Protocol error with Rcmd"));
6160 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
6162 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
6163 fputc_unfiltered (c
, outbuf
);
6169 static VEC(mem_region_s
) *
6170 remote_memory_map (struct target_ops
*ops
)
6172 VEC(mem_region_s
) *result
= NULL
;
6173 char *text
= target_read_stralloc (¤t_target
,
6174 TARGET_OBJECT_MEMORY_MAP
, NULL
);
6178 struct cleanup
*back_to
= make_cleanup (xfree
, text
);
6179 result
= parse_memory_map (text
);
6180 do_cleanups (back_to
);
6187 packet_command (char *args
, int from_tty
)
6189 struct remote_state
*rs
= get_remote_state ();
6192 error (_("command can only be used with remote target"));
6195 error (_("remote-packet command requires packet text as argument"));
6197 puts_filtered ("sending: ");
6198 print_packet (args
);
6199 puts_filtered ("\n");
6202 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6203 puts_filtered ("received: ");
6204 print_packet (rs
->buf
);
6205 puts_filtered ("\n");
6209 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
6211 static void display_thread_info (struct gdb_ext_thread_info
*info
);
6213 static void threadset_test_cmd (char *cmd
, int tty
);
6215 static void threadalive_test (char *cmd
, int tty
);
6217 static void threadlist_test_cmd (char *cmd
, int tty
);
6219 int get_and_display_threadinfo (threadref
*ref
);
6221 static void threadinfo_test_cmd (char *cmd
, int tty
);
6223 static int thread_display_step (threadref
*ref
, void *context
);
6225 static void threadlist_update_test_cmd (char *cmd
, int tty
);
6227 static void init_remote_threadtests (void);
6229 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
6232 threadset_test_cmd (char *cmd
, int tty
)
6234 int sample_thread
= SAMPLE_THREAD
;
6236 printf_filtered (_("Remote threadset test\n"));
6237 set_general_thread (sample_thread
);
6242 threadalive_test (char *cmd
, int tty
)
6244 int sample_thread
= SAMPLE_THREAD
;
6245 int pid
= ptid_get_pid (inferior_ptid
);
6246 ptid_t ptid
= ptid_build (pid
, 0, sample_thread
);
6248 if (remote_thread_alive (ptid
))
6249 printf_filtered ("PASS: Thread alive test\n");
6251 printf_filtered ("FAIL: Thread alive test\n");
6254 void output_threadid (char *title
, threadref
*ref
);
6257 output_threadid (char *title
, threadref
*ref
)
6261 pack_threadid (&hexid
[0], ref
); /* Convert threead id into hex. */
6263 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
6267 threadlist_test_cmd (char *cmd
, int tty
)
6270 threadref nextthread
;
6271 int done
, result_count
;
6272 threadref threadlist
[3];
6274 printf_filtered ("Remote Threadlist test\n");
6275 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
6276 &result_count
, &threadlist
[0]))
6277 printf_filtered ("FAIL: threadlist test\n");
6280 threadref
*scan
= threadlist
;
6281 threadref
*limit
= scan
+ result_count
;
6283 while (scan
< limit
)
6284 output_threadid (" thread ", scan
++);
6289 display_thread_info (struct gdb_ext_thread_info
*info
)
6291 output_threadid ("Threadid: ", &info
->threadid
);
6292 printf_filtered ("Name: %s\n ", info
->shortname
);
6293 printf_filtered ("State: %s\n", info
->display
);
6294 printf_filtered ("other: %s\n\n", info
->more_display
);
6298 get_and_display_threadinfo (threadref
*ref
)
6302 struct gdb_ext_thread_info threadinfo
;
6304 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
6305 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
6306 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
6307 display_thread_info (&threadinfo
);
6312 threadinfo_test_cmd (char *cmd
, int tty
)
6314 int athread
= SAMPLE_THREAD
;
6318 int_to_threadref (&thread
, athread
);
6319 printf_filtered ("Remote Threadinfo test\n");
6320 if (!get_and_display_threadinfo (&thread
))
6321 printf_filtered ("FAIL cannot get thread info\n");
6325 thread_display_step (threadref
*ref
, void *context
)
6327 /* output_threadid(" threadstep ",ref); *//* simple test */
6328 return get_and_display_threadinfo (ref
);
6332 threadlist_update_test_cmd (char *cmd
, int tty
)
6334 printf_filtered ("Remote Threadlist update test\n");
6335 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
6339 init_remote_threadtests (void)
6341 add_com ("tlist", class_obscure
, threadlist_test_cmd
, _("\
6342 Fetch and print the remote list of thread identifiers, one pkt only"));
6343 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
6344 _("Fetch and display info about one thread"));
6345 add_com ("tset", class_obscure
, threadset_test_cmd
,
6346 _("Test setting to a different thread"));
6347 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
6348 _("Iterate through updating all remote thread info"));
6349 add_com ("talive", class_obscure
, threadalive_test
,
6350 _(" Remote thread alive test "));
6355 /* Convert a thread ID to a string. Returns the string in a static
6359 remote_pid_to_str (ptid_t ptid
)
6361 static char buf
[64];
6363 if (ptid_equal (magic_null_ptid
, ptid
))
6365 xsnprintf (buf
, sizeof buf
, "Thread <main>");
6368 else if (ptid_get_tid (ptid
) != 0)
6370 xsnprintf (buf
, sizeof buf
, "Thread %ld",
6371 ptid_get_tid (ptid
));
6375 return normal_pid_to_str (ptid
);
6378 /* Get the address of the thread local variable in OBJFILE which is
6379 stored at OFFSET within the thread local storage for thread PTID. */
6382 remote_get_thread_local_address (ptid_t ptid
, CORE_ADDR lm
, CORE_ADDR offset
)
6384 if (remote_protocol_packets
[PACKET_qGetTLSAddr
].support
!= PACKET_DISABLE
)
6386 struct remote_state
*rs
= get_remote_state ();
6388 enum packet_result result
;
6390 strcpy (p
, "qGetTLSAddr:");
6392 p
+= hexnumstr (p
, ptid_get_tid (ptid
));
6394 p
+= hexnumstr (p
, offset
);
6396 p
+= hexnumstr (p
, lm
);
6400 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6401 result
= packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
6402 if (result
== PACKET_OK
)
6406 unpack_varlen_hex (rs
->buf
, &result
);
6409 else if (result
== PACKET_UNKNOWN
)
6410 throw_error (TLS_GENERIC_ERROR
,
6411 _("Remote target doesn't support qGetTLSAddr packet"));
6413 throw_error (TLS_GENERIC_ERROR
,
6414 _("Remote target failed to process qGetTLSAddr request"));
6417 throw_error (TLS_GENERIC_ERROR
,
6418 _("TLS not supported or disabled on this target"));
6423 /* Support for inferring a target description based on the current
6424 architecture and the size of a 'g' packet. While the 'g' packet
6425 can have any size (since optional registers can be left off the
6426 end), some sizes are easily recognizable given knowledge of the
6427 approximate architecture. */
6429 struct remote_g_packet_guess
6432 const struct target_desc
*tdesc
;
6434 typedef struct remote_g_packet_guess remote_g_packet_guess_s
;
6435 DEF_VEC_O(remote_g_packet_guess_s
);
6437 struct remote_g_packet_data
6439 VEC(remote_g_packet_guess_s
) *guesses
;
6442 static struct gdbarch_data
*remote_g_packet_data_handle
;
6445 remote_g_packet_data_init (struct obstack
*obstack
)
6447 return OBSTACK_ZALLOC (obstack
, struct remote_g_packet_data
);
6451 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
6452 const struct target_desc
*tdesc
)
6454 struct remote_g_packet_data
*data
6455 = gdbarch_data (gdbarch
, remote_g_packet_data_handle
);
6456 struct remote_g_packet_guess new_guess
, *guess
;
6459 gdb_assert (tdesc
!= NULL
);
6462 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
6464 if (guess
->bytes
== bytes
)
6465 internal_error (__FILE__
, __LINE__
,
6466 "Duplicate g packet description added for size %d",
6469 new_guess
.bytes
= bytes
;
6470 new_guess
.tdesc
= tdesc
;
6471 VEC_safe_push (remote_g_packet_guess_s
, data
->guesses
, &new_guess
);
6474 static const struct target_desc
*
6475 remote_read_description (struct target_ops
*target
)
6477 struct remote_g_packet_data
*data
6478 = gdbarch_data (current_gdbarch
, remote_g_packet_data_handle
);
6480 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
6482 struct remote_g_packet_guess
*guess
;
6484 int bytes
= send_g_packet ();
6487 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
6489 if (guess
->bytes
== bytes
)
6490 return guess
->tdesc
;
6492 /* We discard the g packet. A minor optimization would be to
6493 hold on to it, and fill the register cache once we have selected
6494 an architecture, but it's too tricky to do safely. */
6500 /* Remote file transfer support. This is host-initiated I/O, not
6501 target-initiated; for target-initiated, see remote-fileio.c. */
6503 /* If *LEFT is at least the length of STRING, copy STRING to
6504 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6505 decrease *LEFT. Otherwise raise an error. */
6508 remote_buffer_add_string (char **buffer
, int *left
, char *string
)
6510 int len
= strlen (string
);
6513 error (_("Packet too long for target."));
6515 memcpy (*buffer
, string
, len
);
6519 /* NUL-terminate the buffer as a convenience, if there is
6525 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
6526 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6527 decrease *LEFT. Otherwise raise an error. */
6530 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
6533 if (2 * len
> *left
)
6534 error (_("Packet too long for target."));
6536 bin2hex (bytes
, *buffer
, len
);
6540 /* NUL-terminate the buffer as a convenience, if there is
6546 /* If *LEFT is large enough, convert VALUE to hex and add it to
6547 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6548 decrease *LEFT. Otherwise raise an error. */
6551 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
6553 int len
= hexnumlen (value
);
6556 error (_("Packet too long for target."));
6558 hexnumstr (*buffer
, value
);
6562 /* NUL-terminate the buffer as a convenience, if there is
6568 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
6569 value, *REMOTE_ERRNO to the remote error number or zero if none
6570 was included, and *ATTACHMENT to point to the start of the annex
6571 if any. The length of the packet isn't needed here; there may
6572 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
6574 Return 0 if the packet could be parsed, -1 if it could not. If
6575 -1 is returned, the other variables may not be initialized. */
6578 remote_hostio_parse_result (char *buffer
, int *retcode
,
6579 int *remote_errno
, char **attachment
)
6586 if (buffer
[0] != 'F')
6590 *retcode
= strtol (&buffer
[1], &p
, 16);
6591 if (errno
!= 0 || p
== &buffer
[1])
6594 /* Check for ",errno". */
6598 *remote_errno
= strtol (p
+ 1, &p2
, 16);
6599 if (errno
!= 0 || p
+ 1 == p2
)
6604 /* Check for ";attachment". If there is no attachment, the
6605 packet should end here. */
6608 *attachment
= p
+ 1;
6611 else if (*p
== '\0')
6617 /* Send a prepared I/O packet to the target and read its response.
6618 The prepared packet is in the global RS->BUF before this function
6619 is called, and the answer is there when we return.
6621 COMMAND_BYTES is the length of the request to send, which may include
6622 binary data. WHICH_PACKET is the packet configuration to check
6623 before attempting a packet. If an error occurs, *REMOTE_ERRNO
6624 is set to the error number and -1 is returned. Otherwise the value
6625 returned by the function is returned.
6627 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
6628 attachment is expected; an error will be reported if there's a
6629 mismatch. If one is found, *ATTACHMENT will be set to point into
6630 the packet buffer and *ATTACHMENT_LEN will be set to the
6631 attachment's length. */
6634 remote_hostio_send_command (int command_bytes
, int which_packet
,
6635 int *remote_errno
, char **attachment
,
6636 int *attachment_len
)
6638 struct remote_state
*rs
= get_remote_state ();
6639 int ret
, bytes_read
;
6640 char *attachment_tmp
;
6642 if (remote_protocol_packets
[which_packet
].support
== PACKET_DISABLE
)
6644 *remote_errno
= FILEIO_ENOSYS
;
6648 putpkt_binary (rs
->buf
, command_bytes
);
6649 bytes_read
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
6651 /* If it timed out, something is wrong. Don't try to parse the
6655 *remote_errno
= FILEIO_EINVAL
;
6659 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
6662 *remote_errno
= FILEIO_EINVAL
;
6664 case PACKET_UNKNOWN
:
6665 *remote_errno
= FILEIO_ENOSYS
;
6671 if (remote_hostio_parse_result (rs
->buf
, &ret
, remote_errno
,
6674 *remote_errno
= FILEIO_EINVAL
;
6678 /* Make sure we saw an attachment if and only if we expected one. */
6679 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
6680 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
6682 *remote_errno
= FILEIO_EINVAL
;
6686 /* If an attachment was found, it must point into the packet buffer;
6687 work out how many bytes there were. */
6688 if (attachment_tmp
!= NULL
)
6690 *attachment
= attachment_tmp
;
6691 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
);
6697 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
6698 remote file descriptor, or -1 if an error occurs (and set
6702 remote_hostio_open (const char *filename
, int flags
, int mode
,
6705 struct remote_state
*rs
= get_remote_state ();
6707 int left
= get_remote_packet_size () - 1;
6709 remote_buffer_add_string (&p
, &left
, "vFile:open:");
6711 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
6713 remote_buffer_add_string (&p
, &left
, ",");
6715 remote_buffer_add_int (&p
, &left
, flags
);
6716 remote_buffer_add_string (&p
, &left
, ",");
6718 remote_buffer_add_int (&p
, &left
, mode
);
6720 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_open
,
6721 remote_errno
, NULL
, NULL
);
6724 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
6725 Return the number of bytes written, or -1 if an error occurs (and
6726 set *REMOTE_ERRNO). */
6729 remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
6730 ULONGEST offset
, int *remote_errno
)
6732 struct remote_state
*rs
= get_remote_state ();
6734 int left
= get_remote_packet_size ();
6737 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
6739 remote_buffer_add_int (&p
, &left
, fd
);
6740 remote_buffer_add_string (&p
, &left
, ",");
6742 remote_buffer_add_int (&p
, &left
, offset
);
6743 remote_buffer_add_string (&p
, &left
, ",");
6745 p
+= remote_escape_output (write_buf
, len
, p
, &out_len
,
6746 get_remote_packet_size () - (p
- rs
->buf
));
6748 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pwrite
,
6749 remote_errno
, NULL
, NULL
);
6752 /* Read up to LEN bytes FD on the remote target into READ_BUF
6753 Return the number of bytes read, or -1 if an error occurs (and
6754 set *REMOTE_ERRNO). */
6757 remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
6758 ULONGEST offset
, int *remote_errno
)
6760 struct remote_state
*rs
= get_remote_state ();
6763 int left
= get_remote_packet_size ();
6764 int ret
, attachment_len
;
6767 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
6769 remote_buffer_add_int (&p
, &left
, fd
);
6770 remote_buffer_add_string (&p
, &left
, ",");
6772 remote_buffer_add_int (&p
, &left
, len
);
6773 remote_buffer_add_string (&p
, &left
, ",");
6775 remote_buffer_add_int (&p
, &left
, offset
);
6777 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pread
,
6778 remote_errno
, &attachment
,
6784 read_len
= remote_unescape_input (attachment
, attachment_len
,
6786 if (read_len
!= ret
)
6787 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
6792 /* Close FD on the remote target. Return 0, or -1 if an error occurs
6793 (and set *REMOTE_ERRNO). */
6796 remote_hostio_close (int fd
, int *remote_errno
)
6798 struct remote_state
*rs
= get_remote_state ();
6800 int left
= get_remote_packet_size () - 1;
6802 remote_buffer_add_string (&p
, &left
, "vFile:close:");
6804 remote_buffer_add_int (&p
, &left
, fd
);
6806 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_close
,
6807 remote_errno
, NULL
, NULL
);
6810 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
6811 occurs (and set *REMOTE_ERRNO). */
6814 remote_hostio_unlink (const char *filename
, int *remote_errno
)
6816 struct remote_state
*rs
= get_remote_state ();
6818 int left
= get_remote_packet_size () - 1;
6820 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
6822 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
6825 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_unlink
,
6826 remote_errno
, NULL
, NULL
);
6830 remote_fileio_errno_to_host (int errnum
)
6854 case FILEIO_ENOTDIR
:
6874 case FILEIO_ENAMETOOLONG
:
6875 return ENAMETOOLONG
;
6881 remote_hostio_error (int errnum
)
6883 int host_error
= remote_fileio_errno_to_host (errnum
);
6885 if (host_error
== -1)
6886 error (_("Unknown remote I/O error %d"), errnum
);
6888 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
6892 fclose_cleanup (void *file
)
6898 remote_hostio_close_cleanup (void *opaque
)
6900 int fd
= *(int *) opaque
;
6903 remote_hostio_close (fd
, &remote_errno
);
6907 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
6909 struct cleanup
*back_to
, *close_cleanup
;
6910 int retcode
, fd
, remote_errno
, bytes
, io_size
;
6913 int bytes_in_buffer
;
6918 error (_("command can only be used with remote target"));
6920 file
= fopen (local_file
, "rb");
6922 perror_with_name (local_file
);
6923 back_to
= make_cleanup (fclose_cleanup
, file
);
6925 fd
= remote_hostio_open (remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
6927 0700, &remote_errno
);
6929 remote_hostio_error (remote_errno
);
6931 /* Send up to this many bytes at once. They won't all fit in the
6932 remote packet limit, so we'll transfer slightly fewer. */
6933 io_size
= get_remote_packet_size ();
6934 buffer
= xmalloc (io_size
);
6935 make_cleanup (xfree
, buffer
);
6937 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
6939 bytes_in_buffer
= 0;
6942 while (bytes_in_buffer
|| !saw_eof
)
6946 bytes
= fread (buffer
+ bytes_in_buffer
, 1, io_size
- bytes_in_buffer
,
6951 error (_("Error reading %s."), local_file
);
6954 /* EOF. Unless there is something still in the
6955 buffer from the last iteration, we are done. */
6957 if (bytes_in_buffer
== 0)
6965 bytes
+= bytes_in_buffer
;
6966 bytes_in_buffer
= 0;
6968 retcode
= remote_hostio_pwrite (fd
, buffer
, bytes
, offset
, &remote_errno
);
6971 remote_hostio_error (remote_errno
);
6972 else if (retcode
== 0)
6973 error (_("Remote write of %d bytes returned 0!"), bytes
);
6974 else if (retcode
< bytes
)
6976 /* Short write. Save the rest of the read data for the next
6978 bytes_in_buffer
= bytes
- retcode
;
6979 memmove (buffer
, buffer
+ retcode
, bytes_in_buffer
);
6985 discard_cleanups (close_cleanup
);
6986 if (remote_hostio_close (fd
, &remote_errno
))
6987 remote_hostio_error (remote_errno
);
6990 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
6991 do_cleanups (back_to
);
6995 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
6997 struct cleanup
*back_to
, *close_cleanup
;
6998 int retcode
, fd
, remote_errno
, bytes
, io_size
;
7004 error (_("command can only be used with remote target"));
7006 fd
= remote_hostio_open (remote_file
, FILEIO_O_RDONLY
, 0, &remote_errno
);
7008 remote_hostio_error (remote_errno
);
7010 file
= fopen (local_file
, "wb");
7012 perror_with_name (local_file
);
7013 back_to
= make_cleanup (fclose_cleanup
, file
);
7015 /* Send up to this many bytes at once. They won't all fit in the
7016 remote packet limit, so we'll transfer slightly fewer. */
7017 io_size
= get_remote_packet_size ();
7018 buffer
= xmalloc (io_size
);
7019 make_cleanup (xfree
, buffer
);
7021 close_cleanup
= make_cleanup (remote_hostio_close_cleanup
, &fd
);
7026 bytes
= remote_hostio_pread (fd
, buffer
, io_size
, offset
, &remote_errno
);
7028 /* Success, but no bytes, means end-of-file. */
7031 remote_hostio_error (remote_errno
);
7035 bytes
= fwrite (buffer
, 1, bytes
, file
);
7037 perror_with_name (local_file
);
7040 discard_cleanups (close_cleanup
);
7041 if (remote_hostio_close (fd
, &remote_errno
))
7042 remote_hostio_error (remote_errno
);
7045 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
7046 do_cleanups (back_to
);
7050 remote_file_delete (const char *remote_file
, int from_tty
)
7052 int retcode
, remote_errno
;
7055 error (_("command can only be used with remote target"));
7057 retcode
= remote_hostio_unlink (remote_file
, &remote_errno
);
7059 remote_hostio_error (remote_errno
);
7062 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
7066 remote_put_command (char *args
, int from_tty
)
7068 struct cleanup
*back_to
;
7071 argv
= buildargv (args
);
7074 back_to
= make_cleanup_freeargv (argv
);
7075 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
7076 error (_("Invalid parameters to remote put"));
7078 remote_file_put (argv
[0], argv
[1], from_tty
);
7080 do_cleanups (back_to
);
7084 remote_get_command (char *args
, int from_tty
)
7086 struct cleanup
*back_to
;
7089 argv
= buildargv (args
);
7092 back_to
= make_cleanup_freeargv (argv
);
7093 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
7094 error (_("Invalid parameters to remote get"));
7096 remote_file_get (argv
[0], argv
[1], from_tty
);
7098 do_cleanups (back_to
);
7102 remote_delete_command (char *args
, int from_tty
)
7104 struct cleanup
*back_to
;
7107 argv
= buildargv (args
);
7110 back_to
= make_cleanup_freeargv (argv
);
7111 if (argv
[0] == NULL
|| argv
[1] != NULL
)
7112 error (_("Invalid parameters to remote delete"));
7114 remote_file_delete (argv
[0], from_tty
);
7116 do_cleanups (back_to
);
7120 remote_command (char *args
, int from_tty
)
7122 help_list (remote_cmdlist
, "remote ", -1, gdb_stdout
);
7126 init_remote_ops (void)
7128 remote_ops
.to_shortname
= "remote";
7129 remote_ops
.to_longname
= "Remote serial target in gdb-specific protocol";
7131 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
7132 Specify the serial device it is connected to\n\
7133 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
7134 remote_ops
.to_open
= remote_open
;
7135 remote_ops
.to_close
= remote_close
;
7136 remote_ops
.to_detach
= remote_detach
;
7137 remote_ops
.to_disconnect
= remote_disconnect
;
7138 remote_ops
.to_resume
= remote_resume
;
7139 remote_ops
.to_wait
= remote_wait
;
7140 remote_ops
.to_fetch_registers
= remote_fetch_registers
;
7141 remote_ops
.to_store_registers
= remote_store_registers
;
7142 remote_ops
.to_prepare_to_store
= remote_prepare_to_store
;
7143 remote_ops
.deprecated_xfer_memory
= remote_xfer_memory
;
7144 remote_ops
.to_files_info
= remote_files_info
;
7145 remote_ops
.to_insert_breakpoint
= remote_insert_breakpoint
;
7146 remote_ops
.to_remove_breakpoint
= remote_remove_breakpoint
;
7147 remote_ops
.to_stopped_by_watchpoint
= remote_stopped_by_watchpoint
;
7148 remote_ops
.to_stopped_data_address
= remote_stopped_data_address
;
7149 remote_ops
.to_can_use_hw_breakpoint
= remote_check_watch_resources
;
7150 remote_ops
.to_insert_hw_breakpoint
= remote_insert_hw_breakpoint
;
7151 remote_ops
.to_remove_hw_breakpoint
= remote_remove_hw_breakpoint
;
7152 remote_ops
.to_insert_watchpoint
= remote_insert_watchpoint
;
7153 remote_ops
.to_remove_watchpoint
= remote_remove_watchpoint
;
7154 remote_ops
.to_kill
= remote_kill
;
7155 remote_ops
.to_load
= generic_load
;
7156 remote_ops
.to_mourn_inferior
= remote_mourn
;
7157 remote_ops
.to_thread_alive
= remote_thread_alive
;
7158 remote_ops
.to_find_new_threads
= remote_threads_info
;
7159 remote_ops
.to_pid_to_str
= remote_pid_to_str
;
7160 remote_ops
.to_extra_thread_info
= remote_threads_extra_info
;
7161 remote_ops
.to_stop
= remote_stop
;
7162 remote_ops
.to_xfer_partial
= remote_xfer_partial
;
7163 remote_ops
.to_rcmd
= remote_rcmd
;
7164 remote_ops
.to_log_command
= serial_log_command
;
7165 remote_ops
.to_get_thread_local_address
= remote_get_thread_local_address
;
7166 remote_ops
.to_stratum
= process_stratum
;
7167 remote_ops
.to_has_all_memory
= 1;
7168 remote_ops
.to_has_memory
= 1;
7169 remote_ops
.to_has_stack
= 1;
7170 remote_ops
.to_has_registers
= 1;
7171 remote_ops
.to_has_execution
= 1;
7172 remote_ops
.to_has_thread_control
= tc_schedlock
; /* can lock scheduler */
7173 remote_ops
.to_magic
= OPS_MAGIC
;
7174 remote_ops
.to_memory_map
= remote_memory_map
;
7175 remote_ops
.to_flash_erase
= remote_flash_erase
;
7176 remote_ops
.to_flash_done
= remote_flash_done
;
7177 remote_ops
.to_read_description
= remote_read_description
;
7178 remote_ops
.to_search_memory
= remote_search_memory
;
7179 remote_ops
.to_can_async_p
= remote_can_async_p
;
7180 remote_ops
.to_is_async_p
= remote_is_async_p
;
7181 remote_ops
.to_async
= remote_async
;
7182 remote_ops
.to_async_mask
= remote_async_mask
;
7183 remote_ops
.to_terminal_inferior
= remote_terminal_inferior
;
7184 remote_ops
.to_terminal_ours
= remote_terminal_ours
;
7187 /* Set up the extended remote vector by making a copy of the standard
7188 remote vector and adding to it. */
7191 init_extended_remote_ops (void)
7193 extended_remote_ops
= remote_ops
;
7195 extended_remote_ops
.to_shortname
= "extended-remote";
7196 extended_remote_ops
.to_longname
=
7197 "Extended remote serial target in gdb-specific protocol";
7198 extended_remote_ops
.to_doc
=
7199 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
7200 Specify the serial device it is connected to (e.g. /dev/ttya).";
7201 extended_remote_ops
.to_open
= extended_remote_open
;
7202 extended_remote_ops
.to_create_inferior
= extended_remote_create_inferior
;
7203 extended_remote_ops
.to_mourn_inferior
= extended_remote_mourn
;
7204 extended_remote_ops
.to_detach
= extended_remote_detach
;
7205 extended_remote_ops
.to_attach
= extended_remote_attach
;
7209 remote_can_async_p (void)
7211 if (!remote_async_permitted
)
7212 /* We only enable async when the user specifically asks for it. */
7215 /* We're async whenever the serial device is. */
7216 return remote_async_mask_value
&& serial_can_async_p (remote_desc
);
7220 remote_is_async_p (void)
7222 if (!remote_async_permitted
)
7223 /* We only enable async when the user specifically asks for it. */
7226 /* We're async whenever the serial device is. */
7227 return remote_async_mask_value
&& serial_is_async_p (remote_desc
);
7230 /* Pass the SERIAL event on and up to the client. One day this code
7231 will be able to delay notifying the client of an event until the
7232 point where an entire packet has been received. */
7234 static void (*async_client_callback
) (enum inferior_event_type event_type
,
7236 static void *async_client_context
;
7237 static serial_event_ftype remote_async_serial_handler
;
7240 remote_async_serial_handler (struct serial
*scb
, void *context
)
7242 /* Don't propogate error information up to the client. Instead let
7243 the client find out about the error by querying the target. */
7244 async_client_callback (INF_REG_EVENT
, async_client_context
);
7248 remote_async (void (*callback
) (enum inferior_event_type event_type
,
7249 void *context
), void *context
)
7251 if (remote_async_mask_value
== 0)
7252 internal_error (__FILE__
, __LINE__
,
7253 _("Calling remote_async when async is masked"));
7255 if (callback
!= NULL
)
7257 serial_async (remote_desc
, remote_async_serial_handler
, NULL
);
7258 async_client_callback
= callback
;
7259 async_client_context
= context
;
7262 serial_async (remote_desc
, NULL
, NULL
);
7266 remote_async_mask (int new_mask
)
7268 int curr_mask
= remote_async_mask_value
;
7269 remote_async_mask_value
= new_mask
;
7274 set_remote_cmd (char *args
, int from_tty
)
7276 help_list (remote_set_cmdlist
, "set remote ", -1, gdb_stdout
);
7280 show_remote_cmd (char *args
, int from_tty
)
7282 /* We can't just use cmd_show_list here, because we want to skip
7283 the redundant "show remote Z-packet" and the legacy aliases. */
7284 struct cleanup
*showlist_chain
;
7285 struct cmd_list_element
*list
= remote_show_cmdlist
;
7287 showlist_chain
= make_cleanup_ui_out_tuple_begin_end (uiout
, "showlist");
7288 for (; list
!= NULL
; list
= list
->next
)
7289 if (strcmp (list
->name
, "Z-packet") == 0)
7291 else if (list
->type
== not_set_cmd
)
7292 /* Alias commands are exactly like the original, except they
7293 don't have the normal type. */
7297 struct cleanup
*option_chain
7298 = make_cleanup_ui_out_tuple_begin_end (uiout
, "option");
7299 ui_out_field_string (uiout
, "name", list
->name
);
7300 ui_out_text (uiout
, ": ");
7301 if (list
->type
== show_cmd
)
7302 do_setshow_command ((char *) NULL
, from_tty
, list
);
7304 cmd_func (list
, NULL
, from_tty
);
7305 /* Close the tuple. */
7306 do_cleanups (option_chain
);
7309 /* Close the tuple. */
7310 do_cleanups (showlist_chain
);
7314 /* Function to be called whenever a new objfile (shlib) is detected. */
7316 remote_new_objfile (struct objfile
*objfile
)
7318 if (remote_desc
!= 0) /* Have a remote connection. */
7319 remote_check_symbols (objfile
);
7323 _initialize_remote (void)
7325 struct remote_state
*rs
;
7327 /* architecture specific data */
7328 remote_gdbarch_data_handle
=
7329 gdbarch_data_register_post_init (init_remote_state
);
7330 remote_g_packet_data_handle
=
7331 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
7333 /* Initialize the per-target state. At the moment there is only one
7334 of these, not one per target. Only one target is active at a
7335 time. The default buffer size is unimportant; it will be expanded
7336 whenever a larger buffer is needed. */
7337 rs
= get_remote_state_raw ();
7339 rs
->buf
= xmalloc (rs
->buf_size
);
7342 add_target (&remote_ops
);
7344 init_extended_remote_ops ();
7345 add_target (&extended_remote_ops
);
7347 /* Hook into new objfile notification. */
7348 observer_attach_new_objfile (remote_new_objfile
);
7350 /* Set up signal handlers. */
7351 sigint_remote_token
=
7352 create_async_signal_handler (async_remote_interrupt
, NULL
);
7353 sigint_remote_twice_token
=
7354 create_async_signal_handler (inferior_event_handler_wrapper
, NULL
);
7357 init_remote_threadtests ();
7360 /* set/show remote ... */
7362 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
7363 Remote protocol specific variables\n\
7364 Configure various remote-protocol specific variables such as\n\
7365 the packets being used"),
7366 &remote_set_cmdlist
, "set remote ",
7367 0 /* allow-unknown */, &setlist
);
7368 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
7369 Remote protocol specific variables\n\
7370 Configure various remote-protocol specific variables such as\n\
7371 the packets being used"),
7372 &remote_show_cmdlist
, "show remote ",
7373 0 /* allow-unknown */, &showlist
);
7375 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
7376 Compare section data on target to the exec file.\n\
7377 Argument is a single section name (default: all loaded sections)."),
7380 add_cmd ("packet", class_maintenance
, packet_command
, _("\
7381 Send an arbitrary packet to a remote target.\n\
7382 maintenance packet TEXT\n\
7383 If GDB is talking to an inferior via the GDB serial protocol, then\n\
7384 this command sends the string TEXT to the inferior, and displays the\n\
7385 response packet. GDB supplies the initial `$' character, and the\n\
7386 terminating `#' character and checksum."),
7389 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
7390 Set whether to send break if interrupted."), _("\
7391 Show whether to send break if interrupted."), _("\
7392 If set, a break, instead of a cntrl-c, is sent to the remote target."),
7393 NULL
, NULL
, /* FIXME: i18n: Whether to send break if interrupted is %s. */
7394 &setlist
, &showlist
);
7396 /* Install commands for configuring memory read/write packets. */
7398 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
7399 Set the maximum number of bytes per memory write packet (deprecated)."),
7401 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
7402 Show the maximum number of bytes per memory write packet (deprecated)."),
7404 add_cmd ("memory-write-packet-size", no_class
,
7405 set_memory_write_packet_size
, _("\
7406 Set the maximum number of bytes per memory-write packet.\n\
7407 Specify the number of bytes in a packet or 0 (zero) for the\n\
7408 default packet size. The actual limit is further reduced\n\
7409 dependent on the target. Specify ``fixed'' to disable the\n\
7410 further restriction and ``limit'' to enable that restriction."),
7411 &remote_set_cmdlist
);
7412 add_cmd ("memory-read-packet-size", no_class
,
7413 set_memory_read_packet_size
, _("\
7414 Set the maximum number of bytes per memory-read packet.\n\
7415 Specify the number of bytes in a packet or 0 (zero) for the\n\
7416 default packet size. The actual limit is further reduced\n\
7417 dependent on the target. Specify ``fixed'' to disable the\n\
7418 further restriction and ``limit'' to enable that restriction."),
7419 &remote_set_cmdlist
);
7420 add_cmd ("memory-write-packet-size", no_class
,
7421 show_memory_write_packet_size
,
7422 _("Show the maximum number of bytes per memory-write packet."),
7423 &remote_show_cmdlist
);
7424 add_cmd ("memory-read-packet-size", no_class
,
7425 show_memory_read_packet_size
,
7426 _("Show the maximum number of bytes per memory-read packet."),
7427 &remote_show_cmdlist
);
7429 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class
,
7430 &remote_hw_watchpoint_limit
, _("\
7431 Set the maximum number of target hardware watchpoints."), _("\
7432 Show the maximum number of target hardware watchpoints."), _("\
7433 Specify a negative limit for unlimited."),
7434 NULL
, NULL
, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
7435 &remote_set_cmdlist
, &remote_show_cmdlist
);
7436 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class
,
7437 &remote_hw_breakpoint_limit
, _("\
7438 Set the maximum number of target hardware breakpoints."), _("\
7439 Show the maximum number of target hardware breakpoints."), _("\
7440 Specify a negative limit for unlimited."),
7441 NULL
, NULL
, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
7442 &remote_set_cmdlist
, &remote_show_cmdlist
);
7444 add_setshow_integer_cmd ("remoteaddresssize", class_obscure
,
7445 &remote_address_size
, _("\
7446 Set the maximum size of the address (in bits) in a memory packet."), _("\
7447 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
7449 NULL
, /* FIXME: i18n: */
7450 &setlist
, &showlist
);
7452 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
7453 "X", "binary-download", 1);
7455 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
7456 "vCont", "verbose-resume", 0);
7458 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
7459 "QPassSignals", "pass-signals", 0);
7461 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
7462 "qSymbol", "symbol-lookup", 0);
7464 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
7465 "P", "set-register", 1);
7467 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
7468 "p", "fetch-register", 1);
7470 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
7471 "Z0", "software-breakpoint", 0);
7473 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
7474 "Z1", "hardware-breakpoint", 0);
7476 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
7477 "Z2", "write-watchpoint", 0);
7479 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
7480 "Z3", "read-watchpoint", 0);
7482 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
7483 "Z4", "access-watchpoint", 0);
7485 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
7486 "qXfer:auxv:read", "read-aux-vector", 0);
7488 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
7489 "qXfer:features:read", "target-features", 0);
7491 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
7492 "qXfer:libraries:read", "library-info", 0);
7494 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
7495 "qXfer:memory-map:read", "memory-map", 0);
7497 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_read
],
7498 "qXfer:spu:read", "read-spu-object", 0);
7500 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_write
],
7501 "qXfer:spu:write", "write-spu-object", 0);
7503 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
7504 "qGetTLSAddr", "get-thread-local-storage-address",
7507 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
7508 "qSupported", "supported-packets", 0);
7510 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
7511 "qSearch:memory", "search-memory", 0);
7513 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
7514 "vFile:open", "hostio-open", 0);
7516 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
7517 "vFile:pread", "hostio-pread", 0);
7519 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
7520 "vFile:pwrite", "hostio-pwrite", 0);
7522 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
7523 "vFile:close", "hostio-close", 0);
7525 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
7526 "vFile:unlink", "hostio-unlink", 0);
7528 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
7529 "vAttach", "attach", 0);
7531 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
7534 /* Keep the old ``set remote Z-packet ...'' working. Each individual
7535 Z sub-packet has its own set and show commands, but users may
7536 have sets to this variable in their .gdbinit files (or in their
7538 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
7539 &remote_Z_packet_detect
, _("\
7540 Set use of remote protocol `Z' packets"), _("\
7541 Show use of remote protocol `Z' packets "), _("\
7542 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7544 set_remote_protocol_Z_packet_cmd
,
7545 show_remote_protocol_Z_packet_cmd
, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
7546 &remote_set_cmdlist
, &remote_show_cmdlist
);
7548 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
7549 Manipulate files on the remote system\n\
7550 Transfer files to and from the remote target system."),
7551 &remote_cmdlist
, "remote ",
7552 0 /* allow-unknown */, &cmdlist
);
7554 add_cmd ("put", class_files
, remote_put_command
,
7555 _("Copy a local file to the remote system."),
7558 add_cmd ("get", class_files
, remote_get_command
,
7559 _("Copy a remote file to the local system."),
7562 add_cmd ("delete", class_files
, remote_delete_command
,
7563 _("Delete a remote file."),
7566 remote_exec_file
= xstrdup ("");
7567 add_setshow_string_noescape_cmd ("exec-file", class_files
,
7568 &remote_exec_file
, _("\
7569 Set the remote pathname for \"run\""), _("\
7570 Show the remote pathname for \"run\""), NULL
, NULL
, NULL
,
7571 &remote_set_cmdlist
, &remote_show_cmdlist
);
7573 add_setshow_boolean_cmd ("remote-async", class_maintenance
,
7574 &remote_async_permitted_set
, _("\
7575 Set whether gdb controls the remote inferior in asynchronous mode."), _("\
7576 Show whether gdb controls the remote inferior in asynchronous mode."), _("\
7577 Tells gdb whether to control the remote inferior in asynchronous mode."),
7578 set_maintenance_remote_async_permitted
,
7579 show_maintenance_remote_async_permitted
,
7580 &maintenance_set_cmdlist
,
7581 &maintenance_show_cmdlist
);
7584 /* Eventually initialize fileio. See fileio.c */
7585 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);
7587 /* Take advantage of the fact that the LWP field is not used, to tag
7588 special ptids with it set to != 0. */
7589 magic_null_ptid
= ptid_build (0, 1, -1);
7590 not_sent_ptid
= ptid_build (0, 1, -2);
7591 any_thread_ptid
= ptid_build (0, 1, 0);