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