1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 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"
64 #include "memory-map.h"
66 /* The size to align memory write packets, when practical. The protocol
67 does not guarantee any alignment, and gdb will generate short
68 writes and unaligned writes, but even as a best-effort attempt this
69 can improve bulk transfers. For instance, if a write is misaligned
70 relative to the target's data bus, the stub may need to make an extra
71 round trip fetching data from the target. This doesn't make a
72 huge difference, but it's easy to do, so we try to be helpful.
74 The alignment chosen is arbitrary; usually data bus width is
75 important here, not the possibly larger cache line size. */
76 enum { REMOTE_ALIGN_WRITES = 16 };
78 /* Prototypes for local functions. */
79 static void cleanup_sigint_signal_handler (void *dummy);
80 static void initialize_sigint_signal_handler (void);
81 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
82 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
85 static void handle_remote_sigint (int);
86 static void handle_remote_sigint_twice (int);
87 static void async_remote_interrupt (gdb_client_data);
88 void async_remote_interrupt_twice (gdb_client_data);
90 static void remote_files_info (struct target_ops *ignore);
92 static void remote_prepare_to_store (struct regcache *regcache);
94 static void remote_open (char *name, int from_tty);
96 static void extended_remote_open (char *name, int from_tty);
98 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
100 static void remote_close (int quitting);
102 static void remote_mourn (struct target_ops *ops);
104 static void extended_remote_restart (void);
106 static void extended_remote_mourn (struct target_ops *);
108 static void remote_mourn_1 (struct target_ops *);
110 static void remote_send (char **buf, long *sizeof_buf_p);
112 static int readchar (int timeout);
114 static void remote_kill (struct target_ops *ops);
116 static int tohex (int nib);
118 static int remote_can_async_p (void);
120 static int remote_is_async_p (void);
122 static void remote_async (void (*callback) (enum inferior_event_type event_type,
123 void *context), void *context);
125 static int remote_async_mask (int new_mask);
127 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
129 static void remote_interrupt (int signo);
131 static void remote_interrupt_twice (int signo);
133 static void interrupt_query (void);
135 static void set_general_thread (struct ptid ptid);
136 static void set_continue_thread (struct ptid ptid);
138 static void get_offsets (void);
140 static void skip_frame (void);
142 static long read_frame (char **buf_p, long *sizeof_buf);
144 static int hexnumlen (ULONGEST num);
146 static void init_remote_ops (void);
148 static void init_extended_remote_ops (void);
150 static void remote_stop (ptid_t);
152 static int ishex (int ch, int *val);
154 static int stubhex (int ch);
156 static int hexnumstr (char *, ULONGEST);
158 static int hexnumnstr (char *, ULONGEST, int);
160 static CORE_ADDR remote_address_masked (CORE_ADDR);
162 static void print_packet (char *);
164 static unsigned long crc32 (unsigned char *, int, unsigned int);
166 static void compare_sections_command (char *, int);
168 static void packet_command (char *, int);
170 static int stub_unpack_int (char *buff, int fieldlength);
172 static ptid_t remote_current_thread (ptid_t oldptid);
174 static void remote_find_new_threads (void);
176 static void record_currthread (ptid_t currthread);
178 static int fromhex (int a);
180 static int hex2bin (const char *hex, gdb_byte *bin, int count);
182 static int bin2hex (const gdb_byte *bin, char *hex, int count);
184 static int putpkt_binary (char *buf, int cnt);
186 static void check_binary_download (CORE_ADDR addr);
188 struct packet_config;
190 static void show_packet_config_cmd (struct packet_config *config);
192 static void update_packet_config (struct packet_config *config);
194 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
195 struct cmd_list_element *c);
197 static void show_remote_protocol_packet_cmd (struct ui_file *file,
199 struct cmd_list_element *c,
202 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
203 static ptid_t read_ptid (char *buf, char **obuf);
205 static void remote_query_supported (void);
207 static void remote_check_symbols (struct objfile *objfile);
209 void _initialize_remote (void);
212 static struct stop_reply *stop_reply_xmalloc (void);
213 static void stop_reply_xfree (struct stop_reply *);
214 static void do_stop_reply_xfree (void *arg);
215 static void remote_parse_stop_reply (char *buf, struct stop_reply *);
216 static void push_stop_reply (struct stop_reply *);
217 static void remote_get_pending_stop_replies (void);
218 static void discard_pending_stop_replies (int pid);
219 static int peek_stop_reply (ptid_t ptid);
221 static void remote_async_inferior_event_handler (gdb_client_data);
222 static void remote_async_get_pending_events_handler (gdb_client_data);
224 static void remote_terminal_ours (void);
226 static int remote_read_description_p (struct target_ops *target);
228 /* The non-stop remote protocol provisions for one pending stop reply.
229 This is where we keep it until it is acknowledged. */
231 static struct stop_reply *pending_stop_reply = NULL;
235 static struct cmd_list_element *remote_cmdlist;
237 /* For "set remote" and "show remote". */
239 static struct cmd_list_element *remote_set_cmdlist;
240 static struct cmd_list_element *remote_show_cmdlist;
242 /* Description of the remote protocol state for the currently
243 connected target. This is per-target state, and independent of the
244 selected architecture. */
248 /* A buffer to use for incoming packets, and its current size. The
249 buffer is grown dynamically for larger incoming packets.
250 Outgoing packets may also be constructed in this buffer.
251 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
252 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
257 /* If we negotiated packet size explicitly (and thus can bypass
258 heuristics for the largest packet size that will not overflow
259 a buffer in the stub), this will be set to that packet size.
260 Otherwise zero, meaning to use the guessed size. */
261 long explicit_packet_size;
263 /* remote_wait is normally called when the target is running and
264 waits for a stop reply packet. But sometimes we need to call it
265 when the target is already stopped. We can send a "?" packet
266 and have remote_wait read the response. Or, if we already have
267 the response, we can stash it in BUF and tell remote_wait to
268 skip calling getpkt. This flag is set when BUF contains a
269 stop reply packet and the target is not waiting. */
270 int cached_wait_status;
272 /* True, if in no ack mode. That is, neither GDB nor the stub will
273 expect acks from each other. The connection is assumed to be
277 /* True if we're connected in extended remote mode. */
280 /* True if the stub reported support for multi-process
282 int multi_process_aware;
284 /* True if we resumed the target and we're waiting for the target to
285 stop. In the mean time, we can't start another command/query.
286 The remote server wouldn't be ready to process it, so we'd
287 timeout waiting for a reply that would never come and eventually
288 we'd close the connection. This can happen in asynchronous mode
289 because we allow GDB commands while the target is running. */
290 int waiting_for_stop_reply;
292 /* True if the stub reports support for non-stop mode. */
295 /* True if the stub reports support for vCont;t. */
299 /* Returns true if the multi-process extensions are in effect. */
301 remote_multi_process_p (struct remote_state *rs)
303 return rs->extended && rs->multi_process_aware;
306 /* This data could be associated with a target, but we do not always
307 have access to the current target when we need it, so for now it is
308 static. This will be fine for as long as only one target is in use
310 static struct remote_state remote_state;
312 static struct remote_state *
313 get_remote_state_raw (void)
315 return &remote_state;
318 /* Description of the remote protocol for a given architecture. */
322 long offset; /* Offset into G packet. */
323 long regnum; /* GDB's internal register number. */
324 LONGEST pnum; /* Remote protocol register number. */
325 int in_g_packet; /* Always part of G packet. */
326 /* long size in bytes; == register_size (target_gdbarch, regnum);
328 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
332 struct remote_arch_state
334 /* Description of the remote protocol registers. */
335 long sizeof_g_packet;
337 /* Description of the remote protocol registers indexed by REGNUM
338 (making an array gdbarch_num_regs in size). */
339 struct packet_reg *regs;
341 /* This is the size (in chars) of the first response to the ``g''
342 packet. It is used as a heuristic when determining the maximum
343 size of memory-read and memory-write packets. A target will
344 typically only reserve a buffer large enough to hold the ``g''
345 packet. The size does not include packet overhead (headers and
347 long actual_register_packet_size;
349 /* This is the maximum size (in chars) of a non read/write packet.
350 It is also used as a cap on the size of read/write packets. */
351 long remote_packet_size;
355 /* Handle for retreving the remote protocol data from gdbarch. */
356 static struct gdbarch_data *remote_gdbarch_data_handle;
358 static struct remote_arch_state *
359 get_remote_arch_state (void)
361 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
364 /* Fetch the global remote target state. */
366 static struct remote_state *
367 get_remote_state (void)
369 /* Make sure that the remote architecture state has been
370 initialized, because doing so might reallocate rs->buf. Any
371 function which calls getpkt also needs to be mindful of changes
372 to rs->buf, but this call limits the number of places which run
374 get_remote_arch_state ();
376 return get_remote_state_raw ();
380 compare_pnums (const void *lhs_, const void *rhs_)
382 const struct packet_reg * const *lhs = lhs_;
383 const struct packet_reg * const *rhs = rhs_;
385 if ((*lhs)->pnum < (*rhs)->pnum)
387 else if ((*lhs)->pnum == (*rhs)->pnum)
394 init_remote_state (struct gdbarch *gdbarch)
396 int regnum, num_remote_regs, offset;
397 struct remote_state *rs = get_remote_state_raw ();
398 struct remote_arch_state *rsa;
399 struct packet_reg **remote_regs;
401 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
403 /* Use the architecture to build a regnum<->pnum table, which will be
404 1:1 unless a feature set specifies otherwise. */
405 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
406 gdbarch_num_regs (gdbarch),
408 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
410 struct packet_reg *r = &rsa->regs[regnum];
412 if (register_size (gdbarch, regnum) == 0)
413 /* Do not try to fetch zero-sized (placeholder) registers. */
416 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
421 /* Define the g/G packet format as the contents of each register
422 with a remote protocol number, in order of ascending protocol
425 remote_regs = alloca (gdbarch_num_regs (gdbarch)
426 * sizeof (struct packet_reg *));
427 for (num_remote_regs = 0, regnum = 0;
428 regnum < gdbarch_num_regs (gdbarch);
430 if (rsa->regs[regnum].pnum != -1)
431 remote_regs[num_remote_regs++] = &rsa->regs[regnum];
433 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
436 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
438 remote_regs[regnum]->in_g_packet = 1;
439 remote_regs[regnum]->offset = offset;
440 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
443 /* Record the maximum possible size of the g packet - it may turn out
445 rsa->sizeof_g_packet = offset;
447 /* Default maximum number of characters in a packet body. Many
448 remote stubs have a hardwired buffer size of 400 bytes
449 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
450 as the maximum packet-size to ensure that the packet and an extra
451 NUL character can always fit in the buffer. This stops GDB
452 trashing stubs that try to squeeze an extra NUL into what is
453 already a full buffer (As of 1999-12-04 that was most stubs). */
454 rsa->remote_packet_size = 400 - 1;
456 /* This one is filled in when a ``g'' packet is received. */
457 rsa->actual_register_packet_size = 0;
459 /* Should rsa->sizeof_g_packet needs more space than the
460 default, adjust the size accordingly. Remember that each byte is
461 encoded as two characters. 32 is the overhead for the packet
462 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
463 (``$NN:G...#NN'') is a better guess, the below has been padded a
465 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
466 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
468 /* Make sure that the packet buffer is plenty big enough for
469 this architecture. */
470 if (rs->buf_size < rsa->remote_packet_size)
472 rs->buf_size = 2 * rsa->remote_packet_size;
473 rs->buf = xrealloc (rs->buf, rs->buf_size);
479 /* Return the current allowed size of a remote packet. This is
480 inferred from the current architecture, and should be used to
481 limit the length of outgoing packets. */
483 get_remote_packet_size (void)
485 struct remote_state *rs = get_remote_state ();
486 struct remote_arch_state *rsa = get_remote_arch_state ();
488 if (rs->explicit_packet_size)
489 return rs->explicit_packet_size;
491 return rsa->remote_packet_size;
494 static struct packet_reg *
495 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
497 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
501 struct packet_reg *r = &rsa->regs[regnum];
502 gdb_assert (r->regnum == regnum);
507 static struct packet_reg *
508 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
511 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
513 struct packet_reg *r = &rsa->regs[i];
520 /* FIXME: graces/2002-08-08: These variables should eventually be
521 bound to an instance of the target object (as in gdbarch-tdep()),
522 when such a thing exists. */
524 /* This is set to the data address of the access causing the target
525 to stop for a watchpoint. */
526 static CORE_ADDR remote_watch_data_address;
528 /* This is non-zero if target stopped for a watchpoint. */
529 static int remote_stopped_by_watchpoint_p;
531 static struct target_ops remote_ops;
533 static struct target_ops extended_remote_ops;
535 static int remote_async_mask_value = 1;
537 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
538 ``forever'' still use the normal timeout mechanism. This is
539 currently used by the ASYNC code to guarentee that target reads
540 during the initial connect always time-out. Once getpkt has been
541 modified to return a timeout indication and, in turn
542 remote_wait()/wait_for_inferior() have gained a timeout parameter
544 static int wait_forever_enabled_p = 1;
547 /* This variable chooses whether to send a ^C or a break when the user
548 requests program interruption. Although ^C is usually what remote
549 systems expect, and that is the default here, sometimes a break is
550 preferable instead. */
552 static int remote_break;
554 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
555 remote_open knows that we don't have a file open when the program
557 static struct serial *remote_desc = NULL;
559 /* This variable sets the number of bits in an address that are to be
560 sent in a memory ("M" or "m") packet. Normally, after stripping
561 leading zeros, the entire address would be sent. This variable
562 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
563 initial implementation of remote.c restricted the address sent in
564 memory packets to ``host::sizeof long'' bytes - (typically 32
565 bits). Consequently, for 64 bit targets, the upper 32 bits of an
566 address was never sent. Since fixing this bug may cause a break in
567 some remote targets this variable is principly provided to
568 facilitate backward compatibility. */
570 static int remote_address_size;
572 /* Temporary to track who currently owns the terminal. See
573 remote_terminal_* for more details. */
575 static int remote_async_terminal_ours_p;
577 /* The executable file to use for "run" on the remote side. */
579 static char *remote_exec_file = "";
582 /* User configurable variables for the number of characters in a
583 memory read/write packet. MIN (rsa->remote_packet_size,
584 rsa->sizeof_g_packet) is the default. Some targets need smaller
585 values (fifo overruns, et.al.) and some users need larger values
586 (speed up transfers). The variables ``preferred_*'' (the user
587 request), ``current_*'' (what was actually set) and ``forced_*''
588 (Positive - a soft limit, negative - a hard limit). */
590 struct memory_packet_config
597 /* Compute the current size of a read/write packet. Since this makes
598 use of ``actual_register_packet_size'' the computation is dynamic. */
601 get_memory_packet_size (struct memory_packet_config *config)
603 struct remote_state *rs = get_remote_state ();
604 struct remote_arch_state *rsa = get_remote_arch_state ();
606 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
607 law?) that some hosts don't cope very well with large alloca()
608 calls. Eventually the alloca() code will be replaced by calls to
609 xmalloc() and make_cleanups() allowing this restriction to either
610 be lifted or removed. */
611 #ifndef MAX_REMOTE_PACKET_SIZE
612 #define MAX_REMOTE_PACKET_SIZE 16384
614 /* NOTE: 20 ensures we can write at least one byte. */
615 #ifndef MIN_REMOTE_PACKET_SIZE
616 #define MIN_REMOTE_PACKET_SIZE 20
621 if (config->size <= 0)
622 what_they_get = MAX_REMOTE_PACKET_SIZE;
624 what_they_get = config->size;
628 what_they_get = get_remote_packet_size ();
629 /* Limit the packet to the size specified by the user. */
631 && what_they_get > config->size)
632 what_they_get = config->size;
634 /* Limit it to the size of the targets ``g'' response unless we have
635 permission from the stub to use a larger packet size. */
636 if (rs->explicit_packet_size == 0
637 && rsa->actual_register_packet_size > 0
638 && what_they_get > rsa->actual_register_packet_size)
639 what_they_get = rsa->actual_register_packet_size;
641 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
642 what_they_get = MAX_REMOTE_PACKET_SIZE;
643 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
644 what_they_get = MIN_REMOTE_PACKET_SIZE;
646 /* Make sure there is room in the global buffer for this packet
647 (including its trailing NUL byte). */
648 if (rs->buf_size < what_they_get + 1)
650 rs->buf_size = 2 * what_they_get;
651 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
654 return what_they_get;
657 /* Update the size of a read/write packet. If they user wants
658 something really big then do a sanity check. */
661 set_memory_packet_size (char *args, struct memory_packet_config *config)
663 int fixed_p = config->fixed_p;
664 long size = config->size;
666 error (_("Argument required (integer, `fixed' or `limited')."));
667 else if (strcmp (args, "hard") == 0
668 || strcmp (args, "fixed") == 0)
670 else if (strcmp (args, "soft") == 0
671 || strcmp (args, "limit") == 0)
676 size = strtoul (args, &end, 0);
678 error (_("Invalid %s (bad syntax)."), config->name);
680 /* Instead of explicitly capping the size of a packet to
681 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
682 instead allowed to set the size to something arbitrarily
684 if (size > MAX_REMOTE_PACKET_SIZE)
685 error (_("Invalid %s (too large)."), config->name);
689 if (fixed_p && !config->fixed_p)
691 if (! query (_("The target may not be able to correctly handle a %s\n"
692 "of %ld bytes. Change the packet size? "),
694 error (_("Packet size not changed."));
696 /* Update the config. */
697 config->fixed_p = fixed_p;
702 show_memory_packet_size (struct memory_packet_config *config)
704 printf_filtered (_("The %s is %ld. "), config->name, config->size);
706 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
707 get_memory_packet_size (config));
709 printf_filtered (_("Packets are limited to %ld bytes.\n"),
710 get_memory_packet_size (config));
713 static struct memory_packet_config memory_write_packet_config =
715 "memory-write-packet-size",
719 set_memory_write_packet_size (char *args, int from_tty)
721 set_memory_packet_size (args, &memory_write_packet_config);
725 show_memory_write_packet_size (char *args, int from_tty)
727 show_memory_packet_size (&memory_write_packet_config);
731 get_memory_write_packet_size (void)
733 return get_memory_packet_size (&memory_write_packet_config);
736 static struct memory_packet_config memory_read_packet_config =
738 "memory-read-packet-size",
742 set_memory_read_packet_size (char *args, int from_tty)
744 set_memory_packet_size (args, &memory_read_packet_config);
748 show_memory_read_packet_size (char *args, int from_tty)
750 show_memory_packet_size (&memory_read_packet_config);
754 get_memory_read_packet_size (void)
756 long size = get_memory_packet_size (&memory_read_packet_config);
757 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
758 extra buffer size argument before the memory read size can be
759 increased beyond this. */
760 if (size > get_remote_packet_size ())
761 size = get_remote_packet_size ();
766 /* Generic configuration support for packets the stub optionally
767 supports. Allows the user to specify the use of the packet as well
768 as allowing GDB to auto-detect support in the remote stub. */
772 PACKET_SUPPORT_UNKNOWN = 0,
781 enum auto_boolean detect;
782 enum packet_support support;
785 /* Analyze a packet's return value and update the packet config
796 update_packet_config (struct packet_config *config)
798 switch (config->detect)
800 case AUTO_BOOLEAN_TRUE:
801 config->support = PACKET_ENABLE;
803 case AUTO_BOOLEAN_FALSE:
804 config->support = PACKET_DISABLE;
806 case AUTO_BOOLEAN_AUTO:
807 config->support = PACKET_SUPPORT_UNKNOWN;
813 show_packet_config_cmd (struct packet_config *config)
815 char *support = "internal-error";
816 switch (config->support)
822 support = "disabled";
824 case PACKET_SUPPORT_UNKNOWN:
828 switch (config->detect)
830 case AUTO_BOOLEAN_AUTO:
831 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
832 config->name, support);
834 case AUTO_BOOLEAN_TRUE:
835 case AUTO_BOOLEAN_FALSE:
836 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
837 config->name, support);
843 add_packet_config_cmd (struct packet_config *config, const char *name,
844 const char *title, int legacy)
851 config->title = title;
852 config->detect = AUTO_BOOLEAN_AUTO;
853 config->support = PACKET_SUPPORT_UNKNOWN;
854 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
856 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
858 /* set/show TITLE-packet {auto,on,off} */
859 cmd_name = xstrprintf ("%s-packet", title);
860 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
861 &config->detect, set_doc, show_doc, NULL, /* help_doc */
862 set_remote_protocol_packet_cmd,
863 show_remote_protocol_packet_cmd,
864 &remote_set_cmdlist, &remote_show_cmdlist);
865 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
869 legacy_name = xstrprintf ("%s-packet", name);
870 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
871 &remote_set_cmdlist);
872 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
873 &remote_show_cmdlist);
877 static enum packet_result
878 packet_check_result (const char *buf)
882 /* The stub recognized the packet request. Check that the
883 operation succeeded. */
885 && isxdigit (buf[1]) && isxdigit (buf[2])
887 /* "Enn" - definitly an error. */
890 /* Always treat "E." as an error. This will be used for
891 more verbose error messages, such as E.memtypes. */
892 if (buf[0] == 'E' && buf[1] == '.')
895 /* The packet may or may not be OK. Just assume it is. */
899 /* The stub does not support the packet. */
900 return PACKET_UNKNOWN;
903 static enum packet_result
904 packet_ok (const char *buf, struct packet_config *config)
906 enum packet_result result;
908 result = packet_check_result (buf);
913 /* The stub recognized the packet request. */
914 switch (config->support)
916 case PACKET_SUPPORT_UNKNOWN:
918 fprintf_unfiltered (gdb_stdlog,
919 "Packet %s (%s) is supported\n",
920 config->name, config->title);
921 config->support = PACKET_ENABLE;
924 internal_error (__FILE__, __LINE__,
925 _("packet_ok: attempt to use a disabled packet"));
932 /* The stub does not support the packet. */
933 switch (config->support)
936 if (config->detect == AUTO_BOOLEAN_AUTO)
937 /* If the stub previously indicated that the packet was
938 supported then there is a protocol error.. */
939 error (_("Protocol error: %s (%s) conflicting enabled responses."),
940 config->name, config->title);
942 /* The user set it wrong. */
943 error (_("Enabled packet %s (%s) not recognized by stub"),
944 config->name, config->title);
946 case PACKET_SUPPORT_UNKNOWN:
948 fprintf_unfiltered (gdb_stdlog,
949 "Packet %s (%s) is NOT supported\n",
950 config->name, config->title);
951 config->support = PACKET_DISABLE;
979 PACKET_qXfer_features,
980 PACKET_qXfer_libraries,
981 PACKET_qXfer_memory_map,
982 PACKET_qXfer_spu_read,
983 PACKET_qXfer_spu_write,
988 PACKET_qSearch_memory,
991 PACKET_QStartNoAckMode,
993 PACKET_qXfer_siginfo_read,
994 PACKET_qXfer_siginfo_write,
999 static struct packet_config remote_protocol_packets[PACKET_MAX];
1002 set_remote_protocol_packet_cmd (char *args, int from_tty,
1003 struct cmd_list_element *c)
1005 struct packet_config *packet;
1007 for (packet = remote_protocol_packets;
1008 packet < &remote_protocol_packets[PACKET_MAX];
1011 if (&packet->detect == c->var)
1013 update_packet_config (packet);
1017 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1022 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1023 struct cmd_list_element *c,
1026 struct packet_config *packet;
1028 for (packet = remote_protocol_packets;
1029 packet < &remote_protocol_packets[PACKET_MAX];
1032 if (&packet->detect == c->var)
1034 show_packet_config_cmd (packet);
1038 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1042 /* Should we try one of the 'Z' requests? */
1046 Z_PACKET_SOFTWARE_BP,
1047 Z_PACKET_HARDWARE_BP,
1054 /* For compatibility with older distributions. Provide a ``set remote
1055 Z-packet ...'' command that updates all the Z packet types. */
1057 static enum auto_boolean remote_Z_packet_detect;
1060 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1061 struct cmd_list_element *c)
1064 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1066 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1067 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1072 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1073 struct cmd_list_element *c,
1077 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1079 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1083 /* Should we try the 'ThreadInfo' query packet?
1085 This variable (NOT available to the user: auto-detect only!)
1086 determines whether GDB will use the new, simpler "ThreadInfo"
1087 query or the older, more complex syntax for thread queries.
1088 This is an auto-detect variable (set to true at each connect,
1089 and set to false when the target fails to recognize it). */
1091 static int use_threadinfo_query;
1092 static int use_threadextra_query;
1094 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1095 static struct async_signal_handler *sigint_remote_twice_token;
1096 static struct async_signal_handler *sigint_remote_token;
1099 /* Asynchronous signal handle registered as event loop source for
1100 when we have pending events ready to be passed to the core. */
1102 static struct async_event_handler *remote_async_inferior_event_token;
1104 /* Asynchronous signal handle registered as event loop source for when
1105 the remote sent us a %Stop notification. The registered callback
1106 will do a vStopped sequence to pull the rest of the events out of
1107 the remote side into our event queue. */
1109 static struct async_event_handler *remote_async_get_pending_events_token;
1112 static ptid_t magic_null_ptid;
1113 static ptid_t not_sent_ptid;
1114 static ptid_t any_thread_ptid;
1116 /* These are the threads which we last sent to the remote system. The
1117 TID member will be -1 for all or -2 for not sent yet. */
1119 static ptid_t general_thread;
1120 static ptid_t continue_thread;
1122 /* Find out if the stub attached to PID (and hence GDB should offer to
1123 detach instead of killing it when bailing out). */
1126 remote_query_attached (int pid)
1128 struct remote_state *rs = get_remote_state ();
1130 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1133 if (remote_multi_process_p (rs))
1134 sprintf (rs->buf, "qAttached:%x", pid);
1136 sprintf (rs->buf, "qAttached");
1139 getpkt (&rs->buf, &rs->buf_size, 0);
1141 switch (packet_ok (rs->buf,
1142 &remote_protocol_packets[PACKET_qAttached]))
1145 if (strcmp (rs->buf, "1") == 0)
1149 warning (_("Remote failure reply: %s"), rs->buf);
1151 case PACKET_UNKNOWN:
1158 /* Add PID to GDB's inferior table. Since we can be connected to a
1159 remote system before before knowing about any inferior, mark the
1160 target with execution when we find the first inferior. If ATTACHED
1161 is 1, then we had just attached to this inferior. If it is 0, then
1162 we just created this inferior. If it is -1, then try querying the
1163 remote stub to find out if it had attached to the inferior or
1166 static struct inferior *
1167 remote_add_inferior (int pid, int attached)
1169 struct remote_state *rs = get_remote_state ();
1170 struct inferior *inf;
1172 /* Check whether this process we're learning about is to be
1173 considered attached, or if is to be considered to have been
1174 spawned by the stub. */
1176 attached = remote_query_attached (pid);
1178 inf = add_inferior (pid);
1180 inf->attach_flag = attached;
1182 /* This may be the first inferior we hear about. */
1183 if (!target_has_execution)
1186 target_mark_running (&extended_remote_ops);
1188 target_mark_running (&remote_ops);
1194 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1195 according to RUNNING. */
1198 remote_add_thread (ptid_t ptid, int running)
1202 set_executing (ptid, running);
1203 set_running (ptid, running);
1206 /* Come here when we learn about a thread id from the remote target.
1207 It may be the first time we hear about such thread, so take the
1208 opportunity to add it to GDB's thread list. In case this is the
1209 first time we're noticing its corresponding inferior, add it to
1210 GDB's inferior list as well. */
1213 remote_notice_new_inferior (ptid_t currthread, int running)
1215 struct remote_state *rs = get_remote_state ();
1217 /* If this is a new thread, add it to GDB's thread list.
1218 If we leave it up to WFI to do this, bad things will happen. */
1220 if (in_thread_list (currthread) && is_exited (currthread))
1222 /* We're seeing an event on a thread id we knew had exited.
1223 This has to be a new thread reusing the old id. Add it. */
1224 remote_add_thread (currthread, running);
1228 if (!in_thread_list (currthread))
1230 struct inferior *inf = NULL;
1231 int pid = ptid_get_pid (currthread);
1233 if (ptid_is_pid (inferior_ptid)
1234 && pid == ptid_get_pid (inferior_ptid))
1236 /* inferior_ptid has no thread member yet. This can happen
1237 with the vAttach -> remote_wait,"TAAthread:" path if the
1238 stub doesn't support qC. This is the first stop reported
1239 after an attach, so this is the main thread. Update the
1240 ptid in the thread list. */
1241 if (in_thread_list (pid_to_ptid (pid)))
1242 thread_change_ptid (inferior_ptid, currthread);
1245 remote_add_thread (currthread, running);
1246 inferior_ptid = currthread;
1251 if (ptid_equal (magic_null_ptid, inferior_ptid))
1253 /* inferior_ptid is not set yet. This can happen with the
1254 vRun -> remote_wait,"TAAthread:" path if the stub
1255 doesn't support qC. This is the first stop reported
1256 after an attach, so this is the main thread. Update the
1257 ptid in the thread list. */
1258 thread_change_ptid (inferior_ptid, currthread);
1262 /* When connecting to a target remote, or to a target
1263 extended-remote which already was debugging an inferior, we
1264 may not know about it yet. Add it before adding its child
1265 thread, so notifications are emitted in a sensible order. */
1266 if (!in_inferior_list (ptid_get_pid (currthread)))
1267 inf = remote_add_inferior (ptid_get_pid (currthread), -1);
1269 /* This is really a new thread. Add it. */
1270 remote_add_thread (currthread, running);
1272 /* If we found a new inferior, let the common code do whatever
1273 it needs to with it (e.g., read shared libraries, insert
1276 notice_new_inferior (currthread, running, 0);
1280 /* Call this function as a result of
1281 1) A halt indication (T packet) containing a thread id
1282 2) A direct query of currthread
1283 3) Successful execution of set thread
1287 record_currthread (ptid_t currthread)
1289 general_thread = currthread;
1291 if (ptid_equal (currthread, minus_one_ptid))
1292 /* We're just invalidating the local thread mirror. */
1295 remote_notice_new_inferior (currthread, 0);
1298 static char *last_pass_packet;
1300 /* If 'QPassSignals' is supported, tell the remote stub what signals
1301 it can simply pass through to the inferior without reporting. */
1304 remote_pass_signals (void)
1306 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1308 char *pass_packet, *p;
1309 int numsigs = (int) TARGET_SIGNAL_LAST;
1312 gdb_assert (numsigs < 256);
1313 for (i = 0; i < numsigs; i++)
1315 if (signal_stop_state (i) == 0
1316 && signal_print_state (i) == 0
1317 && signal_pass_state (i) == 1)
1320 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1321 strcpy (pass_packet, "QPassSignals:");
1322 p = pass_packet + strlen (pass_packet);
1323 for (i = 0; i < numsigs; i++)
1325 if (signal_stop_state (i) == 0
1326 && signal_print_state (i) == 0
1327 && signal_pass_state (i) == 1)
1330 *p++ = tohex (i >> 4);
1331 *p++ = tohex (i & 15);
1340 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1342 struct remote_state *rs = get_remote_state ();
1343 char *buf = rs->buf;
1345 putpkt (pass_packet);
1346 getpkt (&rs->buf, &rs->buf_size, 0);
1347 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1348 if (last_pass_packet)
1349 xfree (last_pass_packet);
1350 last_pass_packet = pass_packet;
1353 xfree (pass_packet);
1357 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1358 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1359 thread. If GEN is set, set the general thread, if not, then set
1360 the step/continue thread. */
1362 set_thread (struct ptid ptid, int gen)
1364 struct remote_state *rs = get_remote_state ();
1365 ptid_t state = gen ? general_thread : continue_thread;
1366 char *buf = rs->buf;
1367 char *endbuf = rs->buf + get_remote_packet_size ();
1369 if (ptid_equal (state, ptid))
1373 *buf++ = gen ? 'g' : 'c';
1374 if (ptid_equal (ptid, magic_null_ptid))
1375 xsnprintf (buf, endbuf - buf, "0");
1376 else if (ptid_equal (ptid, any_thread_ptid))
1377 xsnprintf (buf, endbuf - buf, "0");
1378 else if (ptid_equal (ptid, minus_one_ptid))
1379 xsnprintf (buf, endbuf - buf, "-1");
1381 write_ptid (buf, endbuf, ptid);
1383 getpkt (&rs->buf, &rs->buf_size, 0);
1385 general_thread = ptid;
1387 continue_thread = ptid;
1391 set_general_thread (struct ptid ptid)
1393 set_thread (ptid, 1);
1397 set_continue_thread (struct ptid ptid)
1399 set_thread (ptid, 0);
1402 /* Change the remote current process. Which thread within the process
1403 ends up selected isn't important, as long as it is the same process
1404 as what INFERIOR_PTID points to.
1406 This comes from that fact that there is no explicit notion of
1407 "selected process" in the protocol. The selected process for
1408 general operations is the process the selected general thread
1412 set_general_process (void)
1414 struct remote_state *rs = get_remote_state ();
1416 /* If the remote can't handle multiple processes, don't bother. */
1417 if (!remote_multi_process_p (rs))
1420 /* We only need to change the remote current thread if it's pointing
1421 at some other process. */
1422 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1423 set_general_thread (inferior_ptid);
1427 /* Return nonzero if the thread PTID is still alive on the remote
1431 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1433 struct remote_state *rs = get_remote_state ();
1434 int tid = ptid_get_tid (ptid);
1437 if (ptid_equal (ptid, magic_null_ptid))
1438 /* The main thread is always alive. */
1441 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1442 /* The main thread is always alive. This can happen after a
1443 vAttach, if the remote side doesn't support
1448 endp = rs->buf + get_remote_packet_size ();
1451 write_ptid (p, endp, ptid);
1454 getpkt (&rs->buf, &rs->buf_size, 0);
1455 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1458 /* About these extended threadlist and threadinfo packets. They are
1459 variable length packets but, the fields within them are often fixed
1460 length. They are redundent enough to send over UDP as is the
1461 remote protocol in general. There is a matching unit test module
1464 #define OPAQUETHREADBYTES 8
1466 /* a 64 bit opaque identifier */
1467 typedef unsigned char threadref[OPAQUETHREADBYTES];
1469 /* WARNING: This threadref data structure comes from the remote O.S.,
1470 libstub protocol encoding, and remote.c. it is not particularly
1473 /* Right now, the internal structure is int. We want it to be bigger.
1477 typedef int gdb_threadref; /* Internal GDB thread reference. */
1479 /* gdb_ext_thread_info is an internal GDB data structure which is
1480 equivalent to the reply of the remote threadinfo packet. */
1482 struct gdb_ext_thread_info
1484 threadref threadid; /* External form of thread reference. */
1485 int active; /* Has state interesting to GDB?
1487 char display[256]; /* Brief state display, name,
1488 blocked/suspended. */
1489 char shortname[32]; /* To be used to name threads. */
1490 char more_display[256]; /* Long info, statistics, queue depth,
1494 /* The volume of remote transfers can be limited by submitting
1495 a mask containing bits specifying the desired information.
1496 Use a union of these values as the 'selection' parameter to
1497 get_thread_info. FIXME: Make these TAG names more thread specific.
1500 #define TAG_THREADID 1
1501 #define TAG_EXISTS 2
1502 #define TAG_DISPLAY 4
1503 #define TAG_THREADNAME 8
1504 #define TAG_MOREDISPLAY 16
1506 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1508 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1510 static char *unpack_nibble (char *buf, int *val);
1512 static char *pack_nibble (char *buf, int nibble);
1514 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1516 static char *unpack_byte (char *buf, int *value);
1518 static char *pack_int (char *buf, int value);
1520 static char *unpack_int (char *buf, int *value);
1522 static char *unpack_string (char *src, char *dest, int length);
1524 static char *pack_threadid (char *pkt, threadref *id);
1526 static char *unpack_threadid (char *inbuf, threadref *id);
1528 void int_to_threadref (threadref *id, int value);
1530 static int threadref_to_int (threadref *ref);
1532 static void copy_threadref (threadref *dest, threadref *src);
1534 static int threadmatch (threadref *dest, threadref *src);
1536 static char *pack_threadinfo_request (char *pkt, int mode,
1539 static int remote_unpack_thread_info_response (char *pkt,
1540 threadref *expectedref,
1541 struct gdb_ext_thread_info
1545 static int remote_get_threadinfo (threadref *threadid,
1546 int fieldset, /*TAG mask */
1547 struct gdb_ext_thread_info *info);
1549 static char *pack_threadlist_request (char *pkt, int startflag,
1551 threadref *nextthread);
1553 static int parse_threadlist_response (char *pkt,
1555 threadref *original_echo,
1556 threadref *resultlist,
1559 static int remote_get_threadlist (int startflag,
1560 threadref *nextthread,
1564 threadref *threadlist);
1566 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1568 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1569 void *context, int looplimit);
1571 static int remote_newthread_step (threadref *ref, void *context);
1574 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1575 buffer we're allowed to write to. Returns
1576 BUF+CHARACTERS_WRITTEN. */
1579 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1582 struct remote_state *rs = get_remote_state ();
1584 if (remote_multi_process_p (rs))
1586 pid = ptid_get_pid (ptid);
1588 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1590 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1592 tid = ptid_get_tid (ptid);
1594 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1596 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1601 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1602 passed the last parsed char. Returns null_ptid on error. */
1605 read_ptid (char *buf, char **obuf)
1609 ULONGEST pid = 0, tid = 0;
1614 /* Multi-process ptid. */
1615 pp = unpack_varlen_hex (p + 1, &pid);
1617 error (_("invalid remote ptid: %s\n"), p);
1620 pp = unpack_varlen_hex (p + 1, &tid);
1623 return ptid_build (pid, 0, tid);
1626 /* No multi-process. Just a tid. */
1627 pp = unpack_varlen_hex (p, &tid);
1629 /* Since the stub is not sending a process id, then default to
1630 what's in inferior_ptid, unless it's null at this point. If so,
1631 then since there's no way to know the pid of the reported
1632 threads, use the magic number. */
1633 if (ptid_equal (inferior_ptid, null_ptid))
1634 pid = ptid_get_pid (magic_null_ptid);
1636 pid = ptid_get_pid (inferior_ptid);
1640 return ptid_build (pid, 0, tid);
1643 /* Encode 64 bits in 16 chars of hex. */
1645 static const char hexchars[] = "0123456789abcdef";
1648 ishex (int ch, int *val)
1650 if ((ch >= 'a') && (ch <= 'f'))
1652 *val = ch - 'a' + 10;
1655 if ((ch >= 'A') && (ch <= 'F'))
1657 *val = ch - 'A' + 10;
1660 if ((ch >= '0') && (ch <= '9'))
1671 if (ch >= 'a' && ch <= 'f')
1672 return ch - 'a' + 10;
1673 if (ch >= '0' && ch <= '9')
1675 if (ch >= 'A' && ch <= 'F')
1676 return ch - 'A' + 10;
1681 stub_unpack_int (char *buff, int fieldlength)
1688 nibble = stubhex (*buff++);
1692 retval = retval << 4;
1698 unpack_varlen_hex (char *buff, /* packet to parse */
1702 ULONGEST retval = 0;
1704 while (ishex (*buff, &nibble))
1707 retval = retval << 4;
1708 retval |= nibble & 0x0f;
1715 unpack_nibble (char *buf, int *val)
1717 *val = fromhex (*buf++);
1722 pack_nibble (char *buf, int nibble)
1724 *buf++ = hexchars[(nibble & 0x0f)];
1729 pack_hex_byte (char *pkt, int byte)
1731 *pkt++ = hexchars[(byte >> 4) & 0xf];
1732 *pkt++ = hexchars[(byte & 0xf)];
1737 unpack_byte (char *buf, int *value)
1739 *value = stub_unpack_int (buf, 2);
1744 pack_int (char *buf, int value)
1746 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1747 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1748 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1749 buf = pack_hex_byte (buf, (value & 0xff));
1754 unpack_int (char *buf, int *value)
1756 *value = stub_unpack_int (buf, 8);
1760 #if 0 /* Currently unused, uncomment when needed. */
1761 static char *pack_string (char *pkt, char *string);
1764 pack_string (char *pkt, char *string)
1769 len = strlen (string);
1771 len = 200; /* Bigger than most GDB packets, junk??? */
1772 pkt = pack_hex_byte (pkt, len);
1776 if ((ch == '\0') || (ch == '#'))
1777 ch = '*'; /* Protect encapsulation. */
1782 #endif /* 0 (unused) */
1785 unpack_string (char *src, char *dest, int length)
1794 pack_threadid (char *pkt, threadref *id)
1797 unsigned char *altid;
1799 altid = (unsigned char *) id;
1800 limit = pkt + BUF_THREAD_ID_SIZE;
1802 pkt = pack_hex_byte (pkt, *altid++);
1808 unpack_threadid (char *inbuf, threadref *id)
1811 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1814 altref = (char *) id;
1816 while (inbuf < limit)
1818 x = stubhex (*inbuf++);
1819 y = stubhex (*inbuf++);
1820 *altref++ = (x << 4) | y;
1825 /* Externally, threadrefs are 64 bits but internally, they are still
1826 ints. This is due to a mismatch of specifications. We would like
1827 to use 64bit thread references internally. This is an adapter
1831 int_to_threadref (threadref *id, int value)
1833 unsigned char *scan;
1835 scan = (unsigned char *) id;
1841 *scan++ = (value >> 24) & 0xff;
1842 *scan++ = (value >> 16) & 0xff;
1843 *scan++ = (value >> 8) & 0xff;
1844 *scan++ = (value & 0xff);
1848 threadref_to_int (threadref *ref)
1851 unsigned char *scan;
1857 value = (value << 8) | ((*scan++) & 0xff);
1862 copy_threadref (threadref *dest, threadref *src)
1865 unsigned char *csrc, *cdest;
1867 csrc = (unsigned char *) src;
1868 cdest = (unsigned char *) dest;
1875 threadmatch (threadref *dest, threadref *src)
1877 /* Things are broken right now, so just assume we got a match. */
1879 unsigned char *srcp, *destp;
1881 srcp = (char *) src;
1882 destp = (char *) dest;
1886 result &= (*srcp++ == *destp++) ? 1 : 0;
1893 threadid:1, # always request threadid
1900 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1903 pack_threadinfo_request (char *pkt, int mode, threadref *id)
1905 *pkt++ = 'q'; /* Info Query */
1906 *pkt++ = 'P'; /* process or thread info */
1907 pkt = pack_int (pkt, mode); /* mode */
1908 pkt = pack_threadid (pkt, id); /* threadid */
1909 *pkt = '\0'; /* terminate */
1913 /* These values tag the fields in a thread info response packet. */
1914 /* Tagging the fields allows us to request specific fields and to
1915 add more fields as time goes by. */
1917 #define TAG_THREADID 1 /* Echo the thread identifier. */
1918 #define TAG_EXISTS 2 /* Is this process defined enough to
1919 fetch registers and its stack? */
1920 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1921 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
1922 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1926 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1927 struct gdb_ext_thread_info *info)
1929 struct remote_state *rs = get_remote_state ();
1933 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
1936 /* info->threadid = 0; FIXME: implement zero_threadref. */
1938 info->display[0] = '\0';
1939 info->shortname[0] = '\0';
1940 info->more_display[0] = '\0';
1942 /* Assume the characters indicating the packet type have been
1944 pkt = unpack_int (pkt, &mask); /* arg mask */
1945 pkt = unpack_threadid (pkt, &ref);
1948 warning (_("Incomplete response to threadinfo request."));
1949 if (!threadmatch (&ref, expectedref))
1950 { /* This is an answer to a different request. */
1951 warning (_("ERROR RMT Thread info mismatch."));
1954 copy_threadref (&info->threadid, &ref);
1956 /* Loop on tagged fields , try to bail if somthing goes wrong. */
1958 /* Packets are terminated with nulls. */
1959 while ((pkt < limit) && mask && *pkt)
1961 pkt = unpack_int (pkt, &tag); /* tag */
1962 pkt = unpack_byte (pkt, &length); /* length */
1963 if (!(tag & mask)) /* Tags out of synch with mask. */
1965 warning (_("ERROR RMT: threadinfo tag mismatch."));
1969 if (tag == TAG_THREADID)
1973 warning (_("ERROR RMT: length of threadid is not 16."));
1977 pkt = unpack_threadid (pkt, &ref);
1978 mask = mask & ~TAG_THREADID;
1981 if (tag == TAG_EXISTS)
1983 info->active = stub_unpack_int (pkt, length);
1985 mask = mask & ~(TAG_EXISTS);
1988 warning (_("ERROR RMT: 'exists' length too long."));
1994 if (tag == TAG_THREADNAME)
1996 pkt = unpack_string (pkt, &info->shortname[0], length);
1997 mask = mask & ~TAG_THREADNAME;
2000 if (tag == TAG_DISPLAY)
2002 pkt = unpack_string (pkt, &info->display[0], length);
2003 mask = mask & ~TAG_DISPLAY;
2006 if (tag == TAG_MOREDISPLAY)
2008 pkt = unpack_string (pkt, &info->more_display[0], length);
2009 mask = mask & ~TAG_MOREDISPLAY;
2012 warning (_("ERROR RMT: unknown thread info tag."));
2013 break; /* Not a tag we know about. */
2019 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2020 struct gdb_ext_thread_info *info)
2022 struct remote_state *rs = get_remote_state ();
2025 pack_threadinfo_request (rs->buf, fieldset, threadid);
2027 getpkt (&rs->buf, &rs->buf_size, 0);
2029 if (rs->buf[0] == '\0')
2032 result = remote_unpack_thread_info_response (rs->buf + 2,
2037 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2040 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2041 threadref *nextthread)
2043 *pkt++ = 'q'; /* info query packet */
2044 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2045 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2046 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2047 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2052 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2055 parse_threadlist_response (char *pkt, int result_limit,
2056 threadref *original_echo, threadref *resultlist,
2059 struct remote_state *rs = get_remote_state ();
2061 int count, resultcount, done;
2064 /* Assume the 'q' and 'M chars have been stripped. */
2065 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2066 /* done parse past here */
2067 pkt = unpack_byte (pkt, &count); /* count field */
2068 pkt = unpack_nibble (pkt, &done);
2069 /* The first threadid is the argument threadid. */
2070 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2071 while ((count-- > 0) && (pkt < limit))
2073 pkt = unpack_threadid (pkt, resultlist++);
2074 if (resultcount++ >= result_limit)
2083 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2084 int *done, int *result_count, threadref *threadlist)
2086 struct remote_state *rs = get_remote_state ();
2087 static threadref echo_nextthread;
2090 /* Trancate result limit to be smaller than the packet size. */
2091 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
2092 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2094 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2096 getpkt (&rs->buf, &rs->buf_size, 0);
2098 if (*rs->buf == '\0')
2102 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2105 if (!threadmatch (&echo_nextthread, nextthread))
2107 /* FIXME: This is a good reason to drop the packet. */
2108 /* Possably, there is a duplicate response. */
2110 retransmit immediatly - race conditions
2111 retransmit after timeout - yes
2113 wait for packet, then exit
2115 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2116 return 0; /* I choose simply exiting. */
2118 if (*result_count <= 0)
2122 warning (_("RMT ERROR : failed to get remote thread list."));
2125 return result; /* break; */
2127 if (*result_count > result_limit)
2130 warning (_("RMT ERROR: threadlist response longer than requested."));
2136 /* This is the interface between remote and threads, remotes upper
2139 /* remote_find_new_threads retrieves the thread list and for each
2140 thread in the list, looks up the thread in GDB's internal list,
2141 adding the thread if it does not already exist. This involves
2142 getting partial thread lists from the remote target so, polling the
2143 quit_flag is required. */
2146 /* About this many threadisds fit in a packet. */
2148 #define MAXTHREADLISTRESULTS 32
2151 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2154 int done, i, result_count;
2158 static threadref nextthread;
2159 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2164 if (loopcount++ > looplimit)
2167 warning (_("Remote fetch threadlist -infinite loop-."));
2170 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2171 &done, &result_count, resultthreadlist))
2176 /* Clear for later iterations. */
2178 /* Setup to resume next batch of thread references, set nextthread. */
2179 if (result_count >= 1)
2180 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2182 while (result_count--)
2183 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2190 remote_newthread_step (threadref *ref, void *context)
2192 int pid = ptid_get_pid (inferior_ptid);
2193 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2195 if (!in_thread_list (ptid))
2197 return 1; /* continue iterator */
2200 #define CRAZY_MAX_THREADS 1000
2203 remote_current_thread (ptid_t oldpid)
2205 struct remote_state *rs = get_remote_state ();
2211 getpkt (&rs->buf, &rs->buf_size, 0);
2212 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2213 return read_ptid (&rs->buf[2], NULL);
2218 /* Find new threads for info threads command.
2219 * Original version, using John Metzler's thread protocol.
2223 remote_find_new_threads (void)
2225 remote_threadlist_iterator (remote_newthread_step, 0,
2230 * Find all threads for info threads command.
2231 * Uses new thread protocol contributed by Cisco.
2232 * Falls back and attempts to use the older method (above)
2233 * if the target doesn't respond to the new method.
2237 remote_threads_info (struct target_ops *ops)
2239 struct remote_state *rs = get_remote_state ();
2243 if (remote_desc == 0) /* paranoia */
2244 error (_("Command can only be used when connected to the remote target."));
2246 if (use_threadinfo_query)
2248 putpkt ("qfThreadInfo");
2249 getpkt (&rs->buf, &rs->buf_size, 0);
2251 if (bufp[0] != '\0') /* q packet recognized */
2253 while (*bufp++ == 'm') /* reply contains one or more TID */
2257 new_thread = read_ptid (bufp, &bufp);
2258 if (!ptid_equal (new_thread, null_ptid))
2260 /* In non-stop mode, we assume new found threads
2261 are running until proven otherwise with a
2262 stop reply. In all-stop, we can only get
2263 here if all threads are stopped. */
2264 int running = non_stop ? 1 : 0;
2266 remote_notice_new_inferior (new_thread, running);
2269 while (*bufp++ == ','); /* comma-separated list */
2270 putpkt ("qsThreadInfo");
2271 getpkt (&rs->buf, &rs->buf_size, 0);
2278 /* Only qfThreadInfo is supported in non-stop mode. */
2282 /* Else fall back to old method based on jmetzler protocol. */
2283 use_threadinfo_query = 0;
2284 remote_find_new_threads ();
2289 * Collect a descriptive string about the given thread.
2290 * The target may say anything it wants to about the thread
2291 * (typically info about its blocked / runnable state, name, etc.).
2292 * This string will appear in the info threads display.
2294 * Optional: targets are not required to implement this function.
2298 remote_threads_extra_info (struct thread_info *tp)
2300 struct remote_state *rs = get_remote_state ();
2304 struct gdb_ext_thread_info threadinfo;
2305 static char display_buf[100]; /* arbitrary... */
2306 int n = 0; /* position in display_buf */
2308 if (remote_desc == 0) /* paranoia */
2309 internal_error (__FILE__, __LINE__,
2310 _("remote_threads_extra_info"));
2312 if (ptid_equal (tp->ptid, magic_null_ptid)
2313 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2314 /* This is the main thread which was added by GDB. The remote
2315 server doesn't know about it. */
2318 if (use_threadextra_query)
2321 char *endb = rs->buf + get_remote_packet_size ();
2323 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2325 write_ptid (b, endb, tp->ptid);
2328 getpkt (&rs->buf, &rs->buf_size, 0);
2329 if (rs->buf[0] != 0)
2331 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2332 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2333 display_buf [result] = '\0';
2338 /* If the above query fails, fall back to the old method. */
2339 use_threadextra_query = 0;
2340 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2341 | TAG_MOREDISPLAY | TAG_DISPLAY;
2342 int_to_threadref (&id, ptid_get_tid (tp->ptid));
2343 if (remote_get_threadinfo (&id, set, &threadinfo))
2344 if (threadinfo.active)
2346 if (*threadinfo.shortname)
2347 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2348 " Name: %s,", threadinfo.shortname);
2349 if (*threadinfo.display)
2350 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2351 " State: %s,", threadinfo.display);
2352 if (*threadinfo.more_display)
2353 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2354 " Priority: %s", threadinfo.more_display);
2358 /* For purely cosmetic reasons, clear up trailing commas. */
2359 if (',' == display_buf[n-1])
2360 display_buf[n-1] = ' ';
2368 /* Restart the remote side; this is an extended protocol operation. */
2371 extended_remote_restart (void)
2373 struct remote_state *rs = get_remote_state ();
2375 /* Send the restart command; for reasons I don't understand the
2376 remote side really expects a number after the "R". */
2377 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
2380 remote_fileio_reset ();
2383 /* Clean up connection to a remote debugger. */
2386 remote_close (int quitting)
2388 if (remote_desc == NULL)
2389 return; /* already closed */
2391 /* Make sure we leave stdin registered in the event loop, and we
2392 don't leave the async SIGINT signal handler installed. */
2393 remote_terminal_ours ();
2395 serial_close (remote_desc);
2398 /* We don't have a connection to the remote stub anymore. Get rid
2399 of all the inferiors and their threads we were controlling. */
2400 discard_all_inferiors ();
2402 /* We're no longer interested in any of these events. */
2403 discard_pending_stop_replies (-1);
2405 if (remote_async_inferior_event_token)
2406 delete_async_event_handler (&remote_async_inferior_event_token);
2407 if (remote_async_get_pending_events_token)
2408 delete_async_event_handler (&remote_async_get_pending_events_token);
2411 /* Query the remote side for the text, data and bss offsets. */
2416 struct remote_state *rs = get_remote_state ();
2419 int lose, num_segments = 0, do_sections, do_segments;
2420 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
2421 struct section_offsets *offs;
2422 struct symfile_segment_data *data;
2424 if (symfile_objfile == NULL)
2427 putpkt ("qOffsets");
2428 getpkt (&rs->buf, &rs->buf_size, 0);
2431 if (buf[0] == '\000')
2432 return; /* Return silently. Stub doesn't support
2436 warning (_("Remote failure reply: %s"), buf);
2440 /* Pick up each field in turn. This used to be done with scanf, but
2441 scanf will make trouble if CORE_ADDR size doesn't match
2442 conversion directives correctly. The following code will work
2443 with any size of CORE_ADDR. */
2444 text_addr = data_addr = bss_addr = 0;
2448 if (strncmp (ptr, "Text=", 5) == 0)
2451 /* Don't use strtol, could lose on big values. */
2452 while (*ptr && *ptr != ';')
2453 text_addr = (text_addr << 4) + fromhex (*ptr++);
2455 if (strncmp (ptr, ";Data=", 6) == 0)
2458 while (*ptr && *ptr != ';')
2459 data_addr = (data_addr << 4) + fromhex (*ptr++);
2464 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2467 while (*ptr && *ptr != ';')
2468 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
2470 if (bss_addr != data_addr)
2471 warning (_("Target reported unsupported offsets: %s"), buf);
2476 else if (strncmp (ptr, "TextSeg=", 8) == 0)
2479 /* Don't use strtol, could lose on big values. */
2480 while (*ptr && *ptr != ';')
2481 text_addr = (text_addr << 4) + fromhex (*ptr++);
2484 if (strncmp (ptr, ";DataSeg=", 9) == 0)
2487 while (*ptr && *ptr != ';')
2488 data_addr = (data_addr << 4) + fromhex (*ptr++);
2496 error (_("Malformed response to offset query, %s"), buf);
2497 else if (*ptr != '\0')
2498 warning (_("Target reported unsupported offsets: %s"), buf);
2500 offs = ((struct section_offsets *)
2501 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
2502 memcpy (offs, symfile_objfile->section_offsets,
2503 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
2505 data = get_symfile_segment_data (symfile_objfile->obfd);
2506 do_segments = (data != NULL);
2507 do_sections = num_segments == 0;
2509 if (num_segments > 0)
2511 segments[0] = text_addr;
2512 segments[1] = data_addr;
2514 /* If we have two segments, we can still try to relocate everything
2515 by assuming that the .text and .data offsets apply to the whole
2516 text and data segments. Convert the offsets given in the packet
2517 to base addresses for symfile_map_offsets_to_segments. */
2518 else if (data && data->num_segments == 2)
2520 segments[0] = data->segment_bases[0] + text_addr;
2521 segments[1] = data->segment_bases[1] + data_addr;
2524 /* If the object file has only one segment, assume that it is text
2525 rather than data; main programs with no writable data are rare,
2526 but programs with no code are useless. Of course the code might
2527 have ended up in the data segment... to detect that we would need
2528 the permissions here. */
2529 else if (data && data->num_segments == 1)
2531 segments[0] = data->segment_bases[0] + text_addr;
2534 /* There's no way to relocate by segment. */
2540 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
2541 offs, num_segments, segments);
2543 if (ret == 0 && !do_sections)
2544 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2551 free_symfile_segment_data (data);
2555 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2557 /* This is a temporary kludge to force data and bss to use the same offsets
2558 because that's what nlmconv does now. The real solution requires changes
2559 to the stub and remote.c that I don't have time to do right now. */
2561 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2562 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2565 objfile_relocate (symfile_objfile, offs);
2568 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
2569 threads we know are stopped already. This is used during the
2570 initial remote connection in non-stop mode --- threads that are
2571 reported as already being stopped are left stopped. */
2574 set_stop_requested_callback (struct thread_info *thread, void *data)
2576 /* If we have a stop reply for this thread, it must be stopped. */
2577 if (peek_stop_reply (thread->ptid))
2578 set_stop_requested (thread->ptid, 1);
2583 /* Stub for catch_exception. */
2585 struct start_remote_args
2589 /* The current target. */
2590 struct target_ops *target;
2592 /* Non-zero if this is an extended-remote target. */
2597 remote_start_remote (struct ui_out *uiout, void *opaque)
2599 struct start_remote_args *args = opaque;
2600 struct remote_state *rs = get_remote_state ();
2601 struct packet_config *noack_config;
2602 char *wait_status = NULL;
2604 immediate_quit++; /* Allow user to interrupt it. */
2606 /* Ack any packet which the remote side has already sent. */
2607 serial_write (remote_desc, "+", 1);
2609 /* The first packet we send to the target is the optional "supported
2610 packets" request. If the target can answer this, it will tell us
2611 which later probes to skip. */
2612 remote_query_supported ();
2614 /* Next, we possibly activate noack mode.
2616 If the QStartNoAckMode packet configuration is set to AUTO,
2617 enable noack mode if the stub reported a wish for it with
2620 If set to TRUE, then enable noack mode even if the stub didn't
2621 report it in qSupported. If the stub doesn't reply OK, the
2622 session ends with an error.
2624 If FALSE, then don't activate noack mode, regardless of what the
2625 stub claimed should be the default with qSupported. */
2627 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
2629 if (noack_config->detect == AUTO_BOOLEAN_TRUE
2630 || (noack_config->detect == AUTO_BOOLEAN_AUTO
2631 && noack_config->support == PACKET_ENABLE))
2633 putpkt ("QStartNoAckMode");
2634 getpkt (&rs->buf, &rs->buf_size, 0);
2635 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
2639 if (args->extended_p)
2641 /* Tell the remote that we are using the extended protocol. */
2643 getpkt (&rs->buf, &rs->buf_size, 0);
2646 /* Next, if the target can specify a description, read it. We do
2647 this before anything involving memory or registers. */
2648 target_find_description ();
2650 /* On OSs where the list of libraries is global to all
2651 processes, we fetch them early. */
2652 if (gdbarch_has_global_solist (target_gdbarch))
2653 solib_add (NULL, args->from_tty, args->target, auto_solib_add);
2657 if (!rs->non_stop_aware)
2658 error (_("Non-stop mode requested, but remote does not support non-stop"));
2660 putpkt ("QNonStop:1");
2661 getpkt (&rs->buf, &rs->buf_size, 0);
2663 if (strcmp (rs->buf, "OK") != 0)
2664 error ("Remote refused setting non-stop mode with: %s", rs->buf);
2666 /* Find about threads and processes the stub is already
2667 controlling. We default to adding them in the running state.
2668 The '?' query below will then tell us about which threads are
2670 remote_threads_info (args->target);
2672 else if (rs->non_stop_aware)
2674 /* Don't assume that the stub can operate in all-stop mode.
2675 Request it explicitely. */
2676 putpkt ("QNonStop:0");
2677 getpkt (&rs->buf, &rs->buf_size, 0);
2679 if (strcmp (rs->buf, "OK") != 0)
2680 error ("Remote refused setting all-stop mode with: %s", rs->buf);
2683 /* Check whether the target is running now. */
2685 getpkt (&rs->buf, &rs->buf_size, 0);
2689 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2691 if (args->extended_p)
2693 /* We're connected, but not running. Drop out before we
2694 call start_remote. */
2695 target_mark_exited (args->target);
2699 error (_("The target is not running (try extended-remote?)"));
2703 /* Save the reply for later. */
2704 wait_status = alloca (strlen (rs->buf) + 1);
2705 strcpy (wait_status, rs->buf);
2708 /* Let the stub know that we want it to return the thread. */
2709 set_continue_thread (minus_one_ptid);
2711 /* Without this, some commands which require an active target
2712 (such as kill) won't work. This variable serves (at least)
2713 double duty as both the pid of the target process (if it has
2714 such), and as a flag indicating that a target is active.
2715 These functions should be split out into seperate variables,
2716 especially since GDB will someday have a notion of debugging
2717 several processes. */
2718 inferior_ptid = magic_null_ptid;
2720 /* Now, if we have thread information, update inferior_ptid. */
2721 inferior_ptid = remote_current_thread (inferior_ptid);
2723 remote_add_inferior (ptid_get_pid (inferior_ptid), -1);
2725 /* Always add the main thread. */
2726 add_thread_silent (inferior_ptid);
2728 get_offsets (); /* Get text, data & bss offsets. */
2730 /* If we could not find a description using qXfer, and we know
2731 how to do it some other way, try again. This is not
2732 supported for non-stop; it could be, but it is tricky if
2733 there are no stopped threads when we connect. */
2734 if (remote_read_description_p (args->target)
2735 && gdbarch_target_desc (target_gdbarch) == NULL)
2737 target_clear_description ();
2738 target_find_description ();
2741 /* Use the previously fetched status. */
2742 gdb_assert (wait_status != NULL);
2743 strcpy (rs->buf, wait_status);
2744 rs->cached_wait_status = 1;
2747 start_remote (args->from_tty); /* Initialize gdb process mechanisms. */
2751 /* Clear WFI global state. Do this before finding about new
2752 threads and inferiors, and setting the current inferior.
2753 Otherwise we would clear the proceed status of the current
2754 inferior when we want its stop_soon state to be preserved
2755 (see notice_new_inferior). */
2756 init_wait_for_inferior ();
2758 /* In non-stop, we will either get an "OK", meaning that there
2759 are no stopped threads at this time; or, a regular stop
2760 reply. In the latter case, there may be more than one thread
2761 stopped --- we pull them all out using the vStopped
2763 if (strcmp (rs->buf, "OK") != 0)
2765 struct stop_reply *stop_reply;
2766 struct cleanup *old_chain;
2768 stop_reply = stop_reply_xmalloc ();
2769 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
2771 remote_parse_stop_reply (rs->buf, stop_reply);
2772 discard_cleanups (old_chain);
2774 /* get_pending_stop_replies acks this one, and gets the rest
2776 pending_stop_reply = stop_reply;
2777 remote_get_pending_stop_replies ();
2779 /* Make sure that threads that were stopped remain
2781 iterate_over_threads (set_stop_requested_callback, NULL);
2784 if (target_can_async_p ())
2785 target_async (inferior_event_handler, 0);
2787 if (thread_count () == 0)
2789 if (args->extended_p)
2791 /* We're connected, but not running. Drop out before we
2792 call start_remote. */
2793 target_mark_exited (args->target);
2797 error (_("The target is not running (try extended-remote?)"));
2800 if (args->extended_p)
2801 target_mark_running (args->target);
2803 /* Let the stub know that we want it to return the thread. */
2805 /* Force the stub to choose a thread. */
2806 set_general_thread (null_ptid);
2809 inferior_ptid = remote_current_thread (minus_one_ptid);
2810 if (ptid_equal (inferior_ptid, minus_one_ptid))
2811 error (_("remote didn't report the current thread in non-stop mode"));
2813 get_offsets (); /* Get text, data & bss offsets. */
2815 /* In non-stop mode, any cached wait status will be stored in
2816 the stop reply queue. */
2817 gdb_assert (wait_status == NULL);
2820 /* If we connected to a live target, do some additional setup. */
2821 if (target_has_execution)
2823 if (exec_bfd) /* No use without an exec file. */
2824 remote_check_symbols (symfile_objfile);
2827 /* If breakpoints are global, insert them now. */
2828 if (gdbarch_has_global_breakpoints (target_gdbarch)
2829 && breakpoints_always_inserted_mode ())
2830 insert_breakpoints ();
2833 /* Open a connection to a remote debugger.
2834 NAME is the filename used for communication. */
2837 remote_open (char *name, int from_tty)
2839 remote_open_1 (name, from_tty, &remote_ops, 0);
2842 /* Open a connection to a remote debugger using the extended
2843 remote gdb protocol. NAME is the filename used for communication. */
2846 extended_remote_open (char *name, int from_tty)
2848 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
2851 /* Generic code for opening a connection to a remote target. */
2854 init_all_packet_configs (void)
2857 for (i = 0; i < PACKET_MAX; i++)
2858 update_packet_config (&remote_protocol_packets[i]);
2861 /* Symbol look-up. */
2864 remote_check_symbols (struct objfile *objfile)
2866 struct remote_state *rs = get_remote_state ();
2867 char *msg, *reply, *tmp;
2868 struct minimal_symbol *sym;
2871 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
2874 /* Make sure the remote is pointing at the right process. */
2875 set_general_process ();
2877 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2878 because we need both at the same time. */
2879 msg = alloca (get_remote_packet_size ());
2881 /* Invite target to request symbol lookups. */
2883 putpkt ("qSymbol::");
2884 getpkt (&rs->buf, &rs->buf_size, 0);
2885 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2888 while (strncmp (reply, "qSymbol:", 8) == 0)
2891 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
2893 sym = lookup_minimal_symbol (msg, NULL, NULL);
2895 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
2898 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
2900 /* If this is a function address, return the start of code
2901 instead of any data function descriptor. */
2902 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2906 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
2907 paddr_nz (sym_addr), &reply[8]);
2911 getpkt (&rs->buf, &rs->buf_size, 0);
2916 static struct serial *
2917 remote_serial_open (char *name)
2919 static int udp_warning = 0;
2921 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2922 of in ser-tcp.c, because it is the remote protocol assuming that the
2923 serial connection is reliable and not the serial connection promising
2925 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2928 The remote protocol may be unreliable over UDP.\n\
2929 Some events may be lost, rendering further debugging impossible."));
2933 return serial_open (name);
2936 /* This type describes each known response to the qSupported
2938 struct protocol_feature
2940 /* The name of this protocol feature. */
2943 /* The default for this protocol feature. */
2944 enum packet_support default_support;
2946 /* The function to call when this feature is reported, or after
2947 qSupported processing if the feature is not supported.
2948 The first argument points to this structure. The second
2949 argument indicates whether the packet requested support be
2950 enabled, disabled, or probed (or the default, if this function
2951 is being called at the end of processing and this feature was
2952 not reported). The third argument may be NULL; if not NULL, it
2953 is a NUL-terminated string taken from the packet following
2954 this feature's name and an equals sign. */
2955 void (*func) (const struct protocol_feature *, enum packet_support,
2958 /* The corresponding packet for this feature. Only used if
2959 FUNC is remote_supported_packet. */
2964 remote_supported_packet (const struct protocol_feature *feature,
2965 enum packet_support support,
2966 const char *argument)
2970 warning (_("Remote qSupported response supplied an unexpected value for"
2971 " \"%s\"."), feature->name);
2975 if (remote_protocol_packets[feature->packet].support
2976 == PACKET_SUPPORT_UNKNOWN)
2977 remote_protocol_packets[feature->packet].support = support;
2981 remote_packet_size (const struct protocol_feature *feature,
2982 enum packet_support support, const char *value)
2984 struct remote_state *rs = get_remote_state ();
2989 if (support != PACKET_ENABLE)
2992 if (value == NULL || *value == '\0')
2994 warning (_("Remote target reported \"%s\" without a size."),
3000 packet_size = strtol (value, &value_end, 16);
3001 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3003 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3004 feature->name, value);
3008 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3010 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3011 packet_size, MAX_REMOTE_PACKET_SIZE);
3012 packet_size = MAX_REMOTE_PACKET_SIZE;
3015 /* Record the new maximum packet size. */
3016 rs->explicit_packet_size = packet_size;
3020 remote_multi_process_feature (const struct protocol_feature *feature,
3021 enum packet_support support, const char *value)
3023 struct remote_state *rs = get_remote_state ();
3024 rs->multi_process_aware = (support == PACKET_ENABLE);
3028 remote_non_stop_feature (const struct protocol_feature *feature,
3029 enum packet_support support, const char *value)
3031 struct remote_state *rs = get_remote_state ();
3032 rs->non_stop_aware = (support == PACKET_ENABLE);
3035 static struct protocol_feature remote_protocol_features[] = {
3036 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
3037 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
3038 PACKET_qXfer_auxv },
3039 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3040 PACKET_qXfer_features },
3041 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3042 PACKET_qXfer_libraries },
3043 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
3044 PACKET_qXfer_memory_map },
3045 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3046 PACKET_qXfer_spu_read },
3047 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3048 PACKET_qXfer_spu_write },
3049 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3050 PACKET_qXfer_osdata },
3051 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3052 PACKET_QPassSignals },
3053 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3054 PACKET_QStartNoAckMode },
3055 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
3056 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
3057 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3058 PACKET_qXfer_siginfo_read },
3059 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
3060 PACKET_qXfer_siginfo_write },
3064 remote_query_supported (void)
3066 struct remote_state *rs = get_remote_state ();
3069 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3071 /* The packet support flags are handled differently for this packet
3072 than for most others. We treat an error, a disabled packet, and
3073 an empty response identically: any features which must be reported
3074 to be used will be automatically disabled. An empty buffer
3075 accomplishes this, since that is also the representation for a list
3076 containing no features. */
3079 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3082 putpkt ("qSupported:multiprocess+");
3084 putpkt ("qSupported");
3086 getpkt (&rs->buf, &rs->buf_size, 0);
3088 /* If an error occured, warn, but do not return - just reset the
3089 buffer to empty and go on to disable features. */
3090 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3093 warning (_("Remote failure reply: %s"), rs->buf);
3098 memset (seen, 0, sizeof (seen));
3103 enum packet_support is_supported;
3104 char *p, *end, *name_end, *value;
3106 /* First separate out this item from the rest of the packet. If
3107 there's another item after this, we overwrite the separator
3108 (terminated strings are much easier to work with). */
3110 end = strchr (p, ';');
3113 end = p + strlen (p);
3123 warning (_("empty item in \"qSupported\" response"));
3128 name_end = strchr (p, '=');
3131 /* This is a name=value entry. */
3132 is_supported = PACKET_ENABLE;
3133 value = name_end + 1;
3142 is_supported = PACKET_ENABLE;
3146 is_supported = PACKET_DISABLE;
3150 is_supported = PACKET_SUPPORT_UNKNOWN;
3154 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
3160 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3161 if (strcmp (remote_protocol_features[i].name, p) == 0)
3163 const struct protocol_feature *feature;
3166 feature = &remote_protocol_features[i];
3167 feature->func (feature, is_supported, value);
3172 /* If we increased the packet size, make sure to increase the global
3173 buffer size also. We delay this until after parsing the entire
3174 qSupported packet, because this is the same buffer we were
3176 if (rs->buf_size < rs->explicit_packet_size)
3178 rs->buf_size = rs->explicit_packet_size;
3179 rs->buf = xrealloc (rs->buf, rs->buf_size);
3182 /* Handle the defaults for unmentioned features. */
3183 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3186 const struct protocol_feature *feature;
3188 feature = &remote_protocol_features[i];
3189 feature->func (feature, feature->default_support, NULL);
3195 remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p)
3197 struct remote_state *rs = get_remote_state ();
3200 error (_("To open a remote debug connection, you need to specify what\n"
3201 "serial device is attached to the remote system\n"
3202 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
3204 /* See FIXME above. */
3205 if (!target_async_permitted)
3206 wait_forever_enabled_p = 1;
3208 /* If we're connected to a running target, target_preopen will kill it.
3209 But if we're connected to a target system with no running process,
3210 then we will still be connected when it returns. Ask this question
3211 first, before target_preopen has a chance to kill anything. */
3212 if (remote_desc != NULL && !target_has_execution)
3215 || query (_("Already connected to a remote target. Disconnect? ")))
3218 error (_("Still connected."));
3221 target_preopen (from_tty);
3223 unpush_target (target);
3225 /* This time without a query. If we were connected to an
3226 extended-remote target and target_preopen killed the running
3227 process, we may still be connected. If we are starting "target
3228 remote" now, the extended-remote target will not have been
3229 removed by unpush_target. */
3230 if (remote_desc != NULL && !target_has_execution)
3233 /* Make sure we send the passed signals list the next time we resume. */
3234 xfree (last_pass_packet);
3235 last_pass_packet = NULL;
3237 remote_fileio_reset ();
3238 reopen_exec_file ();
3241 remote_desc = remote_serial_open (name);
3243 perror_with_name (name);
3245 if (baud_rate != -1)
3247 if (serial_setbaudrate (remote_desc, baud_rate))
3249 /* The requested speed could not be set. Error out to
3250 top level after closing remote_desc. Take care to
3251 set remote_desc to NULL to avoid closing remote_desc
3253 serial_close (remote_desc);
3255 perror_with_name (name);
3259 serial_raw (remote_desc);
3261 /* If there is something sitting in the buffer we might take it as a
3262 response to a command, which would be bad. */
3263 serial_flush_input (remote_desc);
3267 puts_filtered ("Remote debugging using ");
3268 puts_filtered (name);
3269 puts_filtered ("\n");
3271 push_target (target); /* Switch to using remote target now. */
3273 /* Assume that the target is not running, until we learn otherwise. */
3275 target_mark_exited (target);
3277 /* Register extra event sources in the event loop. */
3278 remote_async_inferior_event_token
3279 = create_async_event_handler (remote_async_inferior_event_handler,
3281 remote_async_get_pending_events_token
3282 = create_async_event_handler (remote_async_get_pending_events_handler,
3285 /* Reset the target state; these things will be queried either by
3286 remote_query_supported or as they are needed. */
3287 init_all_packet_configs ();
3288 rs->cached_wait_status = 0;
3289 rs->explicit_packet_size = 0;
3291 rs->multi_process_aware = 0;
3292 rs->extended = extended_p;
3293 rs->non_stop_aware = 0;
3294 rs->waiting_for_stop_reply = 0;
3296 general_thread = not_sent_ptid;
3297 continue_thread = not_sent_ptid;
3299 /* Probe for ability to use "ThreadInfo" query, as required. */
3300 use_threadinfo_query = 1;
3301 use_threadextra_query = 1;
3303 if (target_async_permitted)
3305 /* With this target we start out by owning the terminal. */
3306 remote_async_terminal_ours_p = 1;
3308 /* FIXME: cagney/1999-09-23: During the initial connection it is
3309 assumed that the target is already ready and able to respond to
3310 requests. Unfortunately remote_start_remote() eventually calls
3311 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
3312 around this. Eventually a mechanism that allows
3313 wait_for_inferior() to expect/get timeouts will be
3315 wait_forever_enabled_p = 0;
3318 /* First delete any symbols previously loaded from shared libraries. */
3319 no_shared_libraries (NULL, 0);
3322 init_thread_list ();
3324 /* Start the remote connection. If error() or QUIT, discard this
3325 target (we'd otherwise be in an inconsistent state) and then
3326 propogate the error on up the exception chain. This ensures that
3327 the caller doesn't stumble along blindly assuming that the
3328 function succeeded. The CLI doesn't have this problem but other
3329 UI's, such as MI do.
3331 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
3332 this function should return an error indication letting the
3333 caller restore the previous state. Unfortunately the command
3334 ``target remote'' is directly wired to this function making that
3335 impossible. On a positive note, the CLI side of this problem has
3336 been fixed - the function set_cmd_context() makes it possible for
3337 all the ``target ....'' commands to share a common callback
3338 function. See cli-dump.c. */
3340 struct gdb_exception ex;
3341 struct start_remote_args args;
3343 args.from_tty = from_tty;
3344 args.target = target;
3345 args.extended_p = extended_p;
3347 ex = catch_exception (uiout, remote_start_remote, &args, RETURN_MASK_ALL);
3350 /* Pop the partially set up target - unless something else did
3351 already before throwing the exception. */
3352 if (remote_desc != NULL)
3354 if (target_async_permitted)
3355 wait_forever_enabled_p = 1;
3356 throw_exception (ex);
3360 if (target_async_permitted)
3361 wait_forever_enabled_p = 1;
3364 /* This takes a program previously attached to and detaches it. After
3365 this is done, GDB can be used to debug some other program. We
3366 better not have left any breakpoints in the target program or it'll
3367 die when it hits one. */
3370 remote_detach_1 (char *args, int from_tty, int extended)
3372 int pid = ptid_get_pid (inferior_ptid);
3373 struct remote_state *rs = get_remote_state ();
3376 error (_("Argument given to \"detach\" when remotely debugging."));
3378 if (!target_has_execution)
3379 error (_("No process to detach from."));
3381 /* Tell the remote target to detach. */
3382 if (remote_multi_process_p (rs))
3383 sprintf (rs->buf, "D;%x", pid);
3385 strcpy (rs->buf, "D");
3388 getpkt (&rs->buf, &rs->buf_size, 0);
3390 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
3392 else if (rs->buf[0] == '\0')
3393 error (_("Remote doesn't know how to detach"));
3395 error (_("Can't detach process."));
3399 if (remote_multi_process_p (rs))
3400 printf_filtered (_("Detached from remote %s.\n"),
3401 target_pid_to_str (pid_to_ptid (pid)));
3405 puts_filtered (_("Detached from remote process.\n"));
3407 puts_filtered (_("Ending remote debugging.\n"));
3411 discard_pending_stop_replies (pid);
3412 target_mourn_inferior ();
3416 remote_detach (struct target_ops *ops, char *args, int from_tty)
3418 remote_detach_1 (args, from_tty, 0);
3422 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
3424 remote_detach_1 (args, from_tty, 1);
3427 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
3430 remote_disconnect (struct target_ops *target, char *args, int from_tty)
3433 error (_("Argument given to \"disconnect\" when remotely debugging."));
3435 /* Make sure we unpush even the extended remote targets; mourn
3436 won't do it. So call remote_mourn_1 directly instead of
3437 target_mourn_inferior. */
3438 remote_mourn_1 (target);
3441 puts_filtered ("Ending remote debugging.\n");
3444 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
3445 be chatty about it. */
3448 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
3450 struct remote_state *rs = get_remote_state ();
3453 char *wait_status = NULL;
3456 error_no_arg (_("process-id to attach"));
3459 pid = strtol (args, &dummy, 0);
3460 /* Some targets don't set errno on errors, grrr! */
3461 if (pid == 0 && args == dummy)
3462 error (_("Illegal process-id: %s."), args);
3464 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3465 error (_("This target does not support attaching to a process"));
3467 sprintf (rs->buf, "vAttach;%x", pid);
3469 getpkt (&rs->buf, &rs->buf_size, 0);
3471 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
3474 printf_unfiltered (_("Attached to %s\n"),
3475 target_pid_to_str (pid_to_ptid (pid)));
3479 /* Save the reply for later. */
3480 wait_status = alloca (strlen (rs->buf) + 1);
3481 strcpy (wait_status, rs->buf);
3483 else if (strcmp (rs->buf, "OK") != 0)
3484 error (_("Attaching to %s failed with: %s"),
3485 target_pid_to_str (pid_to_ptid (pid)),
3488 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3489 error (_("This target does not support attaching to a process"));
3491 error (_("Attaching to %s failed"),
3492 target_pid_to_str (pid_to_ptid (pid)));
3494 remote_add_inferior (pid, 1);
3496 inferior_ptid = pid_to_ptid (pid);
3500 struct thread_info *thread;
3502 /* Get list of threads. */
3503 remote_threads_info (target);
3505 thread = first_thread_of_process (pid);
3507 inferior_ptid = thread->ptid;
3509 inferior_ptid = pid_to_ptid (pid);
3511 /* Invalidate our notion of the remote current thread. */
3512 record_currthread (minus_one_ptid);
3516 /* Now, if we have thread information, update inferior_ptid. */
3517 inferior_ptid = remote_current_thread (inferior_ptid);
3519 /* Add the main thread to the thread list. */
3520 add_thread_silent (inferior_ptid);
3523 /* Next, if the target can specify a description, read it. We do
3524 this before anything involving memory or registers. */
3525 target_find_description ();
3529 /* Use the previously fetched status. */
3530 gdb_assert (wait_status != NULL);
3532 if (target_can_async_p ())
3534 struct stop_reply *stop_reply;
3535 struct cleanup *old_chain;
3537 stop_reply = stop_reply_xmalloc ();
3538 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3539 remote_parse_stop_reply (wait_status, stop_reply);
3540 discard_cleanups (old_chain);
3541 push_stop_reply (stop_reply);
3543 target_async (inferior_event_handler, 0);
3547 gdb_assert (wait_status != NULL);
3548 strcpy (rs->buf, wait_status);
3549 rs->cached_wait_status = 1;
3553 gdb_assert (wait_status == NULL);
3557 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
3559 extended_remote_attach_1 (ops, args, from_tty);
3562 /* Convert hex digit A to a number. */
3567 if (a >= '0' && a <= '9')
3569 else if (a >= 'a' && a <= 'f')
3570 return a - 'a' + 10;
3571 else if (a >= 'A' && a <= 'F')
3572 return a - 'A' + 10;
3574 error (_("Reply contains invalid hex digit %d"), a);
3578 hex2bin (const char *hex, gdb_byte *bin, int count)
3582 for (i = 0; i < count; i++)
3584 if (hex[0] == 0 || hex[1] == 0)
3586 /* Hex string is short, or of uneven length.
3587 Return the count that has been converted so far. */
3590 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
3596 /* Convert number NIB to a hex digit. */
3604 return 'a' + nib - 10;
3608 bin2hex (const gdb_byte *bin, char *hex, int count)
3611 /* May use a length, or a nul-terminated string as input. */
3613 count = strlen ((char *) bin);
3615 for (i = 0; i < count; i++)
3617 *hex++ = tohex ((*bin >> 4) & 0xf);
3618 *hex++ = tohex (*bin++ & 0xf);
3624 /* Check for the availability of vCont. This function should also check
3628 remote_vcont_probe (struct remote_state *rs)
3632 strcpy (rs->buf, "vCont?");
3634 getpkt (&rs->buf, &rs->buf_size, 0);
3637 /* Make sure that the features we assume are supported. */
3638 if (strncmp (buf, "vCont", 5) == 0)
3641 int support_s, support_S, support_c, support_C;
3647 rs->support_vCont_t = 0;
3648 while (p && *p == ';')
3651 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
3653 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
3655 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
3657 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
3659 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
3660 rs->support_vCont_t = 1;
3662 p = strchr (p, ';');
3665 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3666 BUF will make packet_ok disable the packet. */
3667 if (!support_s || !support_S || !support_c || !support_C)
3671 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
3674 /* Helper function for building "vCont" resumptions. Write a
3675 resumption to P. ENDP points to one-passed-the-end of the buffer
3676 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
3677 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
3678 resumed thread should be single-stepped and/or signalled. If PTID
3679 equals minus_one_ptid, then all threads are resumed; if PTID
3680 represents a process, then all threads of the process are resumed;
3681 the thread to be stepped and/or signalled is given in the global
3685 append_resumption (char *p, char *endp,
3686 ptid_t ptid, int step, enum target_signal siggnal)
3688 struct remote_state *rs = get_remote_state ();
3690 if (step && siggnal != TARGET_SIGNAL_0)
3691 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
3693 p += xsnprintf (p, endp - p, ";s");
3694 else if (siggnal != TARGET_SIGNAL_0)
3695 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
3697 p += xsnprintf (p, endp - p, ";c");
3699 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
3703 /* All (-1) threads of process. */
3704 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3706 p += xsnprintf (p, endp - p, ":");
3707 p = write_ptid (p, endp, nptid);
3709 else if (!ptid_equal (ptid, minus_one_ptid))
3711 p += xsnprintf (p, endp - p, ":");
3712 p = write_ptid (p, endp, ptid);
3718 /* Resume the remote inferior by using a "vCont" packet. The thread
3719 to be resumed is PTID; STEP and SIGGNAL indicate whether the
3720 resumed thread should be single-stepped and/or signalled. If PTID
3721 equals minus_one_ptid, then all threads are resumed; the thread to
3722 be stepped and/or signalled is given in the global INFERIOR_PTID.
3723 This function returns non-zero iff it resumes the inferior.
3725 This function issues a strict subset of all possible vCont commands at the
3729 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
3731 struct remote_state *rs = get_remote_state ();
3735 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3736 remote_vcont_probe (rs);
3738 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
3742 endp = rs->buf + get_remote_packet_size ();
3744 /* If we could generate a wider range of packets, we'd have to worry
3745 about overflowing BUF. Should there be a generic
3746 "multi-part-packet" packet? */
3748 p += xsnprintf (p, endp - p, "vCont");
3750 if (ptid_equal (ptid, magic_null_ptid))
3752 /* MAGIC_NULL_PTID means that we don't have any active threads,
3753 so we don't have any TID numbers the inferior will
3754 understand. Make sure to only send forms that do not specify
3756 p = append_resumption (p, endp, minus_one_ptid, step, siggnal);
3758 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
3760 /* Resume all threads (of all processes, or of a single
3761 process), with preference for INFERIOR_PTID. This assumes
3762 inferior_ptid belongs to the set of all threads we are about
3764 if (step || siggnal != TARGET_SIGNAL_0)
3766 /* Step inferior_ptid, with or without signal. */
3767 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
3770 /* And continue others without a signal. */
3771 p = append_resumption (p, endp, ptid, /*step=*/ 0, TARGET_SIGNAL_0);
3775 /* Scheduler locking; resume only PTID. */
3776 p = append_resumption (p, endp, ptid, step, siggnal);
3779 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
3784 /* In non-stop, the stub replies to vCont with "OK". The stop
3785 reply will be reported asynchronously by means of a `%Stop'
3787 getpkt (&rs->buf, &rs->buf_size, 0);
3788 if (strcmp (rs->buf, "OK") != 0)
3789 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
3795 /* Tell the remote machine to resume. */
3797 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
3799 static int last_sent_step;
3802 remote_resume (struct target_ops *ops,
3803 ptid_t ptid, int step, enum target_signal siggnal)
3805 struct remote_state *rs = get_remote_state ();
3808 last_sent_signal = siggnal;
3809 last_sent_step = step;
3811 /* Update the inferior on signals to silently pass, if they've changed. */
3812 remote_pass_signals ();
3814 /* The vCont packet doesn't need to specify threads via Hc. */
3815 if (remote_vcont_resume (ptid, step, siggnal))
3818 /* All other supported resume packets do use Hc, so set the continue
3820 if (ptid_equal (ptid, minus_one_ptid))
3821 set_continue_thread (any_thread_ptid);
3823 set_continue_thread (ptid);
3826 if (execution_direction == EXEC_REVERSE)
3828 /* We don't pass signals to the target in reverse exec mode. */
3829 if (info_verbose && siggnal != TARGET_SIGNAL_0)
3830 warning (" - Can't pass signal %d to target in reverse: ignored.\n",
3832 strcpy (buf, step ? "bs" : "bc");
3834 else if (siggnal != TARGET_SIGNAL_0)
3836 buf[0] = step ? 'S' : 'C';
3837 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
3838 buf[2] = tohex (((int) siggnal) & 0xf);
3842 strcpy (buf, step ? "s" : "c");
3847 /* We are about to start executing the inferior, let's register it
3848 with the event loop. NOTE: this is the one place where all the
3849 execution commands end up. We could alternatively do this in each
3850 of the execution commands in infcmd.c. */
3851 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3852 into infcmd.c in order to allow inferior function calls to work
3853 NOT asynchronously. */
3854 if (target_can_async_p ())
3855 target_async (inferior_event_handler, 0);
3857 /* We've just told the target to resume. The remote server will
3858 wait for the inferior to stop, and then send a stop reply. In
3859 the mean time, we can't start another command/query ourselves
3860 because the stub wouldn't be ready to process it. This applies
3861 only to the base all-stop protocol, however. In non-stop (which
3862 only supports vCont), the stub replies with an "OK", and is
3863 immediate able to process further serial input. */
3865 rs->waiting_for_stop_reply = 1;
3869 /* Set up the signal handler for SIGINT, while the target is
3870 executing, ovewriting the 'regular' SIGINT signal handler. */
3872 initialize_sigint_signal_handler (void)
3874 signal (SIGINT, handle_remote_sigint);
3877 /* Signal handler for SIGINT, while the target is executing. */
3879 handle_remote_sigint (int sig)
3881 signal (sig, handle_remote_sigint_twice);
3882 mark_async_signal_handler_wrapper (sigint_remote_token);
3885 /* Signal handler for SIGINT, installed after SIGINT has already been
3886 sent once. It will take effect the second time that the user sends
3889 handle_remote_sigint_twice (int sig)
3891 signal (sig, handle_remote_sigint);
3892 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
3895 /* Perform the real interruption of the target execution, in response
3898 async_remote_interrupt (gdb_client_data arg)
3901 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
3903 target_stop (inferior_ptid);
3906 /* Perform interrupt, if the first attempt did not succeed. Just give
3907 up on the target alltogether. */
3909 async_remote_interrupt_twice (gdb_client_data arg)
3912 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
3917 /* Reinstall the usual SIGINT handlers, after the target has
3920 cleanup_sigint_signal_handler (void *dummy)
3922 signal (SIGINT, handle_sigint);
3925 /* Send ^C to target to halt it. Target will respond, and send us a
3927 static void (*ofunc) (int);
3929 /* The command line interface's stop routine. This function is installed
3930 as a signal handler for SIGINT. The first time a user requests a
3931 stop, we call remote_stop to send a break or ^C. If there is no
3932 response from the target (it didn't stop when the user requested it),
3933 we ask the user if he'd like to detach from the target. */
3935 remote_interrupt (int signo)
3937 /* If this doesn't work, try more severe steps. */
3938 signal (signo, remote_interrupt_twice);
3940 gdb_call_async_signal_handler (sigint_remote_token, 1);
3943 /* The user typed ^C twice. */
3946 remote_interrupt_twice (int signo)
3948 signal (signo, ofunc);
3949 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
3950 signal (signo, remote_interrupt);
3953 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
3954 thread, all threads of a remote process, or all threads of all
3958 remote_stop_ns (ptid_t ptid)
3960 struct remote_state *rs = get_remote_state ();
3962 char *endp = rs->buf + get_remote_packet_size ();
3963 struct stop_reply *reply, *next;
3965 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3966 remote_vcont_probe (rs);
3968 if (!rs->support_vCont_t)
3969 error (_("Remote server does not support stopping threads"));
3971 if (ptid_equal (ptid, minus_one_ptid)
3972 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
3973 p += xsnprintf (p, endp - p, "vCont;t");
3978 p += xsnprintf (p, endp - p, "vCont;t:");
3980 if (ptid_is_pid (ptid))
3981 /* All (-1) threads of process. */
3982 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3985 /* Small optimization: if we already have a stop reply for
3986 this thread, no use in telling the stub we want this
3988 if (peek_stop_reply (ptid))
3994 p = write_ptid (p, endp, nptid);
3997 /* In non-stop, we get an immediate OK reply. The stop reply will
3998 come in asynchronously by notification. */
4000 getpkt (&rs->buf, &rs->buf_size, 0);
4001 if (strcmp (rs->buf, "OK") != 0)
4002 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
4005 /* All-stop version of target_stop. Sends a break or a ^C to stop the
4006 remote target. It is undefined which thread of which process
4007 reports the stop. */
4010 remote_stop_as (ptid_t ptid)
4012 struct remote_state *rs = get_remote_state ();
4014 /* If the inferior is stopped already, but the core didn't know
4015 about it yet, just ignore the request. The cached wait status
4016 will be collected in remote_wait. */
4017 if (rs->cached_wait_status)
4020 /* Send a break or a ^C, depending on user preference. */
4023 serial_send_break (remote_desc);
4025 serial_write (remote_desc, "\003", 1);
4028 /* This is the generic stop called via the target vector. When a target
4029 interrupt is requested, either by the command line or the GUI, we
4030 will eventually end up here. */
4033 remote_stop (ptid_t ptid)
4036 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
4039 remote_stop_ns (ptid);
4041 remote_stop_as (ptid);
4044 /* Ask the user what to do when an interrupt is received. */
4047 interrupt_query (void)
4049 target_terminal_ours ();
4051 if (target_can_async_p ())
4053 signal (SIGINT, handle_sigint);
4054 deprecated_throw_reason (RETURN_QUIT);
4058 if (query (_("Interrupted while waiting for the program.\n\
4059 Give up (and stop debugging it)? ")))
4062 deprecated_throw_reason (RETURN_QUIT);
4066 target_terminal_inferior ();
4069 /* Enable/disable target terminal ownership. Most targets can use
4070 terminal groups to control terminal ownership. Remote targets are
4071 different in that explicit transfer of ownership to/from GDB/target
4075 remote_terminal_inferior (void)
4077 if (!target_async_permitted)
4078 /* Nothing to do. */
4081 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
4082 sync_execution here. This function should only be called when
4083 GDB is resuming the inferior in the forground. A background
4084 resume (``run&'') should leave GDB in control of the terminal and
4085 consequently should not call this code. */
4086 if (!sync_execution)
4088 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
4089 calls target_terminal_*() idenpotent. The event-loop GDB talking
4090 to an asynchronous target with a synchronous command calls this
4091 function from both event-top.c and infrun.c/infcmd.c. Once GDB
4092 stops trying to transfer the terminal to the target when it
4093 shouldn't this guard can go away. */
4094 if (!remote_async_terminal_ours_p)
4096 delete_file_handler (input_fd);
4097 remote_async_terminal_ours_p = 0;
4098 initialize_sigint_signal_handler ();
4099 /* NOTE: At this point we could also register our selves as the
4100 recipient of all input. Any characters typed could then be
4101 passed on down to the target. */
4105 remote_terminal_ours (void)
4107 if (!target_async_permitted)
4108 /* Nothing to do. */
4111 /* See FIXME in remote_terminal_inferior. */
4112 if (!sync_execution)
4114 /* See FIXME in remote_terminal_inferior. */
4115 if (remote_async_terminal_ours_p)
4117 cleanup_sigint_signal_handler (NULL);
4118 add_file_handler (input_fd, stdin_event_handler, 0);
4119 remote_async_terminal_ours_p = 1;
4123 remote_console_output (char *msg)
4127 for (p = msg; p[0] && p[1]; p += 2)
4130 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4133 fputs_unfiltered (tb, gdb_stdtarg);
4135 gdb_flush (gdb_stdtarg);
4138 typedef struct cached_reg
4141 gdb_byte data[MAX_REGISTER_SIZE];
4144 DEF_VEC_O(cached_reg_t);
4148 struct stop_reply *next;
4152 struct target_waitstatus ws;
4154 VEC(cached_reg_t) *regcache;
4156 int stopped_by_watchpoint_p;
4157 CORE_ADDR watch_data_address;
4163 /* The list of already fetched and acknowledged stop events. */
4164 static struct stop_reply *stop_reply_queue;
4166 static struct stop_reply *
4167 stop_reply_xmalloc (void)
4169 struct stop_reply *r = XMALLOC (struct stop_reply);
4175 stop_reply_xfree (struct stop_reply *r)
4179 VEC_free (cached_reg_t, r->regcache);
4184 /* Discard all pending stop replies of inferior PID. If PID is -1,
4185 discard everything. */
4188 discard_pending_stop_replies (int pid)
4190 struct stop_reply *prev = NULL, *reply, *next;
4192 /* Discard the in-flight notification. */
4193 if (pending_stop_reply != NULL
4195 || ptid_get_pid (pending_stop_reply->ptid) == pid))
4197 stop_reply_xfree (pending_stop_reply);
4198 pending_stop_reply = NULL;
4201 /* Discard the stop replies we have already pulled with
4203 for (reply = stop_reply_queue; reply; reply = next)
4207 || ptid_get_pid (reply->ptid) == pid)
4209 if (reply == stop_reply_queue)
4210 stop_reply_queue = reply->next;
4212 prev->next = reply->next;
4214 stop_reply_xfree (reply);
4221 /* Cleanup wrapper. */
4224 do_stop_reply_xfree (void *arg)
4226 struct stop_reply *r = arg;
4227 stop_reply_xfree (r);
4230 /* Look for a queued stop reply belonging to PTID. If one is found,
4231 remove it from the queue, and return it. Returns NULL if none is
4232 found. If there are still queued events left to process, tell the
4233 event loop to get back to target_wait soon. */
4235 static struct stop_reply *
4236 queued_stop_reply (ptid_t ptid)
4238 struct stop_reply *it, *prev;
4239 struct stop_reply head;
4241 head.next = stop_reply_queue;
4246 if (!ptid_equal (ptid, minus_one_ptid))
4247 for (; it; prev = it, it = it->next)
4248 if (ptid_equal (ptid, it->ptid))
4253 prev->next = it->next;
4257 stop_reply_queue = head.next;
4259 if (stop_reply_queue)
4260 /* There's still at least an event left. */
4261 mark_async_event_handler (remote_async_inferior_event_token);
4266 /* Push a fully parsed stop reply in the stop reply queue. Since we
4267 know that we now have at least one queued event left to pass to the
4268 core side, tell the event loop to get back to target_wait soon. */
4271 push_stop_reply (struct stop_reply *new_event)
4273 struct stop_reply *event;
4275 if (stop_reply_queue)
4277 for (event = stop_reply_queue;
4278 event && event->next;
4279 event = event->next)
4282 event->next = new_event;
4285 stop_reply_queue = new_event;
4287 mark_async_event_handler (remote_async_inferior_event_token);
4290 /* Returns true if we have a stop reply for PTID. */
4293 peek_stop_reply (ptid_t ptid)
4295 struct stop_reply *it;
4297 for (it = stop_reply_queue; it; it = it->next)
4298 if (ptid_equal (ptid, it->ptid))
4300 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
4307 /* Parse the stop reply in BUF. Either the function succeeds, and the
4308 result is stored in EVENT, or throws an error. */
4311 remote_parse_stop_reply (char *buf, struct stop_reply *event)
4313 struct remote_arch_state *rsa = get_remote_arch_state ();
4317 event->ptid = null_ptid;
4318 event->ws.kind = TARGET_WAITKIND_IGNORE;
4319 event->ws.value.integer = 0;
4320 event->solibs_changed = 0;
4321 event->replay_event = 0;
4322 event->stopped_by_watchpoint_p = 0;
4323 event->regcache = NULL;
4327 case 'T': /* Status with PC, SP, FP, ... */
4329 gdb_byte regs[MAX_REGISTER_SIZE];
4331 /* Expedited reply, containing Signal, {regno, reg} repeat. */
4332 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
4334 n... = register number
4335 r... = register contents
4338 p = &buf[3]; /* after Txx */
4346 /* If the packet contains a register number, save it in
4347 pnum and set p1 to point to the character following it.
4348 Otherwise p1 points to p. */
4350 /* If this packet is an awatch packet, don't parse the 'a'
4351 as a register number. */
4353 if (strncmp (p, "awatch", strlen("awatch")) != 0)
4355 /* Read the ``P'' register number. */
4356 pnum = strtol (p, &p_temp, 16);
4362 if (p1 == p) /* No register number present here. */
4364 p1 = strchr (p, ':');
4366 error (_("Malformed packet(a) (missing colon): %s\n\
4369 if (strncmp (p, "thread", p1 - p) == 0)
4370 event->ptid = read_ptid (++p1, &p);
4371 else if ((strncmp (p, "watch", p1 - p) == 0)
4372 || (strncmp (p, "rwatch", p1 - p) == 0)
4373 || (strncmp (p, "awatch", p1 - p) == 0))
4375 event->stopped_by_watchpoint_p = 1;
4376 p = unpack_varlen_hex (++p1, &addr);
4377 event->watch_data_address = (CORE_ADDR) addr;
4379 else if (strncmp (p, "library", p1 - p) == 0)
4383 while (*p_temp && *p_temp != ';')
4386 event->solibs_changed = 1;
4389 else if (strncmp (p, "replaylog", p1 - p) == 0)
4391 /* NO_HISTORY event.
4392 p1 will indicate "begin" or "end", but
4393 it makes no difference for now, so ignore it. */
4394 event->replay_event = 1;
4395 p_temp = strchr (p1 + 1, ';');
4401 /* Silently skip unknown optional info. */
4402 p_temp = strchr (p1 + 1, ';');
4409 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
4410 cached_reg_t cached_reg;
4415 error (_("Malformed packet(b) (missing colon): %s\n\
4421 error (_("Remote sent bad register number %s: %s\n\
4423 phex_nz (pnum, 0), p, buf);
4425 cached_reg.num = reg->regnum;
4427 fieldsize = hex2bin (p, cached_reg.data,
4428 register_size (target_gdbarch,
4431 if (fieldsize < register_size (target_gdbarch,
4433 warning (_("Remote reply is too short: %s"), buf);
4435 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
4439 error (_("Remote register badly formatted: %s\nhere: %s"),
4445 case 'S': /* Old style status, just signal only. */
4446 if (event->solibs_changed)
4447 event->ws.kind = TARGET_WAITKIND_LOADED;
4448 else if (event->replay_event)
4449 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
4452 event->ws.kind = TARGET_WAITKIND_STOPPED;
4453 event->ws.value.sig = (enum target_signal)
4454 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
4457 case 'W': /* Target exited. */
4464 /* GDB used to accept only 2 hex chars here. Stubs should
4465 only send more if they detect GDB supports multi-process
4467 p = unpack_varlen_hex (&buf[1], &value);
4471 /* The remote process exited. */
4472 event->ws.kind = TARGET_WAITKIND_EXITED;
4473 event->ws.value.integer = value;
4477 /* The remote process exited with a signal. */
4478 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
4479 event->ws.value.sig = (enum target_signal) value;
4482 /* If no process is specified, assume inferior_ptid. */
4483 pid = ptid_get_pid (inferior_ptid);
4492 else if (strncmp (p,
4493 "process:", sizeof ("process:") - 1) == 0)
4496 p += sizeof ("process:") - 1;
4497 unpack_varlen_hex (p, &upid);
4501 error (_("unknown stop reply packet: %s"), buf);
4504 error (_("unknown stop reply packet: %s"), buf);
4505 event->ptid = pid_to_ptid (pid);
4510 if (non_stop && ptid_equal (event->ptid, null_ptid))
4511 error (_("No process or thread specified in stop reply: %s"), buf);
4514 /* When the stub wants to tell GDB about a new stop reply, it sends a
4515 stop notification (%Stop). Those can come it at any time, hence,
4516 we have to make sure that any pending putpkt/getpkt sequence we're
4517 making is finished, before querying the stub for more events with
4518 vStopped. E.g., if we started a vStopped sequence immediatelly
4519 upon receiving the %Stop notification, something like this could
4527 1.6) <-- (registers reply to step #1.3)
4529 Obviously, the reply in step #1.6 would be unexpected to a vStopped
4532 To solve this, whenever we parse a %Stop notification sucessfully,
4533 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
4534 doing whatever we were doing:
4540 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
4541 2.5) <-- (registers reply to step #2.3)
4543 Eventualy after step #2.5, we return to the event loop, which
4544 notices there's an event on the
4545 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
4546 associated callback --- the function below. At this point, we're
4547 always safe to start a vStopped sequence. :
4550 2.7) <-- T05 thread:2
4556 remote_get_pending_stop_replies (void)
4558 struct remote_state *rs = get_remote_state ();
4561 if (pending_stop_reply)
4564 putpkt ("vStopped");
4566 /* Now we can rely on it. */
4567 push_stop_reply (pending_stop_reply);
4568 pending_stop_reply = NULL;
4572 getpkt (&rs->buf, &rs->buf_size, 0);
4573 if (strcmp (rs->buf, "OK") == 0)
4577 struct cleanup *old_chain;
4578 struct stop_reply *stop_reply = stop_reply_xmalloc ();
4580 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4581 remote_parse_stop_reply (rs->buf, stop_reply);
4584 putpkt ("vStopped");
4586 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
4588 /* Now we can rely on it. */
4589 discard_cleanups (old_chain);
4590 push_stop_reply (stop_reply);
4593 /* We got an unknown stop reply. */
4594 do_cleanups (old_chain);
4601 /* Called when it is decided that STOP_REPLY holds the info of the
4602 event that is to be returned to the core. This function always
4603 destroys STOP_REPLY. */
4606 process_stop_reply (struct stop_reply *stop_reply,
4607 struct target_waitstatus *status)
4611 *status = stop_reply->ws;
4612 ptid = stop_reply->ptid;
4614 /* If no thread/process was reported by the stub, assume the current
4616 if (ptid_equal (ptid, null_ptid))
4617 ptid = inferior_ptid;
4619 if (status->kind != TARGET_WAITKIND_EXITED
4620 && status->kind != TARGET_WAITKIND_SIGNALLED)
4622 /* Expedited registers. */
4623 if (stop_reply->regcache)
4629 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
4631 regcache_raw_supply (get_thread_regcache (ptid),
4632 reg->num, reg->data);
4633 VEC_free (cached_reg_t, stop_reply->regcache);
4636 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
4637 remote_watch_data_address = stop_reply->watch_data_address;
4639 remote_notice_new_inferior (ptid, 0);
4642 stop_reply_xfree (stop_reply);
4646 /* The non-stop mode version of target_wait. */
4649 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
4651 struct remote_state *rs = get_remote_state ();
4652 struct remote_arch_state *rsa = get_remote_arch_state ();
4653 ptid_t event_ptid = null_ptid;
4654 struct stop_reply *stop_reply;
4657 /* If in non-stop mode, get out of getpkt even if a
4658 notification is received. */
4660 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4667 case 'E': /* Error of some sort. */
4668 /* We're out of sync with the target now. Did it continue
4669 or not? We can't tell which thread it was in non-stop,
4670 so just ignore this. */
4671 warning (_("Remote failure reply: %s"), rs->buf);
4673 case 'O': /* Console output. */
4674 remote_console_output (rs->buf + 1);
4677 warning (_("Invalid remote reply: %s"), rs->buf);
4681 /* Acknowledge a pending stop reply that may have arrived in the
4683 if (pending_stop_reply != NULL)
4684 remote_get_pending_stop_replies ();
4686 /* If indeed we noticed a stop reply, we're done. */
4687 stop_reply = queued_stop_reply (ptid);
4688 if (stop_reply != NULL)
4689 return process_stop_reply (stop_reply, status);
4691 /* Still no event. If we're just polling for an event, then
4692 return to the event loop. */
4693 if (options & TARGET_WNOHANG)
4695 status->kind = TARGET_WAITKIND_IGNORE;
4696 return minus_one_ptid;
4699 /* Otherwise do a blocking wait. */
4700 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4705 /* Wait until the remote machine stops, then return, storing status in
4706 STATUS just as `wait' would. */
4709 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
4711 struct remote_state *rs = get_remote_state ();
4712 struct remote_arch_state *rsa = get_remote_arch_state ();
4713 ptid_t event_ptid = null_ptid;
4715 int solibs_changed = 0;
4717 struct stop_reply *stop_reply;
4721 status->kind = TARGET_WAITKIND_IGNORE;
4722 status->value.integer = 0;
4724 stop_reply = queued_stop_reply (ptid);
4725 if (stop_reply != NULL)
4726 return process_stop_reply (stop_reply, status);
4728 if (rs->cached_wait_status)
4729 /* Use the cached wait status, but only once. */
4730 rs->cached_wait_status = 0;
4735 if (!target_is_async_p ())
4737 ofunc = signal (SIGINT, remote_interrupt);
4738 /* If the user hit C-c before this packet, or between packets,
4739 pretend that it was hit right here. */
4743 remote_interrupt (SIGINT);
4747 /* FIXME: cagney/1999-09-27: If we're in async mode we should
4748 _never_ wait for ever -> test on target_is_async_p().
4749 However, before we do that we need to ensure that the caller
4750 knows how to take the target into/out of async mode. */
4751 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
4752 if (!target_is_async_p ())
4753 signal (SIGINT, ofunc);
4758 remote_stopped_by_watchpoint_p = 0;
4760 /* We got something. */
4761 rs->waiting_for_stop_reply = 0;
4765 case 'E': /* Error of some sort. */
4766 /* We're out of sync with the target now. Did it continue or
4767 not? Not is more likely, so report a stop. */
4768 warning (_("Remote failure reply: %s"), buf);
4769 status->kind = TARGET_WAITKIND_STOPPED;
4770 status->value.sig = TARGET_SIGNAL_0;
4772 case 'F': /* File-I/O request. */
4773 remote_fileio_request (buf);
4775 case 'T': case 'S': case 'X': case 'W':
4777 struct stop_reply *stop_reply;
4778 struct cleanup *old_chain;
4780 stop_reply = stop_reply_xmalloc ();
4781 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4782 remote_parse_stop_reply (buf, stop_reply);
4783 discard_cleanups (old_chain);
4784 event_ptid = process_stop_reply (stop_reply, status);
4787 case 'O': /* Console output. */
4788 remote_console_output (buf + 1);
4790 /* The target didn't really stop; keep waiting. */
4791 rs->waiting_for_stop_reply = 1;
4795 if (last_sent_signal != TARGET_SIGNAL_0)
4797 /* Zero length reply means that we tried 'S' or 'C' and the
4798 remote system doesn't support it. */
4799 target_terminal_ours_for_output ();
4801 ("Can't send signals to this remote system. %s not sent.\n",
4802 target_signal_to_name (last_sent_signal));
4803 last_sent_signal = TARGET_SIGNAL_0;
4804 target_terminal_inferior ();
4806 strcpy ((char *) buf, last_sent_step ? "s" : "c");
4807 putpkt ((char *) buf);
4809 /* We just told the target to resume, so a stop reply is in
4811 rs->waiting_for_stop_reply = 1;
4814 /* else fallthrough */
4816 warning (_("Invalid remote reply: %s"), buf);
4818 rs->waiting_for_stop_reply = 1;
4822 if (status->kind == TARGET_WAITKIND_IGNORE)
4824 /* Nothing interesting happened. If we're doing a non-blocking
4825 poll, we're done. Otherwise, go back to waiting. */
4826 if (options & TARGET_WNOHANG)
4827 return minus_one_ptid;
4831 else if (status->kind != TARGET_WAITKIND_EXITED
4832 && status->kind != TARGET_WAITKIND_SIGNALLED)
4834 if (!ptid_equal (event_ptid, null_ptid))
4835 record_currthread (event_ptid);
4837 event_ptid = inferior_ptid;
4840 /* A process exit. Invalidate our notion of current thread. */
4841 record_currthread (minus_one_ptid);
4846 /* Wait until the remote machine stops, then return, storing status in
4847 STATUS just as `wait' would. */
4850 remote_wait (struct target_ops *ops,
4851 ptid_t ptid, struct target_waitstatus *status, int options)
4856 event_ptid = remote_wait_ns (ptid, status, options);
4858 event_ptid = remote_wait_as (ptid, status, options);
4860 if (target_can_async_p ())
4862 /* If there are are events left in the queue tell the event loop
4864 if (stop_reply_queue)
4865 mark_async_event_handler (remote_async_inferior_event_token);
4871 /* Fetch a single register using a 'p' packet. */
4874 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
4876 struct remote_state *rs = get_remote_state ();
4878 char regp[MAX_REGISTER_SIZE];
4881 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
4884 if (reg->pnum == -1)
4889 p += hexnumstr (p, reg->pnum);
4891 remote_send (&rs->buf, &rs->buf_size);
4895 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
4899 case PACKET_UNKNOWN:
4902 error (_("Could not fetch register \"%s\""),
4903 gdbarch_register_name (get_regcache_arch (regcache), reg->regnum));
4906 /* If this register is unfetchable, tell the regcache. */
4909 regcache_raw_supply (regcache, reg->regnum, NULL);
4913 /* Otherwise, parse and supply the value. */
4919 error (_("fetch_register_using_p: early buf termination"));
4921 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
4924 regcache_raw_supply (regcache, reg->regnum, regp);
4928 /* Fetch the registers included in the target's 'g' packet. */
4931 send_g_packet (void)
4933 struct remote_state *rs = get_remote_state ();
4938 sprintf (rs->buf, "g");
4939 remote_send (&rs->buf, &rs->buf_size);
4941 /* We can get out of synch in various cases. If the first character
4942 in the buffer is not a hex character, assume that has happened
4943 and try to fetch another packet to read. */
4944 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
4945 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
4946 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
4947 && rs->buf[0] != 'x') /* New: unavailable register value. */
4950 fprintf_unfiltered (gdb_stdlog,
4951 "Bad register packet; fetching a new packet\n");
4952 getpkt (&rs->buf, &rs->buf_size, 0);
4955 buf_len = strlen (rs->buf);
4957 /* Sanity check the received packet. */
4958 if (buf_len % 2 != 0)
4959 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
4965 process_g_packet (struct regcache *regcache)
4967 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4968 struct remote_state *rs = get_remote_state ();
4969 struct remote_arch_state *rsa = get_remote_arch_state ();
4974 buf_len = strlen (rs->buf);
4976 /* Further sanity checks, with knowledge of the architecture. */
4977 if (buf_len > 2 * rsa->sizeof_g_packet)
4978 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
4980 /* Save the size of the packet sent to us by the target. It is used
4981 as a heuristic when determining the max size of packets that the
4982 target can safely receive. */
4983 if (rsa->actual_register_packet_size == 0)
4984 rsa->actual_register_packet_size = buf_len;
4986 /* If this is smaller than we guessed the 'g' packet would be,
4987 update our records. A 'g' reply that doesn't include a register's
4988 value implies either that the register is not available, or that
4989 the 'p' packet must be used. */
4990 if (buf_len < 2 * rsa->sizeof_g_packet)
4992 rsa->sizeof_g_packet = buf_len / 2;
4994 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
4996 if (rsa->regs[i].pnum == -1)
4999 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
5000 rsa->regs[i].in_g_packet = 0;
5002 rsa->regs[i].in_g_packet = 1;
5006 regs = alloca (rsa->sizeof_g_packet);
5008 /* Unimplemented registers read as all bits zero. */
5009 memset (regs, 0, rsa->sizeof_g_packet);
5011 /* Reply describes registers byte by byte, each byte encoded as two
5012 hex characters. Suck them all up, then supply them to the
5013 register cacheing/storage mechanism. */
5016 for (i = 0; i < rsa->sizeof_g_packet; i++)
5018 if (p[0] == 0 || p[1] == 0)
5019 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
5020 internal_error (__FILE__, __LINE__,
5021 "unexpected end of 'g' packet reply");
5023 if (p[0] == 'x' && p[1] == 'x')
5024 regs[i] = 0; /* 'x' */
5026 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
5032 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
5034 struct packet_reg *r = &rsa->regs[i];
5037 if (r->offset * 2 >= strlen (rs->buf))
5038 /* This shouldn't happen - we adjusted in_g_packet above. */
5039 internal_error (__FILE__, __LINE__,
5040 "unexpected end of 'g' packet reply");
5041 else if (rs->buf[r->offset * 2] == 'x')
5043 gdb_assert (r->offset * 2 < strlen (rs->buf));
5044 /* The register isn't available, mark it as such (at
5045 the same time setting the value to zero). */
5046 regcache_raw_supply (regcache, r->regnum, NULL);
5049 regcache_raw_supply (regcache, r->regnum,
5057 fetch_registers_using_g (struct regcache *regcache)
5060 process_g_packet (regcache);
5064 remote_fetch_registers (struct target_ops *ops,
5065 struct regcache *regcache, int regnum)
5067 struct remote_state *rs = get_remote_state ();
5068 struct remote_arch_state *rsa = get_remote_arch_state ();
5071 set_general_thread (inferior_ptid);
5075 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5076 gdb_assert (reg != NULL);
5078 /* If this register might be in the 'g' packet, try that first -
5079 we are likely to read more than one register. If this is the
5080 first 'g' packet, we might be overly optimistic about its
5081 contents, so fall back to 'p'. */
5082 if (reg->in_g_packet)
5084 fetch_registers_using_g (regcache);
5085 if (reg->in_g_packet)
5089 if (fetch_register_using_p (regcache, reg))
5092 /* This register is not available. */
5093 regcache_raw_supply (regcache, reg->regnum, NULL);
5098 fetch_registers_using_g (regcache);
5100 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5101 if (!rsa->regs[i].in_g_packet)
5102 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
5104 /* This register is not available. */
5105 regcache_raw_supply (regcache, i, NULL);
5109 /* Prepare to store registers. Since we may send them all (using a
5110 'G' request), we have to read out the ones we don't want to change
5114 remote_prepare_to_store (struct regcache *regcache)
5116 struct remote_arch_state *rsa = get_remote_arch_state ();
5118 gdb_byte buf[MAX_REGISTER_SIZE];
5120 /* Make sure the entire registers array is valid. */
5121 switch (remote_protocol_packets[PACKET_P].support)
5123 case PACKET_DISABLE:
5124 case PACKET_SUPPORT_UNKNOWN:
5125 /* Make sure all the necessary registers are cached. */
5126 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5127 if (rsa->regs[i].in_g_packet)
5128 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5135 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
5136 packet was not recognized. */
5139 store_register_using_P (const struct regcache *regcache, struct packet_reg *reg)
5141 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5142 struct remote_state *rs = get_remote_state ();
5143 struct remote_arch_state *rsa = get_remote_arch_state ();
5144 /* Try storing a single register. */
5145 char *buf = rs->buf;
5146 gdb_byte regp[MAX_REGISTER_SIZE];
5149 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
5152 if (reg->pnum == -1)
5155 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5156 p = buf + strlen (buf);
5157 regcache_raw_collect (regcache, reg->regnum, regp);
5158 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
5159 remote_send (&rs->buf, &rs->buf_size);
5161 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
5166 error (_("Could not write register \"%s\""),
5167 gdbarch_register_name (gdbarch, reg->regnum));
5168 case PACKET_UNKNOWN:
5171 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
5175 /* Store register REGNUM, or all registers if REGNUM == -1, from the
5176 contents of the register cache buffer. FIXME: ignores errors. */
5179 store_registers_using_G (const struct regcache *regcache)
5181 struct remote_state *rs = get_remote_state ();
5182 struct remote_arch_state *rsa = get_remote_arch_state ();
5186 /* Extract all the registers in the regcache copying them into a
5190 regs = alloca (rsa->sizeof_g_packet);
5191 memset (regs, 0, rsa->sizeof_g_packet);
5192 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5194 struct packet_reg *r = &rsa->regs[i];
5196 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
5200 /* Command describes registers byte by byte,
5201 each byte encoded as two hex characters. */
5204 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
5206 bin2hex (regs, p, rsa->sizeof_g_packet);
5207 remote_send (&rs->buf, &rs->buf_size);
5210 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
5211 of the register cache buffer. FIXME: ignores errors. */
5214 remote_store_registers (struct target_ops *ops,
5215 struct regcache *regcache, int regnum)
5217 struct remote_state *rs = get_remote_state ();
5218 struct remote_arch_state *rsa = get_remote_arch_state ();
5221 set_general_thread (inferior_ptid);
5225 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5226 gdb_assert (reg != NULL);
5228 /* Always prefer to store registers using the 'P' packet if
5229 possible; we often change only a small number of registers.
5230 Sometimes we change a larger number; we'd need help from a
5231 higher layer to know to use 'G'. */
5232 if (store_register_using_P (regcache, reg))
5235 /* For now, don't complain if we have no way to write the
5236 register. GDB loses track of unavailable registers too
5237 easily. Some day, this may be an error. We don't have
5238 any way to read the register, either... */
5239 if (!reg->in_g_packet)
5242 store_registers_using_G (regcache);
5246 store_registers_using_G (regcache);
5248 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5249 if (!rsa->regs[i].in_g_packet)
5250 if (!store_register_using_P (regcache, &rsa->regs[i]))
5251 /* See above for why we do not issue an error here. */
5256 /* Return the number of hex digits in num. */
5259 hexnumlen (ULONGEST num)
5263 for (i = 0; num != 0; i++)
5269 /* Set BUF to the minimum number of hex digits representing NUM. */
5272 hexnumstr (char *buf, ULONGEST num)
5274 int len = hexnumlen (num);
5275 return hexnumnstr (buf, num, len);
5279 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
5282 hexnumnstr (char *buf, ULONGEST num, int width)
5288 for (i = width - 1; i >= 0; i--)
5290 buf[i] = "0123456789abcdef"[(num & 0xf)];
5297 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
5300 remote_address_masked (CORE_ADDR addr)
5302 int address_size = remote_address_size;
5303 /* If "remoteaddresssize" was not set, default to target address size. */
5305 address_size = gdbarch_addr_bit (target_gdbarch);
5307 if (address_size > 0
5308 && address_size < (sizeof (ULONGEST) * 8))
5310 /* Only create a mask when that mask can safely be constructed
5311 in a ULONGEST variable. */
5313 mask = (mask << address_size) - 1;
5319 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
5320 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
5321 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
5322 (which may be more than *OUT_LEN due to escape characters). The
5323 total number of bytes in the output buffer will be at most
5327 remote_escape_output (const gdb_byte *buffer, int len,
5328 gdb_byte *out_buf, int *out_len,
5331 int input_index, output_index;
5334 for (input_index = 0; input_index < len; input_index++)
5336 gdb_byte b = buffer[input_index];
5338 if (b == '$' || b == '#' || b == '}')
5340 /* These must be escaped. */
5341 if (output_index + 2 > out_maxlen)
5343 out_buf[output_index++] = '}';
5344 out_buf[output_index++] = b ^ 0x20;
5348 if (output_index + 1 > out_maxlen)
5350 out_buf[output_index++] = b;
5354 *out_len = input_index;
5355 return output_index;
5358 /* Convert BUFFER, escaped data LEN bytes long, into binary data
5359 in OUT_BUF. Return the number of bytes written to OUT_BUF.
5360 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
5362 This function reverses remote_escape_output. It allows more
5363 escaped characters than that function does, in particular because
5364 '*' must be escaped to avoid the run-length encoding processing
5365 in reading packets. */
5368 remote_unescape_input (const gdb_byte *buffer, int len,
5369 gdb_byte *out_buf, int out_maxlen)
5371 int input_index, output_index;
5376 for (input_index = 0; input_index < len; input_index++)
5378 gdb_byte b = buffer[input_index];
5380 if (output_index + 1 > out_maxlen)
5382 warning (_("Received too much data from remote target;"
5383 " ignoring overflow."));
5384 return output_index;
5389 out_buf[output_index++] = b ^ 0x20;
5395 out_buf[output_index++] = b;
5399 error (_("Unmatched escape character in target response."));
5401 return output_index;
5404 /* Determine whether the remote target supports binary downloading.
5405 This is accomplished by sending a no-op memory write of zero length
5406 to the target at the specified address. It does not suffice to send
5407 the whole packet, since many stubs strip the eighth bit and
5408 subsequently compute a wrong checksum, which causes real havoc with
5411 NOTE: This can still lose if the serial line is not eight-bit
5412 clean. In cases like this, the user should clear "remote
5416 check_binary_download (CORE_ADDR addr)
5418 struct remote_state *rs = get_remote_state ();
5420 switch (remote_protocol_packets[PACKET_X].support)
5422 case PACKET_DISABLE:
5426 case PACKET_SUPPORT_UNKNOWN:
5432 p += hexnumstr (p, (ULONGEST) addr);
5434 p += hexnumstr (p, (ULONGEST) 0);
5438 putpkt_binary (rs->buf, (int) (p - rs->buf));
5439 getpkt (&rs->buf, &rs->buf_size, 0);
5441 if (rs->buf[0] == '\0')
5444 fprintf_unfiltered (gdb_stdlog,
5445 "binary downloading NOT suppported by target\n");
5446 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
5451 fprintf_unfiltered (gdb_stdlog,
5452 "binary downloading suppported by target\n");
5453 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
5460 /* Write memory data directly to the remote machine.
5461 This does not inform the data cache; the data cache uses this.
5462 HEADER is the starting part of the packet.
5463 MEMADDR is the address in the remote memory space.
5464 MYADDR is the address of the buffer in our space.
5465 LEN is the number of bytes.
5466 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
5467 should send data as binary ('X'), or hex-encoded ('M').
5469 The function creates packet of the form
5470 <HEADER><ADDRESS>,<LENGTH>:<DATA>
5472 where encoding of <DATA> is termined by PACKET_FORMAT.
5474 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
5477 Returns the number of bytes transferred, or 0 (setting errno) for
5478 error. Only transfer a single packet. */
5481 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
5482 const gdb_byte *myaddr, int len,
5483 char packet_format, int use_length)
5485 struct remote_state *rs = get_remote_state ();
5495 if (packet_format != 'X' && packet_format != 'M')
5496 internal_error (__FILE__, __LINE__,
5497 "remote_write_bytes_aux: bad packet format");
5502 payload_size = get_memory_write_packet_size ();
5504 /* The packet buffer will be large enough for the payload;
5505 get_memory_packet_size ensures this. */
5508 /* Compute the size of the actual payload by subtracting out the
5509 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
5511 payload_size -= strlen ("$,:#NN");
5513 /* The comma won't be used. */
5515 header_length = strlen (header);
5516 payload_size -= header_length;
5517 payload_size -= hexnumlen (memaddr);
5519 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
5521 strcat (rs->buf, header);
5522 p = rs->buf + strlen (header);
5524 /* Compute a best guess of the number of bytes actually transfered. */
5525 if (packet_format == 'X')
5527 /* Best guess at number of bytes that will fit. */
5528 todo = min (len, payload_size);
5530 payload_size -= hexnumlen (todo);
5531 todo = min (todo, payload_size);
5535 /* Num bytes that will fit. */
5536 todo = min (len, payload_size / 2);
5538 payload_size -= hexnumlen (todo);
5539 todo = min (todo, payload_size / 2);
5543 internal_error (__FILE__, __LINE__,
5544 _("minumum packet size too small to write data"));
5546 /* If we already need another packet, then try to align the end
5547 of this packet to a useful boundary. */
5548 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
5549 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
5551 /* Append "<memaddr>". */
5552 memaddr = remote_address_masked (memaddr);
5553 p += hexnumstr (p, (ULONGEST) memaddr);
5560 /* Append <len>. Retain the location/size of <len>. It may need to
5561 be adjusted once the packet body has been created. */
5563 plenlen = hexnumstr (p, (ULONGEST) todo);
5571 /* Append the packet body. */
5572 if (packet_format == 'X')
5574 /* Binary mode. Send target system values byte by byte, in
5575 increasing byte addresses. Only escape certain critical
5577 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
5580 /* If not all TODO bytes fit, then we'll need another packet. Make
5581 a second try to keep the end of the packet aligned. Don't do
5582 this if the packet is tiny. */
5583 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
5587 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
5589 if (new_nr_bytes != nr_bytes)
5590 payload_length = remote_escape_output (myaddr, new_nr_bytes,
5595 p += payload_length;
5596 if (use_length && nr_bytes < todo)
5598 /* Escape chars have filled up the buffer prematurely,
5599 and we have actually sent fewer bytes than planned.
5600 Fix-up the length field of the packet. Use the same
5601 number of characters as before. */
5602 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
5603 *plen = ':'; /* overwrite \0 from hexnumnstr() */
5608 /* Normal mode: Send target system values byte by byte, in
5609 increasing byte addresses. Each byte is encoded as a two hex
5611 nr_bytes = bin2hex (myaddr, p, todo);
5615 putpkt_binary (rs->buf, (int) (p - rs->buf));
5616 getpkt (&rs->buf, &rs->buf_size, 0);
5618 if (rs->buf[0] == 'E')
5620 /* There is no correspondance between what the remote protocol
5621 uses for errors and errno codes. We would like a cleaner way
5622 of representing errors (big enough to include errno codes,
5623 bfd_error codes, and others). But for now just return EIO. */
5628 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
5629 fewer bytes than we'd planned. */
5633 /* Write memory data directly to the remote machine.
5634 This does not inform the data cache; the data cache uses this.
5635 MEMADDR is the address in the remote memory space.
5636 MYADDR is the address of the buffer in our space.
5637 LEN is the number of bytes.
5639 Returns number of bytes transferred, or 0 (setting errno) for
5640 error. Only transfer a single packet. */
5643 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
5645 char *packet_format = 0;
5647 /* Check whether the target supports binary download. */
5648 check_binary_download (memaddr);
5650 switch (remote_protocol_packets[PACKET_X].support)
5653 packet_format = "X";
5655 case PACKET_DISABLE:
5656 packet_format = "M";
5658 case PACKET_SUPPORT_UNKNOWN:
5659 internal_error (__FILE__, __LINE__,
5660 _("remote_write_bytes: bad internal state"));
5662 internal_error (__FILE__, __LINE__, _("bad switch"));
5665 return remote_write_bytes_aux (packet_format,
5666 memaddr, myaddr, len, packet_format[0], 1);
5669 /* Read memory data directly from the remote machine.
5670 This does not use the data cache; the data cache uses this.
5671 MEMADDR is the address in the remote memory space.
5672 MYADDR is the address of the buffer in our space.
5673 LEN is the number of bytes.
5675 Returns number of bytes transferred, or 0 for error. */
5677 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
5678 remote targets) shouldn't attempt to read the entire buffer.
5679 Instead it should read a single packet worth of data and then
5680 return the byte size of that packet to the caller. The caller (its
5681 caller and its callers caller ;-) already contains code for
5682 handling partial reads. */
5685 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
5687 struct remote_state *rs = get_remote_state ();
5688 int max_buf_size; /* Max size of packet output buffer. */
5694 max_buf_size = get_memory_read_packet_size ();
5695 /* The packet buffer will be large enough for the payload;
5696 get_memory_packet_size ensures this. */
5705 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
5707 /* construct "m"<memaddr>","<len>" */
5708 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
5709 memaddr = remote_address_masked (memaddr);
5712 p += hexnumstr (p, (ULONGEST) memaddr);
5714 p += hexnumstr (p, (ULONGEST) todo);
5718 getpkt (&rs->buf, &rs->buf_size, 0);
5720 if (rs->buf[0] == 'E'
5721 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
5722 && rs->buf[3] == '\0')
5724 /* There is no correspondance between what the remote
5725 protocol uses for errors and errno codes. We would like
5726 a cleaner way of representing errors (big enough to
5727 include errno codes, bfd_error codes, and others). But
5728 for now just return EIO. */
5733 /* Reply describes memory byte by byte,
5734 each byte encoded as two hex characters. */
5737 if ((i = hex2bin (p, myaddr, todo)) < todo)
5739 /* Reply is short. This means that we were able to read
5740 only part of what we wanted to. */
5741 return i + (origlen - len);
5751 /* Remote notification handler. */
5754 handle_notification (char *buf, size_t length)
5756 if (strncmp (buf, "Stop:", 5) == 0)
5758 if (pending_stop_reply)
5759 /* We've already parsed the in-flight stop-reply, but the stub
5760 for some reason thought we didn't, possibly due to timeout
5761 on its side. Just ignore it. */
5765 struct cleanup *old_chain;
5766 struct stop_reply *reply = stop_reply_xmalloc ();
5767 old_chain = make_cleanup (do_stop_reply_xfree, reply);
5769 remote_parse_stop_reply (buf + 5, reply);
5771 discard_cleanups (old_chain);
5773 /* Be careful to only set it after parsing, since an error
5774 may be thrown then. */
5775 pending_stop_reply = reply;
5777 /* Notify the event loop there's a stop reply to acknowledge
5778 and that there may be more events to fetch. */
5779 mark_async_event_handler (remote_async_get_pending_events_token);
5783 /* We ignore notifications we don't recognize, for compatibility
5784 with newer stubs. */
5789 /* Read or write LEN bytes from inferior memory at MEMADDR,
5790 transferring to or from debugger address BUFFER. Write to inferior
5791 if SHOULD_WRITE is nonzero. Returns length of data written or
5792 read; 0 for error. TARGET is unused. */
5795 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
5796 int should_write, struct mem_attrib *attrib,
5797 struct target_ops *target)
5801 set_general_thread (inferior_ptid);
5804 res = remote_write_bytes (mem_addr, buffer, mem_len);
5806 res = remote_read_bytes (mem_addr, buffer, mem_len);
5811 /* Sends a packet with content determined by the printf format string
5812 FORMAT and the remaining arguments, then gets the reply. Returns
5813 whether the packet was a success, a failure, or unknown. */
5815 static enum packet_result
5816 remote_send_printf (const char *format, ...)
5818 struct remote_state *rs = get_remote_state ();
5819 int max_size = get_remote_packet_size ();
5822 va_start (ap, format);
5825 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
5826 internal_error (__FILE__, __LINE__, "Too long remote packet.");
5828 if (putpkt (rs->buf) < 0)
5829 error (_("Communication problem with target."));
5832 getpkt (&rs->buf, &rs->buf_size, 0);
5834 return packet_check_result (rs->buf);
5838 restore_remote_timeout (void *p)
5840 int value = *(int *)p;
5841 remote_timeout = value;
5844 /* Flash writing can take quite some time. We'll set
5845 effectively infinite timeout for flash operations.
5846 In future, we'll need to decide on a better approach. */
5847 static const int remote_flash_timeout = 1000;
5850 remote_flash_erase (struct target_ops *ops,
5851 ULONGEST address, LONGEST length)
5853 int saved_remote_timeout = remote_timeout;
5854 enum packet_result ret;
5856 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5857 &saved_remote_timeout);
5858 remote_timeout = remote_flash_timeout;
5860 ret = remote_send_printf ("vFlashErase:%s,%s",
5865 case PACKET_UNKNOWN:
5866 error (_("Remote target does not support flash erase"));
5868 error (_("Error erasing flash with vFlashErase packet"));
5873 do_cleanups (back_to);
5877 remote_flash_write (struct target_ops *ops,
5878 ULONGEST address, LONGEST length,
5879 const gdb_byte *data)
5881 int saved_remote_timeout = remote_timeout;
5883 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5884 &saved_remote_timeout);
5886 remote_timeout = remote_flash_timeout;
5887 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
5888 do_cleanups (back_to);
5894 remote_flash_done (struct target_ops *ops)
5896 int saved_remote_timeout = remote_timeout;
5898 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5899 &saved_remote_timeout);
5901 remote_timeout = remote_flash_timeout;
5902 ret = remote_send_printf ("vFlashDone");
5903 do_cleanups (back_to);
5907 case PACKET_UNKNOWN:
5908 error (_("Remote target does not support vFlashDone"));
5910 error (_("Error finishing flash operation"));
5917 remote_files_info (struct target_ops *ignore)
5919 puts_filtered ("Debugging a target over a serial line.\n");
5922 /* Stuff for dealing with the packets which are part of this protocol.
5923 See comment at top of file for details. */
5925 /* Read a single character from the remote end. */
5928 readchar (int timeout)
5932 ch = serial_readchar (remote_desc, timeout);
5937 switch ((enum serial_rc) ch)
5941 error (_("Remote connection closed"));
5944 perror_with_name (_("Remote communication error"));
5946 case SERIAL_TIMEOUT:
5952 /* Send the command in *BUF to the remote machine, and read the reply
5953 into *BUF. Report an error if we get an error reply. Resize
5954 *BUF using xrealloc if necessary to hold the result, and update
5958 remote_send (char **buf,
5962 getpkt (buf, sizeof_buf, 0);
5964 if ((*buf)[0] == 'E')
5965 error (_("Remote failure reply: %s"), *buf);
5968 /* Return a pointer to an xmalloc'ed string representing an escaped
5969 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
5970 etc. The caller is responsible for releasing the returned
5974 escape_buffer (const char *buf, int n)
5976 struct cleanup *old_chain;
5977 struct ui_file *stb;
5981 stb = mem_fileopen ();
5982 old_chain = make_cleanup_ui_file_delete (stb);
5984 fputstrn_unfiltered (buf, n, 0, stb);
5985 str = ui_file_xstrdup (stb, &length);
5986 do_cleanups (old_chain);
5990 /* Display a null-terminated packet on stdout, for debugging, using C
5994 print_packet (char *buf)
5996 puts_filtered ("\"");
5997 fputstr_filtered (buf, '"', gdb_stdout);
5998 puts_filtered ("\"");
6004 return putpkt_binary (buf, strlen (buf));
6007 /* Send a packet to the remote machine, with error checking. The data
6008 of the packet is in BUF. The string in BUF can be at most
6009 get_remote_packet_size () - 5 to account for the $, # and checksum,
6010 and for a possible /0 if we are debugging (remote_debug) and want
6011 to print the sent packet as a string. */
6014 putpkt_binary (char *buf, int cnt)
6016 struct remote_state *rs = get_remote_state ();
6018 unsigned char csum = 0;
6019 char *buf2 = alloca (cnt + 6);
6025 /* Catch cases like trying to read memory or listing threads while
6026 we're waiting for a stop reply. The remote server wouldn't be
6027 ready to handle this request, so we'd hang and timeout. We don't
6028 have to worry about this in synchronous mode, because in that
6029 case it's not possible to issue a command while the target is
6030 running. This is not a problem in non-stop mode, because in that
6031 case, the stub is always ready to process serial input. */
6032 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
6033 error (_("Cannot execute this command while the target is running."));
6035 /* We're sending out a new packet. Make sure we don't look at a
6036 stale cached response. */
6037 rs->cached_wait_status = 0;
6039 /* Copy the packet into buffer BUF2, encapsulating it
6040 and giving it a checksum. */
6045 for (i = 0; i < cnt; i++)
6051 *p++ = tohex ((csum >> 4) & 0xf);
6052 *p++ = tohex (csum & 0xf);
6054 /* Send it over and over until we get a positive ack. */
6058 int started_error_output = 0;
6062 struct cleanup *old_chain;
6066 str = escape_buffer (buf2, p - buf2);
6067 old_chain = make_cleanup (xfree, str);
6068 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
6069 gdb_flush (gdb_stdlog);
6070 do_cleanups (old_chain);
6072 if (serial_write (remote_desc, buf2, p - buf2))
6073 perror_with_name (_("putpkt: write failed"));
6075 /* If this is a no acks version of the remote protocol, send the
6076 packet and move on. */
6080 /* Read until either a timeout occurs (-2) or '+' is read.
6081 Handle any notification that arrives in the mean time. */
6084 ch = readchar (remote_timeout);
6092 case SERIAL_TIMEOUT:
6095 if (started_error_output)
6097 putchar_unfiltered ('\n');
6098 started_error_output = 0;
6107 fprintf_unfiltered (gdb_stdlog, "Ack\n");
6111 fprintf_unfiltered (gdb_stdlog, "Nak\n");
6112 case SERIAL_TIMEOUT:
6116 break; /* Retransmit buffer. */
6120 fprintf_unfiltered (gdb_stdlog,
6121 "Packet instead of Ack, ignoring it\n");
6122 /* It's probably an old response sent because an ACK
6123 was lost. Gobble up the packet and ack it so it
6124 doesn't get retransmitted when we resend this
6127 serial_write (remote_desc, "+", 1);
6128 continue; /* Now, go look for +. */
6135 /* If we got a notification, handle it, and go back to looking
6137 /* We've found the start of a notification. Now
6138 collect the data. */
6139 val = read_frame (&rs->buf, &rs->buf_size);
6144 struct cleanup *old_chain;
6147 str = escape_buffer (rs->buf, val);
6148 old_chain = make_cleanup (xfree, str);
6149 fprintf_unfiltered (gdb_stdlog,
6150 " Notification received: %s\n",
6152 do_cleanups (old_chain);
6154 handle_notification (rs->buf, val);
6155 /* We're in sync now, rewait for the ack. */
6162 if (!started_error_output)
6164 started_error_output = 1;
6165 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6167 fputc_unfiltered (ch & 0177, gdb_stdlog);
6168 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
6177 if (!started_error_output)
6179 started_error_output = 1;
6180 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6182 fputc_unfiltered (ch & 0177, gdb_stdlog);
6186 break; /* Here to retransmit. */
6190 /* This is wrong. If doing a long backtrace, the user should be
6191 able to get out next time we call QUIT, without anything as
6192 violent as interrupt_query. If we want to provide a way out of
6193 here without getting to the next QUIT, it should be based on
6194 hitting ^C twice as in remote_wait. */
6205 /* Come here after finding the start of a frame when we expected an
6206 ack. Do our best to discard the rest of this packet. */
6215 c = readchar (remote_timeout);
6218 case SERIAL_TIMEOUT:
6219 /* Nothing we can do. */
6222 /* Discard the two bytes of checksum and stop. */
6223 c = readchar (remote_timeout);
6225 c = readchar (remote_timeout);
6228 case '*': /* Run length encoding. */
6229 /* Discard the repeat count. */
6230 c = readchar (remote_timeout);
6235 /* A regular character. */
6241 /* Come here after finding the start of the frame. Collect the rest
6242 into *BUF, verifying the checksum, length, and handling run-length
6243 compression. NUL terminate the buffer. If there is not enough room,
6244 expand *BUF using xrealloc.
6246 Returns -1 on error, number of characters in buffer (ignoring the
6247 trailing NULL) on success. (could be extended to return one of the
6248 SERIAL status indications). */
6251 read_frame (char **buf_p,
6258 struct remote_state *rs = get_remote_state ();
6265 c = readchar (remote_timeout);
6268 case SERIAL_TIMEOUT:
6270 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
6274 fputs_filtered ("Saw new packet start in middle of old one\n",
6276 return -1; /* Start a new packet, count retries. */
6279 unsigned char pktcsum;
6285 check_0 = readchar (remote_timeout);
6287 check_1 = readchar (remote_timeout);
6289 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
6292 fputs_filtered ("Timeout in checksum, retrying\n",
6296 else if (check_0 < 0 || check_1 < 0)
6299 fputs_filtered ("Communication error in checksum\n",
6304 /* Don't recompute the checksum; with no ack packets we
6305 don't have any way to indicate a packet retransmission
6310 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
6311 if (csum == pktcsum)
6316 struct cleanup *old_chain;
6319 str = escape_buffer (buf, bc);
6320 old_chain = make_cleanup (xfree, str);
6321 fprintf_unfiltered (gdb_stdlog,
6323 Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
6324 pktcsum, csum, str);
6325 do_cleanups (old_chain);
6327 /* Number of characters in buffer ignoring trailing
6331 case '*': /* Run length encoding. */
6336 c = readchar (remote_timeout);
6338 repeat = c - ' ' + 3; /* Compute repeat count. */
6340 /* The character before ``*'' is repeated. */
6342 if (repeat > 0 && repeat <= 255 && bc > 0)
6344 if (bc + repeat - 1 >= *sizeof_buf - 1)
6346 /* Make some more room in the buffer. */
6347 *sizeof_buf += repeat;
6348 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6352 memset (&buf[bc], buf[bc - 1], repeat);
6358 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
6362 if (bc >= *sizeof_buf - 1)
6364 /* Make some more room in the buffer. */
6366 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6377 /* Read a packet from the remote machine, with error checking, and
6378 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6379 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6380 rather than timing out; this is used (in synchronous mode) to wait
6381 for a target that is is executing user code to stop. */
6382 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
6383 don't have to change all the calls to getpkt to deal with the
6384 return value, because at the moment I don't know what the right
6385 thing to do it for those. */
6393 timed_out = getpkt_sane (buf, sizeof_buf, forever);
6397 /* Read a packet from the remote machine, with error checking, and
6398 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6399 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6400 rather than timing out; this is used (in synchronous mode) to wait
6401 for a target that is is executing user code to stop. If FOREVER ==
6402 0, this function is allowed to time out gracefully and return an
6403 indication of this to the caller. Otherwise return the number of
6404 bytes read. If EXPECTING_NOTIF, consider receiving a notification
6405 enough reason to return to the caller. */
6408 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
6409 int expecting_notif)
6411 struct remote_state *rs = get_remote_state ();
6417 /* We're reading a new response. Make sure we don't look at a
6418 previously cached response. */
6419 rs->cached_wait_status = 0;
6421 strcpy (*buf, "timeout");
6424 timeout = watchdog > 0 ? watchdog : -1;
6425 else if (expecting_notif)
6426 timeout = 0; /* There should already be a char in the buffer. If
6429 timeout = remote_timeout;
6433 /* Process any number of notifications, and then return when
6437 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
6439 for (tries = 1; tries <= MAX_TRIES; tries++)
6441 /* This can loop forever if the remote side sends us
6442 characters continuously, but if it pauses, we'll get
6443 SERIAL_TIMEOUT from readchar because of timeout. Then
6444 we'll count that as a retry.
6446 Note that even when forever is set, we will only wait
6447 forever prior to the start of a packet. After that, we
6448 expect characters to arrive at a brisk pace. They should
6449 show up within remote_timeout intervals. */
6451 c = readchar (timeout);
6452 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
6454 if (c == SERIAL_TIMEOUT)
6456 if (expecting_notif)
6457 return -1; /* Don't complain, it's normal to not get
6458 anything in this case. */
6460 if (forever) /* Watchdog went off? Kill the target. */
6464 error (_("Watchdog timeout has expired. Target detached."));
6467 fputs_filtered ("Timed out.\n", gdb_stdlog);
6471 /* We've found the start of a packet or notification.
6472 Now collect the data. */
6473 val = read_frame (buf, sizeof_buf);
6478 serial_write (remote_desc, "-", 1);
6481 if (tries > MAX_TRIES)
6483 /* We have tried hard enough, and just can't receive the
6484 packet/notification. Give up. */
6485 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
6487 /* Skip the ack char if we're in no-ack mode. */
6488 if (!rs->noack_mode)
6489 serial_write (remote_desc, "+", 1);
6493 /* If we got an ordinary packet, return that to our caller. */
6498 struct cleanup *old_chain;
6501 str = escape_buffer (*buf, val);
6502 old_chain = make_cleanup (xfree, str);
6503 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
6504 do_cleanups (old_chain);
6507 /* Skip the ack char if we're in no-ack mode. */
6508 if (!rs->noack_mode)
6509 serial_write (remote_desc, "+", 1);
6513 /* If we got a notification, handle it, and go back to looking
6517 gdb_assert (c == '%');
6521 struct cleanup *old_chain;
6524 str = escape_buffer (*buf, val);
6525 old_chain = make_cleanup (xfree, str);
6526 fprintf_unfiltered (gdb_stdlog,
6527 " Notification received: %s\n",
6529 do_cleanups (old_chain);
6532 handle_notification (*buf, val);
6534 /* Notifications require no acknowledgement. */
6536 if (expecting_notif)
6543 getpkt_sane (char **buf, long *sizeof_buf, int forever)
6545 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
6549 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
6551 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
6556 remote_kill (struct target_ops *ops)
6558 /* Use catch_errors so the user can quit from gdb even when we
6559 aren't on speaking terms with the remote system. */
6560 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
6562 /* Don't wait for it to die. I'm not really sure it matters whether
6563 we do or not. For the existing stubs, kill is a noop. */
6564 target_mourn_inferior ();
6568 remote_vkill (int pid, struct remote_state *rs)
6570 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6573 /* Tell the remote target to detach. */
6574 sprintf (rs->buf, "vKill;%x", pid);
6576 getpkt (&rs->buf, &rs->buf_size, 0);
6578 if (packet_ok (rs->buf,
6579 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
6581 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6588 extended_remote_kill (struct target_ops *ops)
6591 int pid = ptid_get_pid (inferior_ptid);
6592 struct remote_state *rs = get_remote_state ();
6594 res = remote_vkill (pid, rs);
6595 if (res == -1 && !remote_multi_process_p (rs))
6597 /* Don't try 'k' on a multi-process aware stub -- it has no way
6598 to specify the pid. */
6602 getpkt (&rs->buf, &rs->buf_size, 0);
6603 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
6606 /* Don't wait for it to die. I'm not really sure it matters whether
6607 we do or not. For the existing stubs, kill is a noop. */
6613 error (_("Can't kill process"));
6615 target_mourn_inferior ();
6619 remote_mourn (struct target_ops *ops)
6621 remote_mourn_1 (ops);
6624 /* Worker function for remote_mourn. */
6626 remote_mourn_1 (struct target_ops *target)
6628 unpush_target (target);
6630 /* remote_close takes care of doing most of the clean up. */
6631 generic_mourn_inferior ();
6635 extended_remote_mourn_1 (struct target_ops *target)
6637 struct remote_state *rs = get_remote_state ();
6639 /* In case we got here due to an error, but we're going to stay
6641 rs->waiting_for_stop_reply = 0;
6643 /* We're no longer interested in these events. */
6644 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
6646 /* If the current general thread belonged to the process we just
6647 detached from or has exited, the remote side current general
6648 thread becomes undefined. Considering a case like this:
6650 - We just got here due to a detach.
6651 - The process that we're detaching from happens to immediately
6652 report a global breakpoint being hit in non-stop mode, in the
6653 same thread we had selected before.
6654 - GDB attaches to this process again.
6655 - This event happens to be the next event we handle.
6657 GDB would consider that the current general thread didn't need to
6658 be set on the stub side (with Hg), since for all it knew,
6659 GENERAL_THREAD hadn't changed.
6661 Notice that although in all-stop mode, the remote server always
6662 sets the current thread to the thread reporting the stop event,
6663 that doesn't happen in non-stop mode; in non-stop, the stub *must
6664 not* change the current thread when reporting a breakpoint hit,
6665 due to the decoupling of event reporting and event handling.
6667 To keep things simple, we always invalidate our notion of the
6669 record_currthread (minus_one_ptid);
6671 /* Unlike "target remote", we do not want to unpush the target; then
6672 the next time the user says "run", we won't be connected. */
6674 /* Call common code to mark the inferior as not running. */
6675 generic_mourn_inferior ();
6677 if (!have_inferiors ())
6679 if (!remote_multi_process_p (rs))
6681 /* Check whether the target is running now - some remote stubs
6682 automatically restart after kill. */
6684 getpkt (&rs->buf, &rs->buf_size, 0);
6686 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
6688 /* Assume that the target has been restarted. Set inferior_ptid
6689 so that bits of core GDB realizes there's something here, e.g.,
6690 so that the user can say "kill" again. */
6691 inferior_ptid = magic_null_ptid;
6695 /* Mark this (still pushed) target as not executable until we
6697 target_mark_exited (target);
6701 /* Always remove execution if this was the last process. */
6702 target_mark_exited (target);
6707 extended_remote_mourn (struct target_ops *ops)
6709 extended_remote_mourn_1 (ops);
6713 extended_remote_run (char *args)
6715 struct remote_state *rs = get_remote_state ();
6719 /* If the user has disabled vRun support, or we have detected that
6720 support is not available, do not try it. */
6721 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6724 strcpy (rs->buf, "vRun;");
6725 len = strlen (rs->buf);
6727 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
6728 error (_("Remote file name too long for run packet"));
6729 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
6731 gdb_assert (args != NULL);
6734 struct cleanup *back_to;
6738 argv = gdb_buildargv (args);
6739 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
6740 for (i = 0; argv[i] != NULL; i++)
6742 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
6743 error (_("Argument list too long for run packet"));
6744 rs->buf[len++] = ';';
6745 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
6747 do_cleanups (back_to);
6750 rs->buf[len++] = '\0';
6753 getpkt (&rs->buf, &rs->buf_size, 0);
6755 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
6757 /* We have a wait response; we don't need it, though. All is well. */
6760 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6761 /* It wasn't disabled before, but it is now. */
6765 if (remote_exec_file[0] == '\0')
6766 error (_("Running the default executable on the remote target failed; "
6767 "try \"set remote exec-file\"?"));
6769 error (_("Running \"%s\" on the remote target failed"),
6774 /* In the extended protocol we want to be able to do things like
6775 "run" and have them basically work as expected. So we need
6776 a special create_inferior function. We support changing the
6777 executable file and the command line arguments, but not the
6781 extended_remote_create_inferior_1 (char *exec_file, char *args,
6782 char **env, int from_tty)
6784 /* If running asynchronously, register the target file descriptor
6785 with the event loop. */
6786 if (target_can_async_p ())
6787 target_async (inferior_event_handler, 0);
6789 /* Now restart the remote server. */
6790 if (extended_remote_run (args) == -1)
6792 /* vRun was not supported. Fail if we need it to do what the
6794 if (remote_exec_file[0])
6795 error (_("Remote target does not support \"set remote exec-file\""));
6797 error (_("Remote target does not support \"set args\" or run <ARGS>"));
6799 /* Fall back to "R". */
6800 extended_remote_restart ();
6803 /* Clean up from the last time we ran, before we mark the target
6804 running again. This will mark breakpoints uninserted, and
6805 get_offsets may insert breakpoints. */
6806 init_thread_list ();
6807 init_wait_for_inferior ();
6809 /* Now mark the inferior as running before we do anything else. */
6810 inferior_ptid = magic_null_ptid;
6812 /* Now, if we have thread information, update inferior_ptid. */
6813 inferior_ptid = remote_current_thread (inferior_ptid);
6815 remote_add_inferior (ptid_get_pid (inferior_ptid), 0);
6816 add_thread_silent (inferior_ptid);
6818 /* Get updated offsets, if the stub uses qOffsets. */
6823 extended_remote_create_inferior (struct target_ops *ops,
6824 char *exec_file, char *args,
6825 char **env, int from_tty)
6827 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
6831 /* Insert a breakpoint. On targets that have software breakpoint
6832 support, we ask the remote target to do the work; on targets
6833 which don't, we insert a traditional memory breakpoint. */
6836 remote_insert_breakpoint (struct bp_target_info *bp_tgt)
6838 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
6839 If it succeeds, then set the support to PACKET_ENABLE. If it
6840 fails, and the user has explicitly requested the Z support then
6841 report an error, otherwise, mark it disabled and go on. */
6843 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
6845 CORE_ADDR addr = bp_tgt->placed_address;
6846 struct remote_state *rs;
6850 gdbarch_breakpoint_from_pc (target_gdbarch, &addr, &bpsize);
6852 rs = get_remote_state ();
6858 addr = (ULONGEST) remote_address_masked (addr);
6859 p += hexnumstr (p, addr);
6860 sprintf (p, ",%d", bpsize);
6863 getpkt (&rs->buf, &rs->buf_size, 0);
6865 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
6870 bp_tgt->placed_address = addr;
6871 bp_tgt->placed_size = bpsize;
6873 case PACKET_UNKNOWN:
6878 return memory_insert_breakpoint (bp_tgt);
6882 remote_remove_breakpoint (struct bp_target_info *bp_tgt)
6884 CORE_ADDR addr = bp_tgt->placed_address;
6885 struct remote_state *rs = get_remote_state ();
6888 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
6896 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
6897 p += hexnumstr (p, addr);
6898 sprintf (p, ",%d", bp_tgt->placed_size);
6901 getpkt (&rs->buf, &rs->buf_size, 0);
6903 return (rs->buf[0] == 'E');
6906 return memory_remove_breakpoint (bp_tgt);
6910 watchpoint_to_Z_packet (int type)
6915 return Z_PACKET_WRITE_WP;
6918 return Z_PACKET_READ_WP;
6921 return Z_PACKET_ACCESS_WP;
6924 internal_error (__FILE__, __LINE__,
6925 _("hw_bp_to_z: bad watchpoint type %d"), type);
6930 remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
6932 struct remote_state *rs = get_remote_state ();
6934 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6936 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
6939 sprintf (rs->buf, "Z%x,", packet);
6940 p = strchr (rs->buf, '\0');
6941 addr = remote_address_masked (addr);
6942 p += hexnumstr (p, (ULONGEST) addr);
6943 sprintf (p, ",%x", len);
6946 getpkt (&rs->buf, &rs->buf_size, 0);
6948 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
6951 case PACKET_UNKNOWN:
6956 internal_error (__FILE__, __LINE__,
6957 _("remote_insert_watchpoint: reached end of function"));
6962 remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
6964 struct remote_state *rs = get_remote_state ();
6966 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6968 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
6971 sprintf (rs->buf, "z%x,", packet);
6972 p = strchr (rs->buf, '\0');
6973 addr = remote_address_masked (addr);
6974 p += hexnumstr (p, (ULONGEST) addr);
6975 sprintf (p, ",%x", len);
6977 getpkt (&rs->buf, &rs->buf_size, 0);
6979 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
6982 case PACKET_UNKNOWN:
6987 internal_error (__FILE__, __LINE__,
6988 _("remote_remove_watchpoint: reached end of function"));
6992 int remote_hw_watchpoint_limit = -1;
6993 int remote_hw_breakpoint_limit = -1;
6996 remote_check_watch_resources (int type, int cnt, int ot)
6998 if (type == bp_hardware_breakpoint)
7000 if (remote_hw_breakpoint_limit == 0)
7002 else if (remote_hw_breakpoint_limit < 0)
7004 else if (cnt <= remote_hw_breakpoint_limit)
7009 if (remote_hw_watchpoint_limit == 0)
7011 else if (remote_hw_watchpoint_limit < 0)
7015 else if (cnt <= remote_hw_watchpoint_limit)
7022 remote_stopped_by_watchpoint (void)
7024 return remote_stopped_by_watchpoint_p;
7028 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
7031 if (remote_stopped_by_watchpoint ())
7033 *addr_p = remote_watch_data_address;
7042 remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
7045 struct remote_state *rs;
7048 /* The length field should be set to the size of a breakpoint
7049 instruction, even though we aren't inserting one ourselves. */
7051 gdbarch_breakpoint_from_pc
7052 (target_gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
7054 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7057 rs = get_remote_state ();
7064 addr = remote_address_masked (bp_tgt->placed_address);
7065 p += hexnumstr (p, (ULONGEST) addr);
7066 sprintf (p, ",%x", bp_tgt->placed_size);
7069 getpkt (&rs->buf, &rs->buf_size, 0);
7071 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7074 case PACKET_UNKNOWN:
7079 internal_error (__FILE__, __LINE__,
7080 _("remote_insert_hw_breakpoint: reached end of function"));
7085 remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
7088 struct remote_state *rs = get_remote_state ();
7091 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7098 addr = remote_address_masked (bp_tgt->placed_address);
7099 p += hexnumstr (p, (ULONGEST) addr);
7100 sprintf (p, ",%x", bp_tgt->placed_size);
7103 getpkt (&rs->buf, &rs->buf_size, 0);
7105 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7108 case PACKET_UNKNOWN:
7113 internal_error (__FILE__, __LINE__,
7114 _("remote_remove_hw_breakpoint: reached end of function"));
7117 /* Table used by the crc32 function to calcuate the checksum. */
7119 static unsigned long crc32_table[256] =
7122 static unsigned long
7123 crc32 (unsigned char *buf, int len, unsigned int crc)
7125 if (!crc32_table[1])
7127 /* Initialize the CRC table and the decoding table. */
7131 for (i = 0; i < 256; i++)
7133 for (c = i << 24, j = 8; j > 0; --j)
7134 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
7141 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
7147 /* compare-sections command
7149 With no arguments, compares each loadable section in the exec bfd
7150 with the same memory range on the target, and reports mismatches.
7151 Useful for verifying the image on the target against the exec file.
7152 Depends on the target understanding the new "qCRC:" request. */
7154 /* FIXME: cagney/1999-10-26: This command should be broken down into a
7155 target method (target verify memory) and generic version of the
7156 actual command. This will allow other high-level code (especially
7157 generic_load()) to make use of this target functionality. */
7160 compare_sections_command (char *args, int from_tty)
7162 struct remote_state *rs = get_remote_state ();
7164 unsigned long host_crc, target_crc;
7165 extern bfd *exec_bfd;
7166 struct cleanup *old_chain;
7169 const char *sectname;
7176 error (_("command cannot be used without an exec file"));
7177 if (!current_target.to_shortname ||
7178 strcmp (current_target.to_shortname, "remote") != 0)
7179 error (_("command can only be used with remote target"));
7181 for (s = exec_bfd->sections; s; s = s->next)
7183 if (!(s->flags & SEC_LOAD))
7184 continue; /* skip non-loadable section */
7186 size = bfd_get_section_size (s);
7188 continue; /* skip zero-length section */
7190 sectname = bfd_get_section_name (exec_bfd, s);
7191 if (args && strcmp (args, sectname) != 0)
7192 continue; /* not the section selected by user */
7194 matched = 1; /* do this section */
7196 /* FIXME: assumes lma can fit into long. */
7197 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
7198 (long) lma, (long) size);
7201 /* Be clever; compute the host_crc before waiting for target
7203 sectdata = xmalloc (size);
7204 old_chain = make_cleanup (xfree, sectdata);
7205 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
7206 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
7208 getpkt (&rs->buf, &rs->buf_size, 0);
7209 if (rs->buf[0] == 'E')
7210 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
7211 sectname, paddr (lma), paddr (lma + size));
7212 if (rs->buf[0] != 'C')
7213 error (_("remote target does not support this operation"));
7215 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
7216 target_crc = target_crc * 16 + fromhex (*tmp);
7218 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
7219 sectname, paddr (lma), paddr (lma + size));
7220 if (host_crc == target_crc)
7221 printf_filtered ("matched.\n");
7224 printf_filtered ("MIS-MATCHED!\n");
7228 do_cleanups (old_chain);
7231 warning (_("One or more sections of the remote executable does not match\n\
7232 the loaded file\n"));
7233 if (args && !matched)
7234 printf_filtered (_("No loaded section named '%s'.\n"), args);
7237 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
7238 into remote target. The number of bytes written to the remote
7239 target is returned, or -1 for error. */
7242 remote_write_qxfer (struct target_ops *ops, const char *object_name,
7243 const char *annex, const gdb_byte *writebuf,
7244 ULONGEST offset, LONGEST len,
7245 struct packet_config *packet)
7250 struct remote_state *rs = get_remote_state ();
7251 int max_size = get_memory_write_packet_size ();
7253 if (packet->support == PACKET_DISABLE)
7256 /* Insert header. */
7257 i = snprintf (rs->buf, max_size,
7258 "qXfer:%s:write:%s:%s:",
7259 object_name, annex ? annex : "",
7260 phex_nz (offset, sizeof offset));
7261 max_size -= (i + 1);
7263 /* Escape as much data as fits into rs->buf. */
7264 buf_len = remote_escape_output
7265 (writebuf, len, (rs->buf + i), &max_size, max_size);
7267 if (putpkt_binary (rs->buf, i + buf_len) < 0
7268 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7269 || packet_ok (rs->buf, packet) != PACKET_OK)
7272 unpack_varlen_hex (rs->buf, &n);
7276 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
7277 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
7278 number of bytes read is returned, or 0 for EOF, or -1 for error.
7279 The number of bytes read may be less than LEN without indicating an
7280 EOF. PACKET is checked and updated to indicate whether the remote
7281 target supports this object. */
7284 remote_read_qxfer (struct target_ops *ops, const char *object_name,
7286 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
7287 struct packet_config *packet)
7289 static char *finished_object;
7290 static char *finished_annex;
7291 static ULONGEST finished_offset;
7293 struct remote_state *rs = get_remote_state ();
7294 unsigned int total = 0;
7295 LONGEST i, n, packet_len;
7297 if (packet->support == PACKET_DISABLE)
7300 /* Check whether we've cached an end-of-object packet that matches
7302 if (finished_object)
7304 if (strcmp (object_name, finished_object) == 0
7305 && strcmp (annex ? annex : "", finished_annex) == 0
7306 && offset == finished_offset)
7309 /* Otherwise, we're now reading something different. Discard
7311 xfree (finished_object);
7312 xfree (finished_annex);
7313 finished_object = NULL;
7314 finished_annex = NULL;
7317 /* Request only enough to fit in a single packet. The actual data
7318 may not, since we don't know how much of it will need to be escaped;
7319 the target is free to respond with slightly less data. We subtract
7320 five to account for the response type and the protocol frame. */
7321 n = min (get_remote_packet_size () - 5, len);
7322 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
7323 object_name, annex ? annex : "",
7324 phex_nz (offset, sizeof offset),
7325 phex_nz (n, sizeof n));
7326 i = putpkt (rs->buf);
7331 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
7332 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
7335 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
7336 error (_("Unknown remote qXfer reply: %s"), rs->buf);
7338 /* 'm' means there is (or at least might be) more data after this
7339 batch. That does not make sense unless there's at least one byte
7340 of data in this reply. */
7341 if (rs->buf[0] == 'm' && packet_len == 1)
7342 error (_("Remote qXfer reply contained no data."));
7344 /* Got some data. */
7345 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
7347 /* 'l' is an EOF marker, possibly including a final block of data,
7348 or possibly empty. If we have the final block of a non-empty
7349 object, record this fact to bypass a subsequent partial read. */
7350 if (rs->buf[0] == 'l' && offset + i > 0)
7352 finished_object = xstrdup (object_name);
7353 finished_annex = xstrdup (annex ? annex : "");
7354 finished_offset = offset + i;
7361 remote_xfer_partial (struct target_ops *ops, enum target_object object,
7362 const char *annex, gdb_byte *readbuf,
7363 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
7365 struct remote_state *rs;
7370 set_general_thread (inferior_ptid);
7372 rs = get_remote_state ();
7374 /* Handle memory using the standard memory routines. */
7375 if (object == TARGET_OBJECT_MEMORY)
7380 /* If the remote target is connected but not running, we should
7381 pass this request down to a lower stratum (e.g. the executable
7383 if (!target_has_execution)
7386 if (writebuf != NULL)
7387 xfered = remote_write_bytes (offset, writebuf, len);
7389 xfered = remote_read_bytes (offset, readbuf, len);
7393 else if (xfered == 0 && errno == 0)
7399 /* Handle SPU memory using qxfer packets. */
7400 if (object == TARGET_OBJECT_SPU)
7403 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
7404 &remote_protocol_packets
7405 [PACKET_qXfer_spu_read]);
7407 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
7408 &remote_protocol_packets
7409 [PACKET_qXfer_spu_write]);
7412 /* Handle extra signal info using qxfer packets. */
7413 if (object == TARGET_OBJECT_SIGNAL_INFO)
7416 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
7417 &remote_protocol_packets
7418 [PACKET_qXfer_siginfo_read]);
7420 return remote_write_qxfer (ops, "siginfo", annex, writebuf, offset, len,
7421 &remote_protocol_packets
7422 [PACKET_qXfer_siginfo_write]);
7425 /* Only handle flash writes. */
7426 if (writebuf != NULL)
7432 case TARGET_OBJECT_FLASH:
7433 xfered = remote_flash_write (ops, offset, len, writebuf);
7437 else if (xfered == 0 && errno == 0)
7447 /* Map pre-existing objects onto letters. DO NOT do this for new
7448 objects!!! Instead specify new query packets. */
7451 case TARGET_OBJECT_AVR:
7455 case TARGET_OBJECT_AUXV:
7456 gdb_assert (annex == NULL);
7457 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
7458 &remote_protocol_packets[PACKET_qXfer_auxv]);
7460 case TARGET_OBJECT_AVAILABLE_FEATURES:
7461 return remote_read_qxfer
7462 (ops, "features", annex, readbuf, offset, len,
7463 &remote_protocol_packets[PACKET_qXfer_features]);
7465 case TARGET_OBJECT_LIBRARIES:
7466 return remote_read_qxfer
7467 (ops, "libraries", annex, readbuf, offset, len,
7468 &remote_protocol_packets[PACKET_qXfer_libraries]);
7470 case TARGET_OBJECT_MEMORY_MAP:
7471 gdb_assert (annex == NULL);
7472 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
7473 &remote_protocol_packets[PACKET_qXfer_memory_map]);
7475 case TARGET_OBJECT_OSDATA:
7476 /* Should only get here if we're connected. */
7477 gdb_assert (remote_desc);
7478 return remote_read_qxfer
7479 (ops, "osdata", annex, readbuf, offset, len,
7480 &remote_protocol_packets[PACKET_qXfer_osdata]);
7486 /* Note: a zero OFFSET and LEN can be used to query the minimum
7488 if (offset == 0 && len == 0)
7489 return (get_remote_packet_size ());
7490 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
7491 large enough let the caller deal with it. */
7492 if (len < get_remote_packet_size ())
7494 len = get_remote_packet_size ();
7496 /* Except for querying the minimum buffer size, target must be open. */
7498 error (_("remote query is only available after target open"));
7500 gdb_assert (annex != NULL);
7501 gdb_assert (readbuf != NULL);
7507 /* We used one buffer char for the remote protocol q command and
7508 another for the query type. As the remote protocol encapsulation
7509 uses 4 chars plus one extra in case we are debugging
7510 (remote_debug), we have PBUFZIZ - 7 left to pack the query
7513 while (annex[i] && (i < (get_remote_packet_size () - 8)))
7515 /* Bad caller may have sent forbidden characters. */
7516 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
7521 gdb_assert (annex[i] == '\0');
7523 i = putpkt (rs->buf);
7527 getpkt (&rs->buf, &rs->buf_size, 0);
7528 strcpy ((char *) readbuf, rs->buf);
7530 return strlen ((char *) readbuf);
7534 remote_search_memory (struct target_ops* ops,
7535 CORE_ADDR start_addr, ULONGEST search_space_len,
7536 const gdb_byte *pattern, ULONGEST pattern_len,
7537 CORE_ADDR *found_addrp)
7539 struct remote_state *rs = get_remote_state ();
7540 int max_size = get_memory_write_packet_size ();
7541 struct packet_config *packet =
7542 &remote_protocol_packets[PACKET_qSearch_memory];
7543 /* number of packet bytes used to encode the pattern,
7544 this could be more than PATTERN_LEN due to escape characters */
7545 int escaped_pattern_len;
7546 /* amount of pattern that was encodable in the packet */
7547 int used_pattern_len;
7550 ULONGEST found_addr;
7552 /* Don't go to the target if we don't have to.
7553 This is done before checking packet->support to avoid the possibility that
7554 a success for this edge case means the facility works in general. */
7555 if (pattern_len > search_space_len)
7557 if (pattern_len == 0)
7559 *found_addrp = start_addr;
7563 /* If we already know the packet isn't supported, fall back to the simple
7564 way of searching memory. */
7566 if (packet->support == PACKET_DISABLE)
7568 /* Target doesn't provided special support, fall back and use the
7569 standard support (copy memory and do the search here). */
7570 return simple_search_memory (ops, start_addr, search_space_len,
7571 pattern, pattern_len, found_addrp);
7574 /* Insert header. */
7575 i = snprintf (rs->buf, max_size,
7576 "qSearch:memory:%s;%s;",
7577 paddr_nz (start_addr),
7578 phex_nz (search_space_len, sizeof (search_space_len)));
7579 max_size -= (i + 1);
7581 /* Escape as much data as fits into rs->buf. */
7582 escaped_pattern_len =
7583 remote_escape_output (pattern, pattern_len, (rs->buf + i),
7584 &used_pattern_len, max_size);
7586 /* Bail if the pattern is too large. */
7587 if (used_pattern_len != pattern_len)
7588 error ("Pattern is too large to transmit to remote target.");
7590 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
7591 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7592 || packet_ok (rs->buf, packet) != PACKET_OK)
7594 /* The request may not have worked because the command is not
7595 supported. If so, fall back to the simple way. */
7596 if (packet->support == PACKET_DISABLE)
7598 return simple_search_memory (ops, start_addr, search_space_len,
7599 pattern, pattern_len, found_addrp);
7604 if (rs->buf[0] == '0')
7606 else if (rs->buf[0] == '1')
7609 if (rs->buf[1] != ',')
7610 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
7611 unpack_varlen_hex (rs->buf + 2, &found_addr);
7612 *found_addrp = found_addr;
7615 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
7621 remote_rcmd (char *command,
7622 struct ui_file *outbuf)
7624 struct remote_state *rs = get_remote_state ();
7628 error (_("remote rcmd is only available after target open"));
7630 /* Send a NULL command across as an empty command. */
7631 if (command == NULL)
7634 /* The query prefix. */
7635 strcpy (rs->buf, "qRcmd,");
7636 p = strchr (rs->buf, '\0');
7638 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
7639 error (_("\"monitor\" command ``%s'' is too long."), command);
7641 /* Encode the actual command. */
7642 bin2hex ((gdb_byte *) command, p, 0);
7644 if (putpkt (rs->buf) < 0)
7645 error (_("Communication problem with target."));
7647 /* get/display the response */
7652 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
7654 getpkt (&rs->buf, &rs->buf_size, 0);
7657 error (_("Target does not support this command."));
7658 if (buf[0] == 'O' && buf[1] != 'K')
7660 remote_console_output (buf + 1); /* 'O' message from stub. */
7663 if (strcmp (buf, "OK") == 0)
7665 if (strlen (buf) == 3 && buf[0] == 'E'
7666 && isdigit (buf[1]) && isdigit (buf[2]))
7668 error (_("Protocol error with Rcmd"));
7670 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
7672 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
7673 fputc_unfiltered (c, outbuf);
7679 static VEC(mem_region_s) *
7680 remote_memory_map (struct target_ops *ops)
7682 VEC(mem_region_s) *result = NULL;
7683 char *text = target_read_stralloc (¤t_target,
7684 TARGET_OBJECT_MEMORY_MAP, NULL);
7688 struct cleanup *back_to = make_cleanup (xfree, text);
7689 result = parse_memory_map (text);
7690 do_cleanups (back_to);
7697 packet_command (char *args, int from_tty)
7699 struct remote_state *rs = get_remote_state ();
7702 error (_("command can only be used with remote target"));
7705 error (_("remote-packet command requires packet text as argument"));
7707 puts_filtered ("sending: ");
7708 print_packet (args);
7709 puts_filtered ("\n");
7712 getpkt (&rs->buf, &rs->buf_size, 0);
7713 puts_filtered ("received: ");
7714 print_packet (rs->buf);
7715 puts_filtered ("\n");
7719 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
7721 static void display_thread_info (struct gdb_ext_thread_info *info);
7723 static void threadset_test_cmd (char *cmd, int tty);
7725 static void threadalive_test (char *cmd, int tty);
7727 static void threadlist_test_cmd (char *cmd, int tty);
7729 int get_and_display_threadinfo (threadref *ref);
7731 static void threadinfo_test_cmd (char *cmd, int tty);
7733 static int thread_display_step (threadref *ref, void *context);
7735 static void threadlist_update_test_cmd (char *cmd, int tty);
7737 static void init_remote_threadtests (void);
7739 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
7742 threadset_test_cmd (char *cmd, int tty)
7744 int sample_thread = SAMPLE_THREAD;
7746 printf_filtered (_("Remote threadset test\n"));
7747 set_general_thread (sample_thread);
7752 threadalive_test (char *cmd, int tty)
7754 int sample_thread = SAMPLE_THREAD;
7755 int pid = ptid_get_pid (inferior_ptid);
7756 ptid_t ptid = ptid_build (pid, 0, sample_thread);
7758 if (remote_thread_alive (ptid))
7759 printf_filtered ("PASS: Thread alive test\n");
7761 printf_filtered ("FAIL: Thread alive test\n");
7764 void output_threadid (char *title, threadref *ref);
7767 output_threadid (char *title, threadref *ref)
7771 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
7773 printf_filtered ("%s %s\n", title, (&hexid[0]));
7777 threadlist_test_cmd (char *cmd, int tty)
7780 threadref nextthread;
7781 int done, result_count;
7782 threadref threadlist[3];
7784 printf_filtered ("Remote Threadlist test\n");
7785 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
7786 &result_count, &threadlist[0]))
7787 printf_filtered ("FAIL: threadlist test\n");
7790 threadref *scan = threadlist;
7791 threadref *limit = scan + result_count;
7793 while (scan < limit)
7794 output_threadid (" thread ", scan++);
7799 display_thread_info (struct gdb_ext_thread_info *info)
7801 output_threadid ("Threadid: ", &info->threadid);
7802 printf_filtered ("Name: %s\n ", info->shortname);
7803 printf_filtered ("State: %s\n", info->display);
7804 printf_filtered ("other: %s\n\n", info->more_display);
7808 get_and_display_threadinfo (threadref *ref)
7812 struct gdb_ext_thread_info threadinfo;
7814 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
7815 | TAG_MOREDISPLAY | TAG_DISPLAY;
7816 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
7817 display_thread_info (&threadinfo);
7822 threadinfo_test_cmd (char *cmd, int tty)
7824 int athread = SAMPLE_THREAD;
7828 int_to_threadref (&thread, athread);
7829 printf_filtered ("Remote Threadinfo test\n");
7830 if (!get_and_display_threadinfo (&thread))
7831 printf_filtered ("FAIL cannot get thread info\n");
7835 thread_display_step (threadref *ref, void *context)
7837 /* output_threadid(" threadstep ",ref); *//* simple test */
7838 return get_and_display_threadinfo (ref);
7842 threadlist_update_test_cmd (char *cmd, int tty)
7844 printf_filtered ("Remote Threadlist update test\n");
7845 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
7849 init_remote_threadtests (void)
7851 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
7852 Fetch and print the remote list of thread identifiers, one pkt only"));
7853 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
7854 _("Fetch and display info about one thread"));
7855 add_com ("tset", class_obscure, threadset_test_cmd,
7856 _("Test setting to a different thread"));
7857 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
7858 _("Iterate through updating all remote thread info"));
7859 add_com ("talive", class_obscure, threadalive_test,
7860 _(" Remote thread alive test "));
7865 /* Convert a thread ID to a string. Returns the string in a static
7869 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
7871 static char buf[64];
7872 struct remote_state *rs = get_remote_state ();
7874 if (ptid_equal (magic_null_ptid, ptid))
7876 xsnprintf (buf, sizeof buf, "Thread <main>");
7879 else if (remote_multi_process_p (rs)
7880 && ptid_get_tid (ptid) != 0 && ptid_get_pid (ptid) != 0)
7882 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
7883 ptid_get_pid (ptid), ptid_get_tid (ptid));
7886 else if (ptid_get_tid (ptid) != 0)
7888 xsnprintf (buf, sizeof buf, "Thread %ld",
7889 ptid_get_tid (ptid));
7893 return normal_pid_to_str (ptid);
7896 /* Get the address of the thread local variable in OBJFILE which is
7897 stored at OFFSET within the thread local storage for thread PTID. */
7900 remote_get_thread_local_address (struct target_ops *ops,
7901 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
7903 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
7905 struct remote_state *rs = get_remote_state ();
7907 char *endp = rs->buf + get_remote_packet_size ();
7908 enum packet_result result;
7910 strcpy (p, "qGetTLSAddr:");
7912 p = write_ptid (p, endp, ptid);
7914 p += hexnumstr (p, offset);
7916 p += hexnumstr (p, lm);
7920 getpkt (&rs->buf, &rs->buf_size, 0);
7921 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
7922 if (result == PACKET_OK)
7926 unpack_varlen_hex (rs->buf, &result);
7929 else if (result == PACKET_UNKNOWN)
7930 throw_error (TLS_GENERIC_ERROR,
7931 _("Remote target doesn't support qGetTLSAddr packet"));
7933 throw_error (TLS_GENERIC_ERROR,
7934 _("Remote target failed to process qGetTLSAddr request"));
7937 throw_error (TLS_GENERIC_ERROR,
7938 _("TLS not supported or disabled on this target"));
7943 /* Support for inferring a target description based on the current
7944 architecture and the size of a 'g' packet. While the 'g' packet
7945 can have any size (since optional registers can be left off the
7946 end), some sizes are easily recognizable given knowledge of the
7947 approximate architecture. */
7949 struct remote_g_packet_guess
7952 const struct target_desc *tdesc;
7954 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
7955 DEF_VEC_O(remote_g_packet_guess_s);
7957 struct remote_g_packet_data
7959 VEC(remote_g_packet_guess_s) *guesses;
7962 static struct gdbarch_data *remote_g_packet_data_handle;
7965 remote_g_packet_data_init (struct obstack *obstack)
7967 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
7971 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
7972 const struct target_desc *tdesc)
7974 struct remote_g_packet_data *data
7975 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
7976 struct remote_g_packet_guess new_guess, *guess;
7979 gdb_assert (tdesc != NULL);
7982 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
7984 if (guess->bytes == bytes)
7985 internal_error (__FILE__, __LINE__,
7986 "Duplicate g packet description added for size %d",
7989 new_guess.bytes = bytes;
7990 new_guess.tdesc = tdesc;
7991 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
7994 /* Return 1 if remote_read_description would do anything on this target
7995 and architecture, 0 otherwise. */
7998 remote_read_description_p (struct target_ops *target)
8000 struct remote_g_packet_data *data
8001 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
8003 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8009 static const struct target_desc *
8010 remote_read_description (struct target_ops *target)
8012 struct remote_g_packet_data *data
8013 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
8015 /* Do not try this during initial connection, when we do not know
8016 whether there is a running but stopped thread. */
8017 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
8020 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8022 struct remote_g_packet_guess *guess;
8024 int bytes = send_g_packet ();
8027 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
8029 if (guess->bytes == bytes)
8030 return guess->tdesc;
8032 /* We discard the g packet. A minor optimization would be to
8033 hold on to it, and fill the register cache once we have selected
8034 an architecture, but it's too tricky to do safely. */
8040 /* Remote file transfer support. This is host-initiated I/O, not
8041 target-initiated; for target-initiated, see remote-fileio.c. */
8043 /* If *LEFT is at least the length of STRING, copy STRING to
8044 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8045 decrease *LEFT. Otherwise raise an error. */
8048 remote_buffer_add_string (char **buffer, int *left, char *string)
8050 int len = strlen (string);
8053 error (_("Packet too long for target."));
8055 memcpy (*buffer, string, len);
8059 /* NUL-terminate the buffer as a convenience, if there is
8065 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
8066 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8067 decrease *LEFT. Otherwise raise an error. */
8070 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
8073 if (2 * len > *left)
8074 error (_("Packet too long for target."));
8076 bin2hex (bytes, *buffer, len);
8080 /* NUL-terminate the buffer as a convenience, if there is
8086 /* If *LEFT is large enough, convert VALUE to hex and add it to
8087 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8088 decrease *LEFT. Otherwise raise an error. */
8091 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
8093 int len = hexnumlen (value);
8096 error (_("Packet too long for target."));
8098 hexnumstr (*buffer, value);
8102 /* NUL-terminate the buffer as a convenience, if there is
8108 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
8109 value, *REMOTE_ERRNO to the remote error number or zero if none
8110 was included, and *ATTACHMENT to point to the start of the annex
8111 if any. The length of the packet isn't needed here; there may
8112 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
8114 Return 0 if the packet could be parsed, -1 if it could not. If
8115 -1 is returned, the other variables may not be initialized. */
8118 remote_hostio_parse_result (char *buffer, int *retcode,
8119 int *remote_errno, char **attachment)
8126 if (buffer[0] != 'F')
8130 *retcode = strtol (&buffer[1], &p, 16);
8131 if (errno != 0 || p == &buffer[1])
8134 /* Check for ",errno". */
8138 *remote_errno = strtol (p + 1, &p2, 16);
8139 if (errno != 0 || p + 1 == p2)
8144 /* Check for ";attachment". If there is no attachment, the
8145 packet should end here. */
8148 *attachment = p + 1;
8151 else if (*p == '\0')
8157 /* Send a prepared I/O packet to the target and read its response.
8158 The prepared packet is in the global RS->BUF before this function
8159 is called, and the answer is there when we return.
8161 COMMAND_BYTES is the length of the request to send, which may include
8162 binary data. WHICH_PACKET is the packet configuration to check
8163 before attempting a packet. If an error occurs, *REMOTE_ERRNO
8164 is set to the error number and -1 is returned. Otherwise the value
8165 returned by the function is returned.
8167 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
8168 attachment is expected; an error will be reported if there's a
8169 mismatch. If one is found, *ATTACHMENT will be set to point into
8170 the packet buffer and *ATTACHMENT_LEN will be set to the
8171 attachment's length. */
8174 remote_hostio_send_command (int command_bytes, int which_packet,
8175 int *remote_errno, char **attachment,
8176 int *attachment_len)
8178 struct remote_state *rs = get_remote_state ();
8179 int ret, bytes_read;
8180 char *attachment_tmp;
8183 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
8185 *remote_errno = FILEIO_ENOSYS;
8189 putpkt_binary (rs->buf, command_bytes);
8190 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8192 /* If it timed out, something is wrong. Don't try to parse the
8196 *remote_errno = FILEIO_EINVAL;
8200 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
8203 *remote_errno = FILEIO_EINVAL;
8205 case PACKET_UNKNOWN:
8206 *remote_errno = FILEIO_ENOSYS;
8212 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
8215 *remote_errno = FILEIO_EINVAL;
8219 /* Make sure we saw an attachment if and only if we expected one. */
8220 if ((attachment_tmp == NULL && attachment != NULL)
8221 || (attachment_tmp != NULL && attachment == NULL))
8223 *remote_errno = FILEIO_EINVAL;
8227 /* If an attachment was found, it must point into the packet buffer;
8228 work out how many bytes there were. */
8229 if (attachment_tmp != NULL)
8231 *attachment = attachment_tmp;
8232 *attachment_len = bytes_read - (*attachment - rs->buf);
8238 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
8239 remote file descriptor, or -1 if an error occurs (and set
8243 remote_hostio_open (const char *filename, int flags, int mode,
8246 struct remote_state *rs = get_remote_state ();
8248 int left = get_remote_packet_size () - 1;
8250 remote_buffer_add_string (&p, &left, "vFile:open:");
8252 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8254 remote_buffer_add_string (&p, &left, ",");
8256 remote_buffer_add_int (&p, &left, flags);
8257 remote_buffer_add_string (&p, &left, ",");
8259 remote_buffer_add_int (&p, &left, mode);
8261 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
8262 remote_errno, NULL, NULL);
8265 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
8266 Return the number of bytes written, or -1 if an error occurs (and
8267 set *REMOTE_ERRNO). */
8270 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
8271 ULONGEST offset, int *remote_errno)
8273 struct remote_state *rs = get_remote_state ();
8275 int left = get_remote_packet_size ();
8278 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
8280 remote_buffer_add_int (&p, &left, fd);
8281 remote_buffer_add_string (&p, &left, ",");
8283 remote_buffer_add_int (&p, &left, offset);
8284 remote_buffer_add_string (&p, &left, ",");
8286 p += remote_escape_output (write_buf, len, p, &out_len,
8287 get_remote_packet_size () - (p - rs->buf));
8289 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
8290 remote_errno, NULL, NULL);
8293 /* Read up to LEN bytes FD on the remote target into READ_BUF
8294 Return the number of bytes read, or -1 if an error occurs (and
8295 set *REMOTE_ERRNO). */
8298 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
8299 ULONGEST offset, int *remote_errno)
8301 struct remote_state *rs = get_remote_state ();
8304 int left = get_remote_packet_size ();
8305 int ret, attachment_len;
8308 remote_buffer_add_string (&p, &left, "vFile:pread:");
8310 remote_buffer_add_int (&p, &left, fd);
8311 remote_buffer_add_string (&p, &left, ",");
8313 remote_buffer_add_int (&p, &left, len);
8314 remote_buffer_add_string (&p, &left, ",");
8316 remote_buffer_add_int (&p, &left, offset);
8318 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
8319 remote_errno, &attachment,
8325 read_len = remote_unescape_input (attachment, attachment_len,
8327 if (read_len != ret)
8328 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
8333 /* Close FD on the remote target. Return 0, or -1 if an error occurs
8334 (and set *REMOTE_ERRNO). */
8337 remote_hostio_close (int fd, int *remote_errno)
8339 struct remote_state *rs = get_remote_state ();
8341 int left = get_remote_packet_size () - 1;
8343 remote_buffer_add_string (&p, &left, "vFile:close:");
8345 remote_buffer_add_int (&p, &left, fd);
8347 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
8348 remote_errno, NULL, NULL);
8351 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
8352 occurs (and set *REMOTE_ERRNO). */
8355 remote_hostio_unlink (const char *filename, int *remote_errno)
8357 struct remote_state *rs = get_remote_state ();
8359 int left = get_remote_packet_size () - 1;
8361 remote_buffer_add_string (&p, &left, "vFile:unlink:");
8363 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8366 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
8367 remote_errno, NULL, NULL);
8371 remote_fileio_errno_to_host (int errnum)
8395 case FILEIO_ENOTDIR:
8415 case FILEIO_ENAMETOOLONG:
8416 return ENAMETOOLONG;
8422 remote_hostio_error (int errnum)
8424 int host_error = remote_fileio_errno_to_host (errnum);
8426 if (host_error == -1)
8427 error (_("Unknown remote I/O error %d"), errnum);
8429 error (_("Remote I/O error: %s"), safe_strerror (host_error));
8433 remote_hostio_close_cleanup (void *opaque)
8435 int fd = *(int *) opaque;
8438 remote_hostio_close (fd, &remote_errno);
8443 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
8445 const char *filename = bfd_get_filename (abfd);
8446 int fd, remote_errno;
8449 gdb_assert (remote_filename_p (filename));
8451 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
8454 errno = remote_fileio_errno_to_host (remote_errno);
8455 bfd_set_error (bfd_error_system_call);
8459 stream = xmalloc (sizeof (int));
8465 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
8467 int fd = *(int *)stream;
8472 /* Ignore errors on close; these may happen if the remote
8473 connection was already torn down. */
8474 remote_hostio_close (fd, &remote_errno);
8480 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
8481 file_ptr nbytes, file_ptr offset)
8483 int fd = *(int *)stream;
8485 file_ptr pos, bytes;
8488 while (nbytes > pos)
8490 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
8491 offset + pos, &remote_errno);
8493 /* Success, but no bytes, means end-of-file. */
8497 errno = remote_fileio_errno_to_host (remote_errno);
8498 bfd_set_error (bfd_error_system_call);
8509 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
8511 /* FIXME: We should probably implement remote_hostio_stat. */
8512 sb->st_size = INT_MAX;
8517 remote_filename_p (const char *filename)
8519 return strncmp (filename, "remote:", 7) == 0;
8523 remote_bfd_open (const char *remote_file, const char *target)
8525 return bfd_openr_iovec (remote_file, target,
8526 remote_bfd_iovec_open, NULL,
8527 remote_bfd_iovec_pread,
8528 remote_bfd_iovec_close,
8529 remote_bfd_iovec_stat);
8533 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
8535 struct cleanup *back_to, *close_cleanup;
8536 int retcode, fd, remote_errno, bytes, io_size;
8539 int bytes_in_buffer;
8544 error (_("command can only be used with remote target"));
8546 file = fopen (local_file, "rb");
8548 perror_with_name (local_file);
8549 back_to = make_cleanup_fclose (file);
8551 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
8553 0700, &remote_errno);
8555 remote_hostio_error (remote_errno);
8557 /* Send up to this many bytes at once. They won't all fit in the
8558 remote packet limit, so we'll transfer slightly fewer. */
8559 io_size = get_remote_packet_size ();
8560 buffer = xmalloc (io_size);
8561 make_cleanup (xfree, buffer);
8563 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8565 bytes_in_buffer = 0;
8568 while (bytes_in_buffer || !saw_eof)
8572 bytes = fread (buffer + bytes_in_buffer, 1, io_size - bytes_in_buffer,
8577 error (_("Error reading %s."), local_file);
8580 /* EOF. Unless there is something still in the
8581 buffer from the last iteration, we are done. */
8583 if (bytes_in_buffer == 0)
8591 bytes += bytes_in_buffer;
8592 bytes_in_buffer = 0;
8594 retcode = remote_hostio_pwrite (fd, buffer, bytes, offset, &remote_errno);
8597 remote_hostio_error (remote_errno);
8598 else if (retcode == 0)
8599 error (_("Remote write of %d bytes returned 0!"), bytes);
8600 else if (retcode < bytes)
8602 /* Short write. Save the rest of the read data for the next
8604 bytes_in_buffer = bytes - retcode;
8605 memmove (buffer, buffer + retcode, bytes_in_buffer);
8611 discard_cleanups (close_cleanup);
8612 if (remote_hostio_close (fd, &remote_errno))
8613 remote_hostio_error (remote_errno);
8616 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
8617 do_cleanups (back_to);
8621 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
8623 struct cleanup *back_to, *close_cleanup;
8624 int retcode, fd, remote_errno, bytes, io_size;
8630 error (_("command can only be used with remote target"));
8632 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
8634 remote_hostio_error (remote_errno);
8636 file = fopen (local_file, "wb");
8638 perror_with_name (local_file);
8639 back_to = make_cleanup_fclose (file);
8641 /* Send up to this many bytes at once. They won't all fit in the
8642 remote packet limit, so we'll transfer slightly fewer. */
8643 io_size = get_remote_packet_size ();
8644 buffer = xmalloc (io_size);
8645 make_cleanup (xfree, buffer);
8647 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8652 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
8654 /* Success, but no bytes, means end-of-file. */
8657 remote_hostio_error (remote_errno);
8661 bytes = fwrite (buffer, 1, bytes, file);
8663 perror_with_name (local_file);
8666 discard_cleanups (close_cleanup);
8667 if (remote_hostio_close (fd, &remote_errno))
8668 remote_hostio_error (remote_errno);
8671 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
8672 do_cleanups (back_to);
8676 remote_file_delete (const char *remote_file, int from_tty)
8678 int retcode, remote_errno;
8681 error (_("command can only be used with remote target"));
8683 retcode = remote_hostio_unlink (remote_file, &remote_errno);
8685 remote_hostio_error (remote_errno);
8688 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
8692 remote_put_command (char *args, int from_tty)
8694 struct cleanup *back_to;
8698 error_no_arg (_("file to put"));
8700 argv = gdb_buildargv (args);
8701 back_to = make_cleanup_freeargv (argv);
8702 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8703 error (_("Invalid parameters to remote put"));
8705 remote_file_put (argv[0], argv[1], from_tty);
8707 do_cleanups (back_to);
8711 remote_get_command (char *args, int from_tty)
8713 struct cleanup *back_to;
8717 error_no_arg (_("file to get"));
8719 argv = gdb_buildargv (args);
8720 back_to = make_cleanup_freeargv (argv);
8721 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8722 error (_("Invalid parameters to remote get"));
8724 remote_file_get (argv[0], argv[1], from_tty);
8726 do_cleanups (back_to);
8730 remote_delete_command (char *args, int from_tty)
8732 struct cleanup *back_to;
8736 error_no_arg (_("file to delete"));
8738 argv = gdb_buildargv (args);
8739 back_to = make_cleanup_freeargv (argv);
8740 if (argv[0] == NULL || argv[1] != NULL)
8741 error (_("Invalid parameters to remote delete"));
8743 remote_file_delete (argv[0], from_tty);
8745 do_cleanups (back_to);
8749 remote_command (char *args, int from_tty)
8751 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
8754 static int remote_target_can_reverse = 1;
8757 remote_can_execute_reverse (void)
8759 return remote_target_can_reverse;
8763 remote_supports_non_stop (void)
8769 remote_supports_multi_process (void)
8771 struct remote_state *rs = get_remote_state ();
8772 return remote_multi_process_p (rs);
8776 init_remote_ops (void)
8778 remote_ops.to_shortname = "remote";
8779 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
8781 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
8782 Specify the serial device it is connected to\n\
8783 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
8784 remote_ops.to_open = remote_open;
8785 remote_ops.to_close = remote_close;
8786 remote_ops.to_detach = remote_detach;
8787 remote_ops.to_disconnect = remote_disconnect;
8788 remote_ops.to_resume = remote_resume;
8789 remote_ops.to_wait = remote_wait;
8790 remote_ops.to_fetch_registers = remote_fetch_registers;
8791 remote_ops.to_store_registers = remote_store_registers;
8792 remote_ops.to_prepare_to_store = remote_prepare_to_store;
8793 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
8794 remote_ops.to_files_info = remote_files_info;
8795 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
8796 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
8797 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
8798 remote_ops.to_stopped_data_address = remote_stopped_data_address;
8799 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
8800 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
8801 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
8802 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
8803 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
8804 remote_ops.to_kill = remote_kill;
8805 remote_ops.to_load = generic_load;
8806 remote_ops.to_mourn_inferior = remote_mourn;
8807 remote_ops.to_thread_alive = remote_thread_alive;
8808 remote_ops.to_find_new_threads = remote_threads_info;
8809 remote_ops.to_pid_to_str = remote_pid_to_str;
8810 remote_ops.to_extra_thread_info = remote_threads_extra_info;
8811 remote_ops.to_stop = remote_stop;
8812 remote_ops.to_xfer_partial = remote_xfer_partial;
8813 remote_ops.to_rcmd = remote_rcmd;
8814 remote_ops.to_log_command = serial_log_command;
8815 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
8816 remote_ops.to_stratum = process_stratum;
8817 remote_ops.to_has_all_memory = 1;
8818 remote_ops.to_has_memory = 1;
8819 remote_ops.to_has_stack = 1;
8820 remote_ops.to_has_registers = 1;
8821 remote_ops.to_has_execution = 1;
8822 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
8823 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
8824 remote_ops.to_magic = OPS_MAGIC;
8825 remote_ops.to_memory_map = remote_memory_map;
8826 remote_ops.to_flash_erase = remote_flash_erase;
8827 remote_ops.to_flash_done = remote_flash_done;
8828 remote_ops.to_read_description = remote_read_description;
8829 remote_ops.to_search_memory = remote_search_memory;
8830 remote_ops.to_can_async_p = remote_can_async_p;
8831 remote_ops.to_is_async_p = remote_is_async_p;
8832 remote_ops.to_async = remote_async;
8833 remote_ops.to_async_mask = remote_async_mask;
8834 remote_ops.to_terminal_inferior = remote_terminal_inferior;
8835 remote_ops.to_terminal_ours = remote_terminal_ours;
8836 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8837 remote_ops.to_supports_multi_process = remote_supports_multi_process;
8840 /* Set up the extended remote vector by making a copy of the standard
8841 remote vector and adding to it. */
8844 init_extended_remote_ops (void)
8846 extended_remote_ops = remote_ops;
8848 extended_remote_ops.to_shortname = "extended-remote";
8849 extended_remote_ops.to_longname =
8850 "Extended remote serial target in gdb-specific protocol";
8851 extended_remote_ops.to_doc =
8852 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
8853 Specify the serial device it is connected to (e.g. /dev/ttya).";
8854 extended_remote_ops.to_open = extended_remote_open;
8855 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
8856 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
8857 extended_remote_ops.to_detach = extended_remote_detach;
8858 extended_remote_ops.to_attach = extended_remote_attach;
8859 extended_remote_ops.to_kill = extended_remote_kill;
8863 remote_can_async_p (void)
8865 if (!target_async_permitted)
8866 /* We only enable async when the user specifically asks for it. */
8869 /* We're async whenever the serial device is. */
8870 return remote_async_mask_value && serial_can_async_p (remote_desc);
8874 remote_is_async_p (void)
8876 if (!target_async_permitted)
8877 /* We only enable async when the user specifically asks for it. */
8880 /* We're async whenever the serial device is. */
8881 return remote_async_mask_value && serial_is_async_p (remote_desc);
8884 /* Pass the SERIAL event on and up to the client. One day this code
8885 will be able to delay notifying the client of an event until the
8886 point where an entire packet has been received. */
8888 static void (*async_client_callback) (enum inferior_event_type event_type,
8890 static void *async_client_context;
8891 static serial_event_ftype remote_async_serial_handler;
8894 remote_async_serial_handler (struct serial *scb, void *context)
8896 /* Don't propogate error information up to the client. Instead let
8897 the client find out about the error by querying the target. */
8898 async_client_callback (INF_REG_EVENT, async_client_context);
8902 remote_async_inferior_event_handler (gdb_client_data data)
8904 inferior_event_handler (INF_REG_EVENT, NULL);
8908 remote_async_get_pending_events_handler (gdb_client_data data)
8910 remote_get_pending_stop_replies ();
8914 remote_async (void (*callback) (enum inferior_event_type event_type,
8915 void *context), void *context)
8917 if (remote_async_mask_value == 0)
8918 internal_error (__FILE__, __LINE__,
8919 _("Calling remote_async when async is masked"));
8921 if (callback != NULL)
8923 serial_async (remote_desc, remote_async_serial_handler, NULL);
8924 async_client_callback = callback;
8925 async_client_context = context;
8928 serial_async (remote_desc, NULL, NULL);
8932 remote_async_mask (int new_mask)
8934 int curr_mask = remote_async_mask_value;
8935 remote_async_mask_value = new_mask;
8940 set_remote_cmd (char *args, int from_tty)
8942 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
8946 show_remote_cmd (char *args, int from_tty)
8948 /* We can't just use cmd_show_list here, because we want to skip
8949 the redundant "show remote Z-packet" and the legacy aliases. */
8950 struct cleanup *showlist_chain;
8951 struct cmd_list_element *list = remote_show_cmdlist;
8953 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
8954 for (; list != NULL; list = list->next)
8955 if (strcmp (list->name, "Z-packet") == 0)
8957 else if (list->type == not_set_cmd)
8958 /* Alias commands are exactly like the original, except they
8959 don't have the normal type. */
8963 struct cleanup *option_chain
8964 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
8965 ui_out_field_string (uiout, "name", list->name);
8966 ui_out_text (uiout, ": ");
8967 if (list->type == show_cmd)
8968 do_setshow_command ((char *) NULL, from_tty, list);
8970 cmd_func (list, NULL, from_tty);
8971 /* Close the tuple. */
8972 do_cleanups (option_chain);
8975 /* Close the tuple. */
8976 do_cleanups (showlist_chain);
8980 /* Function to be called whenever a new objfile (shlib) is detected. */
8982 remote_new_objfile (struct objfile *objfile)
8984 if (remote_desc != 0) /* Have a remote connection. */
8985 remote_check_symbols (objfile);
8989 _initialize_remote (void)
8991 struct remote_state *rs;
8993 /* architecture specific data */
8994 remote_gdbarch_data_handle =
8995 gdbarch_data_register_post_init (init_remote_state);
8996 remote_g_packet_data_handle =
8997 gdbarch_data_register_pre_init (remote_g_packet_data_init);
8999 /* Initialize the per-target state. At the moment there is only one
9000 of these, not one per target. Only one target is active at a
9001 time. The default buffer size is unimportant; it will be expanded
9002 whenever a larger buffer is needed. */
9003 rs = get_remote_state_raw ();
9005 rs->buf = xmalloc (rs->buf_size);
9008 add_target (&remote_ops);
9010 init_extended_remote_ops ();
9011 add_target (&extended_remote_ops);
9013 /* Hook into new objfile notification. */
9014 observer_attach_new_objfile (remote_new_objfile);
9016 /* Set up signal handlers. */
9017 sigint_remote_token =
9018 create_async_signal_handler (async_remote_interrupt, NULL);
9019 sigint_remote_twice_token =
9020 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
9023 init_remote_threadtests ();
9026 /* set/show remote ... */
9028 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
9029 Remote protocol specific variables\n\
9030 Configure various remote-protocol specific variables such as\n\
9031 the packets being used"),
9032 &remote_set_cmdlist, "set remote ",
9033 0 /* allow-unknown */, &setlist);
9034 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
9035 Remote protocol specific variables\n\
9036 Configure various remote-protocol specific variables such as\n\
9037 the packets being used"),
9038 &remote_show_cmdlist, "show remote ",
9039 0 /* allow-unknown */, &showlist);
9041 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
9042 Compare section data on target to the exec file.\n\
9043 Argument is a single section name (default: all loaded sections)."),
9046 add_cmd ("packet", class_maintenance, packet_command, _("\
9047 Send an arbitrary packet to a remote target.\n\
9048 maintenance packet TEXT\n\
9049 If GDB is talking to an inferior via the GDB serial protocol, then\n\
9050 this command sends the string TEXT to the inferior, and displays the\n\
9051 response packet. GDB supplies the initial `$' character, and the\n\
9052 terminating `#' character and checksum."),
9055 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
9056 Set whether to send break if interrupted."), _("\
9057 Show whether to send break if interrupted."), _("\
9058 If set, a break, instead of a cntrl-c, is sent to the remote target."),
9059 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
9060 &setlist, &showlist);
9062 /* Install commands for configuring memory read/write packets. */
9064 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
9065 Set the maximum number of bytes per memory write packet (deprecated)."),
9067 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
9068 Show the maximum number of bytes per memory write packet (deprecated)."),
9070 add_cmd ("memory-write-packet-size", no_class,
9071 set_memory_write_packet_size, _("\
9072 Set the maximum number of bytes per memory-write packet.\n\
9073 Specify the number of bytes in a packet or 0 (zero) for the\n\
9074 default packet size. The actual limit is further reduced\n\
9075 dependent on the target. Specify ``fixed'' to disable the\n\
9076 further restriction and ``limit'' to enable that restriction."),
9077 &remote_set_cmdlist);
9078 add_cmd ("memory-read-packet-size", no_class,
9079 set_memory_read_packet_size, _("\
9080 Set the maximum number of bytes per memory-read packet.\n\
9081 Specify the number of bytes in a packet or 0 (zero) for the\n\
9082 default packet size. The actual limit is further reduced\n\
9083 dependent on the target. Specify ``fixed'' to disable the\n\
9084 further restriction and ``limit'' to enable that restriction."),
9085 &remote_set_cmdlist);
9086 add_cmd ("memory-write-packet-size", no_class,
9087 show_memory_write_packet_size,
9088 _("Show the maximum number of bytes per memory-write packet."),
9089 &remote_show_cmdlist);
9090 add_cmd ("memory-read-packet-size", no_class,
9091 show_memory_read_packet_size,
9092 _("Show the maximum number of bytes per memory-read packet."),
9093 &remote_show_cmdlist);
9095 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
9096 &remote_hw_watchpoint_limit, _("\
9097 Set the maximum number of target hardware watchpoints."), _("\
9098 Show the maximum number of target hardware watchpoints."), _("\
9099 Specify a negative limit for unlimited."),
9100 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
9101 &remote_set_cmdlist, &remote_show_cmdlist);
9102 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
9103 &remote_hw_breakpoint_limit, _("\
9104 Set the maximum number of target hardware breakpoints."), _("\
9105 Show the maximum number of target hardware breakpoints."), _("\
9106 Specify a negative limit for unlimited."),
9107 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
9108 &remote_set_cmdlist, &remote_show_cmdlist);
9110 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
9111 &remote_address_size, _("\
9112 Set the maximum size of the address (in bits) in a memory packet."), _("\
9113 Show the maximum size of the address (in bits) in a memory packet."), NULL,
9115 NULL, /* FIXME: i18n: */
9116 &setlist, &showlist);
9118 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
9119 "X", "binary-download", 1);
9121 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
9122 "vCont", "verbose-resume", 0);
9124 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
9125 "QPassSignals", "pass-signals", 0);
9127 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
9128 "qSymbol", "symbol-lookup", 0);
9130 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
9131 "P", "set-register", 1);
9133 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
9134 "p", "fetch-register", 1);
9136 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
9137 "Z0", "software-breakpoint", 0);
9139 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
9140 "Z1", "hardware-breakpoint", 0);
9142 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
9143 "Z2", "write-watchpoint", 0);
9145 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
9146 "Z3", "read-watchpoint", 0);
9148 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
9149 "Z4", "access-watchpoint", 0);
9151 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
9152 "qXfer:auxv:read", "read-aux-vector", 0);
9154 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
9155 "qXfer:features:read", "target-features", 0);
9157 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
9158 "qXfer:libraries:read", "library-info", 0);
9160 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
9161 "qXfer:memory-map:read", "memory-map", 0);
9163 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
9164 "qXfer:spu:read", "read-spu-object", 0);
9166 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
9167 "qXfer:spu:write", "write-spu-object", 0);
9169 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
9170 "qXfer:osdata:read", "osdata", 0);
9172 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
9173 "qXfer:siginfo:read", "read-siginfo-object", 0);
9175 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
9176 "qXfer:siginfo:write", "write-siginfo-object", 0);
9178 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
9179 "qGetTLSAddr", "get-thread-local-storage-address",
9182 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
9183 "qSupported", "supported-packets", 0);
9185 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
9186 "qSearch:memory", "search-memory", 0);
9188 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
9189 "vFile:open", "hostio-open", 0);
9191 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
9192 "vFile:pread", "hostio-pread", 0);
9194 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
9195 "vFile:pwrite", "hostio-pwrite", 0);
9197 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
9198 "vFile:close", "hostio-close", 0);
9200 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
9201 "vFile:unlink", "hostio-unlink", 0);
9203 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
9204 "vAttach", "attach", 0);
9206 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
9209 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
9210 "QStartNoAckMode", "noack", 0);
9212 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
9213 "vKill", "kill", 0);
9215 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
9216 "qAttached", "query-attached", 0);
9218 /* Keep the old ``set remote Z-packet ...'' working. Each individual
9219 Z sub-packet has its own set and show commands, but users may
9220 have sets to this variable in their .gdbinit files (or in their
9222 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
9223 &remote_Z_packet_detect, _("\
9224 Set use of remote protocol `Z' packets"), _("\
9225 Show use of remote protocol `Z' packets "), _("\
9226 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
9228 set_remote_protocol_Z_packet_cmd,
9229 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
9230 &remote_set_cmdlist, &remote_show_cmdlist);
9232 add_prefix_cmd ("remote", class_files, remote_command, _("\
9233 Manipulate files on the remote system\n\
9234 Transfer files to and from the remote target system."),
9235 &remote_cmdlist, "remote ",
9236 0 /* allow-unknown */, &cmdlist);
9238 add_cmd ("put", class_files, remote_put_command,
9239 _("Copy a local file to the remote system."),
9242 add_cmd ("get", class_files, remote_get_command,
9243 _("Copy a remote file to the local system."),
9246 add_cmd ("delete", class_files, remote_delete_command,
9247 _("Delete a remote file."),
9250 remote_exec_file = xstrdup ("");
9251 add_setshow_string_noescape_cmd ("exec-file", class_files,
9252 &remote_exec_file, _("\
9253 Set the remote pathname for \"run\""), _("\
9254 Show the remote pathname for \"run\""), NULL, NULL, NULL,
9255 &remote_set_cmdlist, &remote_show_cmdlist);
9257 /* Eventually initialize fileio. See fileio.c */
9258 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
9260 /* Take advantage of the fact that the LWP field is not used, to tag
9261 special ptids with it set to != 0. */
9262 magic_null_ptid = ptid_build (42000, 1, -1);
9263 not_sent_ptid = ptid_build (42000, 1, -2);
9264 any_thread_ptid = ptid_build (42000, 1, 0);