1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
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 2 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, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* See the GDB User Guide for details of the GDB remote protocol. */
27 #include "gdb_string.h"
33 #include "exceptions.h"
35 /*#include "terminal.h" */
38 #include "gdb-stabs.h"
39 #include "gdbthread.h"
43 #include "gdb_assert.h"
49 #include "event-loop.h"
50 #include "event-top.h"
56 #include "gdbcore.h" /* for exec_bfd */
58 #include "remote-fileio.h"
60 /* Prototypes for local functions. */
61 static void cleanup_sigint_signal_handler (void *dummy);
62 static void initialize_sigint_signal_handler (void);
63 static int getpkt_sane (char *buf, long sizeof_buf, int forever);
65 static void handle_remote_sigint (int);
66 static void handle_remote_sigint_twice (int);
67 static void async_remote_interrupt (gdb_client_data);
68 void async_remote_interrupt_twice (gdb_client_data);
70 static void build_remote_gdbarch_data (void);
72 static void remote_files_info (struct target_ops *ignore);
74 static int remote_xfer_memory (CORE_ADDR memaddr, char *myaddr,
75 int len, int should_write,
76 struct mem_attrib *attrib,
77 struct target_ops *target);
79 static void remote_prepare_to_store (void);
81 static void remote_fetch_registers (int regno);
83 static void remote_resume (ptid_t ptid, int step,
84 enum target_signal siggnal);
85 static void remote_async_resume (ptid_t ptid, int step,
86 enum target_signal siggnal);
87 static void remote_open (char *name, int from_tty);
88 static void remote_async_open (char *name, int from_tty);
90 static void extended_remote_open (char *name, int from_tty);
91 static void extended_remote_async_open (char *name, int from_tty);
93 static void remote_open_1 (char *, int, struct target_ops *, int extended_p,
96 static void remote_close (int quitting);
98 static void remote_store_registers (int regno);
100 static void remote_mourn (void);
101 static void remote_async_mourn (void);
103 static void extended_remote_restart (void);
105 static void extended_remote_mourn (void);
107 static void remote_mourn_1 (struct target_ops *);
109 static void remote_send (char *buf, long sizeof_buf);
111 static int readchar (int timeout);
113 static ptid_t remote_wait (ptid_t ptid,
114 struct target_waitstatus *status);
115 static ptid_t remote_async_wait (ptid_t ptid,
116 struct target_waitstatus *status);
118 static void remote_kill (void);
119 static void remote_async_kill (void);
121 static int tohex (int nib);
123 static void remote_detach (char *args, int from_tty);
125 static void remote_interrupt (int signo);
127 static void remote_interrupt_twice (int signo);
129 static void interrupt_query (void);
131 static void set_thread (int, int);
133 static int remote_thread_alive (ptid_t);
135 static void get_offsets (void);
137 static long read_frame (char *buf, long sizeof_buf);
139 static int remote_insert_breakpoint (CORE_ADDR, char *);
141 static int remote_remove_breakpoint (CORE_ADDR, char *);
143 static int hexnumlen (ULONGEST num);
145 static void init_remote_ops (void);
147 static void init_extended_remote_ops (void);
149 static void remote_stop (void);
151 static int ishex (int ch, int *val);
153 static int stubhex (int ch);
155 static int hexnumstr (char *, ULONGEST);
157 static int hexnumnstr (char *, ULONGEST, int);
159 static CORE_ADDR remote_address_masked (CORE_ADDR);
161 static void print_packet (char *);
163 static unsigned long crc32 (unsigned char *, int, unsigned int);
165 static void compare_sections_command (char *, int);
167 static void packet_command (char *, int);
169 static int stub_unpack_int (char *buff, int fieldlength);
171 static ptid_t remote_current_thread (ptid_t oldptid);
173 static void remote_find_new_threads (void);
175 static void record_currthread (int currthread);
177 static int fromhex (int a);
179 static int hex2bin (const char *hex, char *bin, int count);
181 static int bin2hex (const char *bin, char *hex, int count);
183 static int putpkt_binary (char *buf, int cnt);
185 static void check_binary_download (CORE_ADDR addr);
187 struct packet_config;
189 static void show_packet_config_cmd (struct packet_config *config);
191 static void update_packet_config (struct packet_config *config);
193 void _initialize_remote (void);
195 /* Description of the remote protocol. Strictly speaking, when the
196 target is open()ed, remote.c should create a per-target description
197 of the remote protocol using that target's architecture.
198 Unfortunately, the target stack doesn't include local state. For
199 the moment keep the information in the target's architecture
204 long offset; /* Offset into G packet. */
205 long regnum; /* GDB's internal register number. */
206 LONGEST pnum; /* Remote protocol register number. */
207 int in_g_packet; /* Always part of G packet. */
208 /* long size in bytes; == register_size (current_gdbarch, regnum);
210 /* char *name; == REGISTER_NAME (regnum); at present. */
215 /* Description of the remote protocol registers. */
216 long sizeof_g_packet;
218 /* Description of the remote protocol registers indexed by REGNUM
219 (making an array of NUM_REGS + NUM_PSEUDO_REGS in size). */
220 struct packet_reg *regs;
222 /* This is the size (in chars) of the first response to the ``g''
223 packet. It is used as a heuristic when determining the maximum
224 size of memory-read and memory-write packets. A target will
225 typically only reserve a buffer large enough to hold the ``g''
226 packet. The size does not include packet overhead (headers and
228 long actual_register_packet_size;
230 /* This is the maximum size (in chars) of a non read/write packet.
231 It is also used as a cap on the size of read/write packets. */
232 long remote_packet_size;
236 /* Handle for retreving the remote protocol data from gdbarch. */
237 static struct gdbarch_data *remote_gdbarch_data_handle;
239 static struct remote_state *
240 get_remote_state (void)
242 return gdbarch_data (current_gdbarch, remote_gdbarch_data_handle);
246 init_remote_state (struct gdbarch *gdbarch)
249 struct remote_state *rs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_state);
251 if (deprecated_register_bytes () != 0)
252 rs->sizeof_g_packet = deprecated_register_bytes ();
254 rs->sizeof_g_packet = 0;
256 /* Assume a 1:1 regnum<->pnum table. */
257 rs->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, NUM_REGS + NUM_PSEUDO_REGS,
259 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
261 struct packet_reg *r = &rs->regs[regnum];
264 r->offset = DEPRECATED_REGISTER_BYTE (regnum);
265 r->in_g_packet = (regnum < NUM_REGS);
266 /* ...name = REGISTER_NAME (regnum); */
268 /* Compute packet size by accumulating the size of all registers. */
269 if (deprecated_register_bytes () == 0)
270 rs->sizeof_g_packet += register_size (current_gdbarch, regnum);
273 /* Default maximum number of characters in a packet body. Many
274 remote stubs have a hardwired buffer size of 400 bytes
275 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
276 as the maximum packet-size to ensure that the packet and an extra
277 NUL character can always fit in the buffer. This stops GDB
278 trashing stubs that try to squeeze an extra NUL into what is
279 already a full buffer (As of 1999-12-04 that was most stubs. */
280 rs->remote_packet_size = 400 - 1;
282 /* Should rs->sizeof_g_packet needs more space than the
283 default, adjust the size accordingly. Remember that each byte is
284 encoded as two characters. 32 is the overhead for the packet
285 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
286 (``$NN:G...#NN'') is a better guess, the below has been padded a
288 if (rs->sizeof_g_packet > ((rs->remote_packet_size - 32) / 2))
289 rs->remote_packet_size = (rs->sizeof_g_packet * 2 + 32);
291 /* This one is filled in when a ``g'' packet is received. */
292 rs->actual_register_packet_size = 0;
297 static struct packet_reg *
298 packet_reg_from_regnum (struct remote_state *rs, long regnum)
300 if (regnum < 0 && regnum >= NUM_REGS + NUM_PSEUDO_REGS)
304 struct packet_reg *r = &rs->regs[regnum];
305 gdb_assert (r->regnum == regnum);
310 static struct packet_reg *
311 packet_reg_from_pnum (struct remote_state *rs, LONGEST pnum)
314 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
316 struct packet_reg *r = &rs->regs[i];
323 /* FIXME: graces/2002-08-08: These variables should eventually be
324 bound to an instance of the target object (as in gdbarch-tdep()),
325 when such a thing exists. */
327 /* This is set to the data address of the access causing the target
328 to stop for a watchpoint. */
329 static CORE_ADDR remote_watch_data_address;
331 /* This is non-zero if taregt stopped for a watchpoint. */
332 static int remote_stopped_by_watchpoint_p;
335 static struct target_ops remote_ops;
337 static struct target_ops extended_remote_ops;
339 /* Temporary target ops. Just like the remote_ops and
340 extended_remote_ops, but with asynchronous support. */
341 static struct target_ops remote_async_ops;
343 static struct target_ops extended_async_remote_ops;
345 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
346 ``forever'' still use the normal timeout mechanism. This is
347 currently used by the ASYNC code to guarentee that target reads
348 during the initial connect always time-out. Once getpkt has been
349 modified to return a timeout indication and, in turn
350 remote_wait()/wait_for_inferior() have gained a timeout parameter
352 static int wait_forever_enabled_p = 1;
355 /* This variable chooses whether to send a ^C or a break when the user
356 requests program interruption. Although ^C is usually what remote
357 systems expect, and that is the default here, sometimes a break is
358 preferable instead. */
360 static int remote_break;
362 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
363 remote_open knows that we don't have a file open when the program
365 static struct serial *remote_desc = NULL;
367 /* This variable sets the number of bits in an address that are to be
368 sent in a memory ("M" or "m") packet. Normally, after stripping
369 leading zeros, the entire address would be sent. This variable
370 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
371 initial implementation of remote.c restricted the address sent in
372 memory packets to ``host::sizeof long'' bytes - (typically 32
373 bits). Consequently, for 64 bit targets, the upper 32 bits of an
374 address was never sent. Since fixing this bug may cause a break in
375 some remote targets this variable is principly provided to
376 facilitate backward compatibility. */
378 static int remote_address_size;
380 /* Tempoary to track who currently owns the terminal. See
381 target_async_terminal_* for more details. */
383 static int remote_async_terminal_ours_p;
386 /* User configurable variables for the number of characters in a
387 memory read/write packet. MIN ((rs->remote_packet_size),
388 rs->sizeof_g_packet) is the default. Some targets need smaller
389 values (fifo overruns, et.al.) and some users need larger values
390 (speed up transfers). The variables ``preferred_*'' (the user
391 request), ``current_*'' (what was actually set) and ``forced_*''
392 (Positive - a soft limit, negative - a hard limit). */
394 struct memory_packet_config
401 /* Compute the current size of a read/write packet. Since this makes
402 use of ``actual_register_packet_size'' the computation is dynamic. */
405 get_memory_packet_size (struct memory_packet_config *config)
407 struct remote_state *rs = get_remote_state ();
408 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
409 law?) that some hosts don't cope very well with large alloca()
410 calls. Eventually the alloca() code will be replaced by calls to
411 xmalloc() and make_cleanups() allowing this restriction to either
412 be lifted or removed. */
413 #ifndef MAX_REMOTE_PACKET_SIZE
414 #define MAX_REMOTE_PACKET_SIZE 16384
416 /* NOTE: 20 ensures we can write at least one byte. */
417 #ifndef MIN_REMOTE_PACKET_SIZE
418 #define MIN_REMOTE_PACKET_SIZE 20
423 if (config->size <= 0)
424 what_they_get = MAX_REMOTE_PACKET_SIZE;
426 what_they_get = config->size;
430 what_they_get = (rs->remote_packet_size);
431 /* Limit the packet to the size specified by the user. */
433 && what_they_get > config->size)
434 what_they_get = config->size;
435 /* Limit it to the size of the targets ``g'' response. */
436 if ((rs->actual_register_packet_size) > 0
437 && what_they_get > (rs->actual_register_packet_size))
438 what_they_get = (rs->actual_register_packet_size);
440 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
441 what_they_get = MAX_REMOTE_PACKET_SIZE;
442 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
443 what_they_get = MIN_REMOTE_PACKET_SIZE;
444 return what_they_get;
447 /* Update the size of a read/write packet. If they user wants
448 something really big then do a sanity check. */
451 set_memory_packet_size (char *args, struct memory_packet_config *config)
453 int fixed_p = config->fixed_p;
454 long size = config->size;
456 error (_("Argument required (integer, `fixed' or `limited')."));
457 else if (strcmp (args, "hard") == 0
458 || strcmp (args, "fixed") == 0)
460 else if (strcmp (args, "soft") == 0
461 || strcmp (args, "limit") == 0)
466 size = strtoul (args, &end, 0);
468 error (_("Invalid %s (bad syntax)."), config->name);
470 /* Instead of explicitly capping the size of a packet to
471 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
472 instead allowed to set the size to something arbitrarily
474 if (size > MAX_REMOTE_PACKET_SIZE)
475 error (_("Invalid %s (too large)."), config->name);
479 if (fixed_p && !config->fixed_p)
481 if (! query (_("The target may not be able to correctly handle a %s\n"
482 "of %ld bytes. Change the packet size? "),
484 error (_("Packet size not changed."));
486 /* Update the config. */
487 config->fixed_p = fixed_p;
492 show_memory_packet_size (struct memory_packet_config *config)
494 printf_filtered (_("The %s is %ld. "), config->name, config->size);
496 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
497 get_memory_packet_size (config));
499 printf_filtered (_("Packets are limited to %ld bytes.\n"),
500 get_memory_packet_size (config));
503 static struct memory_packet_config memory_write_packet_config =
505 "memory-write-packet-size",
509 set_memory_write_packet_size (char *args, int from_tty)
511 set_memory_packet_size (args, &memory_write_packet_config);
515 show_memory_write_packet_size (char *args, int from_tty)
517 show_memory_packet_size (&memory_write_packet_config);
521 get_memory_write_packet_size (void)
523 return get_memory_packet_size (&memory_write_packet_config);
526 static struct memory_packet_config memory_read_packet_config =
528 "memory-read-packet-size",
532 set_memory_read_packet_size (char *args, int from_tty)
534 set_memory_packet_size (args, &memory_read_packet_config);
538 show_memory_read_packet_size (char *args, int from_tty)
540 show_memory_packet_size (&memory_read_packet_config);
544 get_memory_read_packet_size (void)
546 struct remote_state *rs = get_remote_state ();
547 long size = get_memory_packet_size (&memory_read_packet_config);
548 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
549 extra buffer size argument before the memory read size can be
550 increased beyond (rs->remote_packet_size). */
551 if (size > (rs->remote_packet_size))
552 size = (rs->remote_packet_size);
557 /* Generic configuration support for packets the stub optionally
558 supports. Allows the user to specify the use of the packet as well
559 as allowing GDB to auto-detect support in the remote stub. */
563 PACKET_SUPPORT_UNKNOWN = 0,
572 enum auto_boolean detect;
573 enum packet_support support;
576 /* Analyze a packet's return value and update the packet config
587 update_packet_config (struct packet_config *config)
589 switch (config->detect)
591 case AUTO_BOOLEAN_TRUE:
592 config->support = PACKET_ENABLE;
594 case AUTO_BOOLEAN_FALSE:
595 config->support = PACKET_DISABLE;
597 case AUTO_BOOLEAN_AUTO:
598 config->support = PACKET_SUPPORT_UNKNOWN;
604 show_packet_config_cmd (struct packet_config *config)
606 char *support = "internal-error";
607 switch (config->support)
613 support = "disabled";
615 case PACKET_SUPPORT_UNKNOWN:
619 switch (config->detect)
621 case AUTO_BOOLEAN_AUTO:
622 printf_filtered (_("Support for remote protocol `%s' (%s) packet is auto-detected, currently %s.\n"),
623 config->name, config->title, support);
625 case AUTO_BOOLEAN_TRUE:
626 case AUTO_BOOLEAN_FALSE:
627 printf_filtered (_("Support for remote protocol `%s' (%s) packet is currently %s.\n"),
628 config->name, config->title, support);
634 add_packet_config_cmd (struct packet_config *config,
637 cmd_sfunc_ftype *set_func,
638 show_value_ftype *show_func,
639 struct cmd_list_element **set_remote_list,
640 struct cmd_list_element **show_remote_list,
643 struct cmd_list_element *set_cmd;
644 struct cmd_list_element *show_cmd;
651 config->title = title;
652 config->detect = AUTO_BOOLEAN_AUTO;
653 config->support = PACKET_SUPPORT_UNKNOWN;
654 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
656 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
658 print = xstrprintf ("Current use of remote protocol `%s' (%s) is %%s",
660 /* set/show TITLE-packet {auto,on,off} */
661 cmd_name = xstrprintf ("%s-packet", title);
662 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
663 &config->detect, set_doc, show_doc, NULL, /* help_doc */
665 set_remote_list, show_remote_list);
666 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
670 legacy_name = xstrprintf ("%s-packet", name);
671 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
673 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
678 static enum packet_result
679 packet_ok (const char *buf, struct packet_config *config)
683 /* The stub recognized the packet request. Check that the
684 operation succeeded. */
685 switch (config->support)
687 case PACKET_SUPPORT_UNKNOWN:
689 fprintf_unfiltered (gdb_stdlog,
690 "Packet %s (%s) is supported\n",
691 config->name, config->title);
692 config->support = PACKET_ENABLE;
695 internal_error (__FILE__, __LINE__,
696 _("packet_ok: attempt to use a disabled packet"));
701 if (buf[0] == 'O' && buf[1] == 'K' && buf[2] == '\0')
702 /* "OK" - definitly OK. */
705 && isxdigit (buf[1]) && isxdigit (buf[2])
707 /* "Enn" - definitly an error. */
709 /* The packet may or may not be OK. Just assume it is. */
714 /* The stub does not support the packet. */
715 switch (config->support)
718 if (config->detect == AUTO_BOOLEAN_AUTO)
719 /* If the stub previously indicated that the packet was
720 supported then there is a protocol error.. */
721 error (_("Protocol error: %s (%s) conflicting enabled responses."),
722 config->name, config->title);
724 /* The user set it wrong. */
725 error (_("Enabled packet %s (%s) not recognized by stub"),
726 config->name, config->title);
728 case PACKET_SUPPORT_UNKNOWN:
730 fprintf_unfiltered (gdb_stdlog,
731 "Packet %s (%s) is NOT supported\n",
732 config->name, config->title);
733 config->support = PACKET_DISABLE;
738 return PACKET_UNKNOWN;
742 /* Should we try the 'vCont' (descriptive resume) request? */
743 static struct packet_config remote_protocol_vcont;
746 set_remote_protocol_vcont_packet_cmd (char *args, int from_tty,
747 struct cmd_list_element *c)
749 update_packet_config (&remote_protocol_vcont);
753 show_remote_protocol_vcont_packet_cmd (struct ui_file *file, int from_tty,
754 struct cmd_list_element *c,
757 deprecated_show_value_hack (file, from_tty, c, value);
758 show_packet_config_cmd (&remote_protocol_vcont);
761 /* Should we try the 'qSymbol' (target symbol lookup service) request? */
762 static struct packet_config remote_protocol_qSymbol;
765 set_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty,
766 struct cmd_list_element *c)
768 update_packet_config (&remote_protocol_qSymbol);
772 show_remote_protocol_qSymbol_packet_cmd (struct ui_file *file, int from_tty,
773 struct cmd_list_element *c,
776 deprecated_show_value_hack (file, from_tty, c, value);
777 show_packet_config_cmd (&remote_protocol_qSymbol);
780 /* Should we try the 'P' (set register) request? */
782 static struct packet_config remote_protocol_P;
785 set_remote_protocol_P_packet_cmd (char *args, int from_tty,
786 struct cmd_list_element *c)
788 update_packet_config (&remote_protocol_P);
792 show_remote_protocol_P_packet_cmd (struct ui_file *file, int from_tty,
793 struct cmd_list_element *c,
796 deprecated_show_value_hack (file, from_tty, c, value);
797 show_packet_config_cmd (&remote_protocol_P);
800 /* Should we try one of the 'Z' requests? */
804 Z_PACKET_SOFTWARE_BP,
805 Z_PACKET_HARDWARE_BP,
812 static struct packet_config remote_protocol_Z[NR_Z_PACKET_TYPES];
814 /* FIXME: Instead of having all these boiler plate functions, the
815 command callback should include a context argument. */
818 set_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty,
819 struct cmd_list_element *c)
821 update_packet_config (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
825 show_remote_protocol_Z_software_bp_packet_cmd (struct ui_file *file, int from_tty,
826 struct cmd_list_element *c,
829 deprecated_show_value_hack (file, from_tty, c, value);
830 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
834 set_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty,
835 struct cmd_list_element *c)
837 update_packet_config (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
841 show_remote_protocol_Z_hardware_bp_packet_cmd (struct ui_file *file, int from_tty,
842 struct cmd_list_element *c,
845 deprecated_show_value_hack (file, from_tty, c, value);
846 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
850 set_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty,
851 struct cmd_list_element *c)
853 update_packet_config (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
857 show_remote_protocol_Z_write_wp_packet_cmd (struct ui_file *file, int from_tty,
858 struct cmd_list_element *c,
861 deprecated_show_value_hack (file, from_tty, c, value);
862 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
866 set_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty,
867 struct cmd_list_element *c)
869 update_packet_config (&remote_protocol_Z[Z_PACKET_READ_WP]);
873 show_remote_protocol_Z_read_wp_packet_cmd (struct ui_file *file, int from_tty,
874 struct cmd_list_element *c,
877 deprecated_show_value_hack (file, from_tty, c, value);
878 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP]);
882 set_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty,
883 struct cmd_list_element *c)
885 update_packet_config (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
889 show_remote_protocol_Z_access_wp_packet_cmd (struct ui_file *file, int from_tty,
890 struct cmd_list_element *c,
893 deprecated_show_value_hack (file, from_tty, c, value);
894 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
897 /* For compatibility with older distributions. Provide a ``set remote
898 Z-packet ...'' command that updates all the Z packet types. */
900 static enum auto_boolean remote_Z_packet_detect;
903 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
904 struct cmd_list_element *c)
907 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
909 remote_protocol_Z[i].detect = remote_Z_packet_detect;
910 update_packet_config (&remote_protocol_Z[i]);
915 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
916 struct cmd_list_element *c,
920 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
922 show_packet_config_cmd (&remote_protocol_Z[i]);
926 /* Should we try the 'X' (remote binary download) packet?
928 This variable (available to the user via "set remote X-packet")
929 dictates whether downloads are sent in binary (via the 'X' packet).
930 We assume that the stub can, and attempt to do it. This will be
931 cleared if the stub does not understand it. This switch is still
932 needed, though in cases when the packet is supported in the stub,
933 but the connection does not allow it (i.e., 7-bit serial connection
936 static struct packet_config remote_protocol_binary_download;
938 /* Should we try the 'ThreadInfo' query packet?
940 This variable (NOT available to the user: auto-detect only!)
941 determines whether GDB will use the new, simpler "ThreadInfo"
942 query or the older, more complex syntax for thread queries.
943 This is an auto-detect variable (set to true at each connect,
944 and set to false when the target fails to recognize it). */
946 static int use_threadinfo_query;
947 static int use_threadextra_query;
950 set_remote_protocol_binary_download_cmd (char *args,
952 struct cmd_list_element *c)
954 update_packet_config (&remote_protocol_binary_download);
958 show_remote_protocol_binary_download_cmd (struct ui_file *file, int from_tty,
959 struct cmd_list_element *c,
962 deprecated_show_value_hack (file, from_tty, c, value);
963 show_packet_config_cmd (&remote_protocol_binary_download);
966 /* Should we try the 'qPart:auxv' (target auxiliary vector read) request? */
967 static struct packet_config remote_protocol_qPart_auxv;
970 set_remote_protocol_qPart_auxv_packet_cmd (char *args, int from_tty,
971 struct cmd_list_element *c)
973 update_packet_config (&remote_protocol_qPart_auxv);
977 show_remote_protocol_qPart_auxv_packet_cmd (struct ui_file *file, int from_tty,
978 struct cmd_list_element *c,
981 deprecated_show_value_hack (file, from_tty, c, value);
982 show_packet_config_cmd (&remote_protocol_qPart_auxv);
985 static struct packet_config remote_protocol_p;
988 set_remote_protocol_p_packet_cmd (char *args, int from_tty,
989 struct cmd_list_element *c)
991 update_packet_config (&remote_protocol_p);
995 show_remote_protocol_p_packet_cmd (struct ui_file *file, int from_tty,
996 struct cmd_list_element *c,
999 deprecated_show_value_hack (file, from_tty, c, value);
1000 show_packet_config_cmd (&remote_protocol_p);
1005 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1006 static void *sigint_remote_twice_token;
1007 static void *sigint_remote_token;
1009 /* These are pointers to hook functions that may be set in order to
1010 modify resume/wait behavior for a particular architecture. */
1012 void (*deprecated_target_resume_hook) (void);
1013 void (*deprecated_target_wait_loop_hook) (void);
1017 /* These are the threads which we last sent to the remote system.
1018 -1 for all or -2 for not sent yet. */
1019 static int general_thread;
1020 static int continue_thread;
1022 /* Call this function as a result of
1023 1) A halt indication (T packet) containing a thread id
1024 2) A direct query of currthread
1025 3) Successful execution of set thread
1029 record_currthread (int currthread)
1031 general_thread = currthread;
1033 /* If this is a new thread, add it to GDB's thread list.
1034 If we leave it up to WFI to do this, bad things will happen. */
1035 if (!in_thread_list (pid_to_ptid (currthread)))
1037 add_thread (pid_to_ptid (currthread));
1038 ui_out_text (uiout, "[New ");
1039 ui_out_text (uiout, target_pid_to_str (pid_to_ptid (currthread)));
1040 ui_out_text (uiout, "]\n");
1044 #define MAGIC_NULL_PID 42000
1047 set_thread (int th, int gen)
1049 struct remote_state *rs = get_remote_state ();
1050 char *buf = alloca (rs->remote_packet_size);
1051 int state = gen ? general_thread : continue_thread;
1057 buf[1] = gen ? 'g' : 'c';
1058 if (th == MAGIC_NULL_PID)
1064 sprintf (&buf[2], "-%x", -th);
1066 sprintf (&buf[2], "%x", th);
1068 getpkt (buf, (rs->remote_packet_size), 0);
1070 general_thread = th;
1072 continue_thread = th;
1075 /* Return nonzero if the thread TH is still alive on the remote system. */
1078 remote_thread_alive (ptid_t ptid)
1080 int tid = PIDGET (ptid);
1084 sprintf (buf, "T-%08x", -tid);
1086 sprintf (buf, "T%08x", tid);
1088 getpkt (buf, sizeof (buf), 0);
1089 return (buf[0] == 'O' && buf[1] == 'K');
1092 /* About these extended threadlist and threadinfo packets. They are
1093 variable length packets but, the fields within them are often fixed
1094 length. They are redundent enough to send over UDP as is the
1095 remote protocol in general. There is a matching unit test module
1098 #define OPAQUETHREADBYTES 8
1100 /* a 64 bit opaque identifier */
1101 typedef unsigned char threadref[OPAQUETHREADBYTES];
1103 /* WARNING: This threadref data structure comes from the remote O.S.,
1104 libstub protocol encoding, and remote.c. it is not particularly
1107 /* Right now, the internal structure is int. We want it to be bigger.
1111 typedef int gdb_threadref; /* Internal GDB thread reference. */
1113 /* gdb_ext_thread_info is an internal GDB data structure which is
1114 equivalint to the reply of the remote threadinfo packet. */
1116 struct gdb_ext_thread_info
1118 threadref threadid; /* External form of thread reference. */
1119 int active; /* Has state interesting to GDB?
1121 char display[256]; /* Brief state display, name,
1122 blocked/syspended. */
1123 char shortname[32]; /* To be used to name threads. */
1124 char more_display[256]; /* Long info, statistics, queue depth,
1128 /* The volume of remote transfers can be limited by submitting
1129 a mask containing bits specifying the desired information.
1130 Use a union of these values as the 'selection' parameter to
1131 get_thread_info. FIXME: Make these TAG names more thread specific.
1134 #define TAG_THREADID 1
1135 #define TAG_EXISTS 2
1136 #define TAG_DISPLAY 4
1137 #define TAG_THREADNAME 8
1138 #define TAG_MOREDISPLAY 16
1140 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1142 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1144 static char *unpack_nibble (char *buf, int *val);
1146 static char *pack_nibble (char *buf, int nibble);
1148 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1150 static char *unpack_byte (char *buf, int *value);
1152 static char *pack_int (char *buf, int value);
1154 static char *unpack_int (char *buf, int *value);
1156 static char *unpack_string (char *src, char *dest, int length);
1158 static char *pack_threadid (char *pkt, threadref *id);
1160 static char *unpack_threadid (char *inbuf, threadref *id);
1162 void int_to_threadref (threadref *id, int value);
1164 static int threadref_to_int (threadref *ref);
1166 static void copy_threadref (threadref *dest, threadref *src);
1168 static int threadmatch (threadref *dest, threadref *src);
1170 static char *pack_threadinfo_request (char *pkt, int mode,
1173 static int remote_unpack_thread_info_response (char *pkt,
1174 threadref *expectedref,
1175 struct gdb_ext_thread_info
1179 static int remote_get_threadinfo (threadref *threadid,
1180 int fieldset, /*TAG mask */
1181 struct gdb_ext_thread_info *info);
1183 static char *pack_threadlist_request (char *pkt, int startflag,
1185 threadref *nextthread);
1187 static int parse_threadlist_response (char *pkt,
1189 threadref *original_echo,
1190 threadref *resultlist,
1193 static int remote_get_threadlist (int startflag,
1194 threadref *nextthread,
1198 threadref *threadlist);
1200 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1202 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1203 void *context, int looplimit);
1205 static int remote_newthread_step (threadref *ref, void *context);
1207 /* Encode 64 bits in 16 chars of hex. */
1209 static const char hexchars[] = "0123456789abcdef";
1212 ishex (int ch, int *val)
1214 if ((ch >= 'a') && (ch <= 'f'))
1216 *val = ch - 'a' + 10;
1219 if ((ch >= 'A') && (ch <= 'F'))
1221 *val = ch - 'A' + 10;
1224 if ((ch >= '0') && (ch <= '9'))
1235 if (ch >= 'a' && ch <= 'f')
1236 return ch - 'a' + 10;
1237 if (ch >= '0' && ch <= '9')
1239 if (ch >= 'A' && ch <= 'F')
1240 return ch - 'A' + 10;
1245 stub_unpack_int (char *buff, int fieldlength)
1252 nibble = stubhex (*buff++);
1256 retval = retval << 4;
1262 unpack_varlen_hex (char *buff, /* packet to parse */
1268 while (ishex (*buff, &nibble))
1271 retval = retval << 4;
1272 retval |= nibble & 0x0f;
1279 unpack_nibble (char *buf, int *val)
1281 ishex (*buf++, val);
1286 pack_nibble (char *buf, int nibble)
1288 *buf++ = hexchars[(nibble & 0x0f)];
1293 pack_hex_byte (char *pkt, int byte)
1295 *pkt++ = hexchars[(byte >> 4) & 0xf];
1296 *pkt++ = hexchars[(byte & 0xf)];
1301 unpack_byte (char *buf, int *value)
1303 *value = stub_unpack_int (buf, 2);
1308 pack_int (char *buf, int value)
1310 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1311 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1312 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1313 buf = pack_hex_byte (buf, (value & 0xff));
1318 unpack_int (char *buf, int *value)
1320 *value = stub_unpack_int (buf, 8);
1324 #if 0 /* Currently unused, uncomment when needed. */
1325 static char *pack_string (char *pkt, char *string);
1328 pack_string (char *pkt, char *string)
1333 len = strlen (string);
1335 len = 200; /* Bigger than most GDB packets, junk??? */
1336 pkt = pack_hex_byte (pkt, len);
1340 if ((ch == '\0') || (ch == '#'))
1341 ch = '*'; /* Protect encapsulation. */
1346 #endif /* 0 (unused) */
1349 unpack_string (char *src, char *dest, int length)
1358 pack_threadid (char *pkt, threadref *id)
1361 unsigned char *altid;
1363 altid = (unsigned char *) id;
1364 limit = pkt + BUF_THREAD_ID_SIZE;
1366 pkt = pack_hex_byte (pkt, *altid++);
1372 unpack_threadid (char *inbuf, threadref *id)
1375 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1378 altref = (char *) id;
1380 while (inbuf < limit)
1382 x = stubhex (*inbuf++);
1383 y = stubhex (*inbuf++);
1384 *altref++ = (x << 4) | y;
1389 /* Externally, threadrefs are 64 bits but internally, they are still
1390 ints. This is due to a mismatch of specifications. We would like
1391 to use 64bit thread references internally. This is an adapter
1395 int_to_threadref (threadref *id, int value)
1397 unsigned char *scan;
1399 scan = (unsigned char *) id;
1405 *scan++ = (value >> 24) & 0xff;
1406 *scan++ = (value >> 16) & 0xff;
1407 *scan++ = (value >> 8) & 0xff;
1408 *scan++ = (value & 0xff);
1412 threadref_to_int (threadref *ref)
1415 unsigned char *scan;
1417 scan = (char *) ref;
1421 value = (value << 8) | ((*scan++) & 0xff);
1426 copy_threadref (threadref *dest, threadref *src)
1429 unsigned char *csrc, *cdest;
1431 csrc = (unsigned char *) src;
1432 cdest = (unsigned char *) dest;
1439 threadmatch (threadref *dest, threadref *src)
1441 /* Things are broken right now, so just assume we got a match. */
1443 unsigned char *srcp, *destp;
1445 srcp = (char *) src;
1446 destp = (char *) dest;
1450 result &= (*srcp++ == *destp++) ? 1 : 0;
1457 threadid:1, # always request threadid
1464 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1467 pack_threadinfo_request (char *pkt, int mode, threadref *id)
1469 *pkt++ = 'q'; /* Info Query */
1470 *pkt++ = 'P'; /* process or thread info */
1471 pkt = pack_int (pkt, mode); /* mode */
1472 pkt = pack_threadid (pkt, id); /* threadid */
1473 *pkt = '\0'; /* terminate */
1477 /* These values tag the fields in a thread info response packet. */
1478 /* Tagging the fields allows us to request specific fields and to
1479 add more fields as time goes by. */
1481 #define TAG_THREADID 1 /* Echo the thread identifier. */
1482 #define TAG_EXISTS 2 /* Is this process defined enough to
1483 fetch registers and its stack? */
1484 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1485 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
1486 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1490 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1491 struct gdb_ext_thread_info *info)
1493 struct remote_state *rs = get_remote_state ();
1497 char *limit = pkt + (rs->remote_packet_size); /* plausable parsing limit */
1500 /* info->threadid = 0; FIXME: implement zero_threadref. */
1502 info->display[0] = '\0';
1503 info->shortname[0] = '\0';
1504 info->more_display[0] = '\0';
1506 /* Assume the characters indicating the packet type have been
1508 pkt = unpack_int (pkt, &mask); /* arg mask */
1509 pkt = unpack_threadid (pkt, &ref);
1512 warning (_("Incomplete response to threadinfo request."));
1513 if (!threadmatch (&ref, expectedref))
1514 { /* This is an answer to a different request. */
1515 warning (_("ERROR RMT Thread info mismatch."));
1518 copy_threadref (&info->threadid, &ref);
1520 /* Loop on tagged fields , try to bail if somthing goes wrong. */
1522 /* Packets are terminated with nulls. */
1523 while ((pkt < limit) && mask && *pkt)
1525 pkt = unpack_int (pkt, &tag); /* tag */
1526 pkt = unpack_byte (pkt, &length); /* length */
1527 if (!(tag & mask)) /* Tags out of synch with mask. */
1529 warning (_("ERROR RMT: threadinfo tag mismatch."));
1533 if (tag == TAG_THREADID)
1537 warning (_("ERROR RMT: length of threadid is not 16."));
1541 pkt = unpack_threadid (pkt, &ref);
1542 mask = mask & ~TAG_THREADID;
1545 if (tag == TAG_EXISTS)
1547 info->active = stub_unpack_int (pkt, length);
1549 mask = mask & ~(TAG_EXISTS);
1552 warning (_("ERROR RMT: 'exists' length too long."));
1558 if (tag == TAG_THREADNAME)
1560 pkt = unpack_string (pkt, &info->shortname[0], length);
1561 mask = mask & ~TAG_THREADNAME;
1564 if (tag == TAG_DISPLAY)
1566 pkt = unpack_string (pkt, &info->display[0], length);
1567 mask = mask & ~TAG_DISPLAY;
1570 if (tag == TAG_MOREDISPLAY)
1572 pkt = unpack_string (pkt, &info->more_display[0], length);
1573 mask = mask & ~TAG_MOREDISPLAY;
1576 warning (_("ERROR RMT: unknown thread info tag."));
1577 break; /* Not a tag we know about. */
1583 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
1584 struct gdb_ext_thread_info *info)
1586 struct remote_state *rs = get_remote_state ();
1588 char *threadinfo_pkt = alloca (rs->remote_packet_size);
1590 pack_threadinfo_request (threadinfo_pkt, fieldset, threadid);
1591 putpkt (threadinfo_pkt);
1592 getpkt (threadinfo_pkt, (rs->remote_packet_size), 0);
1593 result = remote_unpack_thread_info_response (threadinfo_pkt + 2,
1598 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1601 pack_threadlist_request (char *pkt, int startflag, int threadcount,
1602 threadref *nextthread)
1604 *pkt++ = 'q'; /* info query packet */
1605 *pkt++ = 'L'; /* Process LIST or threadLIST request */
1606 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
1607 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
1608 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
1613 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1616 parse_threadlist_response (char *pkt, int result_limit,
1617 threadref *original_echo, threadref *resultlist,
1620 struct remote_state *rs = get_remote_state ();
1622 int count, resultcount, done;
1625 /* Assume the 'q' and 'M chars have been stripped. */
1626 limit = pkt + ((rs->remote_packet_size) - BUF_THREAD_ID_SIZE);
1627 /* done parse past here */
1628 pkt = unpack_byte (pkt, &count); /* count field */
1629 pkt = unpack_nibble (pkt, &done);
1630 /* The first threadid is the argument threadid. */
1631 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
1632 while ((count-- > 0) && (pkt < limit))
1634 pkt = unpack_threadid (pkt, resultlist++);
1635 if (resultcount++ >= result_limit)
1644 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
1645 int *done, int *result_count, threadref *threadlist)
1647 struct remote_state *rs = get_remote_state ();
1648 static threadref echo_nextthread;
1649 char *threadlist_packet = alloca (rs->remote_packet_size);
1650 char *t_response = alloca (rs->remote_packet_size);
1653 /* Trancate result limit to be smaller than the packet size. */
1654 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= (rs->remote_packet_size))
1655 result_limit = ((rs->remote_packet_size) / BUF_THREAD_ID_SIZE) - 2;
1657 pack_threadlist_request (threadlist_packet,
1658 startflag, result_limit, nextthread);
1659 putpkt (threadlist_packet);
1660 getpkt (t_response, (rs->remote_packet_size), 0);
1663 parse_threadlist_response (t_response + 2, result_limit, &echo_nextthread,
1666 if (!threadmatch (&echo_nextthread, nextthread))
1668 /* FIXME: This is a good reason to drop the packet. */
1669 /* Possably, there is a duplicate response. */
1671 retransmit immediatly - race conditions
1672 retransmit after timeout - yes
1674 wait for packet, then exit
1676 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
1677 return 0; /* I choose simply exiting. */
1679 if (*result_count <= 0)
1683 warning (_("RMT ERROR : failed to get remote thread list."));
1686 return result; /* break; */
1688 if (*result_count > result_limit)
1691 warning (_("RMT ERROR: threadlist response longer than requested."));
1697 /* This is the interface between remote and threads, remotes upper
1700 /* remote_find_new_threads retrieves the thread list and for each
1701 thread in the list, looks up the thread in GDB's internal list,
1702 ading the thread if it does not already exist. This involves
1703 getting partial thread lists from the remote target so, polling the
1704 quit_flag is required. */
1707 /* About this many threadisds fit in a packet. */
1709 #define MAXTHREADLISTRESULTS 32
1712 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
1715 int done, i, result_count;
1719 static threadref nextthread;
1720 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
1725 if (loopcount++ > looplimit)
1728 warning (_("Remote fetch threadlist -infinite loop-."));
1731 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
1732 &done, &result_count, resultthreadlist))
1737 /* Clear for later iterations. */
1739 /* Setup to resume next batch of thread references, set nextthread. */
1740 if (result_count >= 1)
1741 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
1743 while (result_count--)
1744 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
1751 remote_newthread_step (threadref *ref, void *context)
1755 ptid = pid_to_ptid (threadref_to_int (ref));
1757 if (!in_thread_list (ptid))
1759 return 1; /* continue iterator */
1762 #define CRAZY_MAX_THREADS 1000
1765 remote_current_thread (ptid_t oldpid)
1767 struct remote_state *rs = get_remote_state ();
1768 char *buf = alloca (rs->remote_packet_size);
1771 getpkt (buf, (rs->remote_packet_size), 0);
1772 if (buf[0] == 'Q' && buf[1] == 'C')
1773 /* Use strtoul here, so we'll correctly parse values whose highest
1774 bit is set. The protocol carries them as a simple series of
1775 hex digits; in the absence of a sign, strtol will see such
1776 values as positive numbers out of range for signed 'long', and
1777 return LONG_MAX to indicate an overflow. */
1778 return pid_to_ptid (strtoul (&buf[2], NULL, 16));
1783 /* Find new threads for info threads command.
1784 * Original version, using John Metzler's thread protocol.
1788 remote_find_new_threads (void)
1790 remote_threadlist_iterator (remote_newthread_step, 0,
1792 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID) /* ack ack ack */
1793 inferior_ptid = remote_current_thread (inferior_ptid);
1797 * Find all threads for info threads command.
1798 * Uses new thread protocol contributed by Cisco.
1799 * Falls back and attempts to use the older method (above)
1800 * if the target doesn't respond to the new method.
1804 remote_threads_info (void)
1806 struct remote_state *rs = get_remote_state ();
1807 char *buf = alloca (rs->remote_packet_size);
1811 if (remote_desc == 0) /* paranoia */
1812 error (_("Command can only be used when connected to the remote target."));
1814 if (use_threadinfo_query)
1816 putpkt ("qfThreadInfo");
1818 getpkt (bufp, (rs->remote_packet_size), 0);
1819 if (bufp[0] != '\0') /* q packet recognized */
1821 while (*bufp++ == 'm') /* reply contains one or more TID */
1825 /* Use strtoul here, so we'll correctly parse values
1826 whose highest bit is set. The protocol carries
1827 them as a simple series of hex digits; in the
1828 absence of a sign, strtol will see such values as
1829 positive numbers out of range for signed 'long',
1830 and return LONG_MAX to indicate an overflow. */
1831 tid = strtoul (bufp, &bufp, 16);
1832 if (tid != 0 && !in_thread_list (pid_to_ptid (tid)))
1833 add_thread (pid_to_ptid (tid));
1835 while (*bufp++ == ','); /* comma-separated list */
1836 putpkt ("qsThreadInfo");
1838 getpkt (bufp, (rs->remote_packet_size), 0);
1844 /* Else fall back to old method based on jmetzler protocol. */
1845 use_threadinfo_query = 0;
1846 remote_find_new_threads ();
1851 * Collect a descriptive string about the given thread.
1852 * The target may say anything it wants to about the thread
1853 * (typically info about its blocked / runnable state, name, etc.).
1854 * This string will appear in the info threads display.
1856 * Optional: targets are not required to implement this function.
1860 remote_threads_extra_info (struct thread_info *tp)
1862 struct remote_state *rs = get_remote_state ();
1866 struct gdb_ext_thread_info threadinfo;
1867 static char display_buf[100]; /* arbitrary... */
1868 char *bufp = alloca (rs->remote_packet_size);
1869 int n = 0; /* position in display_buf */
1871 if (remote_desc == 0) /* paranoia */
1872 internal_error (__FILE__, __LINE__,
1873 _("remote_threads_extra_info"));
1875 if (use_threadextra_query)
1877 sprintf (bufp, "qThreadExtraInfo,%x", PIDGET (tp->ptid));
1879 getpkt (bufp, (rs->remote_packet_size), 0);
1882 n = min (strlen (bufp) / 2, sizeof (display_buf));
1883 result = hex2bin (bufp, display_buf, n);
1884 display_buf [result] = '\0';
1889 /* If the above query fails, fall back to the old method. */
1890 use_threadextra_query = 0;
1891 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
1892 | TAG_MOREDISPLAY | TAG_DISPLAY;
1893 int_to_threadref (&id, PIDGET (tp->ptid));
1894 if (remote_get_threadinfo (&id, set, &threadinfo))
1895 if (threadinfo.active)
1897 if (*threadinfo.shortname)
1898 n += sprintf(&display_buf[0], " Name: %s,", threadinfo.shortname);
1899 if (*threadinfo.display)
1900 n += sprintf(&display_buf[n], " State: %s,", threadinfo.display);
1901 if (*threadinfo.more_display)
1902 n += sprintf(&display_buf[n], " Priority: %s",
1903 threadinfo.more_display);
1907 /* For purely cosmetic reasons, clear up trailing commas. */
1908 if (',' == display_buf[n-1])
1909 display_buf[n-1] = ' ';
1918 /* Restart the remote side; this is an extended protocol operation. */
1921 extended_remote_restart (void)
1923 struct remote_state *rs = get_remote_state ();
1924 char *buf = alloca (rs->remote_packet_size);
1926 /* Send the restart command; for reasons I don't understand the
1927 remote side really expects a number after the "R". */
1929 sprintf (&buf[1], "%x", 0);
1932 /* Now query for status so this looks just like we restarted
1933 gdbserver from scratch. */
1935 getpkt (buf, (rs->remote_packet_size), 0);
1938 /* Clean up connection to a remote debugger. */
1941 remote_close (int quitting)
1944 serial_close (remote_desc);
1948 /* Query the remote side for the text, data and bss offsets. */
1953 struct remote_state *rs = get_remote_state ();
1954 char *buf = alloca (rs->remote_packet_size);
1957 CORE_ADDR text_addr, data_addr, bss_addr;
1958 struct section_offsets *offs;
1960 putpkt ("qOffsets");
1962 getpkt (buf, (rs->remote_packet_size), 0);
1964 if (buf[0] == '\000')
1965 return; /* Return silently. Stub doesn't support
1969 warning (_("Remote failure reply: %s"), buf);
1973 /* Pick up each field in turn. This used to be done with scanf, but
1974 scanf will make trouble if CORE_ADDR size doesn't match
1975 conversion directives correctly. The following code will work
1976 with any size of CORE_ADDR. */
1977 text_addr = data_addr = bss_addr = 0;
1981 if (strncmp (ptr, "Text=", 5) == 0)
1984 /* Don't use strtol, could lose on big values. */
1985 while (*ptr && *ptr != ';')
1986 text_addr = (text_addr << 4) + fromhex (*ptr++);
1991 if (!lose && strncmp (ptr, ";Data=", 6) == 0)
1994 while (*ptr && *ptr != ';')
1995 data_addr = (data_addr << 4) + fromhex (*ptr++);
2000 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2003 while (*ptr && *ptr != ';')
2004 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
2010 error (_("Malformed response to offset query, %s"), buf);
2012 if (symfile_objfile == NULL)
2015 offs = ((struct section_offsets *)
2016 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
2017 memcpy (offs, symfile_objfile->section_offsets,
2018 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
2020 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2022 /* This is a temporary kludge to force data and bss to use the same offsets
2023 because that's what nlmconv does now. The real solution requires changes
2024 to the stub and remote.c that I don't have time to do right now. */
2026 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2027 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2029 objfile_relocate (symfile_objfile, offs);
2032 /* Stub for catch_errors. */
2035 remote_start_remote_dummy (struct ui_out *uiout, void *dummy)
2037 start_remote (); /* Initialize gdb process mechanisms. */
2038 /* NOTE: Return something >=0. A -ve value is reserved for
2039 catch_exceptions. */
2044 remote_start_remote (struct ui_out *uiout, void *dummy)
2046 immediate_quit++; /* Allow user to interrupt it. */
2048 /* Ack any packet which the remote side has already sent. */
2049 serial_write (remote_desc, "+", 1);
2051 /* Let the stub know that we want it to return the thread. */
2054 inferior_ptid = remote_current_thread (inferior_ptid);
2056 get_offsets (); /* Get text, data & bss offsets. */
2058 putpkt ("?"); /* Initiate a query from remote machine. */
2061 remote_start_remote_dummy (uiout, dummy);
2064 /* Open a connection to a remote debugger.
2065 NAME is the filename used for communication. */
2068 remote_open (char *name, int from_tty)
2070 remote_open_1 (name, from_tty, &remote_ops, 0, 0);
2073 /* Just like remote_open, but with asynchronous support. */
2075 remote_async_open (char *name, int from_tty)
2077 remote_open_1 (name, from_tty, &remote_async_ops, 0, 1);
2080 /* Open a connection to a remote debugger using the extended
2081 remote gdb protocol. NAME is the filename used for communication. */
2084 extended_remote_open (char *name, int from_tty)
2086 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */,
2090 /* Just like extended_remote_open, but with asynchronous support. */
2092 extended_remote_async_open (char *name, int from_tty)
2094 remote_open_1 (name, from_tty, &extended_async_remote_ops,
2095 1 /*extended_p */, 1 /* async_p */);
2098 /* Generic code for opening a connection to a remote target. */
2101 init_all_packet_configs (void)
2104 update_packet_config (&remote_protocol_P);
2105 update_packet_config (&remote_protocol_p);
2106 update_packet_config (&remote_protocol_qSymbol);
2107 update_packet_config (&remote_protocol_vcont);
2108 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2109 update_packet_config (&remote_protocol_Z[i]);
2110 /* Force remote_write_bytes to check whether target supports binary
2112 update_packet_config (&remote_protocol_binary_download);
2113 update_packet_config (&remote_protocol_qPart_auxv);
2116 /* Symbol look-up. */
2119 remote_check_symbols (struct objfile *objfile)
2121 struct remote_state *rs = get_remote_state ();
2122 char *msg, *reply, *tmp;
2123 struct minimal_symbol *sym;
2126 if (remote_protocol_qSymbol.support == PACKET_DISABLE)
2129 msg = alloca (rs->remote_packet_size);
2130 reply = alloca (rs->remote_packet_size);
2132 /* Invite target to request symbol lookups. */
2134 putpkt ("qSymbol::");
2135 getpkt (reply, (rs->remote_packet_size), 0);
2136 packet_ok (reply, &remote_protocol_qSymbol);
2138 while (strncmp (reply, "qSymbol:", 8) == 0)
2141 end = hex2bin (tmp, msg, strlen (tmp) / 2);
2143 sym = lookup_minimal_symbol (msg, NULL, NULL);
2145 sprintf (msg, "qSymbol::%s", &reply[8]);
2147 sprintf (msg, "qSymbol:%s:%s",
2148 paddr_nz (SYMBOL_VALUE_ADDRESS (sym)),
2151 getpkt (reply, (rs->remote_packet_size), 0);
2155 static struct serial *
2156 remote_serial_open (char *name)
2158 static int udp_warning = 0;
2160 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2161 of in ser-tcp.c, because it is the remote protocol assuming that the
2162 serial connection is reliable and not the serial connection promising
2164 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2167 The remote protocol may be unreliable over UDP.\n\
2168 Some events may be lost, rendering further debugging impossible."));
2172 return serial_open (name);
2176 remote_open_1 (char *name, int from_tty, struct target_ops *target,
2177 int extended_p, int async_p)
2179 struct exception ex;
2180 struct remote_state *rs = get_remote_state ();
2182 error (_("To open a remote debug connection, you need to specify what\n"
2183 "serial device is attached to the remote system\n"
2184 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
2186 /* See FIXME above. */
2188 wait_forever_enabled_p = 1;
2190 reopen_exec_file ();
2193 target_preopen (from_tty);
2195 unpush_target (target);
2197 remote_desc = remote_serial_open (name);
2199 perror_with_name (name);
2201 if (baud_rate != -1)
2203 if (serial_setbaudrate (remote_desc, baud_rate))
2205 /* The requested speed could not be set. Error out to
2206 top level after closing remote_desc. Take care to
2207 set remote_desc to NULL to avoid closing remote_desc
2209 serial_close (remote_desc);
2211 perror_with_name (name);
2215 serial_raw (remote_desc);
2217 /* If there is something sitting in the buffer we might take it as a
2218 response to a command, which would be bad. */
2219 serial_flush_input (remote_desc);
2223 puts_filtered ("Remote debugging using ");
2224 puts_filtered (name);
2225 puts_filtered ("\n");
2227 push_target (target); /* Switch to using remote target now. */
2229 init_all_packet_configs ();
2231 general_thread = -2;
2232 continue_thread = -2;
2234 /* Probe for ability to use "ThreadInfo" query, as required. */
2235 use_threadinfo_query = 1;
2236 use_threadextra_query = 1;
2238 /* Without this, some commands which require an active target (such
2239 as kill) won't work. This variable serves (at least) double duty
2240 as both the pid of the target process (if it has such), and as a
2241 flag indicating that a target is active. These functions should
2242 be split out into seperate variables, especially since GDB will
2243 someday have a notion of debugging several processes. */
2245 inferior_ptid = pid_to_ptid (MAGIC_NULL_PID);
2249 /* With this target we start out by owning the terminal. */
2250 remote_async_terminal_ours_p = 1;
2252 /* FIXME: cagney/1999-09-23: During the initial connection it is
2253 assumed that the target is already ready and able to respond to
2254 requests. Unfortunately remote_start_remote() eventually calls
2255 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2256 around this. Eventually a mechanism that allows
2257 wait_for_inferior() to expect/get timeouts will be
2259 wait_forever_enabled_p = 0;
2262 #ifdef SOLIB_CREATE_INFERIOR_HOOK
2263 /* First delete any symbols previously loaded from shared libraries. */
2264 no_shared_libraries (NULL, 0);
2267 /* Start the remote connection. If error() or QUIT, discard this
2268 target (we'd otherwise be in an inconsistent state) and then
2269 propogate the error on up the exception chain. This ensures that
2270 the caller doesn't stumble along blindly assuming that the
2271 function succeeded. The CLI doesn't have this problem but other
2272 UI's, such as MI do.
2274 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2275 this function should return an error indication letting the
2276 caller restore the previous state. Unfortunately the command
2277 ``target remote'' is directly wired to this function making that
2278 impossible. On a positive note, the CLI side of this problem has
2279 been fixed - the function set_cmd_context() makes it possible for
2280 all the ``target ....'' commands to share a common callback
2281 function. See cli-dump.c. */
2282 ex = catch_exception (uiout, remote_start_remote, NULL, RETURN_MASK_ALL);
2287 wait_forever_enabled_p = 1;
2288 throw_exception (ex);
2292 wait_forever_enabled_p = 1;
2296 /* Tell the remote that we are using the extended protocol. */
2297 char *buf = alloca (rs->remote_packet_size);
2299 getpkt (buf, (rs->remote_packet_size), 0);
2301 #ifdef SOLIB_CREATE_INFERIOR_HOOK
2302 /* FIXME: need a master target_open vector from which all
2303 remote_opens can be called, so that stuff like this can
2304 go there. Failing that, the following code must be copied
2305 to the open function for any remote target that wants to
2306 support svr4 shared libraries. */
2308 /* Set up to detect and load shared libraries. */
2309 if (exec_bfd) /* No use without an exec file. */
2311 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
2312 remote_check_symbols (symfile_objfile);
2316 observer_notify_inferior_created (¤t_target, from_tty);
2319 /* This takes a program previously attached to and detaches it. After
2320 this is done, GDB can be used to debug some other program. We
2321 better not have left any breakpoints in the target program or it'll
2322 die when it hits one. */
2325 remote_detach (char *args, int from_tty)
2327 struct remote_state *rs = get_remote_state ();
2328 char *buf = alloca (rs->remote_packet_size);
2331 error (_("Argument given to \"detach\" when remotely debugging."));
2333 /* Tell the remote target to detach. */
2335 remote_send (buf, (rs->remote_packet_size));
2337 /* Unregister the file descriptor from the event loop. */
2338 if (target_is_async_p ())
2339 serial_async (remote_desc, NULL, 0);
2341 target_mourn_inferior ();
2343 puts_filtered ("Ending remote debugging.\n");
2346 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2349 remote_disconnect (char *args, int from_tty)
2351 struct remote_state *rs = get_remote_state ();
2352 char *buf = alloca (rs->remote_packet_size);
2355 error (_("Argument given to \"detach\" when remotely debugging."));
2357 /* Unregister the file descriptor from the event loop. */
2358 if (target_is_async_p ())
2359 serial_async (remote_desc, NULL, 0);
2361 target_mourn_inferior ();
2363 puts_filtered ("Ending remote debugging.\n");
2366 /* Convert hex digit A to a number. */
2371 if (a >= '0' && a <= '9')
2373 else if (a >= 'a' && a <= 'f')
2374 return a - 'a' + 10;
2375 else if (a >= 'A' && a <= 'F')
2376 return a - 'A' + 10;
2378 error (_("Reply contains invalid hex digit %d"), a);
2382 hex2bin (const char *hex, char *bin, int count)
2386 for (i = 0; i < count; i++)
2388 if (hex[0] == 0 || hex[1] == 0)
2390 /* Hex string is short, or of uneven length.
2391 Return the count that has been converted so far. */
2394 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
2400 /* Convert number NIB to a hex digit. */
2408 return 'a' + nib - 10;
2412 bin2hex (const char *bin, char *hex, int count)
2415 /* May use a length, or a nul-terminated string as input. */
2417 count = strlen (bin);
2419 for (i = 0; i < count; i++)
2421 *hex++ = tohex ((*bin >> 4) & 0xf);
2422 *hex++ = tohex (*bin++ & 0xf);
2428 /* Check for the availability of vCont. This function should also check
2432 remote_vcont_probe (struct remote_state *rs, char *buf)
2434 strcpy (buf, "vCont?");
2436 getpkt (buf, rs->remote_packet_size, 0);
2438 /* Make sure that the features we assume are supported. */
2439 if (strncmp (buf, "vCont", 5) == 0)
2442 int support_s, support_S, support_c, support_C;
2448 while (p && *p == ';')
2451 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
2453 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
2455 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
2457 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
2460 p = strchr (p, ';');
2463 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
2464 BUF will make packet_ok disable the packet. */
2465 if (!support_s || !support_S || !support_c || !support_C)
2469 packet_ok (buf, &remote_protocol_vcont);
2472 /* Resume the remote inferior by using a "vCont" packet. The thread
2473 to be resumed is PTID; STEP and SIGGNAL indicate whether the
2474 resumed thread should be single-stepped and/or signalled. If PTID's
2475 PID is -1, then all threads are resumed; the thread to be stepped and/or
2476 signalled is given in the global INFERIOR_PTID. This function returns
2477 non-zero iff it resumes the inferior.
2479 This function issues a strict subset of all possible vCont commands at the
2483 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
2485 struct remote_state *rs = get_remote_state ();
2486 int pid = PIDGET (ptid);
2487 char *buf = NULL, *outbuf;
2488 struct cleanup *old_cleanup;
2490 buf = xmalloc (rs->remote_packet_size);
2491 old_cleanup = make_cleanup (xfree, buf);
2493 if (remote_protocol_vcont.support == PACKET_SUPPORT_UNKNOWN)
2494 remote_vcont_probe (rs, buf);
2496 if (remote_protocol_vcont.support == PACKET_DISABLE)
2498 do_cleanups (old_cleanup);
2502 /* If we could generate a wider range of packets, we'd have to worry
2503 about overflowing BUF. Should there be a generic
2504 "multi-part-packet" packet? */
2506 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID)
2508 /* MAGIC_NULL_PTID means that we don't have any active threads, so we
2509 don't have any PID numbers the inferior will understand. Make sure
2510 to only send forms that do not specify a PID. */
2511 if (step && siggnal != TARGET_SIGNAL_0)
2512 outbuf = xstrprintf ("vCont;S%02x", siggnal);
2514 outbuf = xstrprintf ("vCont;s");
2515 else if (siggnal != TARGET_SIGNAL_0)
2516 outbuf = xstrprintf ("vCont;C%02x", siggnal);
2518 outbuf = xstrprintf ("vCont;c");
2522 /* Resume all threads, with preference for INFERIOR_PTID. */
2523 if (step && siggnal != TARGET_SIGNAL_0)
2524 outbuf = xstrprintf ("vCont;S%02x:%x;c", siggnal,
2525 PIDGET (inferior_ptid));
2527 outbuf = xstrprintf ("vCont;s:%x;c", PIDGET (inferior_ptid));
2528 else if (siggnal != TARGET_SIGNAL_0)
2529 outbuf = xstrprintf ("vCont;C%02x:%x;c", siggnal,
2530 PIDGET (inferior_ptid));
2532 outbuf = xstrprintf ("vCont;c");
2536 /* Scheduler locking; resume only PTID. */
2537 if (step && siggnal != TARGET_SIGNAL_0)
2538 outbuf = xstrprintf ("vCont;S%02x:%x", siggnal, pid);
2540 outbuf = xstrprintf ("vCont;s:%x", pid);
2541 else if (siggnal != TARGET_SIGNAL_0)
2542 outbuf = xstrprintf ("vCont;C%02x:%x", siggnal, pid);
2544 outbuf = xstrprintf ("vCont;c:%x", pid);
2547 gdb_assert (outbuf && strlen (outbuf) < rs->remote_packet_size);
2548 make_cleanup (xfree, outbuf);
2552 do_cleanups (old_cleanup);
2557 /* Tell the remote machine to resume. */
2559 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
2561 static int last_sent_step;
2564 remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
2566 struct remote_state *rs = get_remote_state ();
2567 char *buf = alloca (rs->remote_packet_size);
2568 int pid = PIDGET (ptid);
2571 last_sent_signal = siggnal;
2572 last_sent_step = step;
2574 /* A hook for when we need to do something at the last moment before
2576 if (deprecated_target_resume_hook)
2577 (*deprecated_target_resume_hook) ();
2579 /* The vCont packet doesn't need to specify threads via Hc. */
2580 if (remote_vcont_resume (ptid, step, siggnal))
2583 /* All other supported resume packets do use Hc, so call set_thread. */
2585 set_thread (0, 0); /* Run any thread. */
2587 set_thread (pid, 0); /* Run this thread. */
2589 if (siggnal != TARGET_SIGNAL_0)
2591 buf[0] = step ? 'S' : 'C';
2592 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
2593 buf[2] = tohex (((int) siggnal) & 0xf);
2597 strcpy (buf, step ? "s" : "c");
2602 /* Same as remote_resume, but with async support. */
2604 remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
2606 remote_resume (ptid, step, siggnal);
2608 /* We are about to start executing the inferior, let's register it
2609 with the event loop. NOTE: this is the one place where all the
2610 execution commands end up. We could alternatively do this in each
2611 of the execution commands in infcmd.c. */
2612 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
2613 into infcmd.c in order to allow inferior function calls to work
2614 NOT asynchronously. */
2615 if (target_can_async_p ())
2616 target_async (inferior_event_handler, 0);
2617 /* Tell the world that the target is now executing. */
2618 /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
2619 this? Instead, should the client of target just assume (for
2620 async targets) that the target is going to start executing? Is
2621 this information already found in the continuation block? */
2622 if (target_is_async_p ())
2623 target_executing = 1;
2627 /* Set up the signal handler for SIGINT, while the target is
2628 executing, ovewriting the 'regular' SIGINT signal handler. */
2630 initialize_sigint_signal_handler (void)
2632 sigint_remote_token =
2633 create_async_signal_handler (async_remote_interrupt, NULL);
2634 signal (SIGINT, handle_remote_sigint);
2637 /* Signal handler for SIGINT, while the target is executing. */
2639 handle_remote_sigint (int sig)
2641 signal (sig, handle_remote_sigint_twice);
2642 sigint_remote_twice_token =
2643 create_async_signal_handler (async_remote_interrupt_twice, NULL);
2644 mark_async_signal_handler_wrapper (sigint_remote_token);
2647 /* Signal handler for SIGINT, installed after SIGINT has already been
2648 sent once. It will take effect the second time that the user sends
2651 handle_remote_sigint_twice (int sig)
2653 signal (sig, handle_sigint);
2654 sigint_remote_twice_token =
2655 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
2656 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
2659 /* Perform the real interruption of the target execution, in response
2662 async_remote_interrupt (gdb_client_data arg)
2665 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2670 /* Perform interrupt, if the first attempt did not succeed. Just give
2671 up on the target alltogether. */
2673 async_remote_interrupt_twice (gdb_client_data arg)
2676 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
2677 /* Do something only if the target was not killed by the previous
2679 if (target_executing)
2682 signal (SIGINT, handle_remote_sigint);
2686 /* Reinstall the usual SIGINT handlers, after the target has
2689 cleanup_sigint_signal_handler (void *dummy)
2691 signal (SIGINT, handle_sigint);
2692 if (sigint_remote_twice_token)
2693 delete_async_signal_handler ((struct async_signal_handler **)
2694 &sigint_remote_twice_token);
2695 if (sigint_remote_token)
2696 delete_async_signal_handler ((struct async_signal_handler **)
2697 &sigint_remote_token);
2700 /* Send ^C to target to halt it. Target will respond, and send us a
2702 static void (*ofunc) (int);
2704 /* The command line interface's stop routine. This function is installed
2705 as a signal handler for SIGINT. The first time a user requests a
2706 stop, we call remote_stop to send a break or ^C. If there is no
2707 response from the target (it didn't stop when the user requested it),
2708 we ask the user if he'd like to detach from the target. */
2710 remote_interrupt (int signo)
2712 /* If this doesn't work, try more severe steps. */
2713 signal (signo, remote_interrupt_twice);
2716 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2721 /* The user typed ^C twice. */
2724 remote_interrupt_twice (int signo)
2726 signal (signo, ofunc);
2728 signal (signo, remote_interrupt);
2731 /* This is the generic stop called via the target vector. When a target
2732 interrupt is requested, either by the command line or the GUI, we
2733 will eventually end up here. */
2737 /* Send a break or a ^C, depending on user preference. */
2739 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
2742 serial_send_break (remote_desc);
2744 serial_write (remote_desc, "\003", 1);
2747 /* Ask the user what to do when an interrupt is received. */
2750 interrupt_query (void)
2752 target_terminal_ours ();
2754 if (query ("Interrupted while waiting for the program.\n\
2755 Give up (and stop debugging it)? "))
2757 target_mourn_inferior ();
2758 deprecated_throw_reason (RETURN_QUIT);
2761 target_terminal_inferior ();
2764 /* Enable/disable target terminal ownership. Most targets can use
2765 terminal groups to control terminal ownership. Remote targets are
2766 different in that explicit transfer of ownership to/from GDB/target
2770 remote_async_terminal_inferior (void)
2772 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
2773 sync_execution here. This function should only be called when
2774 GDB is resuming the inferior in the forground. A background
2775 resume (``run&'') should leave GDB in control of the terminal and
2776 consequently should not call this code. */
2777 if (!sync_execution)
2779 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
2780 calls target_terminal_*() idenpotent. The event-loop GDB talking
2781 to an asynchronous target with a synchronous command calls this
2782 function from both event-top.c and infrun.c/infcmd.c. Once GDB
2783 stops trying to transfer the terminal to the target when it
2784 shouldn't this guard can go away. */
2785 if (!remote_async_terminal_ours_p)
2787 delete_file_handler (input_fd);
2788 remote_async_terminal_ours_p = 0;
2789 initialize_sigint_signal_handler ();
2790 /* NOTE: At this point we could also register our selves as the
2791 recipient of all input. Any characters typed could then be
2792 passed on down to the target. */
2796 remote_async_terminal_ours (void)
2798 /* See FIXME in remote_async_terminal_inferior. */
2799 if (!sync_execution)
2801 /* See FIXME in remote_async_terminal_inferior. */
2802 if (remote_async_terminal_ours_p)
2804 cleanup_sigint_signal_handler (NULL);
2805 add_file_handler (input_fd, stdin_event_handler, 0);
2806 remote_async_terminal_ours_p = 1;
2809 /* If nonzero, ignore the next kill. */
2814 remote_console_output (char *msg)
2818 for (p = msg; p[0] && p[1]; p += 2)
2821 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
2824 fputs_unfiltered (tb, gdb_stdtarg);
2826 gdb_flush (gdb_stdtarg);
2829 /* Wait until the remote machine stops, then return,
2830 storing status in STATUS just as `wait' would.
2831 Returns "pid", which in the case of a multi-threaded
2832 remote OS, is the thread-id. */
2835 remote_wait (ptid_t ptid, struct target_waitstatus *status)
2837 struct remote_state *rs = get_remote_state ();
2838 unsigned char *buf = alloca (rs->remote_packet_size);
2839 ULONGEST thread_num = -1;
2842 status->kind = TARGET_WAITKIND_EXITED;
2843 status->value.integer = 0;
2849 ofunc = signal (SIGINT, remote_interrupt);
2850 getpkt (buf, (rs->remote_packet_size), 1);
2851 signal (SIGINT, ofunc);
2853 /* This is a hook for when we need to do something (perhaps the
2854 collection of trace data) every time the target stops. */
2855 if (deprecated_target_wait_loop_hook)
2856 (*deprecated_target_wait_loop_hook) ();
2858 remote_stopped_by_watchpoint_p = 0;
2862 case 'E': /* Error of some sort. */
2863 warning (_("Remote failure reply: %s"), buf);
2865 case 'F': /* File-I/O request. */
2866 remote_fileio_request (buf);
2868 case 'T': /* Status with PC, SP, FP, ... */
2871 char regs[MAX_REGISTER_SIZE];
2873 /* Expedited reply, containing Signal, {regno, reg} repeat. */
2874 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
2876 n... = register number
2877 r... = register contents
2879 p = &buf[3]; /* after Txx */
2888 /* If the packet contains a register number save it in
2889 pnum and set p1 to point to the character following
2890 it. Otherwise p1 points to p. */
2892 /* If this packet is an awatch packet, don't parse the
2893 'a' as a register number. */
2895 if (strncmp (p, "awatch", strlen("awatch")) != 0)
2897 /* Read the ``P'' register number. */
2898 pnum = strtol (p, &p_temp, 16);
2899 p1 = (unsigned char *) p_temp;
2904 if (p1 == p) /* No register number present here. */
2906 p1 = (unsigned char *) strchr (p, ':');
2908 warning (_("Malformed packet(a) (missing colon): %s\n\
2911 if (strncmp (p, "thread", p1 - p) == 0)
2913 p_temp = unpack_varlen_hex (++p1, &thread_num);
2914 record_currthread (thread_num);
2915 p = (unsigned char *) p_temp;
2917 else if ((strncmp (p, "watch", p1 - p) == 0)
2918 || (strncmp (p, "rwatch", p1 - p) == 0)
2919 || (strncmp (p, "awatch", p1 - p) == 0))
2921 remote_stopped_by_watchpoint_p = 1;
2922 p = unpack_varlen_hex (++p1, &addr);
2923 remote_watch_data_address = (CORE_ADDR)addr;
2927 /* Silently skip unknown optional info. */
2928 p_temp = strchr (p1 + 1, ';');
2930 p = (unsigned char *) p_temp;
2935 struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
2939 error (_("Malformed packet(b) (missing colon): %s\n\
2944 error (_("Remote sent bad register number %s: %s\n\
2946 phex_nz (pnum, 0), p, buf);
2948 fieldsize = hex2bin (p, regs,
2949 register_size (current_gdbarch,
2952 if (fieldsize < register_size (current_gdbarch,
2954 warning (_("Remote reply is too short: %s"), buf);
2955 regcache_raw_supply (current_regcache,
2960 error (_("Remote register badly formatted: %s\nhere: %s"),
2965 case 'S': /* Old style status, just signal only. */
2966 status->kind = TARGET_WAITKIND_STOPPED;
2967 status->value.sig = (enum target_signal)
2968 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2972 thread_num = strtol ((const char *) &buf[4], NULL, 16);
2973 record_currthread (thread_num);
2976 case 'W': /* Target exited. */
2978 /* The remote process exited. */
2979 status->kind = TARGET_WAITKIND_EXITED;
2980 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
2984 status->kind = TARGET_WAITKIND_SIGNALLED;
2985 status->value.sig = (enum target_signal)
2986 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2990 case 'O': /* Console output. */
2991 remote_console_output (buf + 1);
2994 if (last_sent_signal != TARGET_SIGNAL_0)
2996 /* Zero length reply means that we tried 'S' or 'C' and
2997 the remote system doesn't support it. */
2998 target_terminal_ours_for_output ();
3000 ("Can't send signals to this remote system. %s not sent.\n",
3001 target_signal_to_name (last_sent_signal));
3002 last_sent_signal = TARGET_SIGNAL_0;
3003 target_terminal_inferior ();
3005 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3006 putpkt ((char *) buf);
3009 /* else fallthrough */
3011 warning (_("Invalid remote reply: %s"), buf);
3016 if (thread_num != -1)
3018 return pid_to_ptid (thread_num);
3020 return inferior_ptid;
3023 /* Async version of remote_wait. */
3025 remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
3027 struct remote_state *rs = get_remote_state ();
3028 unsigned char *buf = alloca (rs->remote_packet_size);
3029 ULONGEST thread_num = -1;
3032 status->kind = TARGET_WAITKIND_EXITED;
3033 status->value.integer = 0;
3035 remote_stopped_by_watchpoint_p = 0;
3041 if (!target_is_async_p ())
3042 ofunc = signal (SIGINT, remote_interrupt);
3043 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3044 _never_ wait for ever -> test on target_is_async_p().
3045 However, before we do that we need to ensure that the caller
3046 knows how to take the target into/out of async mode. */
3047 getpkt (buf, (rs->remote_packet_size), wait_forever_enabled_p);
3048 if (!target_is_async_p ())
3049 signal (SIGINT, ofunc);
3051 /* This is a hook for when we need to do something (perhaps the
3052 collection of trace data) every time the target stops. */
3053 if (deprecated_target_wait_loop_hook)
3054 (*deprecated_target_wait_loop_hook) ();
3058 case 'E': /* Error of some sort. */
3059 warning (_("Remote failure reply: %s"), buf);
3061 case 'F': /* File-I/O request. */
3062 remote_fileio_request (buf);
3064 case 'T': /* Status with PC, SP, FP, ... */
3067 char regs[MAX_REGISTER_SIZE];
3069 /* Expedited reply, containing Signal, {regno, reg} repeat. */
3070 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
3072 n... = register number
3073 r... = register contents
3075 p = &buf[3]; /* after Txx */
3084 /* If the packet contains a register number, save it
3085 in pnum and set p1 to point to the character
3086 following it. Otherwise p1 points to p. */
3088 /* If this packet is an awatch packet, don't parse the 'a'
3089 as a register number. */
3091 if (!strncmp (p, "awatch", strlen ("awatch")) != 0)
3093 /* Read the register number. */
3094 pnum = strtol (p, &p_temp, 16);
3095 p1 = (unsigned char *) p_temp;
3100 if (p1 == p) /* No register number present here. */
3102 p1 = (unsigned char *) strchr (p, ':');
3104 error (_("Malformed packet(a) (missing colon): %s\n\
3107 if (strncmp (p, "thread", p1 - p) == 0)
3109 p_temp = unpack_varlen_hex (++p1, &thread_num);
3110 record_currthread (thread_num);
3111 p = (unsigned char *) p_temp;
3113 else if ((strncmp (p, "watch", p1 - p) == 0)
3114 || (strncmp (p, "rwatch", p1 - p) == 0)
3115 || (strncmp (p, "awatch", p1 - p) == 0))
3117 remote_stopped_by_watchpoint_p = 1;
3118 p = unpack_varlen_hex (++p1, &addr);
3119 remote_watch_data_address = (CORE_ADDR)addr;
3123 /* Silently skip unknown optional info. */
3124 p_temp = (unsigned char *) strchr (p1 + 1, ';');
3132 struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
3135 error (_("Malformed packet(b) (missing colon): %s\n\
3140 error (_("Remote sent bad register number %ld: %s\n\
3144 fieldsize = hex2bin (p, regs,
3145 register_size (current_gdbarch,
3148 if (fieldsize < register_size (current_gdbarch,
3150 warning (_("Remote reply is too short: %s"), buf);
3151 regcache_raw_supply (current_regcache, reg->regnum, regs);
3155 error (_("Remote register badly formatted: %s\nhere: %s"),
3160 case 'S': /* Old style status, just signal only. */
3161 status->kind = TARGET_WAITKIND_STOPPED;
3162 status->value.sig = (enum target_signal)
3163 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3167 thread_num = strtol ((const char *) &buf[4], NULL, 16);
3168 record_currthread (thread_num);
3171 case 'W': /* Target exited. */
3173 /* The remote process exited. */
3174 status->kind = TARGET_WAITKIND_EXITED;
3175 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
3179 status->kind = TARGET_WAITKIND_SIGNALLED;
3180 status->value.sig = (enum target_signal)
3181 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3185 case 'O': /* Console output. */
3186 remote_console_output (buf + 1);
3187 /* Return immediately to the event loop. The event loop will
3188 still be waiting on the inferior afterwards. */
3189 status->kind = TARGET_WAITKIND_IGNORE;
3192 if (last_sent_signal != TARGET_SIGNAL_0)
3194 /* Zero length reply means that we tried 'S' or 'C' and
3195 the remote system doesn't support it. */
3196 target_terminal_ours_for_output ();
3198 ("Can't send signals to this remote system. %s not sent.\n",
3199 target_signal_to_name (last_sent_signal));
3200 last_sent_signal = TARGET_SIGNAL_0;
3201 target_terminal_inferior ();
3203 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3204 putpkt ((char *) buf);
3207 /* else fallthrough */
3209 warning (_("Invalid remote reply: %s"), buf);
3214 if (thread_num != -1)
3216 return pid_to_ptid (thread_num);
3218 return inferior_ptid;
3221 /* Number of bytes of registers this stub implements. */
3223 static int register_bytes_found;
3225 /* Read the remote registers into the block REGS. */
3226 /* Currently we just read all the registers, so we don't use regnum. */
3229 fetch_register_using_p (int regnum)
3231 struct remote_state *rs = get_remote_state ();
3232 char *buf = alloca (rs->remote_packet_size), *p;
3233 char regp[MAX_REGISTER_SIZE];
3238 p += hexnumstr (p, regnum);
3240 remote_send (buf, rs->remote_packet_size);
3242 /* If the stub didn't recognize the packet, or if we got an error,
3244 if (buf[0] == '\0' || buf[0] == 'E')
3247 /* If this register is unfetchable, tell the regcache. */
3250 regcache_raw_supply (current_regcache, regnum, NULL);
3251 set_register_cached (regnum, -1);
3255 /* Otherwise, parse and supply the value. */
3262 error (_("fetch_register_using_p: early buf termination"));
3266 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
3269 regcache_raw_supply (current_regcache, regnum, regp);
3274 remote_fetch_registers (int regnum)
3276 struct remote_state *rs = get_remote_state ();
3277 char *buf = alloca (rs->remote_packet_size);
3280 char *regs = alloca (rs->sizeof_g_packet);
3282 set_thread (PIDGET (inferior_ptid), 1);
3286 struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
3287 gdb_assert (reg != NULL);
3288 if (!reg->in_g_packet)
3289 internal_error (__FILE__, __LINE__,
3290 _("Attempt to fetch a non G-packet register when this "
3291 "remote.c does not support the p-packet."));
3293 switch (remote_protocol_p.support)
3295 case PACKET_DISABLE:
3298 if (fetch_register_using_p (regnum))
3301 error (_("Protocol error: p packet not recognized by stub"));
3302 case PACKET_SUPPORT_UNKNOWN:
3303 if (fetch_register_using_p (regnum))
3305 /* The stub recognized the 'p' packet. Remember this. */
3306 remote_protocol_p.support = PACKET_ENABLE;
3311 /* The stub does not support the 'P' packet. Use 'G'
3312 instead, and don't try using 'P' in the future (it
3313 will just waste our time). */
3314 remote_protocol_p.support = PACKET_DISABLE;
3320 remote_send (buf, (rs->remote_packet_size));
3322 /* Save the size of the packet sent to us by the target. Its used
3323 as a heuristic when determining the max size of packets that the
3324 target can safely receive. */
3325 if ((rs->actual_register_packet_size) == 0)
3326 (rs->actual_register_packet_size) = strlen (buf);
3328 /* Unimplemented registers read as all bits zero. */
3329 memset (regs, 0, rs->sizeof_g_packet);
3331 /* We can get out of synch in various cases. If the first character
3332 in the buffer is not a hex character, assume that has happened
3333 and try to fetch another packet to read. */
3334 while ((buf[0] < '0' || buf[0] > '9')
3335 && (buf[0] < 'A' || buf[0] > 'F')
3336 && (buf[0] < 'a' || buf[0] > 'f')
3337 && buf[0] != 'x') /* New: unavailable register value. */
3340 fprintf_unfiltered (gdb_stdlog,
3341 "Bad register packet; fetching a new packet\n");
3342 getpkt (buf, (rs->remote_packet_size), 0);
3345 /* Reply describes registers byte by byte, each byte encoded as two
3346 hex characters. Suck them all up, then supply them to the
3347 register cacheing/storage mechanism. */
3350 for (i = 0; i < rs->sizeof_g_packet; i++)
3356 warning (_("Remote reply is of odd length: %s"), buf);
3357 /* Don't change register_bytes_found in this case, and don't
3358 print a second warning. */
3361 if (p[0] == 'x' && p[1] == 'x')
3362 regs[i] = 0; /* 'x' */
3364 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3368 if (i != register_bytes_found)
3370 register_bytes_found = i;
3371 if (REGISTER_BYTES_OK_P ()
3372 && !REGISTER_BYTES_OK (i))
3373 warning (_("Remote reply is too short: %s"), buf);
3379 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
3381 struct packet_reg *r = &rs->regs[i];
3384 if (r->offset * 2 >= strlen (buf))
3385 /* A short packet that didn't include the register's
3386 value, this implies that the register is zero (and
3387 not that the register is unavailable). Supply that
3389 regcache_raw_supply (current_regcache, r->regnum, NULL);
3390 else if (buf[r->offset * 2] == 'x')
3392 gdb_assert (r->offset * 2 < strlen (buf));
3393 /* The register isn't available, mark it as such (at
3394 the same time setting the value to zero). */
3395 regcache_raw_supply (current_regcache, r->regnum, NULL);
3396 set_register_cached (i, -1);
3399 regcache_raw_supply (current_regcache, r->regnum,
3406 /* Prepare to store registers. Since we may send them all (using a
3407 'G' request), we have to read out the ones we don't want to change
3411 remote_prepare_to_store (void)
3413 struct remote_state *rs = get_remote_state ();
3415 char buf[MAX_REGISTER_SIZE];
3417 /* Make sure the entire registers array is valid. */
3418 switch (remote_protocol_P.support)
3420 case PACKET_DISABLE:
3421 case PACKET_SUPPORT_UNKNOWN:
3422 /* Make sure all the necessary registers are cached. */
3423 for (i = 0; i < NUM_REGS; i++)
3424 if (rs->regs[i].in_g_packet)
3425 regcache_raw_read (current_regcache, rs->regs[i].regnum, buf);
3432 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
3433 packet was not recognized. */
3436 store_register_using_P (int regnum)
3438 struct remote_state *rs = get_remote_state ();
3439 struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
3440 /* Try storing a single register. */
3441 char *buf = alloca (rs->remote_packet_size);
3442 char regp[MAX_REGISTER_SIZE];
3446 sprintf (buf, "P%s=", phex_nz (reg->pnum, 0));
3447 p = buf + strlen (buf);
3448 regcache_raw_collect (current_regcache, reg->regnum, regp);
3449 bin2hex (regp, p, register_size (current_gdbarch, reg->regnum));
3450 remote_send (buf, rs->remote_packet_size);
3452 return buf[0] != '\0';
3456 /* Store register REGNUM, or all registers if REGNUM == -1, from the
3457 contents of the register cache buffer. FIXME: ignores errors. */
3460 remote_store_registers (int regnum)
3462 struct remote_state *rs = get_remote_state ();
3468 set_thread (PIDGET (inferior_ptid), 1);
3472 switch (remote_protocol_P.support)
3474 case PACKET_DISABLE:
3477 if (store_register_using_P (regnum))
3480 error (_("Protocol error: P packet not recognized by stub"));
3481 case PACKET_SUPPORT_UNKNOWN:
3482 if (store_register_using_P (regnum))
3484 /* The stub recognized the 'P' packet. Remember this. */
3485 remote_protocol_P.support = PACKET_ENABLE;
3490 /* The stub does not support the 'P' packet. Use 'G'
3491 instead, and don't try using 'P' in the future (it
3492 will just waste our time). */
3493 remote_protocol_P.support = PACKET_DISABLE;
3499 /* Extract all the registers in the regcache copying them into a
3503 regs = alloca (rs->sizeof_g_packet);
3504 memset (regs, 0, rs->sizeof_g_packet);
3505 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
3507 struct packet_reg *r = &rs->regs[i];
3509 regcache_raw_collect (current_regcache, r->regnum, regs + r->offset);
3513 /* Command describes registers byte by byte,
3514 each byte encoded as two hex characters. */
3515 buf = alloca (rs->remote_packet_size);
3518 /* remote_prepare_to_store insures that register_bytes_found gets set. */
3519 bin2hex (regs, p, register_bytes_found);
3520 remote_send (buf, (rs->remote_packet_size));
3524 /* Return the number of hex digits in num. */
3527 hexnumlen (ULONGEST num)
3531 for (i = 0; num != 0; i++)
3537 /* Set BUF to the minimum number of hex digits representing NUM. */
3540 hexnumstr (char *buf, ULONGEST num)
3542 int len = hexnumlen (num);
3543 return hexnumnstr (buf, num, len);
3547 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
3550 hexnumnstr (char *buf, ULONGEST num, int width)
3556 for (i = width - 1; i >= 0; i--)
3558 buf[i] = "0123456789abcdef"[(num & 0xf)];
3565 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
3568 remote_address_masked (CORE_ADDR addr)
3570 if (remote_address_size > 0
3571 && remote_address_size < (sizeof (ULONGEST) * 8))
3573 /* Only create a mask when that mask can safely be constructed
3574 in a ULONGEST variable. */
3576 mask = (mask << remote_address_size) - 1;
3582 /* Determine whether the remote target supports binary downloading.
3583 This is accomplished by sending a no-op memory write of zero length
3584 to the target at the specified address. It does not suffice to send
3585 the whole packet, since many stubs strip the eighth bit and
3586 subsequently compute a wrong checksum, which causes real havoc with
3589 NOTE: This can still lose if the serial line is not eight-bit
3590 clean. In cases like this, the user should clear "remote
3594 check_binary_download (CORE_ADDR addr)
3596 struct remote_state *rs = get_remote_state ();
3597 switch (remote_protocol_binary_download.support)
3599 case PACKET_DISABLE:
3603 case PACKET_SUPPORT_UNKNOWN:
3605 char *buf = alloca (rs->remote_packet_size);
3610 p += hexnumstr (p, (ULONGEST) addr);
3612 p += hexnumstr (p, (ULONGEST) 0);
3616 putpkt_binary (buf, (int) (p - buf));
3617 getpkt (buf, (rs->remote_packet_size), 0);
3622 fprintf_unfiltered (gdb_stdlog,
3623 "binary downloading NOT suppported by target\n");
3624 remote_protocol_binary_download.support = PACKET_DISABLE;
3629 fprintf_unfiltered (gdb_stdlog,
3630 "binary downloading suppported by target\n");
3631 remote_protocol_binary_download.support = PACKET_ENABLE;
3638 /* Write memory data directly to the remote machine.
3639 This does not inform the data cache; the data cache uses this.
3640 MEMADDR is the address in the remote memory space.
3641 MYADDR is the address of the buffer in our space.
3642 LEN is the number of bytes.
3644 Returns number of bytes transferred, or 0 (setting errno) for
3645 error. Only transfer a single packet. */
3648 remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
3652 unsigned char *plen;
3658 unsigned char *payload_start;
3660 /* Verify that the target can support a binary download. */
3661 check_binary_download (memaddr);
3663 payload_size = get_memory_write_packet_size ();
3665 /* Compute the size, and then allocate space for the largest
3666 possible packet. Include space for an extra trailing NUL. */
3667 sizeof_buf = payload_size + 1;
3668 buf = alloca (sizeof_buf);
3670 /* Compute the size of the actual payload by subtracting out the
3671 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
3673 payload_size -= strlen ("$M,:#NN");
3674 payload_size -= hexnumlen (memaddr);
3676 /* Construct the packet header: "[MX]<memaddr>,<len>:". */
3678 /* Append "[XM]". Compute a best guess of the number of bytes
3679 actually transfered. */
3681 switch (remote_protocol_binary_download.support)
3685 /* Best guess at number of bytes that will fit. */
3686 todo = min (len, payload_size);
3687 payload_size -= hexnumlen (todo);
3688 todo = min (todo, payload_size);
3690 case PACKET_DISABLE:
3692 /* Num bytes that will fit. */
3693 todo = min (len, payload_size / 2);
3694 payload_size -= hexnumlen (todo);
3695 todo = min (todo, payload_size / 2);
3697 case PACKET_SUPPORT_UNKNOWN:
3698 internal_error (__FILE__, __LINE__,
3699 _("remote_write_bytes: bad internal state"));
3701 internal_error (__FILE__, __LINE__, _("bad switch"));
3704 internal_error (__FILE__, __LINE__,
3705 _("minumum packet size too small to write data"));
3707 /* Append "<memaddr>". */
3708 memaddr = remote_address_masked (memaddr);
3709 p += hexnumstr (p, (ULONGEST) memaddr);
3714 /* Append <len>. Retain the location/size of <len>. It may need to
3715 be adjusted once the packet body has been created. */
3717 plenlen = hexnumstr (p, (ULONGEST) todo);
3724 /* Append the packet body. */
3726 switch (remote_protocol_binary_download.support)
3729 /* Binary mode. Send target system values byte by byte, in
3730 increasing byte addresses. Only escape certain critical
3733 (nr_bytes < todo) && (p - payload_start) < payload_size;
3736 switch (myaddr[nr_bytes] & 0xff)
3741 /* These must be escaped. */
3743 *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20;
3746 *p++ = myaddr[nr_bytes] & 0xff;
3750 if (nr_bytes < todo)
3752 /* Escape chars have filled up the buffer prematurely,
3753 and we have actually sent fewer bytes than planned.
3754 Fix-up the length field of the packet. Use the same
3755 number of characters as before. */
3756 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
3757 *plen = ':'; /* overwrite \0 from hexnumnstr() */
3760 case PACKET_DISABLE:
3761 /* Normal mode: Send target system values byte by byte, in
3762 increasing byte addresses. Each byte is encoded as a two hex
3764 nr_bytes = bin2hex (myaddr, p, todo);
3767 case PACKET_SUPPORT_UNKNOWN:
3768 internal_error (__FILE__, __LINE__,
3769 _("remote_write_bytes: bad internal state"));
3771 internal_error (__FILE__, __LINE__, _("bad switch"));
3774 putpkt_binary (buf, (int) (p - buf));
3775 getpkt (buf, sizeof_buf, 0);
3779 /* There is no correspondance between what the remote protocol
3780 uses for errors and errno codes. We would like a cleaner way
3781 of representing errors (big enough to include errno codes,
3782 bfd_error codes, and others). But for now just return EIO. */
3787 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
3788 fewer bytes than we'd planned. */
3792 /* Read memory data directly from the remote machine.
3793 This does not use the data cache; the data cache uses this.
3794 MEMADDR is the address in the remote memory space.
3795 MYADDR is the address of the buffer in our space.
3796 LEN is the number of bytes.
3798 Returns number of bytes transferred, or 0 for error. */
3800 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
3801 remote targets) shouldn't attempt to read the entire buffer.
3802 Instead it should read a single packet worth of data and then
3803 return the byte size of that packet to the caller. The caller (its
3804 caller and its callers caller ;-) already contains code for
3805 handling partial reads. */
3808 remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
3811 int max_buf_size; /* Max size of packet output buffer. */
3815 /* Create a buffer big enough for this packet. */
3816 max_buf_size = get_memory_read_packet_size ();
3817 sizeof_buf = max_buf_size + 1; /* Space for trailing NULL. */
3818 buf = alloca (sizeof_buf);
3827 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
3829 /* construct "m"<memaddr>","<len>" */
3830 /* sprintf (buf, "m%lx,%x", (unsigned long) memaddr, todo); */
3831 memaddr = remote_address_masked (memaddr);
3834 p += hexnumstr (p, (ULONGEST) memaddr);
3836 p += hexnumstr (p, (ULONGEST) todo);
3840 getpkt (buf, sizeof_buf, 0);
3843 && isxdigit (buf[1]) && isxdigit (buf[2])
3846 /* There is no correspondance between what the remote
3847 protocol uses for errors and errno codes. We would like
3848 a cleaner way of representing errors (big enough to
3849 include errno codes, bfd_error codes, and others). But
3850 for now just return EIO. */
3855 /* Reply describes memory byte by byte,
3856 each byte encoded as two hex characters. */
3859 if ((i = hex2bin (p, myaddr, todo)) < todo)
3861 /* Reply is short. This means that we were able to read
3862 only part of what we wanted to. */
3863 return i + (origlen - len);
3872 /* Read or write LEN bytes from inferior memory at MEMADDR,
3873 transferring to or from debugger address BUFFER. Write to inferior
3874 if SHOULD_WRITE is nonzero. Returns length of data written or
3875 read; 0 for error. TARGET is unused. */
3878 remote_xfer_memory (CORE_ADDR mem_addr, char *buffer, int mem_len,
3879 int should_write, struct mem_attrib *attrib,
3880 struct target_ops *target)
3882 CORE_ADDR targ_addr;
3886 /* Should this be the selected frame? */
3887 gdbarch_remote_translate_xfer_address (current_gdbarch,
3890 &targ_addr, &targ_len);
3895 res = remote_write_bytes (targ_addr, buffer, targ_len);
3897 res = remote_read_bytes (targ_addr, buffer, targ_len);
3903 remote_files_info (struct target_ops *ignore)
3905 puts_filtered ("Debugging a target over a serial line.\n");
3908 /* Stuff for dealing with the packets which are part of this protocol.
3909 See comment at top of file for details. */
3911 /* Read a single character from the remote end, masking it down to 7
3915 readchar (int timeout)
3919 ch = serial_readchar (remote_desc, timeout);
3924 switch ((enum serial_rc) ch)
3927 target_mourn_inferior ();
3928 error (_("Remote connection closed"));
3931 perror_with_name (_("Remote communication error"));
3933 case SERIAL_TIMEOUT:
3939 /* Send the command in BUF to the remote machine, and read the reply
3940 into BUF. Report an error if we get an error reply. */
3943 remote_send (char *buf,
3947 getpkt (buf, sizeof_buf, 0);
3950 error (_("Remote failure reply: %s"), buf);
3953 /* Display a null-terminated packet on stdout, for debugging, using C
3957 print_packet (char *buf)
3959 puts_filtered ("\"");
3960 fputstr_filtered (buf, '"', gdb_stdout);
3961 puts_filtered ("\"");
3967 return putpkt_binary (buf, strlen (buf));
3970 /* Send a packet to the remote machine, with error checking. The data
3971 of the packet is in BUF. The string in BUF can be at most
3972 (rs->remote_packet_size) - 5 to account for the $, # and checksum,
3973 and for a possible /0 if we are debugging (remote_debug) and want
3974 to print the sent packet as a string. */
3977 putpkt_binary (char *buf, int cnt)
3979 struct remote_state *rs = get_remote_state ();
3981 unsigned char csum = 0;
3982 char *buf2 = alloca (cnt + 6);
3983 long sizeof_junkbuf = (rs->remote_packet_size);
3984 char *junkbuf = alloca (sizeof_junkbuf);
3990 /* Copy the packet into buffer BUF2, encapsulating it
3991 and giving it a checksum. */
3996 for (i = 0; i < cnt; i++)
4002 *p++ = tohex ((csum >> 4) & 0xf);
4003 *p++ = tohex (csum & 0xf);
4005 /* Send it over and over until we get a positive ack. */
4009 int started_error_output = 0;
4014 fprintf_unfiltered (gdb_stdlog, "Sending packet: ");
4015 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
4016 fprintf_unfiltered (gdb_stdlog, "...");
4017 gdb_flush (gdb_stdlog);
4019 if (serial_write (remote_desc, buf2, p - buf2))
4020 perror_with_name (_("putpkt: write failed"));
4022 /* Read until either a timeout occurs (-2) or '+' is read. */
4025 ch = readchar (remote_timeout);
4033 case SERIAL_TIMEOUT:
4035 if (started_error_output)
4037 putchar_unfiltered ('\n');
4038 started_error_output = 0;
4047 fprintf_unfiltered (gdb_stdlog, "Ack\n");
4051 fprintf_unfiltered (gdb_stdlog, "Nak\n");
4052 case SERIAL_TIMEOUT:
4056 break; /* Retransmit buffer. */
4060 fprintf_unfiltered (gdb_stdlog,
4061 "Packet instead of Ack, ignoring it\n");
4062 /* It's probably an old response sent because an ACK
4063 was lost. Gobble up the packet and ack it so it
4064 doesn't get retransmitted when we resend this
4066 read_frame (junkbuf, sizeof_junkbuf);
4067 serial_write (remote_desc, "+", 1);
4068 continue; /* Now, go look for +. */
4073 if (!started_error_output)
4075 started_error_output = 1;
4076 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
4078 fputc_unfiltered (ch & 0177, gdb_stdlog);
4082 break; /* Here to retransmit. */
4086 /* This is wrong. If doing a long backtrace, the user should be
4087 able to get out next time we call QUIT, without anything as
4088 violent as interrupt_query. If we want to provide a way out of
4089 here without getting to the next QUIT, it should be based on
4090 hitting ^C twice as in remote_wait. */
4100 /* Come here after finding the start of the frame. Collect the rest
4101 into BUF, verifying the checksum, length, and handling run-length
4102 compression. No more than sizeof_buf-1 characters are read so that
4103 the buffer can be NUL terminated.
4105 Returns -1 on error, number of characters in buffer (ignoring the
4106 trailing NULL) on success. (could be extended to return one of the
4107 SERIAL status indications). */
4110 read_frame (char *buf,
4122 /* ASSERT (bc < sizeof_buf - 1) - space for trailing NULL. */
4123 c = readchar (remote_timeout);
4126 case SERIAL_TIMEOUT:
4128 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
4132 fputs_filtered ("Saw new packet start in middle of old one\n",
4134 return -1; /* Start a new packet, count retries. */
4137 unsigned char pktcsum;
4143 check_0 = readchar (remote_timeout);
4145 check_1 = readchar (remote_timeout);
4147 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
4150 fputs_filtered ("Timeout in checksum, retrying\n",
4154 else if (check_0 < 0 || check_1 < 0)
4157 fputs_filtered ("Communication error in checksum\n",
4162 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
4163 if (csum == pktcsum)
4168 fprintf_filtered (gdb_stdlog,
4169 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
4171 fputs_filtered (buf, gdb_stdlog);
4172 fputs_filtered ("\n", gdb_stdlog);
4174 /* Number of characters in buffer ignoring trailing
4178 case '*': /* Run length encoding. */
4183 c = readchar (remote_timeout);
4185 repeat = c - ' ' + 3; /* Compute repeat count. */
4187 /* The character before ``*'' is repeated. */
4189 if (repeat > 0 && repeat <= 255
4191 && bc + repeat - 1 < sizeof_buf - 1)
4193 memset (&buf[bc], buf[bc - 1], repeat);
4199 printf_filtered (_("Repeat count %d too large for buffer: "),
4201 puts_filtered (buf);
4202 puts_filtered ("\n");
4206 if (bc < sizeof_buf - 1)
4214 puts_filtered ("Remote packet too long: ");
4215 puts_filtered (buf);
4216 puts_filtered ("\n");
4223 /* Read a packet from the remote machine, with error checking, and
4224 store it in BUF. If FOREVER, wait forever rather than timing out;
4225 this is used (in synchronous mode) to wait for a target that is is
4226 executing user code to stop. */
4227 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
4228 don't have to change all the calls to getpkt to deal with the
4229 return value, because at the moment I don't know what the right
4230 thing to do it for those. */
4238 timed_out = getpkt_sane (buf, sizeof_buf, forever);
4242 /* Read a packet from the remote machine, with error checking, and
4243 store it in BUF. If FOREVER, wait forever rather than timing out;
4244 this is used (in synchronous mode) to wait for a target that is is
4245 executing user code to stop. If FOREVER == 0, this function is
4246 allowed to time out gracefully and return an indication of this to
4249 getpkt_sane (char *buf,
4258 strcpy (buf, "timeout");
4262 timeout = watchdog > 0 ? watchdog : -1;
4266 timeout = remote_timeout;
4270 for (tries = 1; tries <= MAX_TRIES; tries++)
4272 /* This can loop forever if the remote side sends us characters
4273 continuously, but if it pauses, we'll get a zero from
4274 readchar because of timeout. Then we'll count that as a
4277 /* Note that we will only wait forever prior to the start of a
4278 packet. After that, we expect characters to arrive at a
4279 brisk pace. They should show up within remote_timeout
4284 c = readchar (timeout);
4286 if (c == SERIAL_TIMEOUT)
4288 if (forever) /* Watchdog went off? Kill the target. */
4291 target_mourn_inferior ();
4292 error (_("Watchdog has expired. Target detached."));
4295 fputs_filtered ("Timed out.\n", gdb_stdlog);
4301 /* We've found the start of a packet, now collect the data. */
4303 val = read_frame (buf, sizeof_buf);
4309 fprintf_unfiltered (gdb_stdlog, "Packet received: ");
4310 fputstr_unfiltered (buf, 0, gdb_stdlog);
4311 fprintf_unfiltered (gdb_stdlog, "\n");
4313 serial_write (remote_desc, "+", 1);
4317 /* Try the whole thing again. */
4319 serial_write (remote_desc, "-", 1);
4322 /* We have tried hard enough, and just can't receive the packet.
4325 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
4326 serial_write (remote_desc, "+", 1);
4333 /* For some mysterious reason, wait_for_inferior calls kill instead of
4334 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4338 target_mourn_inferior ();
4342 /* Use catch_errors so the user can quit from gdb even when we aren't on
4343 speaking terms with the remote system. */
4344 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
4346 /* Don't wait for it to die. I'm not really sure it matters whether
4347 we do or not. For the existing stubs, kill is a noop. */
4348 target_mourn_inferior ();
4351 /* Async version of remote_kill. */
4353 remote_async_kill (void)
4355 /* Unregister the file descriptor from the event loop. */
4356 if (target_is_async_p ())
4357 serial_async (remote_desc, NULL, 0);
4359 /* For some mysterious reason, wait_for_inferior calls kill instead of
4360 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4364 target_mourn_inferior ();
4368 /* Use catch_errors so the user can quit from gdb even when we
4369 aren't on speaking terms with the remote system. */
4370 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
4372 /* Don't wait for it to die. I'm not really sure it matters whether
4373 we do or not. For the existing stubs, kill is a noop. */
4374 target_mourn_inferior ();
4380 remote_mourn_1 (&remote_ops);
4384 remote_async_mourn (void)
4386 remote_mourn_1 (&remote_async_ops);
4390 extended_remote_mourn (void)
4392 /* We do _not_ want to mourn the target like this; this will
4393 remove the extended remote target from the target stack,
4394 and the next time the user says "run" it'll fail.
4396 FIXME: What is the right thing to do here? */
4398 remote_mourn_1 (&extended_remote_ops);
4402 /* Worker function for remote_mourn. */
4404 remote_mourn_1 (struct target_ops *target)
4406 unpush_target (target);
4407 generic_mourn_inferior ();
4410 /* In the extended protocol we want to be able to do things like
4411 "run" and have them basically work as expected. So we need
4412 a special create_inferior function.
4414 FIXME: One day add support for changing the exec file
4415 we're debugging, arguments and an environment. */
4418 extended_remote_create_inferior (char *exec_file, char *args,
4419 char **env, int from_tty)
4421 /* Rip out the breakpoints; we'll reinsert them after restarting
4422 the remote server. */
4423 remove_breakpoints ();
4425 /* Now restart the remote server. */
4426 extended_remote_restart ();
4428 /* Now put the breakpoints back in. This way we're safe if the
4429 restart function works via a unix fork on the remote side. */
4430 insert_breakpoints ();
4432 /* Clean up from the last time we were running. */
4433 clear_proceed_status ();
4435 /* Let the remote process run. */
4436 proceed (-1, TARGET_SIGNAL_0, 0);
4439 /* Async version of extended_remote_create_inferior. */
4441 extended_remote_async_create_inferior (char *exec_file, char *args,
4442 char **env, int from_tty)
4444 /* Rip out the breakpoints; we'll reinsert them after restarting
4445 the remote server. */
4446 remove_breakpoints ();
4448 /* If running asynchronously, register the target file descriptor
4449 with the event loop. */
4450 if (target_can_async_p ())
4451 target_async (inferior_event_handler, 0);
4453 /* Now restart the remote server. */
4454 extended_remote_restart ();
4456 /* Now put the breakpoints back in. This way we're safe if the
4457 restart function works via a unix fork on the remote side. */
4458 insert_breakpoints ();
4460 /* Clean up from the last time we were running. */
4461 clear_proceed_status ();
4463 /* Let the remote process run. */
4464 proceed (-1, TARGET_SIGNAL_0, 0);
4468 /* On some machines, e.g. 68k, we may use a different breakpoint
4469 instruction than other targets; in those use
4470 DEPRECATED_REMOTE_BREAKPOINT instead of just BREAKPOINT_FROM_PC.
4471 Also, bi-endian targets may define
4472 DEPRECATED_LITTLE_REMOTE_BREAKPOINT and
4473 DEPRECATED_BIG_REMOTE_BREAKPOINT. If none of these are defined, we
4474 just call the standard routines that are in mem-break.c. */
4476 /* NOTE: cagney/2003-06-08: This is silly. A remote and simulator
4477 target should use an identical BREAKPOINT_FROM_PC. As for native,
4478 the ARCH-OS-tdep.c code can override the default. */
4480 #if defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && defined (DEPRECATED_BIG_REMOTE_BREAKPOINT) && !defined(DEPRECATED_REMOTE_BREAKPOINT)
4481 #define DEPRECATED_REMOTE_BREAKPOINT
4484 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4486 /* If the target isn't bi-endian, just pretend it is. */
4487 #if !defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && !defined (DEPRECATED_BIG_REMOTE_BREAKPOINT)
4488 #define DEPRECATED_LITTLE_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
4489 #define DEPRECATED_BIG_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
4492 static unsigned char big_break_insn[] = DEPRECATED_BIG_REMOTE_BREAKPOINT;
4493 static unsigned char little_break_insn[] = DEPRECATED_LITTLE_REMOTE_BREAKPOINT;
4495 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4497 /* Insert a breakpoint on targets that don't have any better
4498 breakpoint support. We read the contents of the target location
4499 and stash it, then overwrite it with a breakpoint instruction.
4500 ADDR is the target location in the target machine. CONTENTS_CACHE
4501 is a pointer to memory allocated for saving the target contents.
4502 It is guaranteed by the caller to be long enough to save the number
4503 of bytes returned by BREAKPOINT_FROM_PC. */
4506 remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache)
4508 struct remote_state *rs = get_remote_state ();
4509 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4514 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
4515 If it succeeds, then set the support to PACKET_ENABLE. If it
4516 fails, and the user has explicitly requested the Z support then
4517 report an error, otherwise, mark it disabled and go on. */
4519 if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
4521 char *buf = alloca (rs->remote_packet_size);
4524 addr = remote_address_masked (addr);
4528 p += hexnumstr (p, (ULONGEST) addr);
4529 BREAKPOINT_FROM_PC (&addr, &bp_size);
4530 sprintf (p, ",%d", bp_size);
4533 getpkt (buf, (rs->remote_packet_size), 0);
4535 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_SOFTWARE_BP]))
4541 case PACKET_UNKNOWN:
4546 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4547 val = target_read_memory (addr, contents_cache, sizeof big_break_insn);
4551 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4552 val = target_write_memory (addr, (char *) big_break_insn,
4553 sizeof big_break_insn);
4555 val = target_write_memory (addr, (char *) little_break_insn,
4556 sizeof little_break_insn);
4561 return memory_insert_breakpoint (addr, contents_cache);
4562 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4566 remote_remove_breakpoint (CORE_ADDR addr, char *contents_cache)
4568 struct remote_state *rs = get_remote_state ();
4571 if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
4573 char *buf = alloca (rs->remote_packet_size);
4580 addr = remote_address_masked (addr);
4581 p += hexnumstr (p, (ULONGEST) addr);
4582 BREAKPOINT_FROM_PC (&addr, &bp_size);
4583 sprintf (p, ",%d", bp_size);
4586 getpkt (buf, (rs->remote_packet_size), 0);
4588 return (buf[0] == 'E');
4591 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4592 return target_write_memory (addr, contents_cache, sizeof big_break_insn);
4594 return memory_remove_breakpoint (addr, contents_cache);
4595 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4599 watchpoint_to_Z_packet (int type)
4613 internal_error (__FILE__, __LINE__,
4614 _("hw_bp_to_z: bad watchpoint type %d"), type);
4619 remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
4621 struct remote_state *rs = get_remote_state ();
4622 char *buf = alloca (rs->remote_packet_size);
4624 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
4626 if (remote_protocol_Z[packet].support == PACKET_DISABLE)
4627 error (_("Can't set hardware watchpoints without the '%s' (%s) packet."),
4628 remote_protocol_Z[packet].name,
4629 remote_protocol_Z[packet].title);
4631 sprintf (buf, "Z%x,", packet);
4632 p = strchr (buf, '\0');
4633 addr = remote_address_masked (addr);
4634 p += hexnumstr (p, (ULONGEST) addr);
4635 sprintf (p, ",%x", len);
4638 getpkt (buf, (rs->remote_packet_size), 0);
4640 switch (packet_ok (buf, &remote_protocol_Z[packet]))
4643 case PACKET_UNKNOWN:
4648 internal_error (__FILE__, __LINE__,
4649 _("remote_insert_watchpoint: reached end of function"));
4654 remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
4656 struct remote_state *rs = get_remote_state ();
4657 char *buf = alloca (rs->remote_packet_size);
4659 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
4661 if (remote_protocol_Z[packet].support == PACKET_DISABLE)
4662 error (_("Can't clear hardware watchpoints without the '%s' (%s) packet."),
4663 remote_protocol_Z[packet].name,
4664 remote_protocol_Z[packet].title);
4666 sprintf (buf, "z%x,", packet);
4667 p = strchr (buf, '\0');
4668 addr = remote_address_masked (addr);
4669 p += hexnumstr (p, (ULONGEST) addr);
4670 sprintf (p, ",%x", len);
4672 getpkt (buf, (rs->remote_packet_size), 0);
4674 switch (packet_ok (buf, &remote_protocol_Z[packet]))
4677 case PACKET_UNKNOWN:
4682 internal_error (__FILE__, __LINE__,
4683 _("remote_remove_watchpoint: reached end of function"));
4687 int remote_hw_watchpoint_limit = -1;
4688 int remote_hw_breakpoint_limit = -1;
4691 remote_check_watch_resources (int type, int cnt, int ot)
4693 if (type == bp_hardware_breakpoint)
4695 if (remote_hw_breakpoint_limit == 0)
4697 else if (remote_hw_breakpoint_limit < 0)
4699 else if (cnt <= remote_hw_breakpoint_limit)
4704 if (remote_hw_watchpoint_limit == 0)
4706 else if (remote_hw_watchpoint_limit < 0)
4710 else if (cnt <= remote_hw_watchpoint_limit)
4717 remote_stopped_by_watchpoint (void)
4719 return remote_stopped_by_watchpoint_p;
4722 extern int stepped_after_stopped_by_watchpoint;
4725 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
4728 if (remote_stopped_by_watchpoint ()
4729 || stepped_after_stopped_by_watchpoint)
4731 *addr_p = remote_watch_data_address;
4740 remote_insert_hw_breakpoint (CORE_ADDR addr, char *shadow)
4743 struct remote_state *rs = get_remote_state ();
4744 char *buf = alloca (rs->remote_packet_size);
4747 /* The length field should be set to the size of a breakpoint
4750 BREAKPOINT_FROM_PC (&addr, &len);
4752 if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
4753 error (_("Can't set hardware breakpoint without the '%s' (%s) packet."),
4754 remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
4755 remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
4761 addr = remote_address_masked (addr);
4762 p += hexnumstr (p, (ULONGEST) addr);
4763 sprintf (p, ",%x", len);
4766 getpkt (buf, (rs->remote_packet_size), 0);
4768 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
4771 case PACKET_UNKNOWN:
4776 internal_error (__FILE__, __LINE__,
4777 _("remote_insert_hw_breakpoint: reached end of function"));
4782 remote_remove_hw_breakpoint (CORE_ADDR addr, char *shadow)
4785 struct remote_state *rs = get_remote_state ();
4786 char *buf = alloca (rs->remote_packet_size);
4789 /* The length field should be set to the size of a breakpoint
4792 BREAKPOINT_FROM_PC (&addr, &len);
4794 if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
4795 error (_("Can't clear hardware breakpoint without the '%s' (%s) packet."),
4796 remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
4797 remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
4803 addr = remote_address_masked (addr);
4804 p += hexnumstr (p, (ULONGEST) addr);
4805 sprintf (p, ",%x", len);
4808 getpkt (buf, (rs->remote_packet_size), 0);
4810 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
4813 case PACKET_UNKNOWN:
4818 internal_error (__FILE__, __LINE__,
4819 _("remote_remove_hw_breakpoint: reached end of function"));
4822 /* Some targets are only capable of doing downloads, and afterwards
4823 they switch to the remote serial protocol. This function provides
4824 a clean way to get from the download target to the remote target.
4825 It's basically just a wrapper so that we don't have to expose any
4826 of the internal workings of remote.c.
4828 Prior to calling this routine, you should shutdown the current
4829 target code, else you will get the "A program is being debugged
4830 already..." message. Usually a call to pop_target() suffices. */
4833 push_remote_target (char *name, int from_tty)
4835 printf_filtered (_("Switching to remote protocol\n"));
4836 remote_open (name, from_tty);
4839 /* Table used by the crc32 function to calcuate the checksum. */
4841 static unsigned long crc32_table[256] =
4844 static unsigned long
4845 crc32 (unsigned char *buf, int len, unsigned int crc)
4847 if (!crc32_table[1])
4849 /* Initialize the CRC table and the decoding table. */
4853 for (i = 0; i < 256; i++)
4855 for (c = i << 24, j = 8; j > 0; --j)
4856 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
4863 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
4869 /* compare-sections command
4871 With no arguments, compares each loadable section in the exec bfd
4872 with the same memory range on the target, and reports mismatches.
4873 Useful for verifying the image on the target against the exec file.
4874 Depends on the target understanding the new "qCRC:" request. */
4876 /* FIXME: cagney/1999-10-26: This command should be broken down into a
4877 target method (target verify memory) and generic version of the
4878 actual command. This will allow other high-level code (especially
4879 generic_load()) to make use of this target functionality. */
4882 compare_sections_command (char *args, int from_tty)
4884 struct remote_state *rs = get_remote_state ();
4886 unsigned long host_crc, target_crc;
4887 extern bfd *exec_bfd;
4888 struct cleanup *old_chain;
4891 const char *sectname;
4892 char *buf = alloca (rs->remote_packet_size);
4899 error (_("command cannot be used without an exec file"));
4900 if (!current_target.to_shortname ||
4901 strcmp (current_target.to_shortname, "remote") != 0)
4902 error (_("command can only be used with remote target"));
4904 for (s = exec_bfd->sections; s; s = s->next)
4906 if (!(s->flags & SEC_LOAD))
4907 continue; /* skip non-loadable section */
4909 size = bfd_get_section_size (s);
4911 continue; /* skip zero-length section */
4913 sectname = bfd_get_section_name (exec_bfd, s);
4914 if (args && strcmp (args, sectname) != 0)
4915 continue; /* not the section selected by user */
4917 matched = 1; /* do this section */
4919 /* FIXME: assumes lma can fit into long. */
4920 sprintf (buf, "qCRC:%lx,%lx", (long) lma, (long) size);
4923 /* Be clever; compute the host_crc before waiting for target
4925 sectdata = xmalloc (size);
4926 old_chain = make_cleanup (xfree, sectdata);
4927 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
4928 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
4930 getpkt (buf, (rs->remote_packet_size), 0);
4932 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
4933 sectname, paddr (lma), paddr (lma + size));
4935 error (_("remote target does not support this operation"));
4937 for (target_crc = 0, tmp = &buf[1]; *tmp; tmp++)
4938 target_crc = target_crc * 16 + fromhex (*tmp);
4940 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
4941 sectname, paddr (lma), paddr (lma + size));
4942 if (host_crc == target_crc)
4943 printf_filtered ("matched.\n");
4946 printf_filtered ("MIS-MATCHED!\n");
4950 do_cleanups (old_chain);
4953 warning (_("One or more sections of the remote executable does not match\n\
4954 the loaded file\n"));
4955 if (args && !matched)
4956 printf_filtered (_("No loaded section named '%s'.\n"), args);
4960 remote_xfer_partial (struct target_ops *ops, enum target_object object,
4961 const char *annex, void *readbuf, const void *writebuf,
4962 ULONGEST offset, LONGEST len)
4964 struct remote_state *rs = get_remote_state ();
4966 char *buf2 = alloca (rs->remote_packet_size);
4967 char *p2 = &buf2[0];
4970 /* Handle memory using remote_xfer_memory. */
4971 if (object == TARGET_OBJECT_MEMORY)
4976 if (writebuf != NULL)
4978 void *buffer = xmalloc (len);
4979 struct cleanup *cleanup = make_cleanup (xfree, buffer);
4980 memcpy (buffer, writebuf, len);
4981 xfered = remote_xfer_memory (offset, buffer, len, 1, NULL, ops);
4982 do_cleanups (cleanup);
4985 xfered = remote_xfer_memory (offset, readbuf, len, 0, NULL, ops);
4989 else if (xfered == 0 && errno == 0)
4995 /* Only handle reads. */
4996 if (writebuf != NULL || readbuf == NULL)
4999 /* Map pre-existing objects onto letters. DO NOT do this for new
5000 objects!!! Instead specify new query packets. */
5003 case TARGET_OBJECT_KOD:
5006 case TARGET_OBJECT_AVR:
5010 case TARGET_OBJECT_AUXV:
5011 if (remote_protocol_qPart_auxv.support != PACKET_DISABLE)
5013 unsigned int total = 0;
5016 LONGEST n = min ((rs->remote_packet_size - 2) / 2, len);
5017 snprintf (buf2, rs->remote_packet_size,
5018 "qPart:auxv:read::%s,%s",
5019 phex_nz (offset, sizeof offset),
5020 phex_nz (n, sizeof n));
5023 return total > 0 ? total : i;
5025 getpkt (buf2, rs->remote_packet_size, 0);
5026 if (packet_ok (buf2, &remote_protocol_qPart_auxv) != PACKET_OK)
5027 return total > 0 ? total : -1;
5028 if (buf2[0] == 'O' && buf2[1] == 'K' && buf2[2] == '\0')
5029 break; /* Got EOF indicator. */
5030 /* Got some data. */
5031 i = hex2bin (buf2, readbuf, len);
5034 readbuf = (void *) ((char *) readbuf + i);
5048 /* Note: a zero OFFSET and LEN can be used to query the minimum
5050 if (offset == 0 && len == 0)
5051 return (rs->remote_packet_size);
5052 /* Minimum outbuf size is (rs->remote_packet_size) - if bufsiz is
5053 not large enough let the caller. */
5054 if (len < (rs->remote_packet_size))
5056 len = rs->remote_packet_size;
5058 /* Except for querying the minimum buffer size, target must be open. */
5060 error (_("remote query is only available after target open"));
5062 gdb_assert (annex != NULL);
5063 gdb_assert (readbuf != NULL);
5068 /* We used one buffer char for the remote protocol q command and
5069 another for the query type. As the remote protocol encapsulation
5070 uses 4 chars plus one extra in case we are debugging
5071 (remote_debug), we have PBUFZIZ - 7 left to pack the query
5074 while (annex[i] && (i < ((rs->remote_packet_size) - 8)))
5076 /* Bad caller may have sent forbidden characters. */
5077 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
5082 gdb_assert (annex[i] == '\0');
5088 getpkt (readbuf, len, 0);
5090 return strlen (readbuf);
5094 remote_rcmd (char *command,
5095 struct ui_file *outbuf)
5097 struct remote_state *rs = get_remote_state ();
5099 char *buf = alloca (rs->remote_packet_size);
5103 error (_("remote rcmd is only available after target open"));
5105 /* Send a NULL command across as an empty command. */
5106 if (command == NULL)
5109 /* The query prefix. */
5110 strcpy (buf, "qRcmd,");
5111 p = strchr (buf, '\0');
5113 if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > (rs->remote_packet_size))
5114 error (_("\"monitor\" command ``%s'' is too long."), command);
5116 /* Encode the actual command. */
5117 bin2hex (command, p, 0);
5119 if (putpkt (buf) < 0)
5120 error (_("Communication problem with target."));
5122 /* get/display the response */
5125 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
5127 getpkt (buf, (rs->remote_packet_size), 0);
5129 error (_("Target does not support this command."));
5130 if (buf[0] == 'O' && buf[1] != 'K')
5132 remote_console_output (buf + 1); /* 'O' message from stub. */
5135 if (strcmp (buf, "OK") == 0)
5137 if (strlen (buf) == 3 && buf[0] == 'E'
5138 && isdigit (buf[1]) && isdigit (buf[2]))
5140 error (_("Protocol error with Rcmd"));
5142 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
5144 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
5145 fputc_unfiltered (c, outbuf);
5152 packet_command (char *args, int from_tty)
5154 struct remote_state *rs = get_remote_state ();
5155 char *buf = alloca (rs->remote_packet_size);
5158 error (_("command can only be used with remote target"));
5161 error (_("remote-packet command requires packet text as argument"));
5163 puts_filtered ("sending: ");
5164 print_packet (args);
5165 puts_filtered ("\n");
5168 getpkt (buf, (rs->remote_packet_size), 0);
5169 puts_filtered ("received: ");
5171 puts_filtered ("\n");
5175 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
5177 static void display_thread_info (struct gdb_ext_thread_info *info);
5179 static void threadset_test_cmd (char *cmd, int tty);
5181 static void threadalive_test (char *cmd, int tty);
5183 static void threadlist_test_cmd (char *cmd, int tty);
5185 int get_and_display_threadinfo (threadref *ref);
5187 static void threadinfo_test_cmd (char *cmd, int tty);
5189 static int thread_display_step (threadref *ref, void *context);
5191 static void threadlist_update_test_cmd (char *cmd, int tty);
5193 static void init_remote_threadtests (void);
5195 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
5198 threadset_test_cmd (char *cmd, int tty)
5200 int sample_thread = SAMPLE_THREAD;
5202 printf_filtered (_("Remote threadset test\n"));
5203 set_thread (sample_thread, 1);
5208 threadalive_test (char *cmd, int tty)
5210 int sample_thread = SAMPLE_THREAD;
5212 if (remote_thread_alive (pid_to_ptid (sample_thread)))
5213 printf_filtered ("PASS: Thread alive test\n");
5215 printf_filtered ("FAIL: Thread alive test\n");
5218 void output_threadid (char *title, threadref *ref);
5221 output_threadid (char *title, threadref *ref)
5225 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
5227 printf_filtered ("%s %s\n", title, (&hexid[0]));
5231 threadlist_test_cmd (char *cmd, int tty)
5234 threadref nextthread;
5235 int done, result_count;
5236 threadref threadlist[3];
5238 printf_filtered ("Remote Threadlist test\n");
5239 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
5240 &result_count, &threadlist[0]))
5241 printf_filtered ("FAIL: threadlist test\n");
5244 threadref *scan = threadlist;
5245 threadref *limit = scan + result_count;
5247 while (scan < limit)
5248 output_threadid (" thread ", scan++);
5253 display_thread_info (struct gdb_ext_thread_info *info)
5255 output_threadid ("Threadid: ", &info->threadid);
5256 printf_filtered ("Name: %s\n ", info->shortname);
5257 printf_filtered ("State: %s\n", info->display);
5258 printf_filtered ("other: %s\n\n", info->more_display);
5262 get_and_display_threadinfo (threadref *ref)
5266 struct gdb_ext_thread_info threadinfo;
5268 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
5269 | TAG_MOREDISPLAY | TAG_DISPLAY;
5270 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
5271 display_thread_info (&threadinfo);
5276 threadinfo_test_cmd (char *cmd, int tty)
5278 int athread = SAMPLE_THREAD;
5282 int_to_threadref (&thread, athread);
5283 printf_filtered ("Remote Threadinfo test\n");
5284 if (!get_and_display_threadinfo (&thread))
5285 printf_filtered ("FAIL cannot get thread info\n");
5289 thread_display_step (threadref *ref, void *context)
5291 /* output_threadid(" threadstep ",ref); *//* simple test */
5292 return get_and_display_threadinfo (ref);
5296 threadlist_update_test_cmd (char *cmd, int tty)
5298 printf_filtered ("Remote Threadlist update test\n");
5299 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
5303 init_remote_threadtests (void)
5305 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
5306 Fetch and print the remote list of thread identifiers, one pkt only"));
5307 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
5308 _("Fetch and display info about one thread"));
5309 add_com ("tset", class_obscure, threadset_test_cmd,
5310 _("Test setting to a different thread"));
5311 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
5312 _("Iterate through updating all remote thread info"));
5313 add_com ("talive", class_obscure, threadalive_test,
5314 _(" Remote thread alive test "));
5319 /* Convert a thread ID to a string. Returns the string in a static
5323 remote_pid_to_str (ptid_t ptid)
5325 static char buf[32];
5328 size = snprintf (buf, sizeof buf, "thread %d", ptid_get_pid (ptid));
5329 gdb_assert (size < sizeof buf);
5334 init_remote_ops (void)
5336 remote_ops.to_shortname = "remote";
5337 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
5339 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5340 Specify the serial device it is connected to\n\
5341 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
5342 remote_ops.to_open = remote_open;
5343 remote_ops.to_close = remote_close;
5344 remote_ops.to_detach = remote_detach;
5345 remote_ops.to_disconnect = remote_disconnect;
5346 remote_ops.to_resume = remote_resume;
5347 remote_ops.to_wait = remote_wait;
5348 remote_ops.to_fetch_registers = remote_fetch_registers;
5349 remote_ops.to_store_registers = remote_store_registers;
5350 remote_ops.to_prepare_to_store = remote_prepare_to_store;
5351 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
5352 remote_ops.to_files_info = remote_files_info;
5353 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
5354 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
5355 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
5356 remote_ops.to_stopped_data_address = remote_stopped_data_address;
5357 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
5358 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
5359 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
5360 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
5361 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
5362 remote_ops.to_kill = remote_kill;
5363 remote_ops.to_load = generic_load;
5364 remote_ops.to_mourn_inferior = remote_mourn;
5365 remote_ops.to_thread_alive = remote_thread_alive;
5366 remote_ops.to_find_new_threads = remote_threads_info;
5367 remote_ops.to_pid_to_str = remote_pid_to_str;
5368 remote_ops.to_extra_thread_info = remote_threads_extra_info;
5369 remote_ops.to_stop = remote_stop;
5370 remote_ops.to_xfer_partial = remote_xfer_partial;
5371 remote_ops.to_rcmd = remote_rcmd;
5372 remote_ops.to_stratum = process_stratum;
5373 remote_ops.to_has_all_memory = 1;
5374 remote_ops.to_has_memory = 1;
5375 remote_ops.to_has_stack = 1;
5376 remote_ops.to_has_registers = 1;
5377 remote_ops.to_has_execution = 1;
5378 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
5379 remote_ops.to_magic = OPS_MAGIC;
5382 /* Set up the extended remote vector by making a copy of the standard
5383 remote vector and adding to it. */
5386 init_extended_remote_ops (void)
5388 extended_remote_ops = remote_ops;
5390 extended_remote_ops.to_shortname = "extended-remote";
5391 extended_remote_ops.to_longname =
5392 "Extended remote serial target in gdb-specific protocol";
5393 extended_remote_ops.to_doc =
5394 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5395 Specify the serial device it is connected to (e.g. /dev/ttya).",
5396 extended_remote_ops.to_open = extended_remote_open;
5397 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
5398 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
5402 remote_can_async_p (void)
5404 /* We're async whenever the serial device is. */
5405 return (current_target.to_async_mask_value) && serial_can_async_p (remote_desc);
5409 remote_is_async_p (void)
5411 /* We're async whenever the serial device is. */
5412 return (current_target.to_async_mask_value) && serial_is_async_p (remote_desc);
5415 /* Pass the SERIAL event on and up to the client. One day this code
5416 will be able to delay notifying the client of an event until the
5417 point where an entire packet has been received. */
5419 static void (*async_client_callback) (enum inferior_event_type event_type,
5421 static void *async_client_context;
5422 static serial_event_ftype remote_async_serial_handler;
5425 remote_async_serial_handler (struct serial *scb, void *context)
5427 /* Don't propogate error information up to the client. Instead let
5428 the client find out about the error by querying the target. */
5429 async_client_callback (INF_REG_EVENT, async_client_context);
5433 remote_async (void (*callback) (enum inferior_event_type event_type,
5434 void *context), void *context)
5436 if (current_target.to_async_mask_value == 0)
5437 internal_error (__FILE__, __LINE__,
5438 _("Calling remote_async when async is masked"));
5440 if (callback != NULL)
5442 serial_async (remote_desc, remote_async_serial_handler, NULL);
5443 async_client_callback = callback;
5444 async_client_context = context;
5447 serial_async (remote_desc, NULL, NULL);
5450 /* Target async and target extended-async.
5452 This are temporary targets, until it is all tested. Eventually
5453 async support will be incorporated int the usual 'remote'
5457 init_remote_async_ops (void)
5459 remote_async_ops.to_shortname = "async";
5460 remote_async_ops.to_longname =
5461 "Remote serial target in async version of the gdb-specific protocol";
5462 remote_async_ops.to_doc =
5463 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5464 Specify the serial device it is connected to (e.g. /dev/ttya).";
5465 remote_async_ops.to_open = remote_async_open;
5466 remote_async_ops.to_close = remote_close;
5467 remote_async_ops.to_detach = remote_detach;
5468 remote_async_ops.to_disconnect = remote_disconnect;
5469 remote_async_ops.to_resume = remote_async_resume;
5470 remote_async_ops.to_wait = remote_async_wait;
5471 remote_async_ops.to_fetch_registers = remote_fetch_registers;
5472 remote_async_ops.to_store_registers = remote_store_registers;
5473 remote_async_ops.to_prepare_to_store = remote_prepare_to_store;
5474 remote_async_ops.deprecated_xfer_memory = remote_xfer_memory;
5475 remote_async_ops.to_files_info = remote_files_info;
5476 remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint;
5477 remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint;
5478 remote_async_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
5479 remote_async_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
5480 remote_async_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
5481 remote_async_ops.to_insert_watchpoint = remote_insert_watchpoint;
5482 remote_async_ops.to_remove_watchpoint = remote_remove_watchpoint;
5483 remote_async_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
5484 remote_async_ops.to_stopped_data_address = remote_stopped_data_address;
5485 remote_async_ops.to_terminal_inferior = remote_async_terminal_inferior;
5486 remote_async_ops.to_terminal_ours = remote_async_terminal_ours;
5487 remote_async_ops.to_kill = remote_async_kill;
5488 remote_async_ops.to_load = generic_load;
5489 remote_async_ops.to_mourn_inferior = remote_async_mourn;
5490 remote_async_ops.to_thread_alive = remote_thread_alive;
5491 remote_async_ops.to_find_new_threads = remote_threads_info;
5492 remote_async_ops.to_pid_to_str = remote_pid_to_str;
5493 remote_async_ops.to_extra_thread_info = remote_threads_extra_info;
5494 remote_async_ops.to_stop = remote_stop;
5495 remote_async_ops.to_xfer_partial = remote_xfer_partial;
5496 remote_async_ops.to_rcmd = remote_rcmd;
5497 remote_async_ops.to_stratum = process_stratum;
5498 remote_async_ops.to_has_all_memory = 1;
5499 remote_async_ops.to_has_memory = 1;
5500 remote_async_ops.to_has_stack = 1;
5501 remote_async_ops.to_has_registers = 1;
5502 remote_async_ops.to_has_execution = 1;
5503 remote_async_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
5504 remote_async_ops.to_can_async_p = remote_can_async_p;
5505 remote_async_ops.to_is_async_p = remote_is_async_p;
5506 remote_async_ops.to_async = remote_async;
5507 remote_async_ops.to_async_mask_value = 1;
5508 remote_async_ops.to_magic = OPS_MAGIC;
5511 /* Set up the async extended remote vector by making a copy of the standard
5512 remote vector and adding to it. */
5515 init_extended_async_remote_ops (void)
5517 extended_async_remote_ops = remote_async_ops;
5519 extended_async_remote_ops.to_shortname = "extended-async";
5520 extended_async_remote_ops.to_longname =
5521 "Extended remote serial target in async gdb-specific protocol";
5522 extended_async_remote_ops.to_doc =
5523 "Use a remote computer via a serial line, using an async gdb-specific protocol.\n\
5524 Specify the serial device it is connected to (e.g. /dev/ttya).",
5525 extended_async_remote_ops.to_open = extended_remote_async_open;
5526 extended_async_remote_ops.to_create_inferior = extended_remote_async_create_inferior;
5527 extended_async_remote_ops.to_mourn_inferior = extended_remote_mourn;
5531 set_remote_cmd (char *args, int from_tty)
5536 show_remote_cmd (char *args, int from_tty)
5538 /* FIXME: cagney/2002-06-15: This function should iterate over
5539 remote_show_cmdlist for a list of sub commands to show. */
5540 show_remote_protocol_Z_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5541 show_remote_protocol_P_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5542 show_remote_protocol_p_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5543 show_remote_protocol_qSymbol_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5544 show_remote_protocol_vcont_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5545 show_remote_protocol_binary_download_cmd (gdb_stdout, from_tty, NULL, NULL);
5546 show_remote_protocol_qPart_auxv_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5550 build_remote_gdbarch_data (void)
5552 remote_address_size = TARGET_ADDR_BIT;
5555 /* Saved pointer to previous owner of the new_objfile event. */
5556 static void (*remote_new_objfile_chain) (struct objfile *);
5558 /* Function to be called whenever a new objfile (shlib) is detected. */
5560 remote_new_objfile (struct objfile *objfile)
5562 if (remote_desc != 0) /* Have a remote connection. */
5564 remote_check_symbols (objfile);
5566 /* Call predecessor on chain, if any. */
5567 if (remote_new_objfile_chain != 0 &&
5569 remote_new_objfile_chain (objfile);
5573 _initialize_remote (void)
5575 static struct cmd_list_element *remote_set_cmdlist;
5576 static struct cmd_list_element *remote_show_cmdlist;
5577 struct cmd_list_element *tmpcmd;
5579 /* architecture specific data */
5580 remote_gdbarch_data_handle =
5581 gdbarch_data_register_post_init (init_remote_state);
5583 /* Old tacky stuff. NOTE: This comes after the remote protocol so
5584 that the remote protocol has been initialized. */
5585 DEPRECATED_REGISTER_GDBARCH_SWAP (remote_address_size);
5586 deprecated_register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data);
5589 add_target (&remote_ops);
5591 init_extended_remote_ops ();
5592 add_target (&extended_remote_ops);
5594 init_remote_async_ops ();
5595 add_target (&remote_async_ops);
5597 init_extended_async_remote_ops ();
5598 add_target (&extended_async_remote_ops);
5600 /* Hook into new objfile notification. */
5601 remote_new_objfile_chain = deprecated_target_new_objfile_hook;
5602 deprecated_target_new_objfile_hook = remote_new_objfile;
5605 init_remote_threadtests ();
5608 /* set/show remote ... */
5610 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5611 Remote protocol specific variables\n\
5612 Configure various remote-protocol specific variables such as\n\
5613 the packets being used"),
5614 &remote_set_cmdlist, "set remote ",
5615 0 /* allow-unknown */, &setlist);
5616 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5617 Remote protocol specific variables\n\
5618 Configure various remote-protocol specific variables such as\n\
5619 the packets being used"),
5620 &remote_show_cmdlist, "show remote ",
5621 0 /* allow-unknown */, &showlist);
5623 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
5624 Compare section data on target to the exec file.\n\
5625 Argument is a single section name (default: all loaded sections)."),
5628 add_cmd ("packet", class_maintenance, packet_command, _("\
5629 Send an arbitrary packet to a remote target.\n\
5630 maintenance packet TEXT\n\
5631 If GDB is talking to an inferior via the GDB serial protocol, then\n\
5632 this command sends the string TEXT to the inferior, and displays the\n\
5633 response packet. GDB supplies the initial `$' character, and the\n\
5634 terminating `#' character and checksum."),
5637 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
5638 Set whether to send break if interrupted."), _("\
5639 Show whether to send break if interrupted."), _("\
5640 If set, a break, instead of a cntrl-c, is sent to the remote target."),
5641 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
5642 &setlist, &showlist);
5644 /* Install commands for configuring memory read/write packets. */
5646 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
5647 Set the maximum number of bytes per memory write packet (deprecated)."),
5649 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
5650 Show the maximum number of bytes per memory write packet (deprecated)."),
5652 add_cmd ("memory-write-packet-size", no_class,
5653 set_memory_write_packet_size, _("\
5654 Set the maximum number of bytes per memory-write packet.\n\
5655 Specify the number of bytes in a packet or 0 (zero) for the\n\
5656 default packet size. The actual limit is further reduced\n\
5657 dependent on the target. Specify ``fixed'' to disable the\n\
5658 further restriction and ``limit'' to enable that restriction."),
5659 &remote_set_cmdlist);
5660 add_cmd ("memory-read-packet-size", no_class,
5661 set_memory_read_packet_size, _("\
5662 Set the maximum number of bytes per memory-read packet.\n\
5663 Specify the number of bytes in a packet or 0 (zero) for the\n\
5664 default packet size. The actual limit is further reduced\n\
5665 dependent on the target. Specify ``fixed'' to disable the\n\
5666 further restriction and ``limit'' to enable that restriction."),
5667 &remote_set_cmdlist);
5668 add_cmd ("memory-write-packet-size", no_class,
5669 show_memory_write_packet_size,
5670 _("Show the maximum number of bytes per memory-write packet."),
5671 &remote_show_cmdlist);
5672 add_cmd ("memory-read-packet-size", no_class,
5673 show_memory_read_packet_size,
5674 _("Show the maximum number of bytes per memory-read packet."),
5675 &remote_show_cmdlist);
5677 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
5678 &remote_hw_watchpoint_limit, _("\
5679 Set the maximum number of target hardware watchpoints."), _("\
5680 Show the maximum number of target hardware watchpoints."), _("\
5681 Specify a negative limit for unlimited."),
5682 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
5683 &remote_set_cmdlist, &remote_show_cmdlist);
5684 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
5685 &remote_hw_breakpoint_limit, _("\
5686 Set the maximum number of target hardware breakpoints."), _("\
5687 Show the maximum number of target hardware breakpoints."), _("\
5688 Specify a negative limit for unlimited."),
5689 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
5690 &remote_set_cmdlist, &remote_show_cmdlist);
5692 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
5693 &remote_address_size, _("\
5694 Set the maximum size of the address (in bits) in a memory packet."), _("\
5695 Show the maximum size of the address (in bits) in a memory packet."), NULL,
5697 NULL, /* FIXME: i18n: */
5698 &setlist, &showlist);
5700 add_packet_config_cmd (&remote_protocol_binary_download,
5701 "X", "binary-download",
5702 set_remote_protocol_binary_download_cmd,
5703 show_remote_protocol_binary_download_cmd,
5704 &remote_set_cmdlist, &remote_show_cmdlist,
5707 add_packet_config_cmd (&remote_protocol_vcont,
5708 "vCont", "verbose-resume",
5709 set_remote_protocol_vcont_packet_cmd,
5710 show_remote_protocol_vcont_packet_cmd,
5711 &remote_set_cmdlist, &remote_show_cmdlist,
5714 add_packet_config_cmd (&remote_protocol_qSymbol,
5715 "qSymbol", "symbol-lookup",
5716 set_remote_protocol_qSymbol_packet_cmd,
5717 show_remote_protocol_qSymbol_packet_cmd,
5718 &remote_set_cmdlist, &remote_show_cmdlist,
5721 add_packet_config_cmd (&remote_protocol_P,
5722 "P", "set-register",
5723 set_remote_protocol_P_packet_cmd,
5724 show_remote_protocol_P_packet_cmd,
5725 &remote_set_cmdlist, &remote_show_cmdlist,
5728 add_packet_config_cmd (&remote_protocol_p,
5729 "p", "fetch-register",
5730 set_remote_protocol_p_packet_cmd,
5731 show_remote_protocol_p_packet_cmd,
5732 &remote_set_cmdlist, &remote_show_cmdlist,
5735 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP],
5736 "Z0", "software-breakpoint",
5737 set_remote_protocol_Z_software_bp_packet_cmd,
5738 show_remote_protocol_Z_software_bp_packet_cmd,
5739 &remote_set_cmdlist, &remote_show_cmdlist,
5742 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP],
5743 "Z1", "hardware-breakpoint",
5744 set_remote_protocol_Z_hardware_bp_packet_cmd,
5745 show_remote_protocol_Z_hardware_bp_packet_cmd,
5746 &remote_set_cmdlist, &remote_show_cmdlist,
5749 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP],
5750 "Z2", "write-watchpoint",
5751 set_remote_protocol_Z_write_wp_packet_cmd,
5752 show_remote_protocol_Z_write_wp_packet_cmd,
5753 &remote_set_cmdlist, &remote_show_cmdlist,
5756 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP],
5757 "Z3", "read-watchpoint",
5758 set_remote_protocol_Z_read_wp_packet_cmd,
5759 show_remote_protocol_Z_read_wp_packet_cmd,
5760 &remote_set_cmdlist, &remote_show_cmdlist,
5763 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP],
5764 "Z4", "access-watchpoint",
5765 set_remote_protocol_Z_access_wp_packet_cmd,
5766 show_remote_protocol_Z_access_wp_packet_cmd,
5767 &remote_set_cmdlist, &remote_show_cmdlist,
5770 add_packet_config_cmd (&remote_protocol_qPart_auxv,
5771 "qPart_auxv", "read-aux-vector",
5772 set_remote_protocol_qPart_auxv_packet_cmd,
5773 show_remote_protocol_qPart_auxv_packet_cmd,
5774 &remote_set_cmdlist, &remote_show_cmdlist,
5777 /* Keep the old ``set remote Z-packet ...'' working. */
5778 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
5779 &remote_Z_packet_detect, _("\
5780 Set use of remote protocol `Z' packets"), _("\
5781 Show use of remote protocol `Z' packets "), _("\
5782 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
5784 set_remote_protocol_Z_packet_cmd,
5785 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
5786 &remote_set_cmdlist, &remote_show_cmdlist);
5788 /* Eventually initialize fileio. See fileio.c */
5789 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);