9b259fac5d6a78c487329226bd21b7dd8157d4c3
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
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.
6
7 This file is part of GDB.
8
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.
13
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.
18
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. */
23
24 /* See the GDB User Guide for details of the GDB remote protocol. */
25
26 #include "defs.h"
27 #include "gdb_string.h"
28 #include <ctype.h>
29 #include <fcntl.h>
30 #include "inferior.h"
31 #include "bfd.h"
32 #include "symfile.h"
33 #include "exceptions.h"
34 #include "target.h"
35 /*#include "terminal.h" */
36 #include "gdbcmd.h"
37 #include "objfiles.h"
38 #include "gdb-stabs.h"
39 #include "gdbthread.h"
40 #include "remote.h"
41 #include "regcache.h"
42 #include "value.h"
43 #include "gdb_assert.h"
44
45 #include <ctype.h>
46 #include <sys/time.h>
47
48 #include "event-loop.h"
49 #include "event-top.h"
50 #include "inf-loop.h"
51
52 #include <signal.h>
53 #include "serial.h"
54
55 #include "gdbcore.h" /* for exec_bfd */
56
57 #include "remote-fileio.h"
58
59 /* Prototypes for local functions. */
60 static void cleanup_sigint_signal_handler (void *dummy);
61 static void initialize_sigint_signal_handler (void);
62 static int getpkt_sane (char *buf, long sizeof_buf, int forever);
63
64 static void handle_remote_sigint (int);
65 static void handle_remote_sigint_twice (int);
66 static void async_remote_interrupt (gdb_client_data);
67 void async_remote_interrupt_twice (gdb_client_data);
68
69 static void build_remote_gdbarch_data (void);
70
71 static void remote_files_info (struct target_ops *ignore);
72
73 static int remote_xfer_memory (CORE_ADDR memaddr, char *myaddr,
74 int len, int should_write,
75 struct mem_attrib *attrib,
76 struct target_ops *target);
77
78 static void remote_prepare_to_store (void);
79
80 static void remote_fetch_registers (int regno);
81
82 static void remote_resume (ptid_t ptid, int step,
83 enum target_signal siggnal);
84 static void remote_async_resume (ptid_t ptid, int step,
85 enum target_signal siggnal);
86 static void remote_open (char *name, int from_tty);
87 static void remote_async_open (char *name, int from_tty);
88
89 static void extended_remote_open (char *name, int from_tty);
90 static void extended_remote_async_open (char *name, int from_tty);
91
92 static void remote_open_1 (char *, int, struct target_ops *, int extended_p,
93 int async_p);
94
95 static void remote_close (int quitting);
96
97 static void remote_store_registers (int regno);
98
99 static void remote_mourn (void);
100 static void remote_async_mourn (void);
101
102 static void extended_remote_restart (void);
103
104 static void extended_remote_mourn (void);
105
106 static void remote_mourn_1 (struct target_ops *);
107
108 static void remote_send (char *buf, long sizeof_buf);
109
110 static int readchar (int timeout);
111
112 static ptid_t remote_wait (ptid_t ptid,
113 struct target_waitstatus *status);
114 static ptid_t remote_async_wait (ptid_t ptid,
115 struct target_waitstatus *status);
116
117 static void remote_kill (void);
118 static void remote_async_kill (void);
119
120 static int tohex (int nib);
121
122 static void remote_detach (char *args, int from_tty);
123
124 static void remote_interrupt (int signo);
125
126 static void remote_interrupt_twice (int signo);
127
128 static void interrupt_query (void);
129
130 static void set_thread (int, int);
131
132 static int remote_thread_alive (ptid_t);
133
134 static void get_offsets (void);
135
136 static long read_frame (char *buf, long sizeof_buf);
137
138 static int remote_insert_breakpoint (CORE_ADDR, char *);
139
140 static int remote_remove_breakpoint (CORE_ADDR, char *);
141
142 static int hexnumlen (ULONGEST num);
143
144 static void init_remote_ops (void);
145
146 static void init_extended_remote_ops (void);
147
148 static void remote_stop (void);
149
150 static int ishex (int ch, int *val);
151
152 static int stubhex (int ch);
153
154 static int hexnumstr (char *, ULONGEST);
155
156 static int hexnumnstr (char *, ULONGEST, int);
157
158 static CORE_ADDR remote_address_masked (CORE_ADDR);
159
160 static void print_packet (char *);
161
162 static unsigned long crc32 (unsigned char *, int, unsigned int);
163
164 static void compare_sections_command (char *, int);
165
166 static void packet_command (char *, int);
167
168 static int stub_unpack_int (char *buff, int fieldlength);
169
170 static ptid_t remote_current_thread (ptid_t oldptid);
171
172 static void remote_find_new_threads (void);
173
174 static void record_currthread (int currthread);
175
176 static int fromhex (int a);
177
178 static int hex2bin (const char *hex, char *bin, int count);
179
180 static int bin2hex (const char *bin, char *hex, int count);
181
182 static int putpkt_binary (char *buf, int cnt);
183
184 static void check_binary_download (CORE_ADDR addr);
185
186 struct packet_config;
187
188 static void show_packet_config_cmd (struct packet_config *config);
189
190 static void update_packet_config (struct packet_config *config);
191
192 void _initialize_remote (void);
193
194 /* Description of the remote protocol. Strictly speaking, when the
195 target is open()ed, remote.c should create a per-target description
196 of the remote protocol using that target's architecture.
197 Unfortunately, the target stack doesn't include local state. For
198 the moment keep the information in the target's architecture
199 object. Sigh.. */
200
201 struct packet_reg
202 {
203 long offset; /* Offset into G packet. */
204 long regnum; /* GDB's internal register number. */
205 LONGEST pnum; /* Remote protocol register number. */
206 int in_g_packet; /* Always part of G packet. */
207 /* long size in bytes; == register_size (current_gdbarch, regnum);
208 at present. */
209 /* char *name; == REGISTER_NAME (regnum); at present. */
210 };
211
212 struct remote_state
213 {
214 /* Description of the remote protocol registers. */
215 long sizeof_g_packet;
216
217 /* Description of the remote protocol registers indexed by REGNUM
218 (making an array of NUM_REGS + NUM_PSEUDO_REGS in size). */
219 struct packet_reg *regs;
220
221 /* This is the size (in chars) of the first response to the ``g''
222 packet. It is used as a heuristic when determining the maximum
223 size of memory-read and memory-write packets. A target will
224 typically only reserve a buffer large enough to hold the ``g''
225 packet. The size does not include packet overhead (headers and
226 trailers). */
227 long actual_register_packet_size;
228
229 /* This is the maximum size (in chars) of a non read/write packet.
230 It is also used as a cap on the size of read/write packets. */
231 long remote_packet_size;
232 };
233
234
235 /* Handle for retreving the remote protocol data from gdbarch. */
236 static struct gdbarch_data *remote_gdbarch_data_handle;
237
238 static struct remote_state *
239 get_remote_state (void)
240 {
241 return gdbarch_data (current_gdbarch, remote_gdbarch_data_handle);
242 }
243
244 static void *
245 init_remote_state (struct gdbarch *gdbarch)
246 {
247 int regnum;
248 struct remote_state *rs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_state);
249
250 if (deprecated_register_bytes () != 0)
251 rs->sizeof_g_packet = deprecated_register_bytes ();
252 else
253 rs->sizeof_g_packet = 0;
254
255 /* Assume a 1:1 regnum<->pnum table. */
256 rs->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, NUM_REGS + NUM_PSEUDO_REGS,
257 struct packet_reg);
258 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
259 {
260 struct packet_reg *r = &rs->regs[regnum];
261 r->pnum = regnum;
262 r->regnum = regnum;
263 r->offset = DEPRECATED_REGISTER_BYTE (regnum);
264 r->in_g_packet = (regnum < NUM_REGS);
265 /* ...name = REGISTER_NAME (regnum); */
266
267 /* Compute packet size by accumulating the size of all registers. */
268 if (deprecated_register_bytes () == 0)
269 rs->sizeof_g_packet += register_size (current_gdbarch, regnum);
270 }
271
272 /* Default maximum number of characters in a packet body. Many
273 remote stubs have a hardwired buffer size of 400 bytes
274 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
275 as the maximum packet-size to ensure that the packet and an extra
276 NUL character can always fit in the buffer. This stops GDB
277 trashing stubs that try to squeeze an extra NUL into what is
278 already a full buffer (As of 1999-12-04 that was most stubs. */
279 rs->remote_packet_size = 400 - 1;
280
281 /* Should rs->sizeof_g_packet needs more space than the
282 default, adjust the size accordingly. Remember that each byte is
283 encoded as two characters. 32 is the overhead for the packet
284 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
285 (``$NN:G...#NN'') is a better guess, the below has been padded a
286 little. */
287 if (rs->sizeof_g_packet > ((rs->remote_packet_size - 32) / 2))
288 rs->remote_packet_size = (rs->sizeof_g_packet * 2 + 32);
289
290 /* This one is filled in when a ``g'' packet is received. */
291 rs->actual_register_packet_size = 0;
292
293 return rs;
294 }
295
296 static struct packet_reg *
297 packet_reg_from_regnum (struct remote_state *rs, long regnum)
298 {
299 if (regnum < 0 && regnum >= NUM_REGS + NUM_PSEUDO_REGS)
300 return NULL;
301 else
302 {
303 struct packet_reg *r = &rs->regs[regnum];
304 gdb_assert (r->regnum == regnum);
305 return r;
306 }
307 }
308
309 static struct packet_reg *
310 packet_reg_from_pnum (struct remote_state *rs, LONGEST pnum)
311 {
312 int i;
313 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
314 {
315 struct packet_reg *r = &rs->regs[i];
316 if (r->pnum == pnum)
317 return r;
318 }
319 return NULL;
320 }
321
322 /* FIXME: graces/2002-08-08: These variables should eventually be
323 bound to an instance of the target object (as in gdbarch-tdep()),
324 when such a thing exists. */
325
326 /* This is set to the data address of the access causing the target
327 to stop for a watchpoint. */
328 static CORE_ADDR remote_watch_data_address;
329
330 /* This is non-zero if taregt stopped for a watchpoint. */
331 static int remote_stopped_by_watchpoint_p;
332
333
334 static struct target_ops remote_ops;
335
336 static struct target_ops extended_remote_ops;
337
338 /* Temporary target ops. Just like the remote_ops and
339 extended_remote_ops, but with asynchronous support. */
340 static struct target_ops remote_async_ops;
341
342 static struct target_ops extended_async_remote_ops;
343
344 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
345 ``forever'' still use the normal timeout mechanism. This is
346 currently used by the ASYNC code to guarentee that target reads
347 during the initial connect always time-out. Once getpkt has been
348 modified to return a timeout indication and, in turn
349 remote_wait()/wait_for_inferior() have gained a timeout parameter
350 this can go away. */
351 static int wait_forever_enabled_p = 1;
352
353
354 /* This variable chooses whether to send a ^C or a break when the user
355 requests program interruption. Although ^C is usually what remote
356 systems expect, and that is the default here, sometimes a break is
357 preferable instead. */
358
359 static int remote_break;
360
361 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
362 remote_open knows that we don't have a file open when the program
363 starts. */
364 static struct serial *remote_desc = NULL;
365
366 /* This variable sets the number of bits in an address that are to be
367 sent in a memory ("M" or "m") packet. Normally, after stripping
368 leading zeros, the entire address would be sent. This variable
369 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
370 initial implementation of remote.c restricted the address sent in
371 memory packets to ``host::sizeof long'' bytes - (typically 32
372 bits). Consequently, for 64 bit targets, the upper 32 bits of an
373 address was never sent. Since fixing this bug may cause a break in
374 some remote targets this variable is principly provided to
375 facilitate backward compatibility. */
376
377 static int remote_address_size;
378
379 /* Tempoary to track who currently owns the terminal. See
380 target_async_terminal_* for more details. */
381
382 static int remote_async_terminal_ours_p;
383
384 \f
385 /* User configurable variables for the number of characters in a
386 memory read/write packet. MIN ((rs->remote_packet_size),
387 rs->sizeof_g_packet) is the default. Some targets need smaller
388 values (fifo overruns, et.al.) and some users need larger values
389 (speed up transfers). The variables ``preferred_*'' (the user
390 request), ``current_*'' (what was actually set) and ``forced_*''
391 (Positive - a soft limit, negative - a hard limit). */
392
393 struct memory_packet_config
394 {
395 char *name;
396 long size;
397 int fixed_p;
398 };
399
400 /* Compute the current size of a read/write packet. Since this makes
401 use of ``actual_register_packet_size'' the computation is dynamic. */
402
403 static long
404 get_memory_packet_size (struct memory_packet_config *config)
405 {
406 struct remote_state *rs = get_remote_state ();
407 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
408 law?) that some hosts don't cope very well with large alloca()
409 calls. Eventually the alloca() code will be replaced by calls to
410 xmalloc() and make_cleanups() allowing this restriction to either
411 be lifted or removed. */
412 #ifndef MAX_REMOTE_PACKET_SIZE
413 #define MAX_REMOTE_PACKET_SIZE 16384
414 #endif
415 /* NOTE: 16 is just chosen at random. */
416 #ifndef MIN_REMOTE_PACKET_SIZE
417 #define MIN_REMOTE_PACKET_SIZE 16
418 #endif
419 long what_they_get;
420 if (config->fixed_p)
421 {
422 if (config->size <= 0)
423 what_they_get = MAX_REMOTE_PACKET_SIZE;
424 else
425 what_they_get = config->size;
426 }
427 else
428 {
429 what_they_get = (rs->remote_packet_size);
430 /* Limit the packet to the size specified by the user. */
431 if (config->size > 0
432 && what_they_get > config->size)
433 what_they_get = config->size;
434 /* Limit it to the size of the targets ``g'' response. */
435 if ((rs->actual_register_packet_size) > 0
436 && what_they_get > (rs->actual_register_packet_size))
437 what_they_get = (rs->actual_register_packet_size);
438 }
439 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
440 what_they_get = MAX_REMOTE_PACKET_SIZE;
441 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
442 what_they_get = MIN_REMOTE_PACKET_SIZE;
443 return what_they_get;
444 }
445
446 /* Update the size of a read/write packet. If they user wants
447 something really big then do a sanity check. */
448
449 static void
450 set_memory_packet_size (char *args, struct memory_packet_config *config)
451 {
452 int fixed_p = config->fixed_p;
453 long size = config->size;
454 if (args == NULL)
455 error (_("Argument required (integer, `fixed' or `limited')."));
456 else if (strcmp (args, "hard") == 0
457 || strcmp (args, "fixed") == 0)
458 fixed_p = 1;
459 else if (strcmp (args, "soft") == 0
460 || strcmp (args, "limit") == 0)
461 fixed_p = 0;
462 else
463 {
464 char *end;
465 size = strtoul (args, &end, 0);
466 if (args == end)
467 error (_("Invalid %s (bad syntax)."), config->name);
468 #if 0
469 /* Instead of explicitly capping the size of a packet to
470 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
471 instead allowed to set the size to something arbitrarily
472 large. */
473 if (size > MAX_REMOTE_PACKET_SIZE)
474 error (_("Invalid %s (too large)."), config->name);
475 #endif
476 }
477 /* Extra checks? */
478 if (fixed_p && !config->fixed_p)
479 {
480 if (! query (_("The target may not be able to correctly handle a %s\n"
481 "of %ld bytes. Change the packet size? "),
482 config->name, size))
483 error (_("Packet size not changed."));
484 }
485 /* Update the config. */
486 config->fixed_p = fixed_p;
487 config->size = size;
488 }
489
490 static void
491 show_memory_packet_size (struct memory_packet_config *config)
492 {
493 printf_filtered (_("The %s is %ld. "), config->name, config->size);
494 if (config->fixed_p)
495 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
496 get_memory_packet_size (config));
497 else
498 printf_filtered (_("Packets are limited to %ld bytes.\n"),
499 get_memory_packet_size (config));
500 }
501
502 static struct memory_packet_config memory_write_packet_config =
503 {
504 "memory-write-packet-size",
505 };
506
507 static void
508 set_memory_write_packet_size (char *args, int from_tty)
509 {
510 set_memory_packet_size (args, &memory_write_packet_config);
511 }
512
513 static void
514 show_memory_write_packet_size (char *args, int from_tty)
515 {
516 show_memory_packet_size (&memory_write_packet_config);
517 }
518
519 static long
520 get_memory_write_packet_size (void)
521 {
522 return get_memory_packet_size (&memory_write_packet_config);
523 }
524
525 static struct memory_packet_config memory_read_packet_config =
526 {
527 "memory-read-packet-size",
528 };
529
530 static void
531 set_memory_read_packet_size (char *args, int from_tty)
532 {
533 set_memory_packet_size (args, &memory_read_packet_config);
534 }
535
536 static void
537 show_memory_read_packet_size (char *args, int from_tty)
538 {
539 show_memory_packet_size (&memory_read_packet_config);
540 }
541
542 static long
543 get_memory_read_packet_size (void)
544 {
545 struct remote_state *rs = get_remote_state ();
546 long size = get_memory_packet_size (&memory_read_packet_config);
547 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
548 extra buffer size argument before the memory read size can be
549 increased beyond (rs->remote_packet_size). */
550 if (size > (rs->remote_packet_size))
551 size = (rs->remote_packet_size);
552 return size;
553 }
554
555 \f
556 /* Generic configuration support for packets the stub optionally
557 supports. Allows the user to specify the use of the packet as well
558 as allowing GDB to auto-detect support in the remote stub. */
559
560 enum packet_support
561 {
562 PACKET_SUPPORT_UNKNOWN = 0,
563 PACKET_ENABLE,
564 PACKET_DISABLE
565 };
566
567 struct packet_config
568 {
569 char *name;
570 char *title;
571 enum auto_boolean detect;
572 enum packet_support support;
573 };
574
575 /* Analyze a packet's return value and update the packet config
576 accordingly. */
577
578 enum packet_result
579 {
580 PACKET_ERROR,
581 PACKET_OK,
582 PACKET_UNKNOWN
583 };
584
585 static void
586 update_packet_config (struct packet_config *config)
587 {
588 switch (config->detect)
589 {
590 case AUTO_BOOLEAN_TRUE:
591 config->support = PACKET_ENABLE;
592 break;
593 case AUTO_BOOLEAN_FALSE:
594 config->support = PACKET_DISABLE;
595 break;
596 case AUTO_BOOLEAN_AUTO:
597 config->support = PACKET_SUPPORT_UNKNOWN;
598 break;
599 }
600 }
601
602 static void
603 show_packet_config_cmd (struct packet_config *config)
604 {
605 char *support = "internal-error";
606 switch (config->support)
607 {
608 case PACKET_ENABLE:
609 support = "enabled";
610 break;
611 case PACKET_DISABLE:
612 support = "disabled";
613 break;
614 case PACKET_SUPPORT_UNKNOWN:
615 support = "unknown";
616 break;
617 }
618 switch (config->detect)
619 {
620 case AUTO_BOOLEAN_AUTO:
621 printf_filtered (_("Support for remote protocol `%s' (%s) packet is auto-detected, currently %s.\n"),
622 config->name, config->title, support);
623 break;
624 case AUTO_BOOLEAN_TRUE:
625 case AUTO_BOOLEAN_FALSE:
626 printf_filtered (_("Support for remote protocol `%s' (%s) packet is currently %s.\n"),
627 config->name, config->title, support);
628 break;
629 }
630 }
631
632 static void
633 add_packet_config_cmd (struct packet_config *config,
634 char *name,
635 char *title,
636 cmd_sfunc_ftype *set_func,
637 show_value_ftype *show_func,
638 struct cmd_list_element **set_remote_list,
639 struct cmd_list_element **show_remote_list,
640 int legacy)
641 {
642 struct cmd_list_element *set_cmd;
643 struct cmd_list_element *show_cmd;
644 char *set_doc;
645 char *show_doc;
646 char *help_doc;
647 char *print;
648 char *cmd_name;
649 config->name = name;
650 config->title = title;
651 config->detect = AUTO_BOOLEAN_AUTO;
652 config->support = PACKET_SUPPORT_UNKNOWN;
653 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
654 name, title);
655 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
656 name, title);
657 print = xstrprintf ("Current use of remote protocol `%s' (%s) is %%s",
658 name, title);
659 /* set/show TITLE-packet {auto,on,off} */
660 cmd_name = xstrprintf ("%s-packet", title);
661 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
662 &config->detect, set_doc, show_doc, NULL, /* help_doc */
663 set_func, show_func,
664 set_remote_list, show_remote_list);
665 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
666 if (legacy)
667 {
668 char *legacy_name;
669 legacy_name = xstrprintf ("%s-packet", name);
670 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
671 set_remote_list);
672 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
673 show_remote_list);
674 }
675 }
676
677 static enum packet_result
678 packet_ok (const char *buf, struct packet_config *config)
679 {
680 if (buf[0] != '\0')
681 {
682 /* The stub recognized the packet request. Check that the
683 operation succeeded. */
684 switch (config->support)
685 {
686 case PACKET_SUPPORT_UNKNOWN:
687 if (remote_debug)
688 fprintf_unfiltered (gdb_stdlog,
689 "Packet %s (%s) is supported\n",
690 config->name, config->title);
691 config->support = PACKET_ENABLE;
692 break;
693 case PACKET_DISABLE:
694 internal_error (__FILE__, __LINE__,
695 _("packet_ok: attempt to use a disabled packet"));
696 break;
697 case PACKET_ENABLE:
698 break;
699 }
700 if (buf[0] == 'O' && buf[1] == 'K' && buf[2] == '\0')
701 /* "OK" - definitly OK. */
702 return PACKET_OK;
703 if (buf[0] == 'E'
704 && isxdigit (buf[1]) && isxdigit (buf[2])
705 && buf[3] == '\0')
706 /* "Enn" - definitly an error. */
707 return PACKET_ERROR;
708 /* The packet may or may not be OK. Just assume it is. */
709 return PACKET_OK;
710 }
711 else
712 {
713 /* The stub does not support the packet. */
714 switch (config->support)
715 {
716 case PACKET_ENABLE:
717 if (config->detect == AUTO_BOOLEAN_AUTO)
718 /* If the stub previously indicated that the packet was
719 supported then there is a protocol error.. */
720 error (_("Protocol error: %s (%s) conflicting enabled responses."),
721 config->name, config->title);
722 else
723 /* The user set it wrong. */
724 error (_("Enabled packet %s (%s) not recognized by stub"),
725 config->name, config->title);
726 break;
727 case PACKET_SUPPORT_UNKNOWN:
728 if (remote_debug)
729 fprintf_unfiltered (gdb_stdlog,
730 "Packet %s (%s) is NOT supported\n",
731 config->name, config->title);
732 config->support = PACKET_DISABLE;
733 break;
734 case PACKET_DISABLE:
735 break;
736 }
737 return PACKET_UNKNOWN;
738 }
739 }
740
741 /* Should we try the 'vCont' (descriptive resume) request? */
742 static struct packet_config remote_protocol_vcont;
743
744 static void
745 set_remote_protocol_vcont_packet_cmd (char *args, int from_tty,
746 struct cmd_list_element *c)
747 {
748 update_packet_config (&remote_protocol_vcont);
749 }
750
751 static void
752 show_remote_protocol_vcont_packet_cmd (struct ui_file *file, int from_tty,
753 struct cmd_list_element *c,
754 const char *value)
755 {
756 deprecated_show_value_hack (file, from_tty, c, value);
757 show_packet_config_cmd (&remote_protocol_vcont);
758 }
759
760 /* Should we try the 'qSymbol' (target symbol lookup service) request? */
761 static struct packet_config remote_protocol_qSymbol;
762
763 static void
764 set_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty,
765 struct cmd_list_element *c)
766 {
767 update_packet_config (&remote_protocol_qSymbol);
768 }
769
770 static void
771 show_remote_protocol_qSymbol_packet_cmd (struct ui_file *file, int from_tty,
772 struct cmd_list_element *c,
773 const char *value)
774 {
775 deprecated_show_value_hack (file, from_tty, c, value);
776 show_packet_config_cmd (&remote_protocol_qSymbol);
777 }
778
779 /* Should we try the 'P' (set register) request? */
780
781 static struct packet_config remote_protocol_P;
782
783 static void
784 set_remote_protocol_P_packet_cmd (char *args, int from_tty,
785 struct cmd_list_element *c)
786 {
787 update_packet_config (&remote_protocol_P);
788 }
789
790 static void
791 show_remote_protocol_P_packet_cmd (struct ui_file *file, int from_tty,
792 struct cmd_list_element *c,
793 const char *value)
794 {
795 deprecated_show_value_hack (file, from_tty, c, value);
796 show_packet_config_cmd (&remote_protocol_P);
797 }
798
799 /* Should we try one of the 'Z' requests? */
800
801 enum Z_packet_type
802 {
803 Z_PACKET_SOFTWARE_BP,
804 Z_PACKET_HARDWARE_BP,
805 Z_PACKET_WRITE_WP,
806 Z_PACKET_READ_WP,
807 Z_PACKET_ACCESS_WP,
808 NR_Z_PACKET_TYPES
809 };
810
811 static struct packet_config remote_protocol_Z[NR_Z_PACKET_TYPES];
812
813 /* FIXME: Instead of having all these boiler plate functions, the
814 command callback should include a context argument. */
815
816 static void
817 set_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty,
818 struct cmd_list_element *c)
819 {
820 update_packet_config (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
821 }
822
823 static void
824 show_remote_protocol_Z_software_bp_packet_cmd (struct ui_file *file, int from_tty,
825 struct cmd_list_element *c,
826 const char *value)
827 {
828 deprecated_show_value_hack (file, from_tty, c, value);
829 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
830 }
831
832 static void
833 set_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty,
834 struct cmd_list_element *c)
835 {
836 update_packet_config (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
837 }
838
839 static void
840 show_remote_protocol_Z_hardware_bp_packet_cmd (struct ui_file *file, int from_tty,
841 struct cmd_list_element *c,
842 const char *value)
843 {
844 deprecated_show_value_hack (file, from_tty, c, value);
845 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
846 }
847
848 static void
849 set_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty,
850 struct cmd_list_element *c)
851 {
852 update_packet_config (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
853 }
854
855 static void
856 show_remote_protocol_Z_write_wp_packet_cmd (struct ui_file *file, int from_tty,
857 struct cmd_list_element *c,
858 const char *value)
859 {
860 deprecated_show_value_hack (file, from_tty, c, value);
861 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
862 }
863
864 static void
865 set_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty,
866 struct cmd_list_element *c)
867 {
868 update_packet_config (&remote_protocol_Z[Z_PACKET_READ_WP]);
869 }
870
871 static void
872 show_remote_protocol_Z_read_wp_packet_cmd (struct ui_file *file, int from_tty,
873 struct cmd_list_element *c,
874 const char *value)
875 {
876 deprecated_show_value_hack (file, from_tty, c, value);
877 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP]);
878 }
879
880 static void
881 set_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty,
882 struct cmd_list_element *c)
883 {
884 update_packet_config (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
885 }
886
887 static void
888 show_remote_protocol_Z_access_wp_packet_cmd (struct ui_file *file, int from_tty,
889 struct cmd_list_element *c,
890 const char *value)
891 {
892 deprecated_show_value_hack (file, from_tty, c, value);
893 show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
894 }
895
896 /* For compatibility with older distributions. Provide a ``set remote
897 Z-packet ...'' command that updates all the Z packet types. */
898
899 static enum auto_boolean remote_Z_packet_detect;
900
901 static void
902 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
903 struct cmd_list_element *c)
904 {
905 int i;
906 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
907 {
908 remote_protocol_Z[i].detect = remote_Z_packet_detect;
909 update_packet_config (&remote_protocol_Z[i]);
910 }
911 }
912
913 static void
914 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
915 struct cmd_list_element *c,
916 const char *value)
917 {
918 int i;
919 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
920 {
921 show_packet_config_cmd (&remote_protocol_Z[i]);
922 }
923 }
924
925 /* Should we try the 'X' (remote binary download) packet?
926
927 This variable (available to the user via "set remote X-packet")
928 dictates whether downloads are sent in binary (via the 'X' packet).
929 We assume that the stub can, and attempt to do it. This will be
930 cleared if the stub does not understand it. This switch is still
931 needed, though in cases when the packet is supported in the stub,
932 but the connection does not allow it (i.e., 7-bit serial connection
933 only). */
934
935 static struct packet_config remote_protocol_binary_download;
936
937 /* Should we try the 'ThreadInfo' query packet?
938
939 This variable (NOT available to the user: auto-detect only!)
940 determines whether GDB will use the new, simpler "ThreadInfo"
941 query or the older, more complex syntax for thread queries.
942 This is an auto-detect variable (set to true at each connect,
943 and set to false when the target fails to recognize it). */
944
945 static int use_threadinfo_query;
946 static int use_threadextra_query;
947
948 static void
949 set_remote_protocol_binary_download_cmd (char *args,
950 int from_tty,
951 struct cmd_list_element *c)
952 {
953 update_packet_config (&remote_protocol_binary_download);
954 }
955
956 static void
957 show_remote_protocol_binary_download_cmd (struct ui_file *file, int from_tty,
958 struct cmd_list_element *c,
959 const char *value)
960 {
961 deprecated_show_value_hack (file, from_tty, c, value);
962 show_packet_config_cmd (&remote_protocol_binary_download);
963 }
964
965 /* Should we try the 'qPart:auxv' (target auxiliary vector read) request? */
966 static struct packet_config remote_protocol_qPart_auxv;
967
968 static void
969 set_remote_protocol_qPart_auxv_packet_cmd (char *args, int from_tty,
970 struct cmd_list_element *c)
971 {
972 update_packet_config (&remote_protocol_qPart_auxv);
973 }
974
975 static void
976 show_remote_protocol_qPart_auxv_packet_cmd (struct ui_file *file, int from_tty,
977 struct cmd_list_element *c,
978 const char *value)
979 {
980 deprecated_show_value_hack (file, from_tty, c, value);
981 show_packet_config_cmd (&remote_protocol_qPart_auxv);
982 }
983
984 static struct packet_config remote_protocol_p;
985
986 static void
987 set_remote_protocol_p_packet_cmd (char *args, int from_tty,
988 struct cmd_list_element *c)
989 {
990 update_packet_config (&remote_protocol_p);
991 }
992
993 static void
994 show_remote_protocol_p_packet_cmd (struct ui_file *file, int from_tty,
995 struct cmd_list_element *c,
996 const char *value)
997 {
998 deprecated_show_value_hack (file, from_tty, c, value);
999 show_packet_config_cmd (&remote_protocol_p);
1000 }
1001
1002
1003
1004 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1005 static void *sigint_remote_twice_token;
1006 static void *sigint_remote_token;
1007
1008 /* These are pointers to hook functions that may be set in order to
1009 modify resume/wait behavior for a particular architecture. */
1010
1011 void (*deprecated_target_resume_hook) (void);
1012 void (*deprecated_target_wait_loop_hook) (void);
1013 \f
1014
1015
1016 /* These are the threads which we last sent to the remote system.
1017 -1 for all or -2 for not sent yet. */
1018 static int general_thread;
1019 static int continue_thread;
1020
1021 /* Call this function as a result of
1022 1) A halt indication (T packet) containing a thread id
1023 2) A direct query of currthread
1024 3) Successful execution of set thread
1025 */
1026
1027 static void
1028 record_currthread (int currthread)
1029 {
1030 general_thread = currthread;
1031
1032 /* If this is a new thread, add it to GDB's thread list.
1033 If we leave it up to WFI to do this, bad things will happen. */
1034 if (!in_thread_list (pid_to_ptid (currthread)))
1035 {
1036 add_thread (pid_to_ptid (currthread));
1037 ui_out_text (uiout, "[New ");
1038 ui_out_text (uiout, target_pid_to_str (pid_to_ptid (currthread)));
1039 ui_out_text (uiout, "]\n");
1040 }
1041 }
1042
1043 #define MAGIC_NULL_PID 42000
1044
1045 static void
1046 set_thread (int th, int gen)
1047 {
1048 struct remote_state *rs = get_remote_state ();
1049 char *buf = alloca (rs->remote_packet_size);
1050 int state = gen ? general_thread : continue_thread;
1051
1052 if (state == th)
1053 return;
1054
1055 buf[0] = 'H';
1056 buf[1] = gen ? 'g' : 'c';
1057 if (th == MAGIC_NULL_PID)
1058 {
1059 buf[2] = '0';
1060 buf[3] = '\0';
1061 }
1062 else if (th < 0)
1063 sprintf (&buf[2], "-%x", -th);
1064 else
1065 sprintf (&buf[2], "%x", th);
1066 putpkt (buf);
1067 getpkt (buf, (rs->remote_packet_size), 0);
1068 if (gen)
1069 general_thread = th;
1070 else
1071 continue_thread = th;
1072 }
1073 \f
1074 /* Return nonzero if the thread TH is still alive on the remote system. */
1075
1076 static int
1077 remote_thread_alive (ptid_t ptid)
1078 {
1079 int tid = PIDGET (ptid);
1080 char buf[16];
1081
1082 if (tid < 0)
1083 sprintf (buf, "T-%08x", -tid);
1084 else
1085 sprintf (buf, "T%08x", tid);
1086 putpkt (buf);
1087 getpkt (buf, sizeof (buf), 0);
1088 return (buf[0] == 'O' && buf[1] == 'K');
1089 }
1090
1091 /* About these extended threadlist and threadinfo packets. They are
1092 variable length packets but, the fields within them are often fixed
1093 length. They are redundent enough to send over UDP as is the
1094 remote protocol in general. There is a matching unit test module
1095 in libstub. */
1096
1097 #define OPAQUETHREADBYTES 8
1098
1099 /* a 64 bit opaque identifier */
1100 typedef unsigned char threadref[OPAQUETHREADBYTES];
1101
1102 /* WARNING: This threadref data structure comes from the remote O.S.,
1103 libstub protocol encoding, and remote.c. it is not particularly
1104 changable. */
1105
1106 /* Right now, the internal structure is int. We want it to be bigger.
1107 Plan to fix this.
1108 */
1109
1110 typedef int gdb_threadref; /* Internal GDB thread reference. */
1111
1112 /* gdb_ext_thread_info is an internal GDB data structure which is
1113 equivalint to the reply of the remote threadinfo packet. */
1114
1115 struct gdb_ext_thread_info
1116 {
1117 threadref threadid; /* External form of thread reference. */
1118 int active; /* Has state interesting to GDB?
1119 regs, stack. */
1120 char display[256]; /* Brief state display, name,
1121 blocked/syspended. */
1122 char shortname[32]; /* To be used to name threads. */
1123 char more_display[256]; /* Long info, statistics, queue depth,
1124 whatever. */
1125 };
1126
1127 /* The volume of remote transfers can be limited by submitting
1128 a mask containing bits specifying the desired information.
1129 Use a union of these values as the 'selection' parameter to
1130 get_thread_info. FIXME: Make these TAG names more thread specific.
1131 */
1132
1133 #define TAG_THREADID 1
1134 #define TAG_EXISTS 2
1135 #define TAG_DISPLAY 4
1136 #define TAG_THREADNAME 8
1137 #define TAG_MOREDISPLAY 16
1138
1139 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1140
1141 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1142
1143 static char *unpack_nibble (char *buf, int *val);
1144
1145 static char *pack_nibble (char *buf, int nibble);
1146
1147 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1148
1149 static char *unpack_byte (char *buf, int *value);
1150
1151 static char *pack_int (char *buf, int value);
1152
1153 static char *unpack_int (char *buf, int *value);
1154
1155 static char *unpack_string (char *src, char *dest, int length);
1156
1157 static char *pack_threadid (char *pkt, threadref *id);
1158
1159 static char *unpack_threadid (char *inbuf, threadref *id);
1160
1161 void int_to_threadref (threadref *id, int value);
1162
1163 static int threadref_to_int (threadref *ref);
1164
1165 static void copy_threadref (threadref *dest, threadref *src);
1166
1167 static int threadmatch (threadref *dest, threadref *src);
1168
1169 static char *pack_threadinfo_request (char *pkt, int mode,
1170 threadref *id);
1171
1172 static int remote_unpack_thread_info_response (char *pkt,
1173 threadref *expectedref,
1174 struct gdb_ext_thread_info
1175 *info);
1176
1177
1178 static int remote_get_threadinfo (threadref *threadid,
1179 int fieldset, /*TAG mask */
1180 struct gdb_ext_thread_info *info);
1181
1182 static char *pack_threadlist_request (char *pkt, int startflag,
1183 int threadcount,
1184 threadref *nextthread);
1185
1186 static int parse_threadlist_response (char *pkt,
1187 int result_limit,
1188 threadref *original_echo,
1189 threadref *resultlist,
1190 int *doneflag);
1191
1192 static int remote_get_threadlist (int startflag,
1193 threadref *nextthread,
1194 int result_limit,
1195 int *done,
1196 int *result_count,
1197 threadref *threadlist);
1198
1199 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1200
1201 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1202 void *context, int looplimit);
1203
1204 static int remote_newthread_step (threadref *ref, void *context);
1205
1206 /* Encode 64 bits in 16 chars of hex. */
1207
1208 static const char hexchars[] = "0123456789abcdef";
1209
1210 static int
1211 ishex (int ch, int *val)
1212 {
1213 if ((ch >= 'a') && (ch <= 'f'))
1214 {
1215 *val = ch - 'a' + 10;
1216 return 1;
1217 }
1218 if ((ch >= 'A') && (ch <= 'F'))
1219 {
1220 *val = ch - 'A' + 10;
1221 return 1;
1222 }
1223 if ((ch >= '0') && (ch <= '9'))
1224 {
1225 *val = ch - '0';
1226 return 1;
1227 }
1228 return 0;
1229 }
1230
1231 static int
1232 stubhex (int ch)
1233 {
1234 if (ch >= 'a' && ch <= 'f')
1235 return ch - 'a' + 10;
1236 if (ch >= '0' && ch <= '9')
1237 return ch - '0';
1238 if (ch >= 'A' && ch <= 'F')
1239 return ch - 'A' + 10;
1240 return -1;
1241 }
1242
1243 static int
1244 stub_unpack_int (char *buff, int fieldlength)
1245 {
1246 int nibble;
1247 int retval = 0;
1248
1249 while (fieldlength)
1250 {
1251 nibble = stubhex (*buff++);
1252 retval |= nibble;
1253 fieldlength--;
1254 if (fieldlength)
1255 retval = retval << 4;
1256 }
1257 return retval;
1258 }
1259
1260 char *
1261 unpack_varlen_hex (char *buff, /* packet to parse */
1262 ULONGEST *result)
1263 {
1264 int nibble;
1265 int retval = 0;
1266
1267 while (ishex (*buff, &nibble))
1268 {
1269 buff++;
1270 retval = retval << 4;
1271 retval |= nibble & 0x0f;
1272 }
1273 *result = retval;
1274 return buff;
1275 }
1276
1277 static char *
1278 unpack_nibble (char *buf, int *val)
1279 {
1280 ishex (*buf++, val);
1281 return buf;
1282 }
1283
1284 static char *
1285 pack_nibble (char *buf, int nibble)
1286 {
1287 *buf++ = hexchars[(nibble & 0x0f)];
1288 return buf;
1289 }
1290
1291 static char *
1292 pack_hex_byte (char *pkt, int byte)
1293 {
1294 *pkt++ = hexchars[(byte >> 4) & 0xf];
1295 *pkt++ = hexchars[(byte & 0xf)];
1296 return pkt;
1297 }
1298
1299 static char *
1300 unpack_byte (char *buf, int *value)
1301 {
1302 *value = stub_unpack_int (buf, 2);
1303 return buf + 2;
1304 }
1305
1306 static char *
1307 pack_int (char *buf, int value)
1308 {
1309 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1310 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1311 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1312 buf = pack_hex_byte (buf, (value & 0xff));
1313 return buf;
1314 }
1315
1316 static char *
1317 unpack_int (char *buf, int *value)
1318 {
1319 *value = stub_unpack_int (buf, 8);
1320 return buf + 8;
1321 }
1322
1323 #if 0 /* Currently unused, uncomment when needed. */
1324 static char *pack_string (char *pkt, char *string);
1325
1326 static char *
1327 pack_string (char *pkt, char *string)
1328 {
1329 char ch;
1330 int len;
1331
1332 len = strlen (string);
1333 if (len > 200)
1334 len = 200; /* Bigger than most GDB packets, junk??? */
1335 pkt = pack_hex_byte (pkt, len);
1336 while (len-- > 0)
1337 {
1338 ch = *string++;
1339 if ((ch == '\0') || (ch == '#'))
1340 ch = '*'; /* Protect encapsulation. */
1341 *pkt++ = ch;
1342 }
1343 return pkt;
1344 }
1345 #endif /* 0 (unused) */
1346
1347 static char *
1348 unpack_string (char *src, char *dest, int length)
1349 {
1350 while (length--)
1351 *dest++ = *src++;
1352 *dest = '\0';
1353 return src;
1354 }
1355
1356 static char *
1357 pack_threadid (char *pkt, threadref *id)
1358 {
1359 char *limit;
1360 unsigned char *altid;
1361
1362 altid = (unsigned char *) id;
1363 limit = pkt + BUF_THREAD_ID_SIZE;
1364 while (pkt < limit)
1365 pkt = pack_hex_byte (pkt, *altid++);
1366 return pkt;
1367 }
1368
1369
1370 static char *
1371 unpack_threadid (char *inbuf, threadref *id)
1372 {
1373 char *altref;
1374 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1375 int x, y;
1376
1377 altref = (char *) id;
1378
1379 while (inbuf < limit)
1380 {
1381 x = stubhex (*inbuf++);
1382 y = stubhex (*inbuf++);
1383 *altref++ = (x << 4) | y;
1384 }
1385 return inbuf;
1386 }
1387
1388 /* Externally, threadrefs are 64 bits but internally, they are still
1389 ints. This is due to a mismatch of specifications. We would like
1390 to use 64bit thread references internally. This is an adapter
1391 function. */
1392
1393 void
1394 int_to_threadref (threadref *id, int value)
1395 {
1396 unsigned char *scan;
1397
1398 scan = (unsigned char *) id;
1399 {
1400 int i = 4;
1401 while (i--)
1402 *scan++ = 0;
1403 }
1404 *scan++ = (value >> 24) & 0xff;
1405 *scan++ = (value >> 16) & 0xff;
1406 *scan++ = (value >> 8) & 0xff;
1407 *scan++ = (value & 0xff);
1408 }
1409
1410 static int
1411 threadref_to_int (threadref *ref)
1412 {
1413 int i, value = 0;
1414 unsigned char *scan;
1415
1416 scan = (char *) ref;
1417 scan += 4;
1418 i = 4;
1419 while (i-- > 0)
1420 value = (value << 8) | ((*scan++) & 0xff);
1421 return value;
1422 }
1423
1424 static void
1425 copy_threadref (threadref *dest, threadref *src)
1426 {
1427 int i;
1428 unsigned char *csrc, *cdest;
1429
1430 csrc = (unsigned char *) src;
1431 cdest = (unsigned char *) dest;
1432 i = 8;
1433 while (i--)
1434 *cdest++ = *csrc++;
1435 }
1436
1437 static int
1438 threadmatch (threadref *dest, threadref *src)
1439 {
1440 /* Things are broken right now, so just assume we got a match. */
1441 #if 0
1442 unsigned char *srcp, *destp;
1443 int i, result;
1444 srcp = (char *) src;
1445 destp = (char *) dest;
1446
1447 result = 1;
1448 while (i-- > 0)
1449 result &= (*srcp++ == *destp++) ? 1 : 0;
1450 return result;
1451 #endif
1452 return 1;
1453 }
1454
1455 /*
1456 threadid:1, # always request threadid
1457 context_exists:2,
1458 display:4,
1459 unique_name:8,
1460 more_display:16
1461 */
1462
1463 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1464
1465 static char *
1466 pack_threadinfo_request (char *pkt, int mode, threadref *id)
1467 {
1468 *pkt++ = 'q'; /* Info Query */
1469 *pkt++ = 'P'; /* process or thread info */
1470 pkt = pack_int (pkt, mode); /* mode */
1471 pkt = pack_threadid (pkt, id); /* threadid */
1472 *pkt = '\0'; /* terminate */
1473 return pkt;
1474 }
1475
1476 /* These values tag the fields in a thread info response packet. */
1477 /* Tagging the fields allows us to request specific fields and to
1478 add more fields as time goes by. */
1479
1480 #define TAG_THREADID 1 /* Echo the thread identifier. */
1481 #define TAG_EXISTS 2 /* Is this process defined enough to
1482 fetch registers and its stack? */
1483 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1484 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
1485 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1486 the process. */
1487
1488 static int
1489 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1490 struct gdb_ext_thread_info *info)
1491 {
1492 struct remote_state *rs = get_remote_state ();
1493 int mask, length;
1494 unsigned int tag;
1495 threadref ref;
1496 char *limit = pkt + (rs->remote_packet_size); /* plausable parsing limit */
1497 int retval = 1;
1498
1499 /* info->threadid = 0; FIXME: implement zero_threadref. */
1500 info->active = 0;
1501 info->display[0] = '\0';
1502 info->shortname[0] = '\0';
1503 info->more_display[0] = '\0';
1504
1505 /* Assume the characters indicating the packet type have been
1506 stripped. */
1507 pkt = unpack_int (pkt, &mask); /* arg mask */
1508 pkt = unpack_threadid (pkt, &ref);
1509
1510 if (mask == 0)
1511 warning (_("Incomplete response to threadinfo request."));
1512 if (!threadmatch (&ref, expectedref))
1513 { /* This is an answer to a different request. */
1514 warning (_("ERROR RMT Thread info mismatch."));
1515 return 0;
1516 }
1517 copy_threadref (&info->threadid, &ref);
1518
1519 /* Loop on tagged fields , try to bail if somthing goes wrong. */
1520
1521 /* Packets are terminated with nulls. */
1522 while ((pkt < limit) && mask && *pkt)
1523 {
1524 pkt = unpack_int (pkt, &tag); /* tag */
1525 pkt = unpack_byte (pkt, &length); /* length */
1526 if (!(tag & mask)) /* Tags out of synch with mask. */
1527 {
1528 warning (_("ERROR RMT: threadinfo tag mismatch."));
1529 retval = 0;
1530 break;
1531 }
1532 if (tag == TAG_THREADID)
1533 {
1534 if (length != 16)
1535 {
1536 warning (_("ERROR RMT: length of threadid is not 16."));
1537 retval = 0;
1538 break;
1539 }
1540 pkt = unpack_threadid (pkt, &ref);
1541 mask = mask & ~TAG_THREADID;
1542 continue;
1543 }
1544 if (tag == TAG_EXISTS)
1545 {
1546 info->active = stub_unpack_int (pkt, length);
1547 pkt += length;
1548 mask = mask & ~(TAG_EXISTS);
1549 if (length > 8)
1550 {
1551 warning (_("ERROR RMT: 'exists' length too long."));
1552 retval = 0;
1553 break;
1554 }
1555 continue;
1556 }
1557 if (tag == TAG_THREADNAME)
1558 {
1559 pkt = unpack_string (pkt, &info->shortname[0], length);
1560 mask = mask & ~TAG_THREADNAME;
1561 continue;
1562 }
1563 if (tag == TAG_DISPLAY)
1564 {
1565 pkt = unpack_string (pkt, &info->display[0], length);
1566 mask = mask & ~TAG_DISPLAY;
1567 continue;
1568 }
1569 if (tag == TAG_MOREDISPLAY)
1570 {
1571 pkt = unpack_string (pkt, &info->more_display[0], length);
1572 mask = mask & ~TAG_MOREDISPLAY;
1573 continue;
1574 }
1575 warning (_("ERROR RMT: unknown thread info tag."));
1576 break; /* Not a tag we know about. */
1577 }
1578 return retval;
1579 }
1580
1581 static int
1582 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
1583 struct gdb_ext_thread_info *info)
1584 {
1585 struct remote_state *rs = get_remote_state ();
1586 int result;
1587 char *threadinfo_pkt = alloca (rs->remote_packet_size);
1588
1589 pack_threadinfo_request (threadinfo_pkt, fieldset, threadid);
1590 putpkt (threadinfo_pkt);
1591 getpkt (threadinfo_pkt, (rs->remote_packet_size), 0);
1592 result = remote_unpack_thread_info_response (threadinfo_pkt + 2,
1593 threadid, info);
1594 return result;
1595 }
1596
1597 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1598
1599 static char *
1600 pack_threadlist_request (char *pkt, int startflag, int threadcount,
1601 threadref *nextthread)
1602 {
1603 *pkt++ = 'q'; /* info query packet */
1604 *pkt++ = 'L'; /* Process LIST or threadLIST request */
1605 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
1606 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
1607 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
1608 *pkt = '\0';
1609 return pkt;
1610 }
1611
1612 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1613
1614 static int
1615 parse_threadlist_response (char *pkt, int result_limit,
1616 threadref *original_echo, threadref *resultlist,
1617 int *doneflag)
1618 {
1619 struct remote_state *rs = get_remote_state ();
1620 char *limit;
1621 int count, resultcount, done;
1622
1623 resultcount = 0;
1624 /* Assume the 'q' and 'M chars have been stripped. */
1625 limit = pkt + ((rs->remote_packet_size) - BUF_THREAD_ID_SIZE);
1626 /* done parse past here */
1627 pkt = unpack_byte (pkt, &count); /* count field */
1628 pkt = unpack_nibble (pkt, &done);
1629 /* The first threadid is the argument threadid. */
1630 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
1631 while ((count-- > 0) && (pkt < limit))
1632 {
1633 pkt = unpack_threadid (pkt, resultlist++);
1634 if (resultcount++ >= result_limit)
1635 break;
1636 }
1637 if (doneflag)
1638 *doneflag = done;
1639 return resultcount;
1640 }
1641
1642 static int
1643 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
1644 int *done, int *result_count, threadref *threadlist)
1645 {
1646 struct remote_state *rs = get_remote_state ();
1647 static threadref echo_nextthread;
1648 char *threadlist_packet = alloca (rs->remote_packet_size);
1649 char *t_response = alloca (rs->remote_packet_size);
1650 int result = 1;
1651
1652 /* Trancate result limit to be smaller than the packet size. */
1653 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= (rs->remote_packet_size))
1654 result_limit = ((rs->remote_packet_size) / BUF_THREAD_ID_SIZE) - 2;
1655
1656 pack_threadlist_request (threadlist_packet,
1657 startflag, result_limit, nextthread);
1658 putpkt (threadlist_packet);
1659 getpkt (t_response, (rs->remote_packet_size), 0);
1660
1661 *result_count =
1662 parse_threadlist_response (t_response + 2, result_limit, &echo_nextthread,
1663 threadlist, done);
1664
1665 if (!threadmatch (&echo_nextthread, nextthread))
1666 {
1667 /* FIXME: This is a good reason to drop the packet. */
1668 /* Possably, there is a duplicate response. */
1669 /* Possabilities :
1670 retransmit immediatly - race conditions
1671 retransmit after timeout - yes
1672 exit
1673 wait for packet, then exit
1674 */
1675 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
1676 return 0; /* I choose simply exiting. */
1677 }
1678 if (*result_count <= 0)
1679 {
1680 if (*done != 1)
1681 {
1682 warning (_("RMT ERROR : failed to get remote thread list."));
1683 result = 0;
1684 }
1685 return result; /* break; */
1686 }
1687 if (*result_count > result_limit)
1688 {
1689 *result_count = 0;
1690 warning (_("RMT ERROR: threadlist response longer than requested."));
1691 return 0;
1692 }
1693 return result;
1694 }
1695
1696 /* This is the interface between remote and threads, remotes upper
1697 interface. */
1698
1699 /* remote_find_new_threads retrieves the thread list and for each
1700 thread in the list, looks up the thread in GDB's internal list,
1701 ading the thread if it does not already exist. This involves
1702 getting partial thread lists from the remote target so, polling the
1703 quit_flag is required. */
1704
1705
1706 /* About this many threadisds fit in a packet. */
1707
1708 #define MAXTHREADLISTRESULTS 32
1709
1710 static int
1711 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
1712 int looplimit)
1713 {
1714 int done, i, result_count;
1715 int startflag = 1;
1716 int result = 1;
1717 int loopcount = 0;
1718 static threadref nextthread;
1719 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
1720
1721 done = 0;
1722 while (!done)
1723 {
1724 if (loopcount++ > looplimit)
1725 {
1726 result = 0;
1727 warning (_("Remote fetch threadlist -infinite loop-."));
1728 break;
1729 }
1730 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
1731 &done, &result_count, resultthreadlist))
1732 {
1733 result = 0;
1734 break;
1735 }
1736 /* Clear for later iterations. */
1737 startflag = 0;
1738 /* Setup to resume next batch of thread references, set nextthread. */
1739 if (result_count >= 1)
1740 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
1741 i = 0;
1742 while (result_count--)
1743 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
1744 break;
1745 }
1746 return result;
1747 }
1748
1749 static int
1750 remote_newthread_step (threadref *ref, void *context)
1751 {
1752 ptid_t ptid;
1753
1754 ptid = pid_to_ptid (threadref_to_int (ref));
1755
1756 if (!in_thread_list (ptid))
1757 add_thread (ptid);
1758 return 1; /* continue iterator */
1759 }
1760
1761 #define CRAZY_MAX_THREADS 1000
1762
1763 static ptid_t
1764 remote_current_thread (ptid_t oldpid)
1765 {
1766 struct remote_state *rs = get_remote_state ();
1767 char *buf = alloca (rs->remote_packet_size);
1768
1769 putpkt ("qC");
1770 getpkt (buf, (rs->remote_packet_size), 0);
1771 if (buf[0] == 'Q' && buf[1] == 'C')
1772 /* Use strtoul here, so we'll correctly parse values whose highest
1773 bit is set. The protocol carries them as a simple series of
1774 hex digits; in the absence of a sign, strtol will see such
1775 values as positive numbers out of range for signed 'long', and
1776 return LONG_MAX to indicate an overflow. */
1777 return pid_to_ptid (strtoul (&buf[2], NULL, 16));
1778 else
1779 return oldpid;
1780 }
1781
1782 /* Find new threads for info threads command.
1783 * Original version, using John Metzler's thread protocol.
1784 */
1785
1786 static void
1787 remote_find_new_threads (void)
1788 {
1789 remote_threadlist_iterator (remote_newthread_step, 0,
1790 CRAZY_MAX_THREADS);
1791 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID) /* ack ack ack */
1792 inferior_ptid = remote_current_thread (inferior_ptid);
1793 }
1794
1795 /*
1796 * Find all threads for info threads command.
1797 * Uses new thread protocol contributed by Cisco.
1798 * Falls back and attempts to use the older method (above)
1799 * if the target doesn't respond to the new method.
1800 */
1801
1802 static void
1803 remote_threads_info (void)
1804 {
1805 struct remote_state *rs = get_remote_state ();
1806 char *buf = alloca (rs->remote_packet_size);
1807 char *bufp;
1808 int tid;
1809
1810 if (remote_desc == 0) /* paranoia */
1811 error (_("Command can only be used when connected to the remote target."));
1812
1813 if (use_threadinfo_query)
1814 {
1815 putpkt ("qfThreadInfo");
1816 bufp = buf;
1817 getpkt (bufp, (rs->remote_packet_size), 0);
1818 if (bufp[0] != '\0') /* q packet recognized */
1819 {
1820 while (*bufp++ == 'm') /* reply contains one or more TID */
1821 {
1822 do
1823 {
1824 /* Use strtoul here, so we'll correctly parse values
1825 whose highest bit is set. The protocol carries
1826 them as a simple series of hex digits; in the
1827 absence of a sign, strtol will see such values as
1828 positive numbers out of range for signed 'long',
1829 and return LONG_MAX to indicate an overflow. */
1830 tid = strtoul (bufp, &bufp, 16);
1831 if (tid != 0 && !in_thread_list (pid_to_ptid (tid)))
1832 add_thread (pid_to_ptid (tid));
1833 }
1834 while (*bufp++ == ','); /* comma-separated list */
1835 putpkt ("qsThreadInfo");
1836 bufp = buf;
1837 getpkt (bufp, (rs->remote_packet_size), 0);
1838 }
1839 return; /* done */
1840 }
1841 }
1842
1843 /* Else fall back to old method based on jmetzler protocol. */
1844 use_threadinfo_query = 0;
1845 remote_find_new_threads ();
1846 return;
1847 }
1848
1849 /*
1850 * Collect a descriptive string about the given thread.
1851 * The target may say anything it wants to about the thread
1852 * (typically info about its blocked / runnable state, name, etc.).
1853 * This string will appear in the info threads display.
1854 *
1855 * Optional: targets are not required to implement this function.
1856 */
1857
1858 static char *
1859 remote_threads_extra_info (struct thread_info *tp)
1860 {
1861 struct remote_state *rs = get_remote_state ();
1862 int result;
1863 int set;
1864 threadref id;
1865 struct gdb_ext_thread_info threadinfo;
1866 static char display_buf[100]; /* arbitrary... */
1867 char *bufp = alloca (rs->remote_packet_size);
1868 int n = 0; /* position in display_buf */
1869
1870 if (remote_desc == 0) /* paranoia */
1871 internal_error (__FILE__, __LINE__,
1872 _("remote_threads_extra_info"));
1873
1874 if (use_threadextra_query)
1875 {
1876 sprintf (bufp, "qThreadExtraInfo,%x", PIDGET (tp->ptid));
1877 putpkt (bufp);
1878 getpkt (bufp, (rs->remote_packet_size), 0);
1879 if (bufp[0] != 0)
1880 {
1881 n = min (strlen (bufp) / 2, sizeof (display_buf));
1882 result = hex2bin (bufp, display_buf, n);
1883 display_buf [result] = '\0';
1884 return display_buf;
1885 }
1886 }
1887
1888 /* If the above query fails, fall back to the old method. */
1889 use_threadextra_query = 0;
1890 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
1891 | TAG_MOREDISPLAY | TAG_DISPLAY;
1892 int_to_threadref (&id, PIDGET (tp->ptid));
1893 if (remote_get_threadinfo (&id, set, &threadinfo))
1894 if (threadinfo.active)
1895 {
1896 if (*threadinfo.shortname)
1897 n += sprintf(&display_buf[0], " Name: %s,", threadinfo.shortname);
1898 if (*threadinfo.display)
1899 n += sprintf(&display_buf[n], " State: %s,", threadinfo.display);
1900 if (*threadinfo.more_display)
1901 n += sprintf(&display_buf[n], " Priority: %s",
1902 threadinfo.more_display);
1903
1904 if (n > 0)
1905 {
1906 /* For purely cosmetic reasons, clear up trailing commas. */
1907 if (',' == display_buf[n-1])
1908 display_buf[n-1] = ' ';
1909 return display_buf;
1910 }
1911 }
1912 return NULL;
1913 }
1914
1915 \f
1916
1917 /* Restart the remote side; this is an extended protocol operation. */
1918
1919 static void
1920 extended_remote_restart (void)
1921 {
1922 struct remote_state *rs = get_remote_state ();
1923 char *buf = alloca (rs->remote_packet_size);
1924
1925 /* Send the restart command; for reasons I don't understand the
1926 remote side really expects a number after the "R". */
1927 buf[0] = 'R';
1928 sprintf (&buf[1], "%x", 0);
1929 putpkt (buf);
1930
1931 /* Now query for status so this looks just like we restarted
1932 gdbserver from scratch. */
1933 putpkt ("?");
1934 getpkt (buf, (rs->remote_packet_size), 0);
1935 }
1936 \f
1937 /* Clean up connection to a remote debugger. */
1938
1939 static void
1940 remote_close (int quitting)
1941 {
1942 if (remote_desc)
1943 serial_close (remote_desc);
1944 remote_desc = NULL;
1945 }
1946
1947 /* Query the remote side for the text, data and bss offsets. */
1948
1949 static void
1950 get_offsets (void)
1951 {
1952 struct remote_state *rs = get_remote_state ();
1953 char *buf = alloca (rs->remote_packet_size);
1954 char *ptr;
1955 int lose;
1956 CORE_ADDR text_addr, data_addr, bss_addr;
1957 struct section_offsets *offs;
1958
1959 putpkt ("qOffsets");
1960
1961 getpkt (buf, (rs->remote_packet_size), 0);
1962
1963 if (buf[0] == '\000')
1964 return; /* Return silently. Stub doesn't support
1965 this command. */
1966 if (buf[0] == 'E')
1967 {
1968 warning (_("Remote failure reply: %s"), buf);
1969 return;
1970 }
1971
1972 /* Pick up each field in turn. This used to be done with scanf, but
1973 scanf will make trouble if CORE_ADDR size doesn't match
1974 conversion directives correctly. The following code will work
1975 with any size of CORE_ADDR. */
1976 text_addr = data_addr = bss_addr = 0;
1977 ptr = buf;
1978 lose = 0;
1979
1980 if (strncmp (ptr, "Text=", 5) == 0)
1981 {
1982 ptr += 5;
1983 /* Don't use strtol, could lose on big values. */
1984 while (*ptr && *ptr != ';')
1985 text_addr = (text_addr << 4) + fromhex (*ptr++);
1986 }
1987 else
1988 lose = 1;
1989
1990 if (!lose && strncmp (ptr, ";Data=", 6) == 0)
1991 {
1992 ptr += 6;
1993 while (*ptr && *ptr != ';')
1994 data_addr = (data_addr << 4) + fromhex (*ptr++);
1995 }
1996 else
1997 lose = 1;
1998
1999 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2000 {
2001 ptr += 5;
2002 while (*ptr && *ptr != ';')
2003 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
2004 }
2005 else
2006 lose = 1;
2007
2008 if (lose)
2009 error (_("Malformed response to offset query, %s"), buf);
2010
2011 if (symfile_objfile == NULL)
2012 return;
2013
2014 offs = ((struct section_offsets *)
2015 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
2016 memcpy (offs, symfile_objfile->section_offsets,
2017 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
2018
2019 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2020
2021 /* This is a temporary kludge to force data and bss to use the same offsets
2022 because that's what nlmconv does now. The real solution requires changes
2023 to the stub and remote.c that I don't have time to do right now. */
2024
2025 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2026 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2027
2028 objfile_relocate (symfile_objfile, offs);
2029 }
2030
2031 /* Stub for catch_errors. */
2032
2033 static int
2034 remote_start_remote_dummy (struct ui_out *uiout, void *dummy)
2035 {
2036 start_remote (); /* Initialize gdb process mechanisms. */
2037 /* NOTE: Return something >=0. A -ve value is reserved for
2038 catch_exceptions. */
2039 return 1;
2040 }
2041
2042 static void
2043 remote_start_remote (struct ui_out *uiout, void *dummy)
2044 {
2045 immediate_quit++; /* Allow user to interrupt it. */
2046
2047 /* Ack any packet which the remote side has already sent. */
2048 serial_write (remote_desc, "+", 1);
2049
2050 /* Let the stub know that we want it to return the thread. */
2051 set_thread (-1, 0);
2052
2053 inferior_ptid = remote_current_thread (inferior_ptid);
2054
2055 get_offsets (); /* Get text, data & bss offsets. */
2056
2057 putpkt ("?"); /* Initiate a query from remote machine. */
2058 immediate_quit--;
2059
2060 remote_start_remote_dummy (uiout, dummy);
2061 }
2062
2063 /* Open a connection to a remote debugger.
2064 NAME is the filename used for communication. */
2065
2066 static void
2067 remote_open (char *name, int from_tty)
2068 {
2069 remote_open_1 (name, from_tty, &remote_ops, 0, 0);
2070 }
2071
2072 /* Just like remote_open, but with asynchronous support. */
2073 static void
2074 remote_async_open (char *name, int from_tty)
2075 {
2076 remote_open_1 (name, from_tty, &remote_async_ops, 0, 1);
2077 }
2078
2079 /* Open a connection to a remote debugger using the extended
2080 remote gdb protocol. NAME is the filename used for communication. */
2081
2082 static void
2083 extended_remote_open (char *name, int from_tty)
2084 {
2085 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */,
2086 0 /* async_p */);
2087 }
2088
2089 /* Just like extended_remote_open, but with asynchronous support. */
2090 static void
2091 extended_remote_async_open (char *name, int from_tty)
2092 {
2093 remote_open_1 (name, from_tty, &extended_async_remote_ops,
2094 1 /*extended_p */, 1 /* async_p */);
2095 }
2096
2097 /* Generic code for opening a connection to a remote target. */
2098
2099 static void
2100 init_all_packet_configs (void)
2101 {
2102 int i;
2103 update_packet_config (&remote_protocol_P);
2104 update_packet_config (&remote_protocol_p);
2105 update_packet_config (&remote_protocol_qSymbol);
2106 update_packet_config (&remote_protocol_vcont);
2107 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2108 update_packet_config (&remote_protocol_Z[i]);
2109 /* Force remote_write_bytes to check whether target supports binary
2110 downloading. */
2111 update_packet_config (&remote_protocol_binary_download);
2112 update_packet_config (&remote_protocol_qPart_auxv);
2113 }
2114
2115 /* Symbol look-up. */
2116
2117 static void
2118 remote_check_symbols (struct objfile *objfile)
2119 {
2120 struct remote_state *rs = get_remote_state ();
2121 char *msg, *reply, *tmp;
2122 struct minimal_symbol *sym;
2123 int end;
2124
2125 if (remote_protocol_qSymbol.support == PACKET_DISABLE)
2126 return;
2127
2128 msg = alloca (rs->remote_packet_size);
2129 reply = alloca (rs->remote_packet_size);
2130
2131 /* Invite target to request symbol lookups. */
2132
2133 putpkt ("qSymbol::");
2134 getpkt (reply, (rs->remote_packet_size), 0);
2135 packet_ok (reply, &remote_protocol_qSymbol);
2136
2137 while (strncmp (reply, "qSymbol:", 8) == 0)
2138 {
2139 tmp = &reply[8];
2140 end = hex2bin (tmp, msg, strlen (tmp) / 2);
2141 msg[end] = '\0';
2142 sym = lookup_minimal_symbol (msg, NULL, NULL);
2143 if (sym == NULL)
2144 sprintf (msg, "qSymbol::%s", &reply[8]);
2145 else
2146 sprintf (msg, "qSymbol:%s:%s",
2147 paddr_nz (SYMBOL_VALUE_ADDRESS (sym)),
2148 &reply[8]);
2149 putpkt (msg);
2150 getpkt (reply, (rs->remote_packet_size), 0);
2151 }
2152 }
2153
2154 static struct serial *
2155 remote_serial_open (char *name)
2156 {
2157 static int udp_warning = 0;
2158
2159 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2160 of in ser-tcp.c, because it is the remote protocol assuming that the
2161 serial connection is reliable and not the serial connection promising
2162 to be. */
2163 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2164 {
2165 warning (_("\
2166 The remote protocol may be unreliable over UDP.\n\
2167 Some events may be lost, rendering further debugging impossible."));
2168 udp_warning = 1;
2169 }
2170
2171 return serial_open (name);
2172 }
2173
2174 static void
2175 remote_open_1 (char *name, int from_tty, struct target_ops *target,
2176 int extended_p, int async_p)
2177 {
2178 struct exception ex;
2179 struct remote_state *rs = get_remote_state ();
2180 if (name == 0)
2181 error (_("To open a remote debug connection, you need to specify what\n"
2182 "serial device is attached to the remote system\n"
2183 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
2184
2185 /* See FIXME above. */
2186 if (!async_p)
2187 wait_forever_enabled_p = 1;
2188
2189 reopen_exec_file ();
2190 reread_symbols ();
2191
2192 target_preopen (from_tty);
2193
2194 unpush_target (target);
2195
2196 remote_desc = remote_serial_open (name);
2197 if (!remote_desc)
2198 perror_with_name (name);
2199
2200 if (baud_rate != -1)
2201 {
2202 if (serial_setbaudrate (remote_desc, baud_rate))
2203 {
2204 /* The requested speed could not be set. Error out to
2205 top level after closing remote_desc. Take care to
2206 set remote_desc to NULL to avoid closing remote_desc
2207 more than once. */
2208 serial_close (remote_desc);
2209 remote_desc = NULL;
2210 perror_with_name (name);
2211 }
2212 }
2213
2214 serial_raw (remote_desc);
2215
2216 /* If there is something sitting in the buffer we might take it as a
2217 response to a command, which would be bad. */
2218 serial_flush_input (remote_desc);
2219
2220 if (from_tty)
2221 {
2222 puts_filtered ("Remote debugging using ");
2223 puts_filtered (name);
2224 puts_filtered ("\n");
2225 }
2226 push_target (target); /* Switch to using remote target now. */
2227
2228 init_all_packet_configs ();
2229
2230 general_thread = -2;
2231 continue_thread = -2;
2232
2233 /* Probe for ability to use "ThreadInfo" query, as required. */
2234 use_threadinfo_query = 1;
2235 use_threadextra_query = 1;
2236
2237 /* Without this, some commands which require an active target (such
2238 as kill) won't work. This variable serves (at least) double duty
2239 as both the pid of the target process (if it has such), and as a
2240 flag indicating that a target is active. These functions should
2241 be split out into seperate variables, especially since GDB will
2242 someday have a notion of debugging several processes. */
2243
2244 inferior_ptid = pid_to_ptid (MAGIC_NULL_PID);
2245
2246 if (async_p)
2247 {
2248 /* With this target we start out by owning the terminal. */
2249 remote_async_terminal_ours_p = 1;
2250
2251 /* FIXME: cagney/1999-09-23: During the initial connection it is
2252 assumed that the target is already ready and able to respond to
2253 requests. Unfortunately remote_start_remote() eventually calls
2254 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2255 around this. Eventually a mechanism that allows
2256 wait_for_inferior() to expect/get timeouts will be
2257 implemented. */
2258 wait_forever_enabled_p = 0;
2259 }
2260
2261 #ifdef SOLIB_CREATE_INFERIOR_HOOK
2262 /* First delete any symbols previously loaded from shared libraries. */
2263 no_shared_libraries (NULL, 0);
2264 #endif
2265
2266 /* Start the remote connection. If error() or QUIT, discard this
2267 target (we'd otherwise be in an inconsistent state) and then
2268 propogate the error on up the exception chain. This ensures that
2269 the caller doesn't stumble along blindly assuming that the
2270 function succeeded. The CLI doesn't have this problem but other
2271 UI's, such as MI do.
2272
2273 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2274 this function should return an error indication letting the
2275 caller restore the previous state. Unfortunately the command
2276 ``target remote'' is directly wired to this function making that
2277 impossible. On a positive note, the CLI side of this problem has
2278 been fixed - the function set_cmd_context() makes it possible for
2279 all the ``target ....'' commands to share a common callback
2280 function. See cli-dump.c. */
2281 ex = catch_exception (uiout, remote_start_remote, NULL, RETURN_MASK_ALL);
2282 if (ex.reason < 0)
2283 {
2284 pop_target ();
2285 if (async_p)
2286 wait_forever_enabled_p = 1;
2287 throw_exception (ex);
2288 }
2289
2290 if (async_p)
2291 wait_forever_enabled_p = 1;
2292
2293 if (extended_p)
2294 {
2295 /* Tell the remote that we are using the extended protocol. */
2296 char *buf = alloca (rs->remote_packet_size);
2297 putpkt ("!");
2298 getpkt (buf, (rs->remote_packet_size), 0);
2299 }
2300 #ifdef SOLIB_CREATE_INFERIOR_HOOK
2301 /* FIXME: need a master target_open vector from which all
2302 remote_opens can be called, so that stuff like this can
2303 go there. Failing that, the following code must be copied
2304 to the open function for any remote target that wants to
2305 support svr4 shared libraries. */
2306
2307 /* Set up to detect and load shared libraries. */
2308 if (exec_bfd) /* No use without an exec file. */
2309 {
2310 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
2311 remote_check_symbols (symfile_objfile);
2312 }
2313 #endif
2314
2315 observer_notify_inferior_created (&current_target, from_tty);
2316 }
2317
2318 /* This takes a program previously attached to and detaches it. After
2319 this is done, GDB can be used to debug some other program. We
2320 better not have left any breakpoints in the target program or it'll
2321 die when it hits one. */
2322
2323 static void
2324 remote_detach (char *args, int from_tty)
2325 {
2326 struct remote_state *rs = get_remote_state ();
2327 char *buf = alloca (rs->remote_packet_size);
2328
2329 if (args)
2330 error (_("Argument given to \"detach\" when remotely debugging."));
2331
2332 /* Tell the remote target to detach. */
2333 strcpy (buf, "D");
2334 remote_send (buf, (rs->remote_packet_size));
2335
2336 /* Unregister the file descriptor from the event loop. */
2337 if (target_is_async_p ())
2338 serial_async (remote_desc, NULL, 0);
2339
2340 target_mourn_inferior ();
2341 if (from_tty)
2342 puts_filtered ("Ending remote debugging.\n");
2343 }
2344
2345 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2346
2347 static void
2348 remote_disconnect (char *args, int from_tty)
2349 {
2350 struct remote_state *rs = get_remote_state ();
2351 char *buf = alloca (rs->remote_packet_size);
2352
2353 if (args)
2354 error (_("Argument given to \"detach\" when remotely debugging."));
2355
2356 /* Unregister the file descriptor from the event loop. */
2357 if (target_is_async_p ())
2358 serial_async (remote_desc, NULL, 0);
2359
2360 target_mourn_inferior ();
2361 if (from_tty)
2362 puts_filtered ("Ending remote debugging.\n");
2363 }
2364
2365 /* Convert hex digit A to a number. */
2366
2367 static int
2368 fromhex (int a)
2369 {
2370 if (a >= '0' && a <= '9')
2371 return a - '0';
2372 else if (a >= 'a' && a <= 'f')
2373 return a - 'a' + 10;
2374 else if (a >= 'A' && a <= 'F')
2375 return a - 'A' + 10;
2376 else
2377 error (_("Reply contains invalid hex digit %d"), a);
2378 }
2379
2380 static int
2381 hex2bin (const char *hex, char *bin, int count)
2382 {
2383 int i;
2384
2385 for (i = 0; i < count; i++)
2386 {
2387 if (hex[0] == 0 || hex[1] == 0)
2388 {
2389 /* Hex string is short, or of uneven length.
2390 Return the count that has been converted so far. */
2391 return i;
2392 }
2393 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
2394 hex += 2;
2395 }
2396 return i;
2397 }
2398
2399 /* Convert number NIB to a hex digit. */
2400
2401 static int
2402 tohex (int nib)
2403 {
2404 if (nib < 10)
2405 return '0' + nib;
2406 else
2407 return 'a' + nib - 10;
2408 }
2409
2410 static int
2411 bin2hex (const char *bin, char *hex, int count)
2412 {
2413 int i;
2414 /* May use a length, or a nul-terminated string as input. */
2415 if (count == 0)
2416 count = strlen (bin);
2417
2418 for (i = 0; i < count; i++)
2419 {
2420 *hex++ = tohex ((*bin >> 4) & 0xf);
2421 *hex++ = tohex (*bin++ & 0xf);
2422 }
2423 *hex = 0;
2424 return i;
2425 }
2426 \f
2427 /* Check for the availability of vCont. This function should also check
2428 the response. */
2429
2430 static void
2431 remote_vcont_probe (struct remote_state *rs, char *buf)
2432 {
2433 strcpy (buf, "vCont?");
2434 putpkt (buf);
2435 getpkt (buf, rs->remote_packet_size, 0);
2436
2437 /* Make sure that the features we assume are supported. */
2438 if (strncmp (buf, "vCont", 5) == 0)
2439 {
2440 char *p = &buf[5];
2441 int support_s, support_S, support_c, support_C;
2442
2443 support_s = 0;
2444 support_S = 0;
2445 support_c = 0;
2446 support_C = 0;
2447 while (p && *p == ';')
2448 {
2449 p++;
2450 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
2451 support_s = 1;
2452 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
2453 support_S = 1;
2454 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
2455 support_c = 1;
2456 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
2457 support_C = 1;
2458
2459 p = strchr (p, ';');
2460 }
2461
2462 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
2463 BUF will make packet_ok disable the packet. */
2464 if (!support_s || !support_S || !support_c || !support_C)
2465 buf[0] = 0;
2466 }
2467
2468 packet_ok (buf, &remote_protocol_vcont);
2469 }
2470
2471 /* Resume the remote inferior by using a "vCont" packet. The thread
2472 to be resumed is PTID; STEP and SIGGNAL indicate whether the
2473 resumed thread should be single-stepped and/or signalled. If PTID's
2474 PID is -1, then all threads are resumed; the thread to be stepped and/or
2475 signalled is given in the global INFERIOR_PTID. This function returns
2476 non-zero iff it resumes the inferior.
2477
2478 This function issues a strict subset of all possible vCont commands at the
2479 moment. */
2480
2481 static int
2482 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
2483 {
2484 struct remote_state *rs = get_remote_state ();
2485 int pid = PIDGET (ptid);
2486 char *buf = NULL, *outbuf;
2487 struct cleanup *old_cleanup;
2488
2489 buf = xmalloc (rs->remote_packet_size);
2490 old_cleanup = make_cleanup (xfree, buf);
2491
2492 if (remote_protocol_vcont.support == PACKET_SUPPORT_UNKNOWN)
2493 remote_vcont_probe (rs, buf);
2494
2495 if (remote_protocol_vcont.support == PACKET_DISABLE)
2496 {
2497 do_cleanups (old_cleanup);
2498 return 0;
2499 }
2500
2501 /* If we could generate a wider range of packets, we'd have to worry
2502 about overflowing BUF. Should there be a generic
2503 "multi-part-packet" packet? */
2504
2505 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID)
2506 {
2507 /* MAGIC_NULL_PTID means that we don't have any active threads, so we
2508 don't have any PID numbers the inferior will understand. Make sure
2509 to only send forms that do not specify a PID. */
2510 if (step && siggnal != TARGET_SIGNAL_0)
2511 outbuf = xstrprintf ("vCont;S%02x", siggnal);
2512 else if (step)
2513 outbuf = xstrprintf ("vCont;s");
2514 else if (siggnal != TARGET_SIGNAL_0)
2515 outbuf = xstrprintf ("vCont;C%02x", siggnal);
2516 else
2517 outbuf = xstrprintf ("vCont;c");
2518 }
2519 else if (pid == -1)
2520 {
2521 /* Resume all threads, with preference for INFERIOR_PTID. */
2522 if (step && siggnal != TARGET_SIGNAL_0)
2523 outbuf = xstrprintf ("vCont;S%02x:%x;c", siggnal,
2524 PIDGET (inferior_ptid));
2525 else if (step)
2526 outbuf = xstrprintf ("vCont;s:%x;c", PIDGET (inferior_ptid));
2527 else if (siggnal != TARGET_SIGNAL_0)
2528 outbuf = xstrprintf ("vCont;C%02x:%x;c", siggnal,
2529 PIDGET (inferior_ptid));
2530 else
2531 outbuf = xstrprintf ("vCont;c");
2532 }
2533 else
2534 {
2535 /* Scheduler locking; resume only PTID. */
2536 if (step && siggnal != TARGET_SIGNAL_0)
2537 outbuf = xstrprintf ("vCont;S%02x:%x", siggnal, pid);
2538 else if (step)
2539 outbuf = xstrprintf ("vCont;s:%x", pid);
2540 else if (siggnal != TARGET_SIGNAL_0)
2541 outbuf = xstrprintf ("vCont;C%02x:%x", siggnal, pid);
2542 else
2543 outbuf = xstrprintf ("vCont;c:%x", pid);
2544 }
2545
2546 gdb_assert (outbuf && strlen (outbuf) < rs->remote_packet_size);
2547 make_cleanup (xfree, outbuf);
2548
2549 putpkt (outbuf);
2550
2551 do_cleanups (old_cleanup);
2552
2553 return 1;
2554 }
2555
2556 /* Tell the remote machine to resume. */
2557
2558 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
2559
2560 static int last_sent_step;
2561
2562 static void
2563 remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
2564 {
2565 struct remote_state *rs = get_remote_state ();
2566 char *buf = alloca (rs->remote_packet_size);
2567 int pid = PIDGET (ptid);
2568 char *p;
2569
2570 last_sent_signal = siggnal;
2571 last_sent_step = step;
2572
2573 /* A hook for when we need to do something at the last moment before
2574 resumption. */
2575 if (deprecated_target_resume_hook)
2576 (*deprecated_target_resume_hook) ();
2577
2578 /* The vCont packet doesn't need to specify threads via Hc. */
2579 if (remote_vcont_resume (ptid, step, siggnal))
2580 return;
2581
2582 /* All other supported resume packets do use Hc, so call set_thread. */
2583 if (pid == -1)
2584 set_thread (0, 0); /* Run any thread. */
2585 else
2586 set_thread (pid, 0); /* Run this thread. */
2587
2588 if (siggnal != TARGET_SIGNAL_0)
2589 {
2590 buf[0] = step ? 'S' : 'C';
2591 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
2592 buf[2] = tohex (((int) siggnal) & 0xf);
2593 buf[3] = '\0';
2594 }
2595 else
2596 strcpy (buf, step ? "s" : "c");
2597
2598 putpkt (buf);
2599 }
2600
2601 /* Same as remote_resume, but with async support. */
2602 static void
2603 remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
2604 {
2605 remote_resume (ptid, step, siggnal);
2606
2607 /* We are about to start executing the inferior, let's register it
2608 with the event loop. NOTE: this is the one place where all the
2609 execution commands end up. We could alternatively do this in each
2610 of the execution commands in infcmd.c. */
2611 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
2612 into infcmd.c in order to allow inferior function calls to work
2613 NOT asynchronously. */
2614 if (target_can_async_p ())
2615 target_async (inferior_event_handler, 0);
2616 /* Tell the world that the target is now executing. */
2617 /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
2618 this? Instead, should the client of target just assume (for
2619 async targets) that the target is going to start executing? Is
2620 this information already found in the continuation block? */
2621 if (target_is_async_p ())
2622 target_executing = 1;
2623 }
2624 \f
2625
2626 /* Set up the signal handler for SIGINT, while the target is
2627 executing, ovewriting the 'regular' SIGINT signal handler. */
2628 static void
2629 initialize_sigint_signal_handler (void)
2630 {
2631 sigint_remote_token =
2632 create_async_signal_handler (async_remote_interrupt, NULL);
2633 signal (SIGINT, handle_remote_sigint);
2634 }
2635
2636 /* Signal handler for SIGINT, while the target is executing. */
2637 static void
2638 handle_remote_sigint (int sig)
2639 {
2640 signal (sig, handle_remote_sigint_twice);
2641 sigint_remote_twice_token =
2642 create_async_signal_handler (async_remote_interrupt_twice, NULL);
2643 mark_async_signal_handler_wrapper (sigint_remote_token);
2644 }
2645
2646 /* Signal handler for SIGINT, installed after SIGINT has already been
2647 sent once. It will take effect the second time that the user sends
2648 a ^C. */
2649 static void
2650 handle_remote_sigint_twice (int sig)
2651 {
2652 signal (sig, handle_sigint);
2653 sigint_remote_twice_token =
2654 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
2655 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
2656 }
2657
2658 /* Perform the real interruption of the target execution, in response
2659 to a ^C. */
2660 static void
2661 async_remote_interrupt (gdb_client_data arg)
2662 {
2663 if (remote_debug)
2664 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2665
2666 target_stop ();
2667 }
2668
2669 /* Perform interrupt, if the first attempt did not succeed. Just give
2670 up on the target alltogether. */
2671 void
2672 async_remote_interrupt_twice (gdb_client_data arg)
2673 {
2674 if (remote_debug)
2675 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
2676 /* Do something only if the target was not killed by the previous
2677 cntl-C. */
2678 if (target_executing)
2679 {
2680 interrupt_query ();
2681 signal (SIGINT, handle_remote_sigint);
2682 }
2683 }
2684
2685 /* Reinstall the usual SIGINT handlers, after the target has
2686 stopped. */
2687 static void
2688 cleanup_sigint_signal_handler (void *dummy)
2689 {
2690 signal (SIGINT, handle_sigint);
2691 if (sigint_remote_twice_token)
2692 delete_async_signal_handler ((struct async_signal_handler **)
2693 &sigint_remote_twice_token);
2694 if (sigint_remote_token)
2695 delete_async_signal_handler ((struct async_signal_handler **)
2696 &sigint_remote_token);
2697 }
2698
2699 /* Send ^C to target to halt it. Target will respond, and send us a
2700 packet. */
2701 static void (*ofunc) (int);
2702
2703 /* The command line interface's stop routine. This function is installed
2704 as a signal handler for SIGINT. The first time a user requests a
2705 stop, we call remote_stop to send a break or ^C. If there is no
2706 response from the target (it didn't stop when the user requested it),
2707 we ask the user if he'd like to detach from the target. */
2708 static void
2709 remote_interrupt (int signo)
2710 {
2711 /* If this doesn't work, try more severe steps. */
2712 signal (signo, remote_interrupt_twice);
2713
2714 if (remote_debug)
2715 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2716
2717 target_stop ();
2718 }
2719
2720 /* The user typed ^C twice. */
2721
2722 static void
2723 remote_interrupt_twice (int signo)
2724 {
2725 signal (signo, ofunc);
2726 interrupt_query ();
2727 signal (signo, remote_interrupt);
2728 }
2729
2730 /* This is the generic stop called via the target vector. When a target
2731 interrupt is requested, either by the command line or the GUI, we
2732 will eventually end up here. */
2733 static void
2734 remote_stop (void)
2735 {
2736 /* Send a break or a ^C, depending on user preference. */
2737 if (remote_debug)
2738 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
2739
2740 if (remote_break)
2741 serial_send_break (remote_desc);
2742 else
2743 serial_write (remote_desc, "\003", 1);
2744 }
2745
2746 /* Ask the user what to do when an interrupt is received. */
2747
2748 static void
2749 interrupt_query (void)
2750 {
2751 target_terminal_ours ();
2752
2753 if (query ("Interrupted while waiting for the program.\n\
2754 Give up (and stop debugging it)? "))
2755 {
2756 target_mourn_inferior ();
2757 deprecated_throw_reason (RETURN_QUIT);
2758 }
2759
2760 target_terminal_inferior ();
2761 }
2762
2763 /* Enable/disable target terminal ownership. Most targets can use
2764 terminal groups to control terminal ownership. Remote targets are
2765 different in that explicit transfer of ownership to/from GDB/target
2766 is required. */
2767
2768 static void
2769 remote_async_terminal_inferior (void)
2770 {
2771 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
2772 sync_execution here. This function should only be called when
2773 GDB is resuming the inferior in the forground. A background
2774 resume (``run&'') should leave GDB in control of the terminal and
2775 consequently should not call this code. */
2776 if (!sync_execution)
2777 return;
2778 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
2779 calls target_terminal_*() idenpotent. The event-loop GDB talking
2780 to an asynchronous target with a synchronous command calls this
2781 function from both event-top.c and infrun.c/infcmd.c. Once GDB
2782 stops trying to transfer the terminal to the target when it
2783 shouldn't this guard can go away. */
2784 if (!remote_async_terminal_ours_p)
2785 return;
2786 delete_file_handler (input_fd);
2787 remote_async_terminal_ours_p = 0;
2788 initialize_sigint_signal_handler ();
2789 /* NOTE: At this point we could also register our selves as the
2790 recipient of all input. Any characters typed could then be
2791 passed on down to the target. */
2792 }
2793
2794 static void
2795 remote_async_terminal_ours (void)
2796 {
2797 /* See FIXME in remote_async_terminal_inferior. */
2798 if (!sync_execution)
2799 return;
2800 /* See FIXME in remote_async_terminal_inferior. */
2801 if (remote_async_terminal_ours_p)
2802 return;
2803 cleanup_sigint_signal_handler (NULL);
2804 add_file_handler (input_fd, stdin_event_handler, 0);
2805 remote_async_terminal_ours_p = 1;
2806 }
2807
2808 /* If nonzero, ignore the next kill. */
2809
2810 int kill_kludge;
2811
2812 void
2813 remote_console_output (char *msg)
2814 {
2815 char *p;
2816
2817 for (p = msg; p[0] && p[1]; p += 2)
2818 {
2819 char tb[2];
2820 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
2821 tb[0] = c;
2822 tb[1] = 0;
2823 fputs_unfiltered (tb, gdb_stdtarg);
2824 }
2825 gdb_flush (gdb_stdtarg);
2826 }
2827
2828 /* Wait until the remote machine stops, then return,
2829 storing status in STATUS just as `wait' would.
2830 Returns "pid", which in the case of a multi-threaded
2831 remote OS, is the thread-id. */
2832
2833 static ptid_t
2834 remote_wait (ptid_t ptid, struct target_waitstatus *status)
2835 {
2836 struct remote_state *rs = get_remote_state ();
2837 unsigned char *buf = alloca (rs->remote_packet_size);
2838 ULONGEST thread_num = -1;
2839 ULONGEST addr;
2840
2841 status->kind = TARGET_WAITKIND_EXITED;
2842 status->value.integer = 0;
2843
2844 while (1)
2845 {
2846 unsigned char *p;
2847
2848 ofunc = signal (SIGINT, remote_interrupt);
2849 getpkt (buf, (rs->remote_packet_size), 1);
2850 signal (SIGINT, ofunc);
2851
2852 /* This is a hook for when we need to do something (perhaps the
2853 collection of trace data) every time the target stops. */
2854 if (deprecated_target_wait_loop_hook)
2855 (*deprecated_target_wait_loop_hook) ();
2856
2857 remote_stopped_by_watchpoint_p = 0;
2858
2859 switch (buf[0])
2860 {
2861 case 'E': /* Error of some sort. */
2862 warning (_("Remote failure reply: %s"), buf);
2863 continue;
2864 case 'F': /* File-I/O request. */
2865 remote_fileio_request (buf);
2866 continue;
2867 case 'T': /* Status with PC, SP, FP, ... */
2868 {
2869 int i;
2870 char regs[MAX_REGISTER_SIZE];
2871
2872 /* Expedited reply, containing Signal, {regno, reg} repeat. */
2873 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
2874 ss = signal number
2875 n... = register number
2876 r... = register contents
2877 */
2878 p = &buf[3]; /* after Txx */
2879
2880 while (*p)
2881 {
2882 unsigned char *p1;
2883 char *p_temp;
2884 int fieldsize;
2885 LONGEST pnum = 0;
2886
2887 /* If the packet contains a register number save it in
2888 pnum and set p1 to point to the character following
2889 it. Otherwise p1 points to p. */
2890
2891 /* If this packet is an awatch packet, don't parse the
2892 'a' as a register number. */
2893
2894 if (strncmp (p, "awatch", strlen("awatch")) != 0)
2895 {
2896 /* Read the ``P'' register number. */
2897 pnum = strtol (p, &p_temp, 16);
2898 p1 = (unsigned char *) p_temp;
2899 }
2900 else
2901 p1 = p;
2902
2903 if (p1 == p) /* No register number present here. */
2904 {
2905 p1 = (unsigned char *) strchr (p, ':');
2906 if (p1 == NULL)
2907 warning (_("Malformed packet(a) (missing colon): %s\n\
2908 Packet: '%s'\n"),
2909 p, buf);
2910 if (strncmp (p, "thread", p1 - p) == 0)
2911 {
2912 p_temp = unpack_varlen_hex (++p1, &thread_num);
2913 record_currthread (thread_num);
2914 p = (unsigned char *) p_temp;
2915 }
2916 else if ((strncmp (p, "watch", p1 - p) == 0)
2917 || (strncmp (p, "rwatch", p1 - p) == 0)
2918 || (strncmp (p, "awatch", p1 - p) == 0))
2919 {
2920 remote_stopped_by_watchpoint_p = 1;
2921 p = unpack_varlen_hex (++p1, &addr);
2922 remote_watch_data_address = (CORE_ADDR)addr;
2923 }
2924 else
2925 {
2926 /* Silently skip unknown optional info. */
2927 p_temp = strchr (p1 + 1, ';');
2928 if (p_temp)
2929 p = (unsigned char *) p_temp;
2930 }
2931 }
2932 else
2933 {
2934 struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
2935 p = p1;
2936
2937 if (*p++ != ':')
2938 error (_("Malformed packet(b) (missing colon): %s\n\
2939 Packet: '%s'\n"),
2940 p, buf);
2941
2942 if (reg == NULL)
2943 error (_("Remote sent bad register number %s: %s\n\
2944 Packet: '%s'\n"),
2945 phex_nz (pnum, 0), p, buf);
2946
2947 fieldsize = hex2bin (p, regs,
2948 register_size (current_gdbarch,
2949 reg->regnum));
2950 p += 2 * fieldsize;
2951 if (fieldsize < register_size (current_gdbarch,
2952 reg->regnum))
2953 warning (_("Remote reply is too short: %s"), buf);
2954 regcache_raw_supply (current_regcache,
2955 reg->regnum, regs);
2956 }
2957
2958 if (*p++ != ';')
2959 error (_("Remote register badly formatted: %s\nhere: %s"),
2960 buf, p);
2961 }
2962 }
2963 /* fall through */
2964 case 'S': /* Old style status, just signal only. */
2965 status->kind = TARGET_WAITKIND_STOPPED;
2966 status->value.sig = (enum target_signal)
2967 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2968
2969 if (buf[3] == 'p')
2970 {
2971 thread_num = strtol ((const char *) &buf[4], NULL, 16);
2972 record_currthread (thread_num);
2973 }
2974 goto got_status;
2975 case 'W': /* Target exited. */
2976 {
2977 /* The remote process exited. */
2978 status->kind = TARGET_WAITKIND_EXITED;
2979 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
2980 goto got_status;
2981 }
2982 case 'X':
2983 status->kind = TARGET_WAITKIND_SIGNALLED;
2984 status->value.sig = (enum target_signal)
2985 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
2986 kill_kludge = 1;
2987
2988 goto got_status;
2989 case 'O': /* Console output. */
2990 remote_console_output (buf + 1);
2991 continue;
2992 case '\0':
2993 if (last_sent_signal != TARGET_SIGNAL_0)
2994 {
2995 /* Zero length reply means that we tried 'S' or 'C' and
2996 the remote system doesn't support it. */
2997 target_terminal_ours_for_output ();
2998 printf_filtered
2999 ("Can't send signals to this remote system. %s not sent.\n",
3000 target_signal_to_name (last_sent_signal));
3001 last_sent_signal = TARGET_SIGNAL_0;
3002 target_terminal_inferior ();
3003
3004 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3005 putpkt ((char *) buf);
3006 continue;
3007 }
3008 /* else fallthrough */
3009 default:
3010 warning (_("Invalid remote reply: %s"), buf);
3011 continue;
3012 }
3013 }
3014 got_status:
3015 if (thread_num != -1)
3016 {
3017 return pid_to_ptid (thread_num);
3018 }
3019 return inferior_ptid;
3020 }
3021
3022 /* Async version of remote_wait. */
3023 static ptid_t
3024 remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
3025 {
3026 struct remote_state *rs = get_remote_state ();
3027 unsigned char *buf = alloca (rs->remote_packet_size);
3028 ULONGEST thread_num = -1;
3029 ULONGEST addr;
3030
3031 status->kind = TARGET_WAITKIND_EXITED;
3032 status->value.integer = 0;
3033
3034 remote_stopped_by_watchpoint_p = 0;
3035
3036 while (1)
3037 {
3038 unsigned char *p;
3039
3040 if (!target_is_async_p ())
3041 ofunc = signal (SIGINT, remote_interrupt);
3042 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3043 _never_ wait for ever -> test on target_is_async_p().
3044 However, before we do that we need to ensure that the caller
3045 knows how to take the target into/out of async mode. */
3046 getpkt (buf, (rs->remote_packet_size), wait_forever_enabled_p);
3047 if (!target_is_async_p ())
3048 signal (SIGINT, ofunc);
3049
3050 /* This is a hook for when we need to do something (perhaps the
3051 collection of trace data) every time the target stops. */
3052 if (deprecated_target_wait_loop_hook)
3053 (*deprecated_target_wait_loop_hook) ();
3054
3055 switch (buf[0])
3056 {
3057 case 'E': /* Error of some sort. */
3058 warning (_("Remote failure reply: %s"), buf);
3059 continue;
3060 case 'F': /* File-I/O request. */
3061 remote_fileio_request (buf);
3062 continue;
3063 case 'T': /* Status with PC, SP, FP, ... */
3064 {
3065 int i;
3066 char regs[MAX_REGISTER_SIZE];
3067
3068 /* Expedited reply, containing Signal, {regno, reg} repeat. */
3069 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
3070 ss = signal number
3071 n... = register number
3072 r... = register contents
3073 */
3074 p = &buf[3]; /* after Txx */
3075
3076 while (*p)
3077 {
3078 unsigned char *p1;
3079 char *p_temp;
3080 int fieldsize;
3081 long pnum = 0;
3082
3083 /* If the packet contains a register number, save it
3084 in pnum and set p1 to point to the character
3085 following it. Otherwise p1 points to p. */
3086
3087 /* If this packet is an awatch packet, don't parse the 'a'
3088 as a register number. */
3089
3090 if (!strncmp (p, "awatch", strlen ("awatch")) != 0)
3091 {
3092 /* Read the register number. */
3093 pnum = strtol (p, &p_temp, 16);
3094 p1 = (unsigned char *) p_temp;
3095 }
3096 else
3097 p1 = p;
3098
3099 if (p1 == p) /* No register number present here. */
3100 {
3101 p1 = (unsigned char *) strchr (p, ':');
3102 if (p1 == NULL)
3103 error (_("Malformed packet(a) (missing colon): %s\n\
3104 Packet: '%s'\n"),
3105 p, buf);
3106 if (strncmp (p, "thread", p1 - p) == 0)
3107 {
3108 p_temp = unpack_varlen_hex (++p1, &thread_num);
3109 record_currthread (thread_num);
3110 p = (unsigned char *) p_temp;
3111 }
3112 else if ((strncmp (p, "watch", p1 - p) == 0)
3113 || (strncmp (p, "rwatch", p1 - p) == 0)
3114 || (strncmp (p, "awatch", p1 - p) == 0))
3115 {
3116 remote_stopped_by_watchpoint_p = 1;
3117 p = unpack_varlen_hex (++p1, &addr);
3118 remote_watch_data_address = (CORE_ADDR)addr;
3119 }
3120 else
3121 {
3122 /* Silently skip unknown optional info. */
3123 p_temp = (unsigned char *) strchr (p1 + 1, ';');
3124 if (p_temp)
3125 p = p_temp;
3126 }
3127 }
3128
3129 else
3130 {
3131 struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
3132 p = p1;
3133 if (*p++ != ':')
3134 error (_("Malformed packet(b) (missing colon): %s\n\
3135 Packet: '%s'\n"),
3136 p, buf);
3137
3138 if (reg == NULL)
3139 error (_("Remote sent bad register number %ld: %s\n\
3140 Packet: '%s'\n"),
3141 pnum, p, buf);
3142
3143 fieldsize = hex2bin (p, regs,
3144 register_size (current_gdbarch,
3145 reg->regnum));
3146 p += 2 * fieldsize;
3147 if (fieldsize < register_size (current_gdbarch,
3148 reg->regnum))
3149 warning (_("Remote reply is too short: %s"), buf);
3150 regcache_raw_supply (current_regcache, reg->regnum, regs);
3151 }
3152
3153 if (*p++ != ';')
3154 error (_("Remote register badly formatted: %s\nhere: %s"),
3155 buf, p);
3156 }
3157 }
3158 /* fall through */
3159 case 'S': /* Old style status, just signal only. */
3160 status->kind = TARGET_WAITKIND_STOPPED;
3161 status->value.sig = (enum target_signal)
3162 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3163
3164 if (buf[3] == 'p')
3165 {
3166 thread_num = strtol ((const char *) &buf[4], NULL, 16);
3167 record_currthread (thread_num);
3168 }
3169 goto got_status;
3170 case 'W': /* Target exited. */
3171 {
3172 /* The remote process exited. */
3173 status->kind = TARGET_WAITKIND_EXITED;
3174 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
3175 goto got_status;
3176 }
3177 case 'X':
3178 status->kind = TARGET_WAITKIND_SIGNALLED;
3179 status->value.sig = (enum target_signal)
3180 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3181 kill_kludge = 1;
3182
3183 goto got_status;
3184 case 'O': /* Console output. */
3185 remote_console_output (buf + 1);
3186 /* Return immediately to the event loop. The event loop will
3187 still be waiting on the inferior afterwards. */
3188 status->kind = TARGET_WAITKIND_IGNORE;
3189 goto got_status;
3190 case '\0':
3191 if (last_sent_signal != TARGET_SIGNAL_0)
3192 {
3193 /* Zero length reply means that we tried 'S' or 'C' and
3194 the remote system doesn't support it. */
3195 target_terminal_ours_for_output ();
3196 printf_filtered
3197 ("Can't send signals to this remote system. %s not sent.\n",
3198 target_signal_to_name (last_sent_signal));
3199 last_sent_signal = TARGET_SIGNAL_0;
3200 target_terminal_inferior ();
3201
3202 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3203 putpkt ((char *) buf);
3204 continue;
3205 }
3206 /* else fallthrough */
3207 default:
3208 warning (_("Invalid remote reply: %s"), buf);
3209 continue;
3210 }
3211 }
3212 got_status:
3213 if (thread_num != -1)
3214 {
3215 return pid_to_ptid (thread_num);
3216 }
3217 return inferior_ptid;
3218 }
3219
3220 /* Number of bytes of registers this stub implements. */
3221
3222 static int register_bytes_found;
3223
3224 /* Read the remote registers into the block REGS. */
3225 /* Currently we just read all the registers, so we don't use regnum. */
3226
3227 static int
3228 fetch_register_using_p (int regnum)
3229 {
3230 struct remote_state *rs = get_remote_state ();
3231 char *buf = alloca (rs->remote_packet_size), *p;
3232 char regp[MAX_REGISTER_SIZE];
3233 int i;
3234
3235 p = buf;
3236 *p++ = 'p';
3237 p += hexnumstr (p, regnum);
3238 *p++ = '\0';
3239 remote_send (buf, rs->remote_packet_size);
3240
3241 /* If the stub didn't recognize the packet, or if we got an error,
3242 tell our caller. */
3243 if (buf[0] == '\0' || buf[0] == 'E')
3244 return 0;
3245
3246 /* If this register is unfetchable, tell the regcache. */
3247 if (buf[0] == 'x')
3248 {
3249 regcache_raw_supply (current_regcache, regnum, NULL);
3250 set_register_cached (regnum, -1);
3251 return 1;
3252 }
3253
3254 /* Otherwise, parse and supply the value. */
3255 p = buf;
3256 i = 0;
3257 while (p[0] != 0)
3258 {
3259 if (p[1] == 0)
3260 {
3261 error (_("fetch_register_using_p: early buf termination"));
3262 return 0;
3263 }
3264
3265 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
3266 p += 2;
3267 }
3268 regcache_raw_supply (current_regcache, regnum, regp);
3269 return 1;
3270 }
3271
3272 static void
3273 remote_fetch_registers (int regnum)
3274 {
3275 struct remote_state *rs = get_remote_state ();
3276 char *buf = alloca (rs->remote_packet_size);
3277 int i;
3278 char *p;
3279 char *regs = alloca (rs->sizeof_g_packet);
3280
3281 set_thread (PIDGET (inferior_ptid), 1);
3282
3283 if (regnum >= 0)
3284 {
3285 struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
3286 gdb_assert (reg != NULL);
3287 if (!reg->in_g_packet)
3288 internal_error (__FILE__, __LINE__,
3289 _("Attempt to fetch a non G-packet register when this "
3290 "remote.c does not support the p-packet."));
3291 }
3292 switch (remote_protocol_p.support)
3293 {
3294 case PACKET_DISABLE:
3295 break;
3296 case PACKET_ENABLE:
3297 if (fetch_register_using_p (regnum))
3298 return;
3299 else
3300 error (_("Protocol error: p packet not recognized by stub"));
3301 case PACKET_SUPPORT_UNKNOWN:
3302 if (fetch_register_using_p (regnum))
3303 {
3304 /* The stub recognized the 'p' packet. Remember this. */
3305 remote_protocol_p.support = PACKET_ENABLE;
3306 return;
3307 }
3308 else
3309 {
3310 /* The stub does not support the 'P' packet. Use 'G'
3311 instead, and don't try using 'P' in the future (it
3312 will just waste our time). */
3313 remote_protocol_p.support = PACKET_DISABLE;
3314 break;
3315 }
3316 }
3317
3318 sprintf (buf, "g");
3319 remote_send (buf, (rs->remote_packet_size));
3320
3321 /* Save the size of the packet sent to us by the target. Its used
3322 as a heuristic when determining the max size of packets that the
3323 target can safely receive. */
3324 if ((rs->actual_register_packet_size) == 0)
3325 (rs->actual_register_packet_size) = strlen (buf);
3326
3327 /* Unimplemented registers read as all bits zero. */
3328 memset (regs, 0, rs->sizeof_g_packet);
3329
3330 /* We can get out of synch in various cases. If the first character
3331 in the buffer is not a hex character, assume that has happened
3332 and try to fetch another packet to read. */
3333 while ((buf[0] < '0' || buf[0] > '9')
3334 && (buf[0] < 'a' || buf[0] > 'f')
3335 && buf[0] != 'x') /* New: unavailable register value. */
3336 {
3337 if (remote_debug)
3338 fprintf_unfiltered (gdb_stdlog,
3339 "Bad register packet; fetching a new packet\n");
3340 getpkt (buf, (rs->remote_packet_size), 0);
3341 }
3342
3343 /* Reply describes registers byte by byte, each byte encoded as two
3344 hex characters. Suck them all up, then supply them to the
3345 register cacheing/storage mechanism. */
3346
3347 p = buf;
3348 for (i = 0; i < rs->sizeof_g_packet; i++)
3349 {
3350 if (p[0] == 0)
3351 break;
3352 if (p[1] == 0)
3353 {
3354 warning (_("Remote reply is of odd length: %s"), buf);
3355 /* Don't change register_bytes_found in this case, and don't
3356 print a second warning. */
3357 goto supply_them;
3358 }
3359 if (p[0] == 'x' && p[1] == 'x')
3360 regs[i] = 0; /* 'x' */
3361 else
3362 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3363 p += 2;
3364 }
3365
3366 if (i != register_bytes_found)
3367 {
3368 register_bytes_found = i;
3369 if (REGISTER_BYTES_OK_P ()
3370 && !REGISTER_BYTES_OK (i))
3371 warning (_("Remote reply is too short: %s"), buf);
3372 }
3373
3374 supply_them:
3375 {
3376 int i;
3377 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
3378 {
3379 struct packet_reg *r = &rs->regs[i];
3380 if (r->in_g_packet)
3381 {
3382 if (r->offset * 2 >= strlen (buf))
3383 /* A short packet that didn't include the register's
3384 value, this implies that the register is zero (and
3385 not that the register is unavailable). Supply that
3386 zero value. */
3387 regcache_raw_supply (current_regcache, r->regnum, NULL);
3388 else if (buf[r->offset * 2] == 'x')
3389 {
3390 gdb_assert (r->offset * 2 < strlen (buf));
3391 /* The register isn't available, mark it as such (at
3392 the same time setting the value to zero). */
3393 regcache_raw_supply (current_regcache, r->regnum, NULL);
3394 set_register_cached (i, -1);
3395 }
3396 else
3397 regcache_raw_supply (current_regcache, r->regnum,
3398 regs + r->offset);
3399 }
3400 }
3401 }
3402 }
3403
3404 /* Prepare to store registers. Since we may send them all (using a
3405 'G' request), we have to read out the ones we don't want to change
3406 first. */
3407
3408 static void
3409 remote_prepare_to_store (void)
3410 {
3411 struct remote_state *rs = get_remote_state ();
3412 int i;
3413 char buf[MAX_REGISTER_SIZE];
3414
3415 /* Make sure the entire registers array is valid. */
3416 switch (remote_protocol_P.support)
3417 {
3418 case PACKET_DISABLE:
3419 case PACKET_SUPPORT_UNKNOWN:
3420 /* Make sure all the necessary registers are cached. */
3421 for (i = 0; i < NUM_REGS; i++)
3422 if (rs->regs[i].in_g_packet)
3423 regcache_raw_read (current_regcache, rs->regs[i].regnum, buf);
3424 break;
3425 case PACKET_ENABLE:
3426 break;
3427 }
3428 }
3429
3430 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
3431 packet was not recognized. */
3432
3433 static int
3434 store_register_using_P (int regnum)
3435 {
3436 struct remote_state *rs = get_remote_state ();
3437 struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
3438 /* Try storing a single register. */
3439 char *buf = alloca (rs->remote_packet_size);
3440 char regp[MAX_REGISTER_SIZE];
3441 char *p;
3442 int i;
3443
3444 sprintf (buf, "P%s=", phex_nz (reg->pnum, 0));
3445 p = buf + strlen (buf);
3446 regcache_raw_collect (current_regcache, reg->regnum, regp);
3447 bin2hex (regp, p, register_size (current_gdbarch, reg->regnum));
3448 remote_send (buf, rs->remote_packet_size);
3449
3450 return buf[0] != '\0';
3451 }
3452
3453
3454 /* Store register REGNUM, or all registers if REGNUM == -1, from the
3455 contents of the register cache buffer. FIXME: ignores errors. */
3456
3457 static void
3458 remote_store_registers (int regnum)
3459 {
3460 struct remote_state *rs = get_remote_state ();
3461 char *buf;
3462 char *regs;
3463 int i;
3464 char *p;
3465
3466 set_thread (PIDGET (inferior_ptid), 1);
3467
3468 if (regnum >= 0)
3469 {
3470 switch (remote_protocol_P.support)
3471 {
3472 case PACKET_DISABLE:
3473 break;
3474 case PACKET_ENABLE:
3475 if (store_register_using_P (regnum))
3476 return;
3477 else
3478 error (_("Protocol error: P packet not recognized by stub"));
3479 case PACKET_SUPPORT_UNKNOWN:
3480 if (store_register_using_P (regnum))
3481 {
3482 /* The stub recognized the 'P' packet. Remember this. */
3483 remote_protocol_P.support = PACKET_ENABLE;
3484 return;
3485 }
3486 else
3487 {
3488 /* The stub does not support the 'P' packet. Use 'G'
3489 instead, and don't try using 'P' in the future (it
3490 will just waste our time). */
3491 remote_protocol_P.support = PACKET_DISABLE;
3492 break;
3493 }
3494 }
3495 }
3496
3497 /* Extract all the registers in the regcache copying them into a
3498 local buffer. */
3499 {
3500 int i;
3501 regs = alloca (rs->sizeof_g_packet);
3502 memset (regs, rs->sizeof_g_packet, 0);
3503 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
3504 {
3505 struct packet_reg *r = &rs->regs[i];
3506 if (r->in_g_packet)
3507 regcache_raw_collect (current_regcache, r->regnum, regs + r->offset);
3508 }
3509 }
3510
3511 /* Command describes registers byte by byte,
3512 each byte encoded as two hex characters. */
3513 buf = alloca (rs->remote_packet_size);
3514 p = buf;
3515 *p++ = 'G';
3516 /* remote_prepare_to_store insures that register_bytes_found gets set. */
3517 bin2hex (regs, p, register_bytes_found);
3518 remote_send (buf, (rs->remote_packet_size));
3519 }
3520 \f
3521
3522 /* Return the number of hex digits in num. */
3523
3524 static int
3525 hexnumlen (ULONGEST num)
3526 {
3527 int i;
3528
3529 for (i = 0; num != 0; i++)
3530 num >>= 4;
3531
3532 return max (i, 1);
3533 }
3534
3535 /* Set BUF to the minimum number of hex digits representing NUM. */
3536
3537 static int
3538 hexnumstr (char *buf, ULONGEST num)
3539 {
3540 int len = hexnumlen (num);
3541 return hexnumnstr (buf, num, len);
3542 }
3543
3544
3545 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
3546
3547 static int
3548 hexnumnstr (char *buf, ULONGEST num, int width)
3549 {
3550 int i;
3551
3552 buf[width] = '\0';
3553
3554 for (i = width - 1; i >= 0; i--)
3555 {
3556 buf[i] = "0123456789abcdef"[(num & 0xf)];
3557 num >>= 4;
3558 }
3559
3560 return width;
3561 }
3562
3563 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
3564
3565 static CORE_ADDR
3566 remote_address_masked (CORE_ADDR addr)
3567 {
3568 if (remote_address_size > 0
3569 && remote_address_size < (sizeof (ULONGEST) * 8))
3570 {
3571 /* Only create a mask when that mask can safely be constructed
3572 in a ULONGEST variable. */
3573 ULONGEST mask = 1;
3574 mask = (mask << remote_address_size) - 1;
3575 addr &= mask;
3576 }
3577 return addr;
3578 }
3579
3580 /* Determine whether the remote target supports binary downloading.
3581 This is accomplished by sending a no-op memory write of zero length
3582 to the target at the specified address. It does not suffice to send
3583 the whole packet, since many stubs strip the eighth bit and
3584 subsequently compute a wrong checksum, which causes real havoc with
3585 remote_write_bytes.
3586
3587 NOTE: This can still lose if the serial line is not eight-bit
3588 clean. In cases like this, the user should clear "remote
3589 X-packet". */
3590
3591 static void
3592 check_binary_download (CORE_ADDR addr)
3593 {
3594 struct remote_state *rs = get_remote_state ();
3595 switch (remote_protocol_binary_download.support)
3596 {
3597 case PACKET_DISABLE:
3598 break;
3599 case PACKET_ENABLE:
3600 break;
3601 case PACKET_SUPPORT_UNKNOWN:
3602 {
3603 char *buf = alloca (rs->remote_packet_size);
3604 char *p;
3605
3606 p = buf;
3607 *p++ = 'X';
3608 p += hexnumstr (p, (ULONGEST) addr);
3609 *p++ = ',';
3610 p += hexnumstr (p, (ULONGEST) 0);
3611 *p++ = ':';
3612 *p = '\0';
3613
3614 putpkt_binary (buf, (int) (p - buf));
3615 getpkt (buf, (rs->remote_packet_size), 0);
3616
3617 if (buf[0] == '\0')
3618 {
3619 if (remote_debug)
3620 fprintf_unfiltered (gdb_stdlog,
3621 "binary downloading NOT suppported by target\n");
3622 remote_protocol_binary_download.support = PACKET_DISABLE;
3623 }
3624 else
3625 {
3626 if (remote_debug)
3627 fprintf_unfiltered (gdb_stdlog,
3628 "binary downloading suppported by target\n");
3629 remote_protocol_binary_download.support = PACKET_ENABLE;
3630 }
3631 break;
3632 }
3633 }
3634 }
3635
3636 /* Write memory data directly to the remote machine.
3637 This does not inform the data cache; the data cache uses this.
3638 MEMADDR is the address in the remote memory space.
3639 MYADDR is the address of the buffer in our space.
3640 LEN is the number of bytes.
3641
3642 Returns number of bytes transferred, or 0 (setting errno) for
3643 error. Only transfer a single packet. */
3644
3645 int
3646 remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
3647 {
3648 unsigned char *buf;
3649 unsigned char *p;
3650 unsigned char *plen;
3651 long sizeof_buf;
3652 int plenlen;
3653 int todo;
3654 int nr_bytes;
3655 int payload_size;
3656 unsigned char *payload_start;
3657
3658 /* Verify that the target can support a binary download. */
3659 check_binary_download (memaddr);
3660
3661 /* Compute the size, and then allocate space for the largest
3662 possible packet. Include space for an extra trailing NULL. */
3663 sizeof_buf = get_memory_write_packet_size () + 1;
3664 buf = alloca (sizeof_buf);
3665
3666 /* Compute the size of the actual payload by subtracting out the
3667 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
3668 payload_size = (get_memory_write_packet_size () - (strlen ("$M,:#NN")
3669 + hexnumlen (memaddr)
3670 + hexnumlen (len)));
3671
3672 /* Construct the packet header: "[MX]<memaddr>,<len>:". */
3673
3674 /* Append "[XM]". Compute a best guess of the number of bytes
3675 actually transfered. */
3676 p = buf;
3677 switch (remote_protocol_binary_download.support)
3678 {
3679 case PACKET_ENABLE:
3680 *p++ = 'X';
3681 /* Best guess at number of bytes that will fit. */
3682 todo = min (len, payload_size);
3683 break;
3684 case PACKET_DISABLE:
3685 *p++ = 'M';
3686 /* Num bytes that will fit. */
3687 todo = min (len, payload_size / 2);
3688 break;
3689 case PACKET_SUPPORT_UNKNOWN:
3690 internal_error (__FILE__, __LINE__,
3691 _("remote_write_bytes: bad internal state"));
3692 default:
3693 internal_error (__FILE__, __LINE__, _("bad switch"));
3694 }
3695
3696 /* Append "<memaddr>". */
3697 memaddr = remote_address_masked (memaddr);
3698 p += hexnumstr (p, (ULONGEST) memaddr);
3699
3700 /* Append ",". */
3701 *p++ = ',';
3702
3703 /* Append <len>. Retain the location/size of <len>. It may need to
3704 be adjusted once the packet body has been created. */
3705 plen = p;
3706 plenlen = hexnumstr (p, (ULONGEST) todo);
3707 p += plenlen;
3708
3709 /* Append ":". */
3710 *p++ = ':';
3711 *p = '\0';
3712
3713 /* Append the packet body. */
3714 payload_start = p;
3715 switch (remote_protocol_binary_download.support)
3716 {
3717 case PACKET_ENABLE:
3718 /* Binary mode. Send target system values byte by byte, in
3719 increasing byte addresses. Only escape certain critical
3720 characters. */
3721 for (nr_bytes = 0;
3722 (nr_bytes < todo) && (p - payload_start) < payload_size;
3723 nr_bytes++)
3724 {
3725 switch (myaddr[nr_bytes] & 0xff)
3726 {
3727 case '$':
3728 case '#':
3729 case 0x7d:
3730 /* These must be escaped. */
3731 *p++ = 0x7d;
3732 *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20;
3733 break;
3734 default:
3735 *p++ = myaddr[nr_bytes] & 0xff;
3736 break;
3737 }
3738 }
3739 if (nr_bytes < todo)
3740 {
3741 /* Escape chars have filled up the buffer prematurely,
3742 and we have actually sent fewer bytes than planned.
3743 Fix-up the length field of the packet. Use the same
3744 number of characters as before. */
3745 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
3746 *plen = ':'; /* overwrite \0 from hexnumnstr() */
3747 }
3748 break;
3749 case PACKET_DISABLE:
3750 /* Normal mode: Send target system values byte by byte, in
3751 increasing byte addresses. Each byte is encoded as a two hex
3752 value. */
3753 nr_bytes = bin2hex (myaddr, p, todo);
3754 p += 2 * nr_bytes;
3755 break;
3756 case PACKET_SUPPORT_UNKNOWN:
3757 internal_error (__FILE__, __LINE__,
3758 _("remote_write_bytes: bad internal state"));
3759 default:
3760 internal_error (__FILE__, __LINE__, _("bad switch"));
3761 }
3762
3763 putpkt_binary (buf, (int) (p - buf));
3764 getpkt (buf, sizeof_buf, 0);
3765
3766 if (buf[0] == 'E')
3767 {
3768 /* There is no correspondance between what the remote protocol
3769 uses for errors and errno codes. We would like a cleaner way
3770 of representing errors (big enough to include errno codes,
3771 bfd_error codes, and others). But for now just return EIO. */
3772 errno = EIO;
3773 return 0;
3774 }
3775
3776 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
3777 fewer bytes than we'd planned. */
3778 return nr_bytes;
3779 }
3780
3781 /* Read memory data directly from the remote machine.
3782 This does not use the data cache; the data cache uses this.
3783 MEMADDR is the address in the remote memory space.
3784 MYADDR is the address of the buffer in our space.
3785 LEN is the number of bytes.
3786
3787 Returns number of bytes transferred, or 0 for error. */
3788
3789 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
3790 remote targets) shouldn't attempt to read the entire buffer.
3791 Instead it should read a single packet worth of data and then
3792 return the byte size of that packet to the caller. The caller (its
3793 caller and its callers caller ;-) already contains code for
3794 handling partial reads. */
3795
3796 int
3797 remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
3798 {
3799 char *buf;
3800 int max_buf_size; /* Max size of packet output buffer. */
3801 long sizeof_buf;
3802 int origlen;
3803
3804 /* Create a buffer big enough for this packet. */
3805 max_buf_size = get_memory_read_packet_size ();
3806 sizeof_buf = max_buf_size + 1; /* Space for trailing NULL. */
3807 buf = alloca (sizeof_buf);
3808
3809 origlen = len;
3810 while (len > 0)
3811 {
3812 char *p;
3813 int todo;
3814 int i;
3815
3816 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
3817
3818 /* construct "m"<memaddr>","<len>" */
3819 /* sprintf (buf, "m%lx,%x", (unsigned long) memaddr, todo); */
3820 memaddr = remote_address_masked (memaddr);
3821 p = buf;
3822 *p++ = 'm';
3823 p += hexnumstr (p, (ULONGEST) memaddr);
3824 *p++ = ',';
3825 p += hexnumstr (p, (ULONGEST) todo);
3826 *p = '\0';
3827
3828 putpkt (buf);
3829 getpkt (buf, sizeof_buf, 0);
3830
3831 if (buf[0] == 'E'
3832 && isxdigit (buf[1]) && isxdigit (buf[2])
3833 && buf[3] == '\0')
3834 {
3835 /* There is no correspondance between what the remote
3836 protocol uses for errors and errno codes. We would like
3837 a cleaner way of representing errors (big enough to
3838 include errno codes, bfd_error codes, and others). But
3839 for now just return EIO. */
3840 errno = EIO;
3841 return 0;
3842 }
3843
3844 /* Reply describes memory byte by byte,
3845 each byte encoded as two hex characters. */
3846
3847 p = buf;
3848 if ((i = hex2bin (p, myaddr, todo)) < todo)
3849 {
3850 /* Reply is short. This means that we were able to read
3851 only part of what we wanted to. */
3852 return i + (origlen - len);
3853 }
3854 myaddr += todo;
3855 memaddr += todo;
3856 len -= todo;
3857 }
3858 return origlen;
3859 }
3860 \f
3861 /* Read or write LEN bytes from inferior memory at MEMADDR,
3862 transferring to or from debugger address BUFFER. Write to inferior
3863 if SHOULD_WRITE is nonzero. Returns length of data written or
3864 read; 0 for error. TARGET is unused. */
3865
3866 static int
3867 remote_xfer_memory (CORE_ADDR mem_addr, char *buffer, int mem_len,
3868 int should_write, struct mem_attrib *attrib,
3869 struct target_ops *target)
3870 {
3871 CORE_ADDR targ_addr;
3872 int targ_len;
3873 int res;
3874
3875 /* Should this be the selected frame? */
3876 gdbarch_remote_translate_xfer_address (current_gdbarch,
3877 current_regcache,
3878 mem_addr, mem_len,
3879 &targ_addr, &targ_len);
3880 if (targ_len <= 0)
3881 return 0;
3882
3883 if (should_write)
3884 res = remote_write_bytes (targ_addr, buffer, targ_len);
3885 else
3886 res = remote_read_bytes (targ_addr, buffer, targ_len);
3887
3888 return res;
3889 }
3890
3891 static void
3892 remote_files_info (struct target_ops *ignore)
3893 {
3894 puts_filtered ("Debugging a target over a serial line.\n");
3895 }
3896 \f
3897 /* Stuff for dealing with the packets which are part of this protocol.
3898 See comment at top of file for details. */
3899
3900 /* Read a single character from the remote end, masking it down to 7
3901 bits. */
3902
3903 static int
3904 readchar (int timeout)
3905 {
3906 int ch;
3907
3908 ch = serial_readchar (remote_desc, timeout);
3909
3910 if (ch >= 0)
3911 return (ch & 0x7f);
3912
3913 switch ((enum serial_rc) ch)
3914 {
3915 case SERIAL_EOF:
3916 target_mourn_inferior ();
3917 error (_("Remote connection closed"));
3918 /* no return */
3919 case SERIAL_ERROR:
3920 perror_with_name (_("Remote communication error"));
3921 /* no return */
3922 case SERIAL_TIMEOUT:
3923 break;
3924 }
3925 return ch;
3926 }
3927
3928 /* Send the command in BUF to the remote machine, and read the reply
3929 into BUF. Report an error if we get an error reply. */
3930
3931 static void
3932 remote_send (char *buf,
3933 long sizeof_buf)
3934 {
3935 putpkt (buf);
3936 getpkt (buf, sizeof_buf, 0);
3937
3938 if (buf[0] == 'E')
3939 error (_("Remote failure reply: %s"), buf);
3940 }
3941
3942 /* Display a null-terminated packet on stdout, for debugging, using C
3943 string notation. */
3944
3945 static void
3946 print_packet (char *buf)
3947 {
3948 puts_filtered ("\"");
3949 fputstr_filtered (buf, '"', gdb_stdout);
3950 puts_filtered ("\"");
3951 }
3952
3953 int
3954 putpkt (char *buf)
3955 {
3956 return putpkt_binary (buf, strlen (buf));
3957 }
3958
3959 /* Send a packet to the remote machine, with error checking. The data
3960 of the packet is in BUF. The string in BUF can be at most
3961 (rs->remote_packet_size) - 5 to account for the $, # and checksum,
3962 and for a possible /0 if we are debugging (remote_debug) and want
3963 to print the sent packet as a string. */
3964
3965 static int
3966 putpkt_binary (char *buf, int cnt)
3967 {
3968 struct remote_state *rs = get_remote_state ();
3969 int i;
3970 unsigned char csum = 0;
3971 char *buf2 = alloca (cnt + 6);
3972 long sizeof_junkbuf = (rs->remote_packet_size);
3973 char *junkbuf = alloca (sizeof_junkbuf);
3974
3975 int ch;
3976 int tcount = 0;
3977 char *p;
3978
3979 /* Copy the packet into buffer BUF2, encapsulating it
3980 and giving it a checksum. */
3981
3982 p = buf2;
3983 *p++ = '$';
3984
3985 for (i = 0; i < cnt; i++)
3986 {
3987 csum += buf[i];
3988 *p++ = buf[i];
3989 }
3990 *p++ = '#';
3991 *p++ = tohex ((csum >> 4) & 0xf);
3992 *p++ = tohex (csum & 0xf);
3993
3994 /* Send it over and over until we get a positive ack. */
3995
3996 while (1)
3997 {
3998 int started_error_output = 0;
3999
4000 if (remote_debug)
4001 {
4002 *p = '\0';
4003 fprintf_unfiltered (gdb_stdlog, "Sending packet: ");
4004 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
4005 fprintf_unfiltered (gdb_stdlog, "...");
4006 gdb_flush (gdb_stdlog);
4007 }
4008 if (serial_write (remote_desc, buf2, p - buf2))
4009 perror_with_name (_("putpkt: write failed"));
4010
4011 /* Read until either a timeout occurs (-2) or '+' is read. */
4012 while (1)
4013 {
4014 ch = readchar (remote_timeout);
4015
4016 if (remote_debug)
4017 {
4018 switch (ch)
4019 {
4020 case '+':
4021 case '-':
4022 case SERIAL_TIMEOUT:
4023 case '$':
4024 if (started_error_output)
4025 {
4026 putchar_unfiltered ('\n');
4027 started_error_output = 0;
4028 }
4029 }
4030 }
4031
4032 switch (ch)
4033 {
4034 case '+':
4035 if (remote_debug)
4036 fprintf_unfiltered (gdb_stdlog, "Ack\n");
4037 return 1;
4038 case '-':
4039 if (remote_debug)
4040 fprintf_unfiltered (gdb_stdlog, "Nak\n");
4041 case SERIAL_TIMEOUT:
4042 tcount++;
4043 if (tcount > 3)
4044 return 0;
4045 break; /* Retransmit buffer. */
4046 case '$':
4047 {
4048 if (remote_debug)
4049 fprintf_unfiltered (gdb_stdlog,
4050 "Packet instead of Ack, ignoring it\n");
4051 /* It's probably an old response sent because an ACK
4052 was lost. Gobble up the packet and ack it so it
4053 doesn't get retransmitted when we resend this
4054 packet. */
4055 read_frame (junkbuf, sizeof_junkbuf);
4056 serial_write (remote_desc, "+", 1);
4057 continue; /* Now, go look for +. */
4058 }
4059 default:
4060 if (remote_debug)
4061 {
4062 if (!started_error_output)
4063 {
4064 started_error_output = 1;
4065 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
4066 }
4067 fputc_unfiltered (ch & 0177, gdb_stdlog);
4068 }
4069 continue;
4070 }
4071 break; /* Here to retransmit. */
4072 }
4073
4074 #if 0
4075 /* This is wrong. If doing a long backtrace, the user should be
4076 able to get out next time we call QUIT, without anything as
4077 violent as interrupt_query. If we want to provide a way out of
4078 here without getting to the next QUIT, it should be based on
4079 hitting ^C twice as in remote_wait. */
4080 if (quit_flag)
4081 {
4082 quit_flag = 0;
4083 interrupt_query ();
4084 }
4085 #endif
4086 }
4087 }
4088
4089 /* Come here after finding the start of the frame. Collect the rest
4090 into BUF, verifying the checksum, length, and handling run-length
4091 compression. No more than sizeof_buf-1 characters are read so that
4092 the buffer can be NUL terminated.
4093
4094 Returns -1 on error, number of characters in buffer (ignoring the
4095 trailing NULL) on success. (could be extended to return one of the
4096 SERIAL status indications). */
4097
4098 static long
4099 read_frame (char *buf,
4100 long sizeof_buf)
4101 {
4102 unsigned char csum;
4103 long bc;
4104 int c;
4105
4106 csum = 0;
4107 bc = 0;
4108
4109 while (1)
4110 {
4111 /* ASSERT (bc < sizeof_buf - 1) - space for trailing NULL. */
4112 c = readchar (remote_timeout);
4113 switch (c)
4114 {
4115 case SERIAL_TIMEOUT:
4116 if (remote_debug)
4117 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
4118 return -1;
4119 case '$':
4120 if (remote_debug)
4121 fputs_filtered ("Saw new packet start in middle of old one\n",
4122 gdb_stdlog);
4123 return -1; /* Start a new packet, count retries. */
4124 case '#':
4125 {
4126 unsigned char pktcsum;
4127 int check_0 = 0;
4128 int check_1 = 0;
4129
4130 buf[bc] = '\0';
4131
4132 check_0 = readchar (remote_timeout);
4133 if (check_0 >= 0)
4134 check_1 = readchar (remote_timeout);
4135
4136 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
4137 {
4138 if (remote_debug)
4139 fputs_filtered ("Timeout in checksum, retrying\n",
4140 gdb_stdlog);
4141 return -1;
4142 }
4143 else if (check_0 < 0 || check_1 < 0)
4144 {
4145 if (remote_debug)
4146 fputs_filtered ("Communication error in checksum\n",
4147 gdb_stdlog);
4148 return -1;
4149 }
4150
4151 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
4152 if (csum == pktcsum)
4153 return bc;
4154
4155 if (remote_debug)
4156 {
4157 fprintf_filtered (gdb_stdlog,
4158 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
4159 pktcsum, csum);
4160 fputs_filtered (buf, gdb_stdlog);
4161 fputs_filtered ("\n", gdb_stdlog);
4162 }
4163 /* Number of characters in buffer ignoring trailing
4164 NULL. */
4165 return -1;
4166 }
4167 case '*': /* Run length encoding. */
4168 {
4169 int repeat;
4170 csum += c;
4171
4172 c = readchar (remote_timeout);
4173 csum += c;
4174 repeat = c - ' ' + 3; /* Compute repeat count. */
4175
4176 /* The character before ``*'' is repeated. */
4177
4178 if (repeat > 0 && repeat <= 255
4179 && bc > 0
4180 && bc + repeat - 1 < sizeof_buf - 1)
4181 {
4182 memset (&buf[bc], buf[bc - 1], repeat);
4183 bc += repeat;
4184 continue;
4185 }
4186
4187 buf[bc] = '\0';
4188 printf_filtered (_("Repeat count %d too large for buffer: "),
4189 repeat);
4190 puts_filtered (buf);
4191 puts_filtered ("\n");
4192 return -1;
4193 }
4194 default:
4195 if (bc < sizeof_buf - 1)
4196 {
4197 buf[bc++] = c;
4198 csum += c;
4199 continue;
4200 }
4201
4202 buf[bc] = '\0';
4203 puts_filtered ("Remote packet too long: ");
4204 puts_filtered (buf);
4205 puts_filtered ("\n");
4206
4207 return -1;
4208 }
4209 }
4210 }
4211
4212 /* Read a packet from the remote machine, with error checking, and
4213 store it in BUF. If FOREVER, wait forever rather than timing out;
4214 this is used (in synchronous mode) to wait for a target that is is
4215 executing user code to stop. */
4216 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
4217 don't have to change all the calls to getpkt to deal with the
4218 return value, because at the moment I don't know what the right
4219 thing to do it for those. */
4220 void
4221 getpkt (char *buf,
4222 long sizeof_buf,
4223 int forever)
4224 {
4225 int timed_out;
4226
4227 timed_out = getpkt_sane (buf, sizeof_buf, forever);
4228 }
4229
4230
4231 /* Read a packet from the remote machine, with error checking, and
4232 store it in BUF. If FOREVER, wait forever rather than timing out;
4233 this is used (in synchronous mode) to wait for a target that is is
4234 executing user code to stop. If FOREVER == 0, this function is
4235 allowed to time out gracefully and return an indication of this to
4236 the caller. */
4237 static int
4238 getpkt_sane (char *buf,
4239 long sizeof_buf,
4240 int forever)
4241 {
4242 int c;
4243 int tries;
4244 int timeout;
4245 int val;
4246
4247 strcpy (buf, "timeout");
4248
4249 if (forever)
4250 {
4251 timeout = watchdog > 0 ? watchdog : -1;
4252 }
4253
4254 else
4255 timeout = remote_timeout;
4256
4257 #define MAX_TRIES 3
4258
4259 for (tries = 1; tries <= MAX_TRIES; tries++)
4260 {
4261 /* This can loop forever if the remote side sends us characters
4262 continuously, but if it pauses, we'll get a zero from
4263 readchar because of timeout. Then we'll count that as a
4264 retry. */
4265
4266 /* Note that we will only wait forever prior to the start of a
4267 packet. After that, we expect characters to arrive at a
4268 brisk pace. They should show up within remote_timeout
4269 intervals. */
4270
4271 do
4272 {
4273 c = readchar (timeout);
4274
4275 if (c == SERIAL_TIMEOUT)
4276 {
4277 if (forever) /* Watchdog went off? Kill the target. */
4278 {
4279 QUIT;
4280 target_mourn_inferior ();
4281 error (_("Watchdog has expired. Target detached."));
4282 }
4283 if (remote_debug)
4284 fputs_filtered ("Timed out.\n", gdb_stdlog);
4285 goto retry;
4286 }
4287 }
4288 while (c != '$');
4289
4290 /* We've found the start of a packet, now collect the data. */
4291
4292 val = read_frame (buf, sizeof_buf);
4293
4294 if (val >= 0)
4295 {
4296 if (remote_debug)
4297 {
4298 fprintf_unfiltered (gdb_stdlog, "Packet received: ");
4299 fputstr_unfiltered (buf, 0, gdb_stdlog);
4300 fprintf_unfiltered (gdb_stdlog, "\n");
4301 }
4302 serial_write (remote_desc, "+", 1);
4303 return 0;
4304 }
4305
4306 /* Try the whole thing again. */
4307 retry:
4308 serial_write (remote_desc, "-", 1);
4309 }
4310
4311 /* We have tried hard enough, and just can't receive the packet.
4312 Give up. */
4313
4314 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
4315 serial_write (remote_desc, "+", 1);
4316 return 1;
4317 }
4318 \f
4319 static void
4320 remote_kill (void)
4321 {
4322 /* For some mysterious reason, wait_for_inferior calls kill instead of
4323 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4324 if (kill_kludge)
4325 {
4326 kill_kludge = 0;
4327 target_mourn_inferior ();
4328 return;
4329 }
4330
4331 /* Use catch_errors so the user can quit from gdb even when we aren't on
4332 speaking terms with the remote system. */
4333 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
4334
4335 /* Don't wait for it to die. I'm not really sure it matters whether
4336 we do or not. For the existing stubs, kill is a noop. */
4337 target_mourn_inferior ();
4338 }
4339
4340 /* Async version of remote_kill. */
4341 static void
4342 remote_async_kill (void)
4343 {
4344 /* Unregister the file descriptor from the event loop. */
4345 if (target_is_async_p ())
4346 serial_async (remote_desc, NULL, 0);
4347
4348 /* For some mysterious reason, wait_for_inferior calls kill instead of
4349 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4350 if (kill_kludge)
4351 {
4352 kill_kludge = 0;
4353 target_mourn_inferior ();
4354 return;
4355 }
4356
4357 /* Use catch_errors so the user can quit from gdb even when we
4358 aren't on speaking terms with the remote system. */
4359 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
4360
4361 /* Don't wait for it to die. I'm not really sure it matters whether
4362 we do or not. For the existing stubs, kill is a noop. */
4363 target_mourn_inferior ();
4364 }
4365
4366 static void
4367 remote_mourn (void)
4368 {
4369 remote_mourn_1 (&remote_ops);
4370 }
4371
4372 static void
4373 remote_async_mourn (void)
4374 {
4375 remote_mourn_1 (&remote_async_ops);
4376 }
4377
4378 static void
4379 extended_remote_mourn (void)
4380 {
4381 /* We do _not_ want to mourn the target like this; this will
4382 remove the extended remote target from the target stack,
4383 and the next time the user says "run" it'll fail.
4384
4385 FIXME: What is the right thing to do here? */
4386 #if 0
4387 remote_mourn_1 (&extended_remote_ops);
4388 #endif
4389 }
4390
4391 /* Worker function for remote_mourn. */
4392 static void
4393 remote_mourn_1 (struct target_ops *target)
4394 {
4395 unpush_target (target);
4396 generic_mourn_inferior ();
4397 }
4398
4399 /* In the extended protocol we want to be able to do things like
4400 "run" and have them basically work as expected. So we need
4401 a special create_inferior function.
4402
4403 FIXME: One day add support for changing the exec file
4404 we're debugging, arguments and an environment. */
4405
4406 static void
4407 extended_remote_create_inferior (char *exec_file, char *args,
4408 char **env, int from_tty)
4409 {
4410 /* Rip out the breakpoints; we'll reinsert them after restarting
4411 the remote server. */
4412 remove_breakpoints ();
4413
4414 /* Now restart the remote server. */
4415 extended_remote_restart ();
4416
4417 /* Now put the breakpoints back in. This way we're safe if the
4418 restart function works via a unix fork on the remote side. */
4419 insert_breakpoints ();
4420
4421 /* Clean up from the last time we were running. */
4422 clear_proceed_status ();
4423
4424 /* Let the remote process run. */
4425 proceed (-1, TARGET_SIGNAL_0, 0);
4426 }
4427
4428 /* Async version of extended_remote_create_inferior. */
4429 static void
4430 extended_remote_async_create_inferior (char *exec_file, char *args,
4431 char **env, int from_tty)
4432 {
4433 /* Rip out the breakpoints; we'll reinsert them after restarting
4434 the remote server. */
4435 remove_breakpoints ();
4436
4437 /* If running asynchronously, register the target file descriptor
4438 with the event loop. */
4439 if (target_can_async_p ())
4440 target_async (inferior_event_handler, 0);
4441
4442 /* Now restart the remote server. */
4443 extended_remote_restart ();
4444
4445 /* Now put the breakpoints back in. This way we're safe if the
4446 restart function works via a unix fork on the remote side. */
4447 insert_breakpoints ();
4448
4449 /* Clean up from the last time we were running. */
4450 clear_proceed_status ();
4451
4452 /* Let the remote process run. */
4453 proceed (-1, TARGET_SIGNAL_0, 0);
4454 }
4455 \f
4456
4457 /* On some machines, e.g. 68k, we may use a different breakpoint
4458 instruction than other targets; in those use
4459 DEPRECATED_REMOTE_BREAKPOINT instead of just BREAKPOINT_FROM_PC.
4460 Also, bi-endian targets may define
4461 DEPRECATED_LITTLE_REMOTE_BREAKPOINT and
4462 DEPRECATED_BIG_REMOTE_BREAKPOINT. If none of these are defined, we
4463 just call the standard routines that are in mem-break.c. */
4464
4465 /* NOTE: cagney/2003-06-08: This is silly. A remote and simulator
4466 target should use an identical BREAKPOINT_FROM_PC. As for native,
4467 the ARCH-OS-tdep.c code can override the default. */
4468
4469 #if defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && defined (DEPRECATED_BIG_REMOTE_BREAKPOINT) && !defined(DEPRECATED_REMOTE_BREAKPOINT)
4470 #define DEPRECATED_REMOTE_BREAKPOINT
4471 #endif
4472
4473 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4474
4475 /* If the target isn't bi-endian, just pretend it is. */
4476 #if !defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && !defined (DEPRECATED_BIG_REMOTE_BREAKPOINT)
4477 #define DEPRECATED_LITTLE_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
4478 #define DEPRECATED_BIG_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
4479 #endif
4480
4481 static unsigned char big_break_insn[] = DEPRECATED_BIG_REMOTE_BREAKPOINT;
4482 static unsigned char little_break_insn[] = DEPRECATED_LITTLE_REMOTE_BREAKPOINT;
4483
4484 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4485
4486 /* Insert a breakpoint on targets that don't have any better
4487 breakpoint support. We read the contents of the target location
4488 and stash it, then overwrite it with a breakpoint instruction.
4489 ADDR is the target location in the target machine. CONTENTS_CACHE
4490 is a pointer to memory allocated for saving the target contents.
4491 It is guaranteed by the caller to be long enough to save the number
4492 of bytes returned by BREAKPOINT_FROM_PC. */
4493
4494 static int
4495 remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache)
4496 {
4497 struct remote_state *rs = get_remote_state ();
4498 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4499 int val;
4500 #endif
4501 int bp_size;
4502
4503 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
4504 If it succeeds, then set the support to PACKET_ENABLE. If it
4505 fails, and the user has explicitly requested the Z support then
4506 report an error, otherwise, mark it disabled and go on. */
4507
4508 if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
4509 {
4510 char *buf = alloca (rs->remote_packet_size);
4511 char *p = buf;
4512
4513 addr = remote_address_masked (addr);
4514 *(p++) = 'Z';
4515 *(p++) = '0';
4516 *(p++) = ',';
4517 p += hexnumstr (p, (ULONGEST) addr);
4518 BREAKPOINT_FROM_PC (&addr, &bp_size);
4519 sprintf (p, ",%d", bp_size);
4520
4521 putpkt (buf);
4522 getpkt (buf, (rs->remote_packet_size), 0);
4523
4524 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_SOFTWARE_BP]))
4525 {
4526 case PACKET_ERROR:
4527 return -1;
4528 case PACKET_OK:
4529 return 0;
4530 case PACKET_UNKNOWN:
4531 break;
4532 }
4533 }
4534
4535 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4536 val = target_read_memory (addr, contents_cache, sizeof big_break_insn);
4537
4538 if (val == 0)
4539 {
4540 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
4541 val = target_write_memory (addr, (char *) big_break_insn,
4542 sizeof big_break_insn);
4543 else
4544 val = target_write_memory (addr, (char *) little_break_insn,
4545 sizeof little_break_insn);
4546 }
4547
4548 return val;
4549 #else
4550 return memory_insert_breakpoint (addr, contents_cache);
4551 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4552 }
4553
4554 static int
4555 remote_remove_breakpoint (CORE_ADDR addr, char *contents_cache)
4556 {
4557 struct remote_state *rs = get_remote_state ();
4558 int bp_size;
4559
4560 if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
4561 {
4562 char *buf = alloca (rs->remote_packet_size);
4563 char *p = buf;
4564
4565 *(p++) = 'z';
4566 *(p++) = '0';
4567 *(p++) = ',';
4568
4569 addr = remote_address_masked (addr);
4570 p += hexnumstr (p, (ULONGEST) addr);
4571 BREAKPOINT_FROM_PC (&addr, &bp_size);
4572 sprintf (p, ",%d", bp_size);
4573
4574 putpkt (buf);
4575 getpkt (buf, (rs->remote_packet_size), 0);
4576
4577 return (buf[0] == 'E');
4578 }
4579
4580 #ifdef DEPRECATED_REMOTE_BREAKPOINT
4581 return target_write_memory (addr, contents_cache, sizeof big_break_insn);
4582 #else
4583 return memory_remove_breakpoint (addr, contents_cache);
4584 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
4585 }
4586
4587 static int
4588 watchpoint_to_Z_packet (int type)
4589 {
4590 switch (type)
4591 {
4592 case hw_write:
4593 return 2;
4594 break;
4595 case hw_read:
4596 return 3;
4597 break;
4598 case hw_access:
4599 return 4;
4600 break;
4601 default:
4602 internal_error (__FILE__, __LINE__,
4603 _("hw_bp_to_z: bad watchpoint type %d"), type);
4604 }
4605 }
4606
4607 static int
4608 remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
4609 {
4610 struct remote_state *rs = get_remote_state ();
4611 char *buf = alloca (rs->remote_packet_size);
4612 char *p;
4613 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
4614
4615 if (remote_protocol_Z[packet].support == PACKET_DISABLE)
4616 error (_("Can't set hardware watchpoints without the '%s' (%s) packet."),
4617 remote_protocol_Z[packet].name,
4618 remote_protocol_Z[packet].title);
4619
4620 sprintf (buf, "Z%x,", packet);
4621 p = strchr (buf, '\0');
4622 addr = remote_address_masked (addr);
4623 p += hexnumstr (p, (ULONGEST) addr);
4624 sprintf (p, ",%x", len);
4625
4626 putpkt (buf);
4627 getpkt (buf, (rs->remote_packet_size), 0);
4628
4629 switch (packet_ok (buf, &remote_protocol_Z[packet]))
4630 {
4631 case PACKET_ERROR:
4632 case PACKET_UNKNOWN:
4633 return -1;
4634 case PACKET_OK:
4635 return 0;
4636 }
4637 internal_error (__FILE__, __LINE__,
4638 _("remote_insert_watchpoint: reached end of function"));
4639 }
4640
4641
4642 static int
4643 remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
4644 {
4645 struct remote_state *rs = get_remote_state ();
4646 char *buf = alloca (rs->remote_packet_size);
4647 char *p;
4648 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
4649
4650 if (remote_protocol_Z[packet].support == PACKET_DISABLE)
4651 error (_("Can't clear hardware watchpoints without the '%s' (%s) packet."),
4652 remote_protocol_Z[packet].name,
4653 remote_protocol_Z[packet].title);
4654
4655 sprintf (buf, "z%x,", packet);
4656 p = strchr (buf, '\0');
4657 addr = remote_address_masked (addr);
4658 p += hexnumstr (p, (ULONGEST) addr);
4659 sprintf (p, ",%x", len);
4660 putpkt (buf);
4661 getpkt (buf, (rs->remote_packet_size), 0);
4662
4663 switch (packet_ok (buf, &remote_protocol_Z[packet]))
4664 {
4665 case PACKET_ERROR:
4666 case PACKET_UNKNOWN:
4667 return -1;
4668 case PACKET_OK:
4669 return 0;
4670 }
4671 internal_error (__FILE__, __LINE__,
4672 _("remote_remove_watchpoint: reached end of function"));
4673 }
4674
4675
4676 int remote_hw_watchpoint_limit = -1;
4677 int remote_hw_breakpoint_limit = -1;
4678
4679 static int
4680 remote_check_watch_resources (int type, int cnt, int ot)
4681 {
4682 if (type == bp_hardware_breakpoint)
4683 {
4684 if (remote_hw_breakpoint_limit == 0)
4685 return 0;
4686 else if (remote_hw_breakpoint_limit < 0)
4687 return 1;
4688 else if (cnt <= remote_hw_breakpoint_limit)
4689 return 1;
4690 }
4691 else
4692 {
4693 if (remote_hw_watchpoint_limit == 0)
4694 return 0;
4695 else if (remote_hw_watchpoint_limit < 0)
4696 return 1;
4697 else if (ot)
4698 return -1;
4699 else if (cnt <= remote_hw_watchpoint_limit)
4700 return 1;
4701 }
4702 return -1;
4703 }
4704
4705 static int
4706 remote_stopped_by_watchpoint (void)
4707 {
4708 return remote_stopped_by_watchpoint_p;
4709 }
4710
4711 extern int stepped_after_stopped_by_watchpoint;
4712
4713 static int
4714 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
4715 {
4716 int rc = 0;
4717 if (remote_stopped_by_watchpoint ()
4718 || stepped_after_stopped_by_watchpoint)
4719 {
4720 *addr_p = remote_watch_data_address;
4721 rc = 1;
4722 }
4723
4724 return rc;
4725 }
4726
4727
4728 static int
4729 remote_insert_hw_breakpoint (CORE_ADDR addr, char *shadow)
4730 {
4731 int len = 0;
4732 struct remote_state *rs = get_remote_state ();
4733 char *buf = alloca (rs->remote_packet_size);
4734 char *p = buf;
4735
4736 /* The length field should be set to the size of a breakpoint
4737 instruction. */
4738
4739 BREAKPOINT_FROM_PC (&addr, &len);
4740
4741 if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
4742 error (_("Can't set hardware breakpoint without the '%s' (%s) packet."),
4743 remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
4744 remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
4745
4746 *(p++) = 'Z';
4747 *(p++) = '1';
4748 *(p++) = ',';
4749
4750 addr = remote_address_masked (addr);
4751 p += hexnumstr (p, (ULONGEST) addr);
4752 sprintf (p, ",%x", len);
4753
4754 putpkt (buf);
4755 getpkt (buf, (rs->remote_packet_size), 0);
4756
4757 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
4758 {
4759 case PACKET_ERROR:
4760 case PACKET_UNKNOWN:
4761 return -1;
4762 case PACKET_OK:
4763 return 0;
4764 }
4765 internal_error (__FILE__, __LINE__,
4766 _("remote_insert_hw_breakpoint: reached end of function"));
4767 }
4768
4769
4770 static int
4771 remote_remove_hw_breakpoint (CORE_ADDR addr, char *shadow)
4772 {
4773 int len;
4774 struct remote_state *rs = get_remote_state ();
4775 char *buf = alloca (rs->remote_packet_size);
4776 char *p = buf;
4777
4778 /* The length field should be set to the size of a breakpoint
4779 instruction. */
4780
4781 BREAKPOINT_FROM_PC (&addr, &len);
4782
4783 if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
4784 error (_("Can't clear hardware breakpoint without the '%s' (%s) packet."),
4785 remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
4786 remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
4787
4788 *(p++) = 'z';
4789 *(p++) = '1';
4790 *(p++) = ',';
4791
4792 addr = remote_address_masked (addr);
4793 p += hexnumstr (p, (ULONGEST) addr);
4794 sprintf (p, ",%x", len);
4795
4796 putpkt(buf);
4797 getpkt (buf, (rs->remote_packet_size), 0);
4798
4799 switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
4800 {
4801 case PACKET_ERROR:
4802 case PACKET_UNKNOWN:
4803 return -1;
4804 case PACKET_OK:
4805 return 0;
4806 }
4807 internal_error (__FILE__, __LINE__,
4808 _("remote_remove_hw_breakpoint: reached end of function"));
4809 }
4810
4811 /* Some targets are only capable of doing downloads, and afterwards
4812 they switch to the remote serial protocol. This function provides
4813 a clean way to get from the download target to the remote target.
4814 It's basically just a wrapper so that we don't have to expose any
4815 of the internal workings of remote.c.
4816
4817 Prior to calling this routine, you should shutdown the current
4818 target code, else you will get the "A program is being debugged
4819 already..." message. Usually a call to pop_target() suffices. */
4820
4821 void
4822 push_remote_target (char *name, int from_tty)
4823 {
4824 printf_filtered (_("Switching to remote protocol\n"));
4825 remote_open (name, from_tty);
4826 }
4827
4828 /* Table used by the crc32 function to calcuate the checksum. */
4829
4830 static unsigned long crc32_table[256] =
4831 {0, 0};
4832
4833 static unsigned long
4834 crc32 (unsigned char *buf, int len, unsigned int crc)
4835 {
4836 if (!crc32_table[1])
4837 {
4838 /* Initialize the CRC table and the decoding table. */
4839 int i, j;
4840 unsigned int c;
4841
4842 for (i = 0; i < 256; i++)
4843 {
4844 for (c = i << 24, j = 8; j > 0; --j)
4845 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
4846 crc32_table[i] = c;
4847 }
4848 }
4849
4850 while (len--)
4851 {
4852 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
4853 buf++;
4854 }
4855 return crc;
4856 }
4857
4858 /* compare-sections command
4859
4860 With no arguments, compares each loadable section in the exec bfd
4861 with the same memory range on the target, and reports mismatches.
4862 Useful for verifying the image on the target against the exec file.
4863 Depends on the target understanding the new "qCRC:" request. */
4864
4865 /* FIXME: cagney/1999-10-26: This command should be broken down into a
4866 target method (target verify memory) and generic version of the
4867 actual command. This will allow other high-level code (especially
4868 generic_load()) to make use of this target functionality. */
4869
4870 static void
4871 compare_sections_command (char *args, int from_tty)
4872 {
4873 struct remote_state *rs = get_remote_state ();
4874 asection *s;
4875 unsigned long host_crc, target_crc;
4876 extern bfd *exec_bfd;
4877 struct cleanup *old_chain;
4878 char *tmp;
4879 char *sectdata;
4880 const char *sectname;
4881 char *buf = alloca (rs->remote_packet_size);
4882 bfd_size_type size;
4883 bfd_vma lma;
4884 int matched = 0;
4885 int mismatched = 0;
4886
4887 if (!exec_bfd)
4888 error (_("command cannot be used without an exec file"));
4889 if (!current_target.to_shortname ||
4890 strcmp (current_target.to_shortname, "remote") != 0)
4891 error (_("command can only be used with remote target"));
4892
4893 for (s = exec_bfd->sections; s; s = s->next)
4894 {
4895 if (!(s->flags & SEC_LOAD))
4896 continue; /* skip non-loadable section */
4897
4898 size = bfd_get_section_size (s);
4899 if (size == 0)
4900 continue; /* skip zero-length section */
4901
4902 sectname = bfd_get_section_name (exec_bfd, s);
4903 if (args && strcmp (args, sectname) != 0)
4904 continue; /* not the section selected by user */
4905
4906 matched = 1; /* do this section */
4907 lma = s->lma;
4908 /* FIXME: assumes lma can fit into long. */
4909 sprintf (buf, "qCRC:%lx,%lx", (long) lma, (long) size);
4910 putpkt (buf);
4911
4912 /* Be clever; compute the host_crc before waiting for target
4913 reply. */
4914 sectdata = xmalloc (size);
4915 old_chain = make_cleanup (xfree, sectdata);
4916 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
4917 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
4918
4919 getpkt (buf, (rs->remote_packet_size), 0);
4920 if (buf[0] == 'E')
4921 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
4922 sectname, paddr (lma), paddr (lma + size));
4923 if (buf[0] != 'C')
4924 error (_("remote target does not support this operation"));
4925
4926 for (target_crc = 0, tmp = &buf[1]; *tmp; tmp++)
4927 target_crc = target_crc * 16 + fromhex (*tmp);
4928
4929 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
4930 sectname, paddr (lma), paddr (lma + size));
4931 if (host_crc == target_crc)
4932 printf_filtered ("matched.\n");
4933 else
4934 {
4935 printf_filtered ("MIS-MATCHED!\n");
4936 mismatched++;
4937 }
4938
4939 do_cleanups (old_chain);
4940 }
4941 if (mismatched > 0)
4942 warning (_("One or more sections of the remote executable does not match\n\
4943 the loaded file\n"));
4944 if (args && !matched)
4945 printf_filtered (_("No loaded section named '%s'.\n"), args);
4946 }
4947
4948 static LONGEST
4949 remote_xfer_partial (struct target_ops *ops, enum target_object object,
4950 const char *annex, void *readbuf, const void *writebuf,
4951 ULONGEST offset, LONGEST len)
4952 {
4953 struct remote_state *rs = get_remote_state ();
4954 int i;
4955 char *buf2 = alloca (rs->remote_packet_size);
4956 char *p2 = &buf2[0];
4957 char query_type;
4958
4959 /* Handle memory using remote_xfer_memory. */
4960 if (object == TARGET_OBJECT_MEMORY)
4961 {
4962 int xfered;
4963 errno = 0;
4964
4965 if (writebuf != NULL)
4966 {
4967 void *buffer = xmalloc (len);
4968 struct cleanup *cleanup = make_cleanup (xfree, buffer);
4969 memcpy (buffer, writebuf, len);
4970 xfered = remote_xfer_memory (offset, buffer, len, 1, NULL, ops);
4971 do_cleanups (cleanup);
4972 }
4973 else
4974 xfered = remote_xfer_memory (offset, readbuf, len, 0, NULL, ops);
4975
4976 if (xfered > 0)
4977 return xfered;
4978 else if (xfered == 0 && errno == 0)
4979 return 0;
4980 else
4981 return -1;
4982 }
4983
4984 /* Only handle reads. */
4985 if (writebuf != NULL || readbuf == NULL)
4986 return -1;
4987
4988 /* Map pre-existing objects onto letters. DO NOT do this for new
4989 objects!!! Instead specify new query packets. */
4990 switch (object)
4991 {
4992 case TARGET_OBJECT_KOD:
4993 query_type = 'K';
4994 break;
4995 case TARGET_OBJECT_AVR:
4996 query_type = 'R';
4997 break;
4998
4999 case TARGET_OBJECT_AUXV:
5000 if (remote_protocol_qPart_auxv.support != PACKET_DISABLE)
5001 {
5002 unsigned int total = 0;
5003 while (len > 0)
5004 {
5005 LONGEST n = min ((rs->remote_packet_size - 2) / 2, len);
5006 snprintf (buf2, rs->remote_packet_size,
5007 "qPart:auxv:read::%s,%s",
5008 phex_nz (offset, sizeof offset),
5009 phex_nz (n, sizeof n));
5010 i = putpkt (buf2);
5011 if (i < 0)
5012 return total > 0 ? total : i;
5013 buf2[0] = '\0';
5014 getpkt (buf2, rs->remote_packet_size, 0);
5015 if (packet_ok (buf2, &remote_protocol_qPart_auxv) != PACKET_OK)
5016 return total > 0 ? total : -1;
5017 if (buf2[0] == 'O' && buf2[1] == 'K' && buf2[2] == '\0')
5018 break; /* Got EOF indicator. */
5019 /* Got some data. */
5020 i = hex2bin (buf2, readbuf, len);
5021 if (i > 0)
5022 {
5023 readbuf = (void *) ((char *) readbuf + i);
5024 offset += i;
5025 len -= i;
5026 total += i;
5027 }
5028 }
5029 return total;
5030 }
5031 return -1;
5032
5033 default:
5034 return -1;
5035 }
5036
5037 /* Note: a zero OFFSET and LEN can be used to query the minimum
5038 buffer size. */
5039 if (offset == 0 && len == 0)
5040 return (rs->remote_packet_size);
5041 /* Minimum outbuf size is (rs->remote_packet_size) - if bufsiz is
5042 not large enough let the caller. */
5043 if (len < (rs->remote_packet_size))
5044 return -1;
5045 len = rs->remote_packet_size;
5046
5047 /* Except for querying the minimum buffer size, target must be open. */
5048 if (!remote_desc)
5049 error (_("remote query is only available after target open"));
5050
5051 gdb_assert (annex != NULL);
5052 gdb_assert (readbuf != NULL);
5053
5054 *p2++ = 'q';
5055 *p2++ = query_type;
5056
5057 /* We used one buffer char for the remote protocol q command and
5058 another for the query type. As the remote protocol encapsulation
5059 uses 4 chars plus one extra in case we are debugging
5060 (remote_debug), we have PBUFZIZ - 7 left to pack the query
5061 string. */
5062 i = 0;
5063 while (annex[i] && (i < ((rs->remote_packet_size) - 8)))
5064 {
5065 /* Bad caller may have sent forbidden characters. */
5066 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
5067 *p2++ = annex[i];
5068 i++;
5069 }
5070 *p2 = '\0';
5071 gdb_assert (annex[i] == '\0');
5072
5073 i = putpkt (buf2);
5074 if (i < 0)
5075 return i;
5076
5077 getpkt (readbuf, len, 0);
5078
5079 return strlen (readbuf);
5080 }
5081
5082 static void
5083 remote_rcmd (char *command,
5084 struct ui_file *outbuf)
5085 {
5086 struct remote_state *rs = get_remote_state ();
5087 int i;
5088 char *buf = alloca (rs->remote_packet_size);
5089 char *p = buf;
5090
5091 if (!remote_desc)
5092 error (_("remote rcmd is only available after target open"));
5093
5094 /* Send a NULL command across as an empty command. */
5095 if (command == NULL)
5096 command = "";
5097
5098 /* The query prefix. */
5099 strcpy (buf, "qRcmd,");
5100 p = strchr (buf, '\0');
5101
5102 if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > (rs->remote_packet_size))
5103 error (_("\"monitor\" command ``%s'' is too long."), command);
5104
5105 /* Encode the actual command. */
5106 bin2hex (command, p, 0);
5107
5108 if (putpkt (buf) < 0)
5109 error (_("Communication problem with target."));
5110
5111 /* get/display the response */
5112 while (1)
5113 {
5114 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
5115 buf[0] = '\0';
5116 getpkt (buf, (rs->remote_packet_size), 0);
5117 if (buf[0] == '\0')
5118 error (_("Target does not support this command."));
5119 if (buf[0] == 'O' && buf[1] != 'K')
5120 {
5121 remote_console_output (buf + 1); /* 'O' message from stub. */
5122 continue;
5123 }
5124 if (strcmp (buf, "OK") == 0)
5125 break;
5126 if (strlen (buf) == 3 && buf[0] == 'E'
5127 && isdigit (buf[1]) && isdigit (buf[2]))
5128 {
5129 error (_("Protocol error with Rcmd"));
5130 }
5131 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
5132 {
5133 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
5134 fputc_unfiltered (c, outbuf);
5135 }
5136 break;
5137 }
5138 }
5139
5140 static void
5141 packet_command (char *args, int from_tty)
5142 {
5143 struct remote_state *rs = get_remote_state ();
5144 char *buf = alloca (rs->remote_packet_size);
5145
5146 if (!remote_desc)
5147 error (_("command can only be used with remote target"));
5148
5149 if (!args)
5150 error (_("remote-packet command requires packet text as argument"));
5151
5152 puts_filtered ("sending: ");
5153 print_packet (args);
5154 puts_filtered ("\n");
5155 putpkt (args);
5156
5157 getpkt (buf, (rs->remote_packet_size), 0);
5158 puts_filtered ("received: ");
5159 print_packet (buf);
5160 puts_filtered ("\n");
5161 }
5162
5163 #if 0
5164 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
5165
5166 static void display_thread_info (struct gdb_ext_thread_info *info);
5167
5168 static void threadset_test_cmd (char *cmd, int tty);
5169
5170 static void threadalive_test (char *cmd, int tty);
5171
5172 static void threadlist_test_cmd (char *cmd, int tty);
5173
5174 int get_and_display_threadinfo (threadref *ref);
5175
5176 static void threadinfo_test_cmd (char *cmd, int tty);
5177
5178 static int thread_display_step (threadref *ref, void *context);
5179
5180 static void threadlist_update_test_cmd (char *cmd, int tty);
5181
5182 static void init_remote_threadtests (void);
5183
5184 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
5185
5186 static void
5187 threadset_test_cmd (char *cmd, int tty)
5188 {
5189 int sample_thread = SAMPLE_THREAD;
5190
5191 printf_filtered (_("Remote threadset test\n"));
5192 set_thread (sample_thread, 1);
5193 }
5194
5195
5196 static void
5197 threadalive_test (char *cmd, int tty)
5198 {
5199 int sample_thread = SAMPLE_THREAD;
5200
5201 if (remote_thread_alive (pid_to_ptid (sample_thread)))
5202 printf_filtered ("PASS: Thread alive test\n");
5203 else
5204 printf_filtered ("FAIL: Thread alive test\n");
5205 }
5206
5207 void output_threadid (char *title, threadref *ref);
5208
5209 void
5210 output_threadid (char *title, threadref *ref)
5211 {
5212 char hexid[20];
5213
5214 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
5215 hexid[16] = 0;
5216 printf_filtered ("%s %s\n", title, (&hexid[0]));
5217 }
5218
5219 static void
5220 threadlist_test_cmd (char *cmd, int tty)
5221 {
5222 int startflag = 1;
5223 threadref nextthread;
5224 int done, result_count;
5225 threadref threadlist[3];
5226
5227 printf_filtered ("Remote Threadlist test\n");
5228 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
5229 &result_count, &threadlist[0]))
5230 printf_filtered ("FAIL: threadlist test\n");
5231 else
5232 {
5233 threadref *scan = threadlist;
5234 threadref *limit = scan + result_count;
5235
5236 while (scan < limit)
5237 output_threadid (" thread ", scan++);
5238 }
5239 }
5240
5241 void
5242 display_thread_info (struct gdb_ext_thread_info *info)
5243 {
5244 output_threadid ("Threadid: ", &info->threadid);
5245 printf_filtered ("Name: %s\n ", info->shortname);
5246 printf_filtered ("State: %s\n", info->display);
5247 printf_filtered ("other: %s\n\n", info->more_display);
5248 }
5249
5250 int
5251 get_and_display_threadinfo (threadref *ref)
5252 {
5253 int result;
5254 int set;
5255 struct gdb_ext_thread_info threadinfo;
5256
5257 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
5258 | TAG_MOREDISPLAY | TAG_DISPLAY;
5259 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
5260 display_thread_info (&threadinfo);
5261 return result;
5262 }
5263
5264 static void
5265 threadinfo_test_cmd (char *cmd, int tty)
5266 {
5267 int athread = SAMPLE_THREAD;
5268 threadref thread;
5269 int set;
5270
5271 int_to_threadref (&thread, athread);
5272 printf_filtered ("Remote Threadinfo test\n");
5273 if (!get_and_display_threadinfo (&thread))
5274 printf_filtered ("FAIL cannot get thread info\n");
5275 }
5276
5277 static int
5278 thread_display_step (threadref *ref, void *context)
5279 {
5280 /* output_threadid(" threadstep ",ref); *//* simple test */
5281 return get_and_display_threadinfo (ref);
5282 }
5283
5284 static void
5285 threadlist_update_test_cmd (char *cmd, int tty)
5286 {
5287 printf_filtered ("Remote Threadlist update test\n");
5288 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
5289 }
5290
5291 static void
5292 init_remote_threadtests (void)
5293 {
5294 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
5295 Fetch and print the remote list of thread identifiers, one pkt only"));
5296 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
5297 _("Fetch and display info about one thread"));
5298 add_com ("tset", class_obscure, threadset_test_cmd,
5299 _("Test setting to a different thread"));
5300 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
5301 _("Iterate through updating all remote thread info"));
5302 add_com ("talive", class_obscure, threadalive_test,
5303 _(" Remote thread alive test "));
5304 }
5305
5306 #endif /* 0 */
5307
5308 /* Convert a thread ID to a string. Returns the string in a static
5309 buffer. */
5310
5311 static char *
5312 remote_pid_to_str (ptid_t ptid)
5313 {
5314 static char buf[30];
5315
5316 sprintf (buf, "Thread %d", PIDGET (ptid));
5317 return buf;
5318 }
5319
5320 static void
5321 init_remote_ops (void)
5322 {
5323 remote_ops.to_shortname = "remote";
5324 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
5325 remote_ops.to_doc =
5326 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5327 Specify the serial device it is connected to\n\
5328 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
5329 remote_ops.to_open = remote_open;
5330 remote_ops.to_close = remote_close;
5331 remote_ops.to_detach = remote_detach;
5332 remote_ops.to_disconnect = remote_disconnect;
5333 remote_ops.to_resume = remote_resume;
5334 remote_ops.to_wait = remote_wait;
5335 remote_ops.to_fetch_registers = remote_fetch_registers;
5336 remote_ops.to_store_registers = remote_store_registers;
5337 remote_ops.to_prepare_to_store = remote_prepare_to_store;
5338 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
5339 remote_ops.to_files_info = remote_files_info;
5340 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
5341 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
5342 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
5343 remote_ops.to_stopped_data_address = remote_stopped_data_address;
5344 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
5345 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
5346 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
5347 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
5348 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
5349 remote_ops.to_kill = remote_kill;
5350 remote_ops.to_load = generic_load;
5351 remote_ops.to_mourn_inferior = remote_mourn;
5352 remote_ops.to_thread_alive = remote_thread_alive;
5353 remote_ops.to_find_new_threads = remote_threads_info;
5354 remote_ops.to_pid_to_str = remote_pid_to_str;
5355 remote_ops.to_extra_thread_info = remote_threads_extra_info;
5356 remote_ops.to_stop = remote_stop;
5357 remote_ops.to_xfer_partial = remote_xfer_partial;
5358 remote_ops.to_rcmd = remote_rcmd;
5359 remote_ops.to_stratum = process_stratum;
5360 remote_ops.to_has_all_memory = 1;
5361 remote_ops.to_has_memory = 1;
5362 remote_ops.to_has_stack = 1;
5363 remote_ops.to_has_registers = 1;
5364 remote_ops.to_has_execution = 1;
5365 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
5366 remote_ops.to_magic = OPS_MAGIC;
5367 }
5368
5369 /* Set up the extended remote vector by making a copy of the standard
5370 remote vector and adding to it. */
5371
5372 static void
5373 init_extended_remote_ops (void)
5374 {
5375 extended_remote_ops = remote_ops;
5376
5377 extended_remote_ops.to_shortname = "extended-remote";
5378 extended_remote_ops.to_longname =
5379 "Extended remote serial target in gdb-specific protocol";
5380 extended_remote_ops.to_doc =
5381 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5382 Specify the serial device it is connected to (e.g. /dev/ttya).",
5383 extended_remote_ops.to_open = extended_remote_open;
5384 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
5385 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
5386 }
5387
5388 static int
5389 remote_can_async_p (void)
5390 {
5391 /* We're async whenever the serial device is. */
5392 return (current_target.to_async_mask_value) && serial_can_async_p (remote_desc);
5393 }
5394
5395 static int
5396 remote_is_async_p (void)
5397 {
5398 /* We're async whenever the serial device is. */
5399 return (current_target.to_async_mask_value) && serial_is_async_p (remote_desc);
5400 }
5401
5402 /* Pass the SERIAL event on and up to the client. One day this code
5403 will be able to delay notifying the client of an event until the
5404 point where an entire packet has been received. */
5405
5406 static void (*async_client_callback) (enum inferior_event_type event_type,
5407 void *context);
5408 static void *async_client_context;
5409 static serial_event_ftype remote_async_serial_handler;
5410
5411 static void
5412 remote_async_serial_handler (struct serial *scb, void *context)
5413 {
5414 /* Don't propogate error information up to the client. Instead let
5415 the client find out about the error by querying the target. */
5416 async_client_callback (INF_REG_EVENT, async_client_context);
5417 }
5418
5419 static void
5420 remote_async (void (*callback) (enum inferior_event_type event_type,
5421 void *context), void *context)
5422 {
5423 if (current_target.to_async_mask_value == 0)
5424 internal_error (__FILE__, __LINE__,
5425 _("Calling remote_async when async is masked"));
5426
5427 if (callback != NULL)
5428 {
5429 serial_async (remote_desc, remote_async_serial_handler, NULL);
5430 async_client_callback = callback;
5431 async_client_context = context;
5432 }
5433 else
5434 serial_async (remote_desc, NULL, NULL);
5435 }
5436
5437 /* Target async and target extended-async.
5438
5439 This are temporary targets, until it is all tested. Eventually
5440 async support will be incorporated int the usual 'remote'
5441 target. */
5442
5443 static void
5444 init_remote_async_ops (void)
5445 {
5446 remote_async_ops.to_shortname = "async";
5447 remote_async_ops.to_longname =
5448 "Remote serial target in async version of the gdb-specific protocol";
5449 remote_async_ops.to_doc =
5450 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5451 Specify the serial device it is connected to (e.g. /dev/ttya).";
5452 remote_async_ops.to_open = remote_async_open;
5453 remote_async_ops.to_close = remote_close;
5454 remote_async_ops.to_detach = remote_detach;
5455 remote_async_ops.to_disconnect = remote_disconnect;
5456 remote_async_ops.to_resume = remote_async_resume;
5457 remote_async_ops.to_wait = remote_async_wait;
5458 remote_async_ops.to_fetch_registers = remote_fetch_registers;
5459 remote_async_ops.to_store_registers = remote_store_registers;
5460 remote_async_ops.to_prepare_to_store = remote_prepare_to_store;
5461 remote_async_ops.deprecated_xfer_memory = remote_xfer_memory;
5462 remote_async_ops.to_files_info = remote_files_info;
5463 remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint;
5464 remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint;
5465 remote_async_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
5466 remote_async_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
5467 remote_async_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
5468 remote_async_ops.to_insert_watchpoint = remote_insert_watchpoint;
5469 remote_async_ops.to_remove_watchpoint = remote_remove_watchpoint;
5470 remote_async_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
5471 remote_async_ops.to_stopped_data_address = remote_stopped_data_address;
5472 remote_async_ops.to_terminal_inferior = remote_async_terminal_inferior;
5473 remote_async_ops.to_terminal_ours = remote_async_terminal_ours;
5474 remote_async_ops.to_kill = remote_async_kill;
5475 remote_async_ops.to_load = generic_load;
5476 remote_async_ops.to_mourn_inferior = remote_async_mourn;
5477 remote_async_ops.to_thread_alive = remote_thread_alive;
5478 remote_async_ops.to_find_new_threads = remote_threads_info;
5479 remote_async_ops.to_pid_to_str = remote_pid_to_str;
5480 remote_async_ops.to_extra_thread_info = remote_threads_extra_info;
5481 remote_async_ops.to_stop = remote_stop;
5482 remote_async_ops.to_xfer_partial = remote_xfer_partial;
5483 remote_async_ops.to_rcmd = remote_rcmd;
5484 remote_async_ops.to_stratum = process_stratum;
5485 remote_async_ops.to_has_all_memory = 1;
5486 remote_async_ops.to_has_memory = 1;
5487 remote_async_ops.to_has_stack = 1;
5488 remote_async_ops.to_has_registers = 1;
5489 remote_async_ops.to_has_execution = 1;
5490 remote_async_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
5491 remote_async_ops.to_can_async_p = remote_can_async_p;
5492 remote_async_ops.to_is_async_p = remote_is_async_p;
5493 remote_async_ops.to_async = remote_async;
5494 remote_async_ops.to_async_mask_value = 1;
5495 remote_async_ops.to_magic = OPS_MAGIC;
5496 }
5497
5498 /* Set up the async extended remote vector by making a copy of the standard
5499 remote vector and adding to it. */
5500
5501 static void
5502 init_extended_async_remote_ops (void)
5503 {
5504 extended_async_remote_ops = remote_async_ops;
5505
5506 extended_async_remote_ops.to_shortname = "extended-async";
5507 extended_async_remote_ops.to_longname =
5508 "Extended remote serial target in async gdb-specific protocol";
5509 extended_async_remote_ops.to_doc =
5510 "Use a remote computer via a serial line, using an async gdb-specific protocol.\n\
5511 Specify the serial device it is connected to (e.g. /dev/ttya).",
5512 extended_async_remote_ops.to_open = extended_remote_async_open;
5513 extended_async_remote_ops.to_create_inferior = extended_remote_async_create_inferior;
5514 extended_async_remote_ops.to_mourn_inferior = extended_remote_mourn;
5515 }
5516
5517 static void
5518 set_remote_cmd (char *args, int from_tty)
5519 {
5520 }
5521
5522 static void
5523 show_remote_cmd (char *args, int from_tty)
5524 {
5525 /* FIXME: cagney/2002-06-15: This function should iterate over
5526 remote_show_cmdlist for a list of sub commands to show. */
5527 show_remote_protocol_Z_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5528 show_remote_protocol_P_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5529 show_remote_protocol_p_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5530 show_remote_protocol_qSymbol_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5531 show_remote_protocol_vcont_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5532 show_remote_protocol_binary_download_cmd (gdb_stdout, from_tty, NULL, NULL);
5533 show_remote_protocol_qPart_auxv_packet_cmd (gdb_stdout, from_tty, NULL, NULL);
5534 }
5535
5536 static void
5537 build_remote_gdbarch_data (void)
5538 {
5539 remote_address_size = TARGET_ADDR_BIT;
5540 }
5541
5542 /* Saved pointer to previous owner of the new_objfile event. */
5543 static void (*remote_new_objfile_chain) (struct objfile *);
5544
5545 /* Function to be called whenever a new objfile (shlib) is detected. */
5546 static void
5547 remote_new_objfile (struct objfile *objfile)
5548 {
5549 if (remote_desc != 0) /* Have a remote connection. */
5550 {
5551 remote_check_symbols (objfile);
5552 }
5553 /* Call predecessor on chain, if any. */
5554 if (remote_new_objfile_chain != 0 &&
5555 remote_desc == 0)
5556 remote_new_objfile_chain (objfile);
5557 }
5558
5559 void
5560 _initialize_remote (void)
5561 {
5562 static struct cmd_list_element *remote_set_cmdlist;
5563 static struct cmd_list_element *remote_show_cmdlist;
5564 struct cmd_list_element *tmpcmd;
5565
5566 /* architecture specific data */
5567 remote_gdbarch_data_handle =
5568 gdbarch_data_register_post_init (init_remote_state);
5569
5570 /* Old tacky stuff. NOTE: This comes after the remote protocol so
5571 that the remote protocol has been initialized. */
5572 DEPRECATED_REGISTER_GDBARCH_SWAP (remote_address_size);
5573 deprecated_register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data);
5574
5575 init_remote_ops ();
5576 add_target (&remote_ops);
5577
5578 init_extended_remote_ops ();
5579 add_target (&extended_remote_ops);
5580
5581 init_remote_async_ops ();
5582 add_target (&remote_async_ops);
5583
5584 init_extended_async_remote_ops ();
5585 add_target (&extended_async_remote_ops);
5586
5587 /* Hook into new objfile notification. */
5588 remote_new_objfile_chain = deprecated_target_new_objfile_hook;
5589 deprecated_target_new_objfile_hook = remote_new_objfile;
5590
5591 #if 0
5592 init_remote_threadtests ();
5593 #endif
5594
5595 /* set/show remote ... */
5596
5597 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5598 Remote protocol specific variables\n\
5599 Configure various remote-protocol specific variables such as\n\
5600 the packets being used"),
5601 &remote_set_cmdlist, "set remote ",
5602 0 /* allow-unknown */, &setlist);
5603 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5604 Remote protocol specific variables\n\
5605 Configure various remote-protocol specific variables such as\n\
5606 the packets being used"),
5607 &remote_show_cmdlist, "show remote ",
5608 0 /* allow-unknown */, &showlist);
5609
5610 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
5611 Compare section data on target to the exec file.\n\
5612 Argument is a single section name (default: all loaded sections)."),
5613 &cmdlist);
5614
5615 add_cmd ("packet", class_maintenance, packet_command, _("\
5616 Send an arbitrary packet to a remote target.\n\
5617 maintenance packet TEXT\n\
5618 If GDB is talking to an inferior via the GDB serial protocol, then\n\
5619 this command sends the string TEXT to the inferior, and displays the\n\
5620 response packet. GDB supplies the initial `$' character, and the\n\
5621 terminating `#' character and checksum."),
5622 &maintenancelist);
5623
5624 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
5625 Set whether to send break if interrupted."), _("\
5626 Show whether to send break if interrupted."), _("\
5627 If set, a break, instead of a cntrl-c, is sent to the remote target."),
5628 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
5629 &setlist, &showlist);
5630
5631 /* Install commands for configuring memory read/write packets. */
5632
5633 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
5634 Set the maximum number of bytes per memory write packet (deprecated)."),
5635 &setlist);
5636 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
5637 Show the maximum number of bytes per memory write packet (deprecated)."),
5638 &showlist);
5639 add_cmd ("memory-write-packet-size", no_class,
5640 set_memory_write_packet_size, _("\
5641 Set the maximum number of bytes per memory-write packet.\n\
5642 Specify the number of bytes in a packet or 0 (zero) for the\n\
5643 default packet size. The actual limit is further reduced\n\
5644 dependent on the target. Specify ``fixed'' to disable the\n\
5645 further restriction and ``limit'' to enable that restriction."),
5646 &remote_set_cmdlist);
5647 add_cmd ("memory-read-packet-size", no_class,
5648 set_memory_read_packet_size, _("\
5649 Set the maximum number of bytes per memory-read packet.\n\
5650 Specify the number of bytes in a packet or 0 (zero) for the\n\
5651 default packet size. The actual limit is further reduced\n\
5652 dependent on the target. Specify ``fixed'' to disable the\n\
5653 further restriction and ``limit'' to enable that restriction."),
5654 &remote_set_cmdlist);
5655 add_cmd ("memory-write-packet-size", no_class,
5656 show_memory_write_packet_size,
5657 _("Show the maximum number of bytes per memory-write packet."),
5658 &remote_show_cmdlist);
5659 add_cmd ("memory-read-packet-size", no_class,
5660 show_memory_read_packet_size,
5661 _("Show the maximum number of bytes per memory-read packet."),
5662 &remote_show_cmdlist);
5663
5664 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
5665 &remote_hw_watchpoint_limit, _("\
5666 Set the maximum number of target hardware watchpoints."), _("\
5667 Show the maximum number of target hardware watchpoints."), _("\
5668 Specify a negative limit for unlimited."),
5669 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
5670 &remote_set_cmdlist, &remote_show_cmdlist);
5671 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
5672 &remote_hw_breakpoint_limit, _("\
5673 Set the maximum number of target hardware breakpoints."), _("\
5674 Show the maximum number of target hardware breakpoints."), _("\
5675 Specify a negative limit for unlimited."),
5676 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
5677 &remote_set_cmdlist, &remote_show_cmdlist);
5678
5679 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
5680 &remote_address_size, _("\
5681 Set the maximum size of the address (in bits) in a memory packet."), _("\
5682 Show the maximum size of the address (in bits) in a memory packet."), NULL,
5683 NULL,
5684 NULL, /* FIXME: i18n: */
5685 &setlist, &showlist);
5686
5687 add_packet_config_cmd (&remote_protocol_binary_download,
5688 "X", "binary-download",
5689 set_remote_protocol_binary_download_cmd,
5690 show_remote_protocol_binary_download_cmd,
5691 &remote_set_cmdlist, &remote_show_cmdlist,
5692 1);
5693
5694 add_packet_config_cmd (&remote_protocol_vcont,
5695 "vCont", "verbose-resume",
5696 set_remote_protocol_vcont_packet_cmd,
5697 show_remote_protocol_vcont_packet_cmd,
5698 &remote_set_cmdlist, &remote_show_cmdlist,
5699 0);
5700
5701 add_packet_config_cmd (&remote_protocol_qSymbol,
5702 "qSymbol", "symbol-lookup",
5703 set_remote_protocol_qSymbol_packet_cmd,
5704 show_remote_protocol_qSymbol_packet_cmd,
5705 &remote_set_cmdlist, &remote_show_cmdlist,
5706 0);
5707
5708 add_packet_config_cmd (&remote_protocol_P,
5709 "P", "set-register",
5710 set_remote_protocol_P_packet_cmd,
5711 show_remote_protocol_P_packet_cmd,
5712 &remote_set_cmdlist, &remote_show_cmdlist,
5713 1);
5714
5715 add_packet_config_cmd (&remote_protocol_p,
5716 "p", "fetch-register",
5717 set_remote_protocol_p_packet_cmd,
5718 show_remote_protocol_p_packet_cmd,
5719 &remote_set_cmdlist, &remote_show_cmdlist,
5720 1);
5721
5722 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP],
5723 "Z0", "software-breakpoint",
5724 set_remote_protocol_Z_software_bp_packet_cmd,
5725 show_remote_protocol_Z_software_bp_packet_cmd,
5726 &remote_set_cmdlist, &remote_show_cmdlist,
5727 0);
5728
5729 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP],
5730 "Z1", "hardware-breakpoint",
5731 set_remote_protocol_Z_hardware_bp_packet_cmd,
5732 show_remote_protocol_Z_hardware_bp_packet_cmd,
5733 &remote_set_cmdlist, &remote_show_cmdlist,
5734 0);
5735
5736 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP],
5737 "Z2", "write-watchpoint",
5738 set_remote_protocol_Z_write_wp_packet_cmd,
5739 show_remote_protocol_Z_write_wp_packet_cmd,
5740 &remote_set_cmdlist, &remote_show_cmdlist,
5741 0);
5742
5743 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP],
5744 "Z3", "read-watchpoint",
5745 set_remote_protocol_Z_read_wp_packet_cmd,
5746 show_remote_protocol_Z_read_wp_packet_cmd,
5747 &remote_set_cmdlist, &remote_show_cmdlist,
5748 0);
5749
5750 add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP],
5751 "Z4", "access-watchpoint",
5752 set_remote_protocol_Z_access_wp_packet_cmd,
5753 show_remote_protocol_Z_access_wp_packet_cmd,
5754 &remote_set_cmdlist, &remote_show_cmdlist,
5755 0);
5756
5757 add_packet_config_cmd (&remote_protocol_qPart_auxv,
5758 "qPart_auxv", "read-aux-vector",
5759 set_remote_protocol_qPart_auxv_packet_cmd,
5760 show_remote_protocol_qPart_auxv_packet_cmd,
5761 &remote_set_cmdlist, &remote_show_cmdlist,
5762 0);
5763
5764 /* Keep the old ``set remote Z-packet ...'' working. */
5765 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
5766 &remote_Z_packet_detect, _("\
5767 Set use of remote protocol `Z' packets"), _("\
5768 Show use of remote protocol `Z' packets "), _("\
5769 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
5770 packets."),
5771 set_remote_protocol_Z_packet_cmd,
5772 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
5773 &remote_set_cmdlist, &remote_show_cmdlist);
5774
5775 /* Eventually initialize fileio. See fileio.c */
5776 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
5777 }
This page took 0.156929 seconds and 4 git commands to generate.