Get rid of the global "base_target" and use "find_target_beneath"
[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, 1997,
4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
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 3 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, see <http://www.gnu.org/licenses/>. */
21
22 /* See the GDB User Guide for details of the GDB remote protocol. */
23
24 #include "defs.h"
25 #include "gdb_string.h"
26 #include <ctype.h>
27 #include <fcntl.h>
28 #include "inferior.h"
29 #include "bfd.h"
30 #include "symfile.h"
31 #include "exceptions.h"
32 #include "target.h"
33 /*#include "terminal.h" */
34 #include "gdbcmd.h"
35 #include "objfiles.h"
36 #include "gdb-stabs.h"
37 #include "gdbthread.h"
38 #include "remote.h"
39 #include "regcache.h"
40 #include "value.h"
41 #include "gdb_assert.h"
42 #include "observer.h"
43 #include "solib.h"
44 #include "cli/cli-decode.h"
45 #include "cli/cli-setshow.h"
46 #include "target-descriptions.h"
47
48 #include <ctype.h>
49 #include <sys/time.h>
50
51 #include "event-loop.h"
52 #include "event-top.h"
53 #include "inf-loop.h"
54
55 #include <signal.h>
56 #include "serial.h"
57
58 #include "gdbcore.h" /* for exec_bfd */
59
60 #include "remote-fileio.h"
61 #include "gdb/fileio.h"
62 #include "gdb_stat.h"
63
64 #include "memory-map.h"
65
66 /* The size to align memory write packets, when practical. The protocol
67 does not guarantee any alignment, and gdb will generate short
68 writes and unaligned writes, but even as a best-effort attempt this
69 can improve bulk transfers. For instance, if a write is misaligned
70 relative to the target's data bus, the stub may need to make an extra
71 round trip fetching data from the target. This doesn't make a
72 huge difference, but it's easy to do, so we try to be helpful.
73
74 The alignment chosen is arbitrary; usually data bus width is
75 important here, not the possibly larger cache line size. */
76 enum { REMOTE_ALIGN_WRITES = 16 };
77
78 /* Prototypes for local functions. */
79 static void cleanup_sigint_signal_handler (void *dummy);
80 static void initialize_sigint_signal_handler (void);
81 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
82 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
83 int forever);
84
85 static void handle_remote_sigint (int);
86 static void handle_remote_sigint_twice (int);
87 static void async_remote_interrupt (gdb_client_data);
88 void async_remote_interrupt_twice (gdb_client_data);
89
90 static void remote_files_info (struct target_ops *ignore);
91
92 static void remote_prepare_to_store (struct regcache *regcache);
93
94 static void remote_open (char *name, int from_tty);
95
96 static void extended_remote_open (char *name, int from_tty);
97
98 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
99
100 static void remote_close (int quitting);
101
102 static void remote_mourn (struct target_ops *ops);
103
104 static void extended_remote_restart (void);
105
106 static void extended_remote_mourn (struct target_ops *);
107
108 static void remote_mourn_1 (struct target_ops *);
109
110 static void remote_send (char **buf, long *sizeof_buf_p);
111
112 static int readchar (int timeout);
113
114 static void remote_kill (void);
115
116 static int tohex (int nib);
117
118 static int remote_can_async_p (void);
119
120 static int remote_is_async_p (void);
121
122 static void remote_async (void (*callback) (enum inferior_event_type event_type,
123 void *context), void *context);
124
125 static int remote_async_mask (int new_mask);
126
127 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
128
129 static void remote_interrupt (int signo);
130
131 static void remote_interrupt_twice (int signo);
132
133 static void interrupt_query (void);
134
135 static void set_general_thread (struct ptid ptid);
136 static void set_continue_thread (struct ptid ptid);
137
138 static void get_offsets (void);
139
140 static void skip_frame (void);
141
142 static long read_frame (char **buf_p, long *sizeof_buf);
143
144 static int hexnumlen (ULONGEST num);
145
146 static void init_remote_ops (void);
147
148 static void init_extended_remote_ops (void);
149
150 static void remote_stop (ptid_t);
151
152 static int ishex (int ch, int *val);
153
154 static int stubhex (int ch);
155
156 static int hexnumstr (char *, ULONGEST);
157
158 static int hexnumnstr (char *, ULONGEST, int);
159
160 static CORE_ADDR remote_address_masked (CORE_ADDR);
161
162 static void print_packet (char *);
163
164 static unsigned long crc32 (unsigned char *, int, unsigned int);
165
166 static void compare_sections_command (char *, int);
167
168 static void packet_command (char *, int);
169
170 static int stub_unpack_int (char *buff, int fieldlength);
171
172 static ptid_t remote_current_thread (ptid_t oldptid);
173
174 static void remote_find_new_threads (void);
175
176 static void record_currthread (ptid_t currthread);
177
178 static int fromhex (int a);
179
180 static int hex2bin (const char *hex, gdb_byte *bin, int count);
181
182 static int bin2hex (const gdb_byte *bin, char *hex, int count);
183
184 static int putpkt_binary (char *buf, int cnt);
185
186 static void check_binary_download (CORE_ADDR addr);
187
188 struct packet_config;
189
190 static void show_packet_config_cmd (struct packet_config *config);
191
192 static void update_packet_config (struct packet_config *config);
193
194 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
195 struct cmd_list_element *c);
196
197 static void show_remote_protocol_packet_cmd (struct ui_file *file,
198 int from_tty,
199 struct cmd_list_element *c,
200 const char *value);
201
202 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
203 static ptid_t read_ptid (char *buf, char **obuf);
204
205 static void remote_query_supported (void);
206
207 static void remote_check_symbols (struct objfile *objfile);
208
209 void _initialize_remote (void);
210
211 struct stop_reply;
212 static struct stop_reply *stop_reply_xmalloc (void);
213 static void stop_reply_xfree (struct stop_reply *);
214 static void do_stop_reply_xfree (void *arg);
215 static void remote_parse_stop_reply (char *buf, struct stop_reply *);
216 static void push_stop_reply (struct stop_reply *);
217 static void remote_get_pending_stop_replies (void);
218 static void discard_pending_stop_replies (int pid);
219 static int peek_stop_reply (ptid_t ptid);
220
221 static void remote_async_inferior_event_handler (gdb_client_data);
222 static void remote_async_get_pending_events_handler (gdb_client_data);
223
224 static void remote_terminal_ours (void);
225
226 static int remote_read_description_p (struct target_ops *target);
227
228 /* The non-stop remote protocol provisions for one pending stop reply.
229 This is where we keep it until it is acknowledged. */
230
231 static struct stop_reply *pending_stop_reply = NULL;
232
233 /* For "remote". */
234
235 static struct cmd_list_element *remote_cmdlist;
236
237 /* For "set remote" and "show remote". */
238
239 static struct cmd_list_element *remote_set_cmdlist;
240 static struct cmd_list_element *remote_show_cmdlist;
241
242 /* Description of the remote protocol state for the currently
243 connected target. This is per-target state, and independent of the
244 selected architecture. */
245
246 struct remote_state
247 {
248 /* A buffer to use for incoming packets, and its current size. The
249 buffer is grown dynamically for larger incoming packets.
250 Outgoing packets may also be constructed in this buffer.
251 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
252 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
253 packets. */
254 char *buf;
255 long buf_size;
256
257 /* If we negotiated packet size explicitly (and thus can bypass
258 heuristics for the largest packet size that will not overflow
259 a buffer in the stub), this will be set to that packet size.
260 Otherwise zero, meaning to use the guessed size. */
261 long explicit_packet_size;
262
263 /* remote_wait is normally called when the target is running and
264 waits for a stop reply packet. But sometimes we need to call it
265 when the target is already stopped. We can send a "?" packet
266 and have remote_wait read the response. Or, if we already have
267 the response, we can stash it in BUF and tell remote_wait to
268 skip calling getpkt. This flag is set when BUF contains a
269 stop reply packet and the target is not waiting. */
270 int cached_wait_status;
271
272 /* True, if in no ack mode. That is, neither GDB nor the stub will
273 expect acks from each other. The connection is assumed to be
274 reliable. */
275 int noack_mode;
276
277 /* True if we're connected in extended remote mode. */
278 int extended;
279
280 /* True if the stub reported support for multi-process
281 extensions. */
282 int multi_process_aware;
283
284 /* True if we resumed the target and we're waiting for the target to
285 stop. In the mean time, we can't start another command/query.
286 The remote server wouldn't be ready to process it, so we'd
287 timeout waiting for a reply that would never come and eventually
288 we'd close the connection. This can happen in asynchronous mode
289 because we allow GDB commands while the target is running. */
290 int waiting_for_stop_reply;
291
292 /* True if the stub reports support for non-stop mode. */
293 int non_stop_aware;
294
295 /* True if the stub reports support for vCont;t. */
296 int support_vCont_t;
297 };
298
299 /* Returns true if the multi-process extensions are in effect. */
300 static int
301 remote_multi_process_p (struct remote_state *rs)
302 {
303 return rs->extended && rs->multi_process_aware;
304 }
305
306 /* This data could be associated with a target, but we do not always
307 have access to the current target when we need it, so for now it is
308 static. This will be fine for as long as only one target is in use
309 at a time. */
310 static struct remote_state remote_state;
311
312 static struct remote_state *
313 get_remote_state_raw (void)
314 {
315 return &remote_state;
316 }
317
318 /* Description of the remote protocol for a given architecture. */
319
320 struct packet_reg
321 {
322 long offset; /* Offset into G packet. */
323 long regnum; /* GDB's internal register number. */
324 LONGEST pnum; /* Remote protocol register number. */
325 int in_g_packet; /* Always part of G packet. */
326 /* long size in bytes; == register_size (target_gdbarch, regnum);
327 at present. */
328 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
329 at present. */
330 };
331
332 struct remote_arch_state
333 {
334 /* Description of the remote protocol registers. */
335 long sizeof_g_packet;
336
337 /* Description of the remote protocol registers indexed by REGNUM
338 (making an array gdbarch_num_regs in size). */
339 struct packet_reg *regs;
340
341 /* This is the size (in chars) of the first response to the ``g''
342 packet. It is used as a heuristic when determining the maximum
343 size of memory-read and memory-write packets. A target will
344 typically only reserve a buffer large enough to hold the ``g''
345 packet. The size does not include packet overhead (headers and
346 trailers). */
347 long actual_register_packet_size;
348
349 /* This is the maximum size (in chars) of a non read/write packet.
350 It is also used as a cap on the size of read/write packets. */
351 long remote_packet_size;
352 };
353
354
355 /* Handle for retreving the remote protocol data from gdbarch. */
356 static struct gdbarch_data *remote_gdbarch_data_handle;
357
358 static struct remote_arch_state *
359 get_remote_arch_state (void)
360 {
361 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
362 }
363
364 /* Fetch the global remote target state. */
365
366 static struct remote_state *
367 get_remote_state (void)
368 {
369 /* Make sure that the remote architecture state has been
370 initialized, because doing so might reallocate rs->buf. Any
371 function which calls getpkt also needs to be mindful of changes
372 to rs->buf, but this call limits the number of places which run
373 into trouble. */
374 get_remote_arch_state ();
375
376 return get_remote_state_raw ();
377 }
378
379 static int
380 compare_pnums (const void *lhs_, const void *rhs_)
381 {
382 const struct packet_reg * const *lhs = lhs_;
383 const struct packet_reg * const *rhs = rhs_;
384
385 if ((*lhs)->pnum < (*rhs)->pnum)
386 return -1;
387 else if ((*lhs)->pnum == (*rhs)->pnum)
388 return 0;
389 else
390 return 1;
391 }
392
393 static void *
394 init_remote_state (struct gdbarch *gdbarch)
395 {
396 int regnum, num_remote_regs, offset;
397 struct remote_state *rs = get_remote_state_raw ();
398 struct remote_arch_state *rsa;
399 struct packet_reg **remote_regs;
400
401 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
402
403 /* Use the architecture to build a regnum<->pnum table, which will be
404 1:1 unless a feature set specifies otherwise. */
405 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
406 gdbarch_num_regs (gdbarch),
407 struct packet_reg);
408 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
409 {
410 struct packet_reg *r = &rsa->regs[regnum];
411
412 if (register_size (gdbarch, regnum) == 0)
413 /* Do not try to fetch zero-sized (placeholder) registers. */
414 r->pnum = -1;
415 else
416 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
417
418 r->regnum = regnum;
419 }
420
421 /* Define the g/G packet format as the contents of each register
422 with a remote protocol number, in order of ascending protocol
423 number. */
424
425 remote_regs = alloca (gdbarch_num_regs (gdbarch)
426 * sizeof (struct packet_reg *));
427 for (num_remote_regs = 0, regnum = 0;
428 regnum < gdbarch_num_regs (gdbarch);
429 regnum++)
430 if (rsa->regs[regnum].pnum != -1)
431 remote_regs[num_remote_regs++] = &rsa->regs[regnum];
432
433 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
434 compare_pnums);
435
436 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
437 {
438 remote_regs[regnum]->in_g_packet = 1;
439 remote_regs[regnum]->offset = offset;
440 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
441 }
442
443 /* Record the maximum possible size of the g packet - it may turn out
444 to be smaller. */
445 rsa->sizeof_g_packet = offset;
446
447 /* Default maximum number of characters in a packet body. Many
448 remote stubs have a hardwired buffer size of 400 bytes
449 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
450 as the maximum packet-size to ensure that the packet and an extra
451 NUL character can always fit in the buffer. This stops GDB
452 trashing stubs that try to squeeze an extra NUL into what is
453 already a full buffer (As of 1999-12-04 that was most stubs). */
454 rsa->remote_packet_size = 400 - 1;
455
456 /* This one is filled in when a ``g'' packet is received. */
457 rsa->actual_register_packet_size = 0;
458
459 /* Should rsa->sizeof_g_packet needs more space than the
460 default, adjust the size accordingly. Remember that each byte is
461 encoded as two characters. 32 is the overhead for the packet
462 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
463 (``$NN:G...#NN'') is a better guess, the below has been padded a
464 little. */
465 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
466 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
467
468 /* Make sure that the packet buffer is plenty big enough for
469 this architecture. */
470 if (rs->buf_size < rsa->remote_packet_size)
471 {
472 rs->buf_size = 2 * rsa->remote_packet_size;
473 rs->buf = xrealloc (rs->buf, rs->buf_size);
474 }
475
476 return rsa;
477 }
478
479 /* Return the current allowed size of a remote packet. This is
480 inferred from the current architecture, and should be used to
481 limit the length of outgoing packets. */
482 static long
483 get_remote_packet_size (void)
484 {
485 struct remote_state *rs = get_remote_state ();
486 struct remote_arch_state *rsa = get_remote_arch_state ();
487
488 if (rs->explicit_packet_size)
489 return rs->explicit_packet_size;
490
491 return rsa->remote_packet_size;
492 }
493
494 static struct packet_reg *
495 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
496 {
497 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
498 return NULL;
499 else
500 {
501 struct packet_reg *r = &rsa->regs[regnum];
502 gdb_assert (r->regnum == regnum);
503 return r;
504 }
505 }
506
507 static struct packet_reg *
508 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
509 {
510 int i;
511 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
512 {
513 struct packet_reg *r = &rsa->regs[i];
514 if (r->pnum == pnum)
515 return r;
516 }
517 return NULL;
518 }
519
520 /* FIXME: graces/2002-08-08: These variables should eventually be
521 bound to an instance of the target object (as in gdbarch-tdep()),
522 when such a thing exists. */
523
524 /* This is set to the data address of the access causing the target
525 to stop for a watchpoint. */
526 static CORE_ADDR remote_watch_data_address;
527
528 /* This is non-zero if target stopped for a watchpoint. */
529 static int remote_stopped_by_watchpoint_p;
530
531 static struct target_ops remote_ops;
532
533 static struct target_ops extended_remote_ops;
534
535 static int remote_async_mask_value = 1;
536
537 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
538 ``forever'' still use the normal timeout mechanism. This is
539 currently used by the ASYNC code to guarentee that target reads
540 during the initial connect always time-out. Once getpkt has been
541 modified to return a timeout indication and, in turn
542 remote_wait()/wait_for_inferior() have gained a timeout parameter
543 this can go away. */
544 static int wait_forever_enabled_p = 1;
545
546
547 /* This variable chooses whether to send a ^C or a break when the user
548 requests program interruption. Although ^C is usually what remote
549 systems expect, and that is the default here, sometimes a break is
550 preferable instead. */
551
552 static int remote_break;
553
554 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
555 remote_open knows that we don't have a file open when the program
556 starts. */
557 static struct serial *remote_desc = NULL;
558
559 /* This variable sets the number of bits in an address that are to be
560 sent in a memory ("M" or "m") packet. Normally, after stripping
561 leading zeros, the entire address would be sent. This variable
562 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
563 initial implementation of remote.c restricted the address sent in
564 memory packets to ``host::sizeof long'' bytes - (typically 32
565 bits). Consequently, for 64 bit targets, the upper 32 bits of an
566 address was never sent. Since fixing this bug may cause a break in
567 some remote targets this variable is principly provided to
568 facilitate backward compatibility. */
569
570 static int remote_address_size;
571
572 /* Temporary to track who currently owns the terminal. See
573 remote_terminal_* for more details. */
574
575 static int remote_async_terminal_ours_p;
576
577 /* The executable file to use for "run" on the remote side. */
578
579 static char *remote_exec_file = "";
580
581 \f
582 /* User configurable variables for the number of characters in a
583 memory read/write packet. MIN (rsa->remote_packet_size,
584 rsa->sizeof_g_packet) is the default. Some targets need smaller
585 values (fifo overruns, et.al.) and some users need larger values
586 (speed up transfers). The variables ``preferred_*'' (the user
587 request), ``current_*'' (what was actually set) and ``forced_*''
588 (Positive - a soft limit, negative - a hard limit). */
589
590 struct memory_packet_config
591 {
592 char *name;
593 long size;
594 int fixed_p;
595 };
596
597 /* Compute the current size of a read/write packet. Since this makes
598 use of ``actual_register_packet_size'' the computation is dynamic. */
599
600 static long
601 get_memory_packet_size (struct memory_packet_config *config)
602 {
603 struct remote_state *rs = get_remote_state ();
604 struct remote_arch_state *rsa = get_remote_arch_state ();
605
606 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
607 law?) that some hosts don't cope very well with large alloca()
608 calls. Eventually the alloca() code will be replaced by calls to
609 xmalloc() and make_cleanups() allowing this restriction to either
610 be lifted or removed. */
611 #ifndef MAX_REMOTE_PACKET_SIZE
612 #define MAX_REMOTE_PACKET_SIZE 16384
613 #endif
614 /* NOTE: 20 ensures we can write at least one byte. */
615 #ifndef MIN_REMOTE_PACKET_SIZE
616 #define MIN_REMOTE_PACKET_SIZE 20
617 #endif
618 long what_they_get;
619 if (config->fixed_p)
620 {
621 if (config->size <= 0)
622 what_they_get = MAX_REMOTE_PACKET_SIZE;
623 else
624 what_they_get = config->size;
625 }
626 else
627 {
628 what_they_get = get_remote_packet_size ();
629 /* Limit the packet to the size specified by the user. */
630 if (config->size > 0
631 && what_they_get > config->size)
632 what_they_get = config->size;
633
634 /* Limit it to the size of the targets ``g'' response unless we have
635 permission from the stub to use a larger packet size. */
636 if (rs->explicit_packet_size == 0
637 && rsa->actual_register_packet_size > 0
638 && what_they_get > rsa->actual_register_packet_size)
639 what_they_get = rsa->actual_register_packet_size;
640 }
641 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
642 what_they_get = MAX_REMOTE_PACKET_SIZE;
643 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
644 what_they_get = MIN_REMOTE_PACKET_SIZE;
645
646 /* Make sure there is room in the global buffer for this packet
647 (including its trailing NUL byte). */
648 if (rs->buf_size < what_they_get + 1)
649 {
650 rs->buf_size = 2 * what_they_get;
651 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
652 }
653
654 return what_they_get;
655 }
656
657 /* Update the size of a read/write packet. If they user wants
658 something really big then do a sanity check. */
659
660 static void
661 set_memory_packet_size (char *args, struct memory_packet_config *config)
662 {
663 int fixed_p = config->fixed_p;
664 long size = config->size;
665 if (args == NULL)
666 error (_("Argument required (integer, `fixed' or `limited')."));
667 else if (strcmp (args, "hard") == 0
668 || strcmp (args, "fixed") == 0)
669 fixed_p = 1;
670 else if (strcmp (args, "soft") == 0
671 || strcmp (args, "limit") == 0)
672 fixed_p = 0;
673 else
674 {
675 char *end;
676 size = strtoul (args, &end, 0);
677 if (args == end)
678 error (_("Invalid %s (bad syntax)."), config->name);
679 #if 0
680 /* Instead of explicitly capping the size of a packet to
681 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
682 instead allowed to set the size to something arbitrarily
683 large. */
684 if (size > MAX_REMOTE_PACKET_SIZE)
685 error (_("Invalid %s (too large)."), config->name);
686 #endif
687 }
688 /* Extra checks? */
689 if (fixed_p && !config->fixed_p)
690 {
691 if (! query (_("The target may not be able to correctly handle a %s\n"
692 "of %ld bytes. Change the packet size? "),
693 config->name, size))
694 error (_("Packet size not changed."));
695 }
696 /* Update the config. */
697 config->fixed_p = fixed_p;
698 config->size = size;
699 }
700
701 static void
702 show_memory_packet_size (struct memory_packet_config *config)
703 {
704 printf_filtered (_("The %s is %ld. "), config->name, config->size);
705 if (config->fixed_p)
706 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
707 get_memory_packet_size (config));
708 else
709 printf_filtered (_("Packets are limited to %ld bytes.\n"),
710 get_memory_packet_size (config));
711 }
712
713 static struct memory_packet_config memory_write_packet_config =
714 {
715 "memory-write-packet-size",
716 };
717
718 static void
719 set_memory_write_packet_size (char *args, int from_tty)
720 {
721 set_memory_packet_size (args, &memory_write_packet_config);
722 }
723
724 static void
725 show_memory_write_packet_size (char *args, int from_tty)
726 {
727 show_memory_packet_size (&memory_write_packet_config);
728 }
729
730 static long
731 get_memory_write_packet_size (void)
732 {
733 return get_memory_packet_size (&memory_write_packet_config);
734 }
735
736 static struct memory_packet_config memory_read_packet_config =
737 {
738 "memory-read-packet-size",
739 };
740
741 static void
742 set_memory_read_packet_size (char *args, int from_tty)
743 {
744 set_memory_packet_size (args, &memory_read_packet_config);
745 }
746
747 static void
748 show_memory_read_packet_size (char *args, int from_tty)
749 {
750 show_memory_packet_size (&memory_read_packet_config);
751 }
752
753 static long
754 get_memory_read_packet_size (void)
755 {
756 long size = get_memory_packet_size (&memory_read_packet_config);
757 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
758 extra buffer size argument before the memory read size can be
759 increased beyond this. */
760 if (size > get_remote_packet_size ())
761 size = get_remote_packet_size ();
762 return size;
763 }
764
765 \f
766 /* Generic configuration support for packets the stub optionally
767 supports. Allows the user to specify the use of the packet as well
768 as allowing GDB to auto-detect support in the remote stub. */
769
770 enum packet_support
771 {
772 PACKET_SUPPORT_UNKNOWN = 0,
773 PACKET_ENABLE,
774 PACKET_DISABLE
775 };
776
777 struct packet_config
778 {
779 const char *name;
780 const char *title;
781 enum auto_boolean detect;
782 enum packet_support support;
783 };
784
785 /* Analyze a packet's return value and update the packet config
786 accordingly. */
787
788 enum packet_result
789 {
790 PACKET_ERROR,
791 PACKET_OK,
792 PACKET_UNKNOWN
793 };
794
795 static void
796 update_packet_config (struct packet_config *config)
797 {
798 switch (config->detect)
799 {
800 case AUTO_BOOLEAN_TRUE:
801 config->support = PACKET_ENABLE;
802 break;
803 case AUTO_BOOLEAN_FALSE:
804 config->support = PACKET_DISABLE;
805 break;
806 case AUTO_BOOLEAN_AUTO:
807 config->support = PACKET_SUPPORT_UNKNOWN;
808 break;
809 }
810 }
811
812 static void
813 show_packet_config_cmd (struct packet_config *config)
814 {
815 char *support = "internal-error";
816 switch (config->support)
817 {
818 case PACKET_ENABLE:
819 support = "enabled";
820 break;
821 case PACKET_DISABLE:
822 support = "disabled";
823 break;
824 case PACKET_SUPPORT_UNKNOWN:
825 support = "unknown";
826 break;
827 }
828 switch (config->detect)
829 {
830 case AUTO_BOOLEAN_AUTO:
831 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
832 config->name, support);
833 break;
834 case AUTO_BOOLEAN_TRUE:
835 case AUTO_BOOLEAN_FALSE:
836 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
837 config->name, support);
838 break;
839 }
840 }
841
842 static void
843 add_packet_config_cmd (struct packet_config *config, const char *name,
844 const char *title, int legacy)
845 {
846 char *set_doc;
847 char *show_doc;
848 char *cmd_name;
849
850 config->name = name;
851 config->title = title;
852 config->detect = AUTO_BOOLEAN_AUTO;
853 config->support = PACKET_SUPPORT_UNKNOWN;
854 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
855 name, title);
856 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
857 name, title);
858 /* set/show TITLE-packet {auto,on,off} */
859 cmd_name = xstrprintf ("%s-packet", title);
860 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
861 &config->detect, set_doc, show_doc, NULL, /* help_doc */
862 set_remote_protocol_packet_cmd,
863 show_remote_protocol_packet_cmd,
864 &remote_set_cmdlist, &remote_show_cmdlist);
865 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
866 if (legacy)
867 {
868 char *legacy_name;
869 legacy_name = xstrprintf ("%s-packet", name);
870 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
871 &remote_set_cmdlist);
872 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
873 &remote_show_cmdlist);
874 }
875 }
876
877 static enum packet_result
878 packet_check_result (const char *buf)
879 {
880 if (buf[0] != '\0')
881 {
882 /* The stub recognized the packet request. Check that the
883 operation succeeded. */
884 if (buf[0] == 'E'
885 && isxdigit (buf[1]) && isxdigit (buf[2])
886 && buf[3] == '\0')
887 /* "Enn" - definitly an error. */
888 return PACKET_ERROR;
889
890 /* Always treat "E." as an error. This will be used for
891 more verbose error messages, such as E.memtypes. */
892 if (buf[0] == 'E' && buf[1] == '.')
893 return PACKET_ERROR;
894
895 /* The packet may or may not be OK. Just assume it is. */
896 return PACKET_OK;
897 }
898 else
899 /* The stub does not support the packet. */
900 return PACKET_UNKNOWN;
901 }
902
903 static enum packet_result
904 packet_ok (const char *buf, struct packet_config *config)
905 {
906 enum packet_result result;
907
908 result = packet_check_result (buf);
909 switch (result)
910 {
911 case PACKET_OK:
912 case PACKET_ERROR:
913 /* The stub recognized the packet request. */
914 switch (config->support)
915 {
916 case PACKET_SUPPORT_UNKNOWN:
917 if (remote_debug)
918 fprintf_unfiltered (gdb_stdlog,
919 "Packet %s (%s) is supported\n",
920 config->name, config->title);
921 config->support = PACKET_ENABLE;
922 break;
923 case PACKET_DISABLE:
924 internal_error (__FILE__, __LINE__,
925 _("packet_ok: attempt to use a disabled packet"));
926 break;
927 case PACKET_ENABLE:
928 break;
929 }
930 break;
931 case PACKET_UNKNOWN:
932 /* The stub does not support the packet. */
933 switch (config->support)
934 {
935 case PACKET_ENABLE:
936 if (config->detect == AUTO_BOOLEAN_AUTO)
937 /* If the stub previously indicated that the packet was
938 supported then there is a protocol error.. */
939 error (_("Protocol error: %s (%s) conflicting enabled responses."),
940 config->name, config->title);
941 else
942 /* The user set it wrong. */
943 error (_("Enabled packet %s (%s) not recognized by stub"),
944 config->name, config->title);
945 break;
946 case PACKET_SUPPORT_UNKNOWN:
947 if (remote_debug)
948 fprintf_unfiltered (gdb_stdlog,
949 "Packet %s (%s) is NOT supported\n",
950 config->name, config->title);
951 config->support = PACKET_DISABLE;
952 break;
953 case PACKET_DISABLE:
954 break;
955 }
956 break;
957 }
958
959 return result;
960 }
961
962 enum {
963 PACKET_vCont = 0,
964 PACKET_X,
965 PACKET_qSymbol,
966 PACKET_P,
967 PACKET_p,
968 PACKET_Z0,
969 PACKET_Z1,
970 PACKET_Z2,
971 PACKET_Z3,
972 PACKET_Z4,
973 PACKET_vFile_open,
974 PACKET_vFile_pread,
975 PACKET_vFile_pwrite,
976 PACKET_vFile_close,
977 PACKET_vFile_unlink,
978 PACKET_qXfer_auxv,
979 PACKET_qXfer_features,
980 PACKET_qXfer_libraries,
981 PACKET_qXfer_memory_map,
982 PACKET_qXfer_spu_read,
983 PACKET_qXfer_spu_write,
984 PACKET_qXfer_osdata,
985 PACKET_qGetTLSAddr,
986 PACKET_qSupported,
987 PACKET_QPassSignals,
988 PACKET_qSearch_memory,
989 PACKET_vAttach,
990 PACKET_vRun,
991 PACKET_QStartNoAckMode,
992 PACKET_vKill,
993 PACKET_qXfer_siginfo_read,
994 PACKET_qXfer_siginfo_write,
995 PACKET_MAX
996 };
997
998 static struct packet_config remote_protocol_packets[PACKET_MAX];
999
1000 static void
1001 set_remote_protocol_packet_cmd (char *args, int from_tty,
1002 struct cmd_list_element *c)
1003 {
1004 struct packet_config *packet;
1005
1006 for (packet = remote_protocol_packets;
1007 packet < &remote_protocol_packets[PACKET_MAX];
1008 packet++)
1009 {
1010 if (&packet->detect == c->var)
1011 {
1012 update_packet_config (packet);
1013 return;
1014 }
1015 }
1016 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1017 c->name);
1018 }
1019
1020 static void
1021 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1022 struct cmd_list_element *c,
1023 const char *value)
1024 {
1025 struct packet_config *packet;
1026
1027 for (packet = remote_protocol_packets;
1028 packet < &remote_protocol_packets[PACKET_MAX];
1029 packet++)
1030 {
1031 if (&packet->detect == c->var)
1032 {
1033 show_packet_config_cmd (packet);
1034 return;
1035 }
1036 }
1037 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1038 c->name);
1039 }
1040
1041 /* Should we try one of the 'Z' requests? */
1042
1043 enum Z_packet_type
1044 {
1045 Z_PACKET_SOFTWARE_BP,
1046 Z_PACKET_HARDWARE_BP,
1047 Z_PACKET_WRITE_WP,
1048 Z_PACKET_READ_WP,
1049 Z_PACKET_ACCESS_WP,
1050 NR_Z_PACKET_TYPES
1051 };
1052
1053 /* For compatibility with older distributions. Provide a ``set remote
1054 Z-packet ...'' command that updates all the Z packet types. */
1055
1056 static enum auto_boolean remote_Z_packet_detect;
1057
1058 static void
1059 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1060 struct cmd_list_element *c)
1061 {
1062 int i;
1063 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1064 {
1065 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1066 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1067 }
1068 }
1069
1070 static void
1071 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1072 struct cmd_list_element *c,
1073 const char *value)
1074 {
1075 int i;
1076 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1077 {
1078 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1079 }
1080 }
1081
1082 /* Should we try the 'ThreadInfo' query packet?
1083
1084 This variable (NOT available to the user: auto-detect only!)
1085 determines whether GDB will use the new, simpler "ThreadInfo"
1086 query or the older, more complex syntax for thread queries.
1087 This is an auto-detect variable (set to true at each connect,
1088 and set to false when the target fails to recognize it). */
1089
1090 static int use_threadinfo_query;
1091 static int use_threadextra_query;
1092
1093 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1094 static struct async_signal_handler *sigint_remote_twice_token;
1095 static struct async_signal_handler *sigint_remote_token;
1096
1097 \f
1098 /* Asynchronous signal handle registered as event loop source for
1099 when we have pending events ready to be passed to the core. */
1100
1101 static struct async_event_handler *remote_async_inferior_event_token;
1102
1103 /* Asynchronous signal handle registered as event loop source for when
1104 the remote sent us a %Stop notification. The registered callback
1105 will do a vStopped sequence to pull the rest of the events out of
1106 the remote side into our event queue. */
1107
1108 static struct async_event_handler *remote_async_get_pending_events_token;
1109 \f
1110
1111 static ptid_t magic_null_ptid;
1112 static ptid_t not_sent_ptid;
1113 static ptid_t any_thread_ptid;
1114
1115 /* These are the threads which we last sent to the remote system. The
1116 TID member will be -1 for all or -2 for not sent yet. */
1117
1118 static ptid_t general_thread;
1119 static ptid_t continue_thread;
1120
1121 /* Add PID to GDB's inferior table. Since we can be connected to a
1122 remote system before before knowing about any inferior, mark the
1123 target with execution when we find the first inferior. */
1124
1125 static struct inferior *
1126 remote_add_inferior (int pid)
1127 {
1128 struct remote_state *rs = get_remote_state ();
1129 struct inferior *inf;
1130
1131 inf = add_inferior (pid);
1132
1133 /* This may be the first inferior we hear about. */
1134 if (!target_has_execution)
1135 {
1136 if (rs->extended)
1137 target_mark_running (&extended_remote_ops);
1138 else
1139 target_mark_running (&remote_ops);
1140 }
1141
1142 return inf;
1143 }
1144
1145 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1146 according to RUNNING. */
1147
1148 static void
1149 remote_add_thread (ptid_t ptid, int running)
1150 {
1151 add_thread (ptid);
1152
1153 set_executing (ptid, running);
1154 set_running (ptid, running);
1155 }
1156
1157 /* Come here when we learn about a thread id from the remote target.
1158 It may be the first time we hear about such thread, so take the
1159 opportunity to add it to GDB's thread list. In case this is the
1160 first time we're noticing its corresponding inferior, add it to
1161 GDB's inferior list as well. */
1162
1163 static void
1164 remote_notice_new_inferior (ptid_t currthread, int running)
1165 {
1166 struct remote_state *rs = get_remote_state ();
1167
1168 /* If this is a new thread, add it to GDB's thread list.
1169 If we leave it up to WFI to do this, bad things will happen. */
1170
1171 if (in_thread_list (currthread) && is_exited (currthread))
1172 {
1173 /* We're seeing an event on a thread id we knew had exited.
1174 This has to be a new thread reusing the old id. Add it. */
1175 remote_add_thread (currthread, running);
1176 return;
1177 }
1178
1179 if (!in_thread_list (currthread))
1180 {
1181 struct inferior *inf = NULL;
1182
1183 if (ptid_equal (pid_to_ptid (ptid_get_pid (currthread)), inferior_ptid))
1184 {
1185 /* inferior_ptid has no thread member yet. This can happen
1186 with the vAttach -> remote_wait,"TAAthread:" path if the
1187 stub doesn't support qC. This is the first stop reported
1188 after an attach, so this is the main thread. Update the
1189 ptid in the thread list. */
1190 thread_change_ptid (inferior_ptid, currthread);
1191 return;
1192 }
1193
1194 if (ptid_equal (magic_null_ptid, inferior_ptid))
1195 {
1196 /* inferior_ptid is not set yet. This can happen with the
1197 vRun -> remote_wait,"TAAthread:" path if the stub
1198 doesn't support qC. This is the first stop reported
1199 after an attach, so this is the main thread. Update the
1200 ptid in the thread list. */
1201 thread_change_ptid (inferior_ptid, currthread);
1202 return;
1203 }
1204
1205 /* When connecting to a target remote, or to a target
1206 extended-remote which already was debugging an inferior, we
1207 may not know about it yet. Add it before adding its child
1208 thread, so notifications are emitted in a sensible order. */
1209 if (!in_inferior_list (ptid_get_pid (currthread)))
1210 inf = remote_add_inferior (ptid_get_pid (currthread));
1211
1212 /* This is really a new thread. Add it. */
1213 remote_add_thread (currthread, running);
1214
1215 /* If we found a new inferior, let the common code do whatever
1216 it needs to with it (e.g., read shared libraries, insert
1217 breakpoints). */
1218 if (inf != NULL)
1219 notice_new_inferior (currthread, running, 0);
1220 }
1221 }
1222
1223 /* Call this function as a result of
1224 1) A halt indication (T packet) containing a thread id
1225 2) A direct query of currthread
1226 3) Successful execution of set thread
1227 */
1228
1229 static void
1230 record_currthread (ptid_t currthread)
1231 {
1232 general_thread = currthread;
1233
1234 if (ptid_equal (currthread, minus_one_ptid))
1235 /* We're just invalidating the local thread mirror. */
1236 return;
1237
1238 remote_notice_new_inferior (currthread, 0);
1239 }
1240
1241 static char *last_pass_packet;
1242
1243 /* If 'QPassSignals' is supported, tell the remote stub what signals
1244 it can simply pass through to the inferior without reporting. */
1245
1246 static void
1247 remote_pass_signals (void)
1248 {
1249 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1250 {
1251 char *pass_packet, *p;
1252 int numsigs = (int) TARGET_SIGNAL_LAST;
1253 int count = 0, i;
1254
1255 gdb_assert (numsigs < 256);
1256 for (i = 0; i < numsigs; i++)
1257 {
1258 if (signal_stop_state (i) == 0
1259 && signal_print_state (i) == 0
1260 && signal_pass_state (i) == 1)
1261 count++;
1262 }
1263 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1264 strcpy (pass_packet, "QPassSignals:");
1265 p = pass_packet + strlen (pass_packet);
1266 for (i = 0; i < numsigs; i++)
1267 {
1268 if (signal_stop_state (i) == 0
1269 && signal_print_state (i) == 0
1270 && signal_pass_state (i) == 1)
1271 {
1272 if (i >= 16)
1273 *p++ = tohex (i >> 4);
1274 *p++ = tohex (i & 15);
1275 if (count)
1276 *p++ = ';';
1277 else
1278 break;
1279 count--;
1280 }
1281 }
1282 *p = 0;
1283 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1284 {
1285 struct remote_state *rs = get_remote_state ();
1286 char *buf = rs->buf;
1287
1288 putpkt (pass_packet);
1289 getpkt (&rs->buf, &rs->buf_size, 0);
1290 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1291 if (last_pass_packet)
1292 xfree (last_pass_packet);
1293 last_pass_packet = pass_packet;
1294 }
1295 else
1296 xfree (pass_packet);
1297 }
1298 }
1299
1300 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1301 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1302 thread. If GEN is set, set the general thread, if not, then set
1303 the step/continue thread. */
1304 static void
1305 set_thread (struct ptid ptid, int gen)
1306 {
1307 struct remote_state *rs = get_remote_state ();
1308 ptid_t state = gen ? general_thread : continue_thread;
1309 char *buf = rs->buf;
1310 char *endbuf = rs->buf + get_remote_packet_size ();
1311
1312 if (ptid_equal (state, ptid))
1313 return;
1314
1315 *buf++ = 'H';
1316 *buf++ = gen ? 'g' : 'c';
1317 if (ptid_equal (ptid, magic_null_ptid))
1318 xsnprintf (buf, endbuf - buf, "0");
1319 else if (ptid_equal (ptid, any_thread_ptid))
1320 xsnprintf (buf, endbuf - buf, "0");
1321 else if (ptid_equal (ptid, minus_one_ptid))
1322 xsnprintf (buf, endbuf - buf, "-1");
1323 else
1324 write_ptid (buf, endbuf, ptid);
1325 putpkt (rs->buf);
1326 getpkt (&rs->buf, &rs->buf_size, 0);
1327 if (gen)
1328 general_thread = ptid;
1329 else
1330 continue_thread = ptid;
1331 }
1332
1333 static void
1334 set_general_thread (struct ptid ptid)
1335 {
1336 set_thread (ptid, 1);
1337 }
1338
1339 static void
1340 set_continue_thread (struct ptid ptid)
1341 {
1342 set_thread (ptid, 0);
1343 }
1344
1345 /* Change the remote current process. Which thread within the process
1346 ends up selected isn't important, as long as it is the same process
1347 as what INFERIOR_PTID points to.
1348
1349 This comes from that fact that there is no explicit notion of
1350 "selected process" in the protocol. The selected process for
1351 general operations is the process the selected general thread
1352 belongs to. */
1353
1354 static void
1355 set_general_process (void)
1356 {
1357 struct remote_state *rs = get_remote_state ();
1358
1359 /* If the remote can't handle multiple processes, don't bother. */
1360 if (!remote_multi_process_p (rs))
1361 return;
1362
1363 /* We only need to change the remote current thread if it's pointing
1364 at some other process. */
1365 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1366 set_general_thread (inferior_ptid);
1367 }
1368
1369 \f
1370 /* Return nonzero if the thread PTID is still alive on the remote
1371 system. */
1372
1373 static int
1374 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1375 {
1376 struct remote_state *rs = get_remote_state ();
1377 int tid = ptid_get_tid (ptid);
1378 char *p, *endp;
1379
1380 if (ptid_equal (ptid, magic_null_ptid))
1381 /* The main thread is always alive. */
1382 return 1;
1383
1384 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1385 /* The main thread is always alive. This can happen after a
1386 vAttach, if the remote side doesn't support
1387 multi-threading. */
1388 return 1;
1389
1390 p = rs->buf;
1391 endp = rs->buf + get_remote_packet_size ();
1392
1393 *p++ = 'T';
1394 write_ptid (p, endp, ptid);
1395
1396 putpkt (rs->buf);
1397 getpkt (&rs->buf, &rs->buf_size, 0);
1398 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1399 }
1400
1401 /* About these extended threadlist and threadinfo packets. They are
1402 variable length packets but, the fields within them are often fixed
1403 length. They are redundent enough to send over UDP as is the
1404 remote protocol in general. There is a matching unit test module
1405 in libstub. */
1406
1407 #define OPAQUETHREADBYTES 8
1408
1409 /* a 64 bit opaque identifier */
1410 typedef unsigned char threadref[OPAQUETHREADBYTES];
1411
1412 /* WARNING: This threadref data structure comes from the remote O.S.,
1413 libstub protocol encoding, and remote.c. it is not particularly
1414 changable. */
1415
1416 /* Right now, the internal structure is int. We want it to be bigger.
1417 Plan to fix this.
1418 */
1419
1420 typedef int gdb_threadref; /* Internal GDB thread reference. */
1421
1422 /* gdb_ext_thread_info is an internal GDB data structure which is
1423 equivalent to the reply of the remote threadinfo packet. */
1424
1425 struct gdb_ext_thread_info
1426 {
1427 threadref threadid; /* External form of thread reference. */
1428 int active; /* Has state interesting to GDB?
1429 regs, stack. */
1430 char display[256]; /* Brief state display, name,
1431 blocked/suspended. */
1432 char shortname[32]; /* To be used to name threads. */
1433 char more_display[256]; /* Long info, statistics, queue depth,
1434 whatever. */
1435 };
1436
1437 /* The volume of remote transfers can be limited by submitting
1438 a mask containing bits specifying the desired information.
1439 Use a union of these values as the 'selection' parameter to
1440 get_thread_info. FIXME: Make these TAG names more thread specific.
1441 */
1442
1443 #define TAG_THREADID 1
1444 #define TAG_EXISTS 2
1445 #define TAG_DISPLAY 4
1446 #define TAG_THREADNAME 8
1447 #define TAG_MOREDISPLAY 16
1448
1449 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1450
1451 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1452
1453 static char *unpack_nibble (char *buf, int *val);
1454
1455 static char *pack_nibble (char *buf, int nibble);
1456
1457 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1458
1459 static char *unpack_byte (char *buf, int *value);
1460
1461 static char *pack_int (char *buf, int value);
1462
1463 static char *unpack_int (char *buf, int *value);
1464
1465 static char *unpack_string (char *src, char *dest, int length);
1466
1467 static char *pack_threadid (char *pkt, threadref *id);
1468
1469 static char *unpack_threadid (char *inbuf, threadref *id);
1470
1471 void int_to_threadref (threadref *id, int value);
1472
1473 static int threadref_to_int (threadref *ref);
1474
1475 static void copy_threadref (threadref *dest, threadref *src);
1476
1477 static int threadmatch (threadref *dest, threadref *src);
1478
1479 static char *pack_threadinfo_request (char *pkt, int mode,
1480 threadref *id);
1481
1482 static int remote_unpack_thread_info_response (char *pkt,
1483 threadref *expectedref,
1484 struct gdb_ext_thread_info
1485 *info);
1486
1487
1488 static int remote_get_threadinfo (threadref *threadid,
1489 int fieldset, /*TAG mask */
1490 struct gdb_ext_thread_info *info);
1491
1492 static char *pack_threadlist_request (char *pkt, int startflag,
1493 int threadcount,
1494 threadref *nextthread);
1495
1496 static int parse_threadlist_response (char *pkt,
1497 int result_limit,
1498 threadref *original_echo,
1499 threadref *resultlist,
1500 int *doneflag);
1501
1502 static int remote_get_threadlist (int startflag,
1503 threadref *nextthread,
1504 int result_limit,
1505 int *done,
1506 int *result_count,
1507 threadref *threadlist);
1508
1509 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1510
1511 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1512 void *context, int looplimit);
1513
1514 static int remote_newthread_step (threadref *ref, void *context);
1515
1516
1517 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1518 buffer we're allowed to write to. Returns
1519 BUF+CHARACTERS_WRITTEN. */
1520
1521 static char *
1522 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1523 {
1524 int pid, tid;
1525 struct remote_state *rs = get_remote_state ();
1526
1527 if (remote_multi_process_p (rs))
1528 {
1529 pid = ptid_get_pid (ptid);
1530 if (pid < 0)
1531 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1532 else
1533 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1534 }
1535 tid = ptid_get_tid (ptid);
1536 if (tid < 0)
1537 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1538 else
1539 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1540
1541 return buf;
1542 }
1543
1544 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1545 passed the last parsed char. Returns null_ptid on error. */
1546
1547 static ptid_t
1548 read_ptid (char *buf, char **obuf)
1549 {
1550 char *p = buf;
1551 char *pp;
1552 ULONGEST pid = 0, tid = 0;
1553 ptid_t ptid;
1554
1555 if (*p == 'p')
1556 {
1557 /* Multi-process ptid. */
1558 pp = unpack_varlen_hex (p + 1, &pid);
1559 if (*pp != '.')
1560 error (_("invalid remote ptid: %s\n"), p);
1561
1562 p = pp;
1563 pp = unpack_varlen_hex (p + 1, &tid);
1564 if (obuf)
1565 *obuf = pp;
1566 return ptid_build (pid, 0, tid);
1567 }
1568
1569 /* No multi-process. Just a tid. */
1570 pp = unpack_varlen_hex (p, &tid);
1571
1572 /* Since the stub is not sending a process id, then default to
1573 what's in inferior_ptid, unless it's null at this point. If so,
1574 then since there's no way to know the pid of the reported
1575 threads, use the magic number. */
1576 if (ptid_equal (inferior_ptid, null_ptid))
1577 pid = ptid_get_pid (magic_null_ptid);
1578 else
1579 pid = ptid_get_pid (inferior_ptid);
1580
1581 if (obuf)
1582 *obuf = pp;
1583 return ptid_build (pid, 0, tid);
1584 }
1585
1586 /* Encode 64 bits in 16 chars of hex. */
1587
1588 static const char hexchars[] = "0123456789abcdef";
1589
1590 static int
1591 ishex (int ch, int *val)
1592 {
1593 if ((ch >= 'a') && (ch <= 'f'))
1594 {
1595 *val = ch - 'a' + 10;
1596 return 1;
1597 }
1598 if ((ch >= 'A') && (ch <= 'F'))
1599 {
1600 *val = ch - 'A' + 10;
1601 return 1;
1602 }
1603 if ((ch >= '0') && (ch <= '9'))
1604 {
1605 *val = ch - '0';
1606 return 1;
1607 }
1608 return 0;
1609 }
1610
1611 static int
1612 stubhex (int ch)
1613 {
1614 if (ch >= 'a' && ch <= 'f')
1615 return ch - 'a' + 10;
1616 if (ch >= '0' && ch <= '9')
1617 return ch - '0';
1618 if (ch >= 'A' && ch <= 'F')
1619 return ch - 'A' + 10;
1620 return -1;
1621 }
1622
1623 static int
1624 stub_unpack_int (char *buff, int fieldlength)
1625 {
1626 int nibble;
1627 int retval = 0;
1628
1629 while (fieldlength)
1630 {
1631 nibble = stubhex (*buff++);
1632 retval |= nibble;
1633 fieldlength--;
1634 if (fieldlength)
1635 retval = retval << 4;
1636 }
1637 return retval;
1638 }
1639
1640 char *
1641 unpack_varlen_hex (char *buff, /* packet to parse */
1642 ULONGEST *result)
1643 {
1644 int nibble;
1645 ULONGEST retval = 0;
1646
1647 while (ishex (*buff, &nibble))
1648 {
1649 buff++;
1650 retval = retval << 4;
1651 retval |= nibble & 0x0f;
1652 }
1653 *result = retval;
1654 return buff;
1655 }
1656
1657 static char *
1658 unpack_nibble (char *buf, int *val)
1659 {
1660 *val = fromhex (*buf++);
1661 return buf;
1662 }
1663
1664 static char *
1665 pack_nibble (char *buf, int nibble)
1666 {
1667 *buf++ = hexchars[(nibble & 0x0f)];
1668 return buf;
1669 }
1670
1671 static char *
1672 pack_hex_byte (char *pkt, int byte)
1673 {
1674 *pkt++ = hexchars[(byte >> 4) & 0xf];
1675 *pkt++ = hexchars[(byte & 0xf)];
1676 return pkt;
1677 }
1678
1679 static char *
1680 unpack_byte (char *buf, int *value)
1681 {
1682 *value = stub_unpack_int (buf, 2);
1683 return buf + 2;
1684 }
1685
1686 static char *
1687 pack_int (char *buf, int value)
1688 {
1689 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1690 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1691 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1692 buf = pack_hex_byte (buf, (value & 0xff));
1693 return buf;
1694 }
1695
1696 static char *
1697 unpack_int (char *buf, int *value)
1698 {
1699 *value = stub_unpack_int (buf, 8);
1700 return buf + 8;
1701 }
1702
1703 #if 0 /* Currently unused, uncomment when needed. */
1704 static char *pack_string (char *pkt, char *string);
1705
1706 static char *
1707 pack_string (char *pkt, char *string)
1708 {
1709 char ch;
1710 int len;
1711
1712 len = strlen (string);
1713 if (len > 200)
1714 len = 200; /* Bigger than most GDB packets, junk??? */
1715 pkt = pack_hex_byte (pkt, len);
1716 while (len-- > 0)
1717 {
1718 ch = *string++;
1719 if ((ch == '\0') || (ch == '#'))
1720 ch = '*'; /* Protect encapsulation. */
1721 *pkt++ = ch;
1722 }
1723 return pkt;
1724 }
1725 #endif /* 0 (unused) */
1726
1727 static char *
1728 unpack_string (char *src, char *dest, int length)
1729 {
1730 while (length--)
1731 *dest++ = *src++;
1732 *dest = '\0';
1733 return src;
1734 }
1735
1736 static char *
1737 pack_threadid (char *pkt, threadref *id)
1738 {
1739 char *limit;
1740 unsigned char *altid;
1741
1742 altid = (unsigned char *) id;
1743 limit = pkt + BUF_THREAD_ID_SIZE;
1744 while (pkt < limit)
1745 pkt = pack_hex_byte (pkt, *altid++);
1746 return pkt;
1747 }
1748
1749
1750 static char *
1751 unpack_threadid (char *inbuf, threadref *id)
1752 {
1753 char *altref;
1754 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1755 int x, y;
1756
1757 altref = (char *) id;
1758
1759 while (inbuf < limit)
1760 {
1761 x = stubhex (*inbuf++);
1762 y = stubhex (*inbuf++);
1763 *altref++ = (x << 4) | y;
1764 }
1765 return inbuf;
1766 }
1767
1768 /* Externally, threadrefs are 64 bits but internally, they are still
1769 ints. This is due to a mismatch of specifications. We would like
1770 to use 64bit thread references internally. This is an adapter
1771 function. */
1772
1773 void
1774 int_to_threadref (threadref *id, int value)
1775 {
1776 unsigned char *scan;
1777
1778 scan = (unsigned char *) id;
1779 {
1780 int i = 4;
1781 while (i--)
1782 *scan++ = 0;
1783 }
1784 *scan++ = (value >> 24) & 0xff;
1785 *scan++ = (value >> 16) & 0xff;
1786 *scan++ = (value >> 8) & 0xff;
1787 *scan++ = (value & 0xff);
1788 }
1789
1790 static int
1791 threadref_to_int (threadref *ref)
1792 {
1793 int i, value = 0;
1794 unsigned char *scan;
1795
1796 scan = *ref;
1797 scan += 4;
1798 i = 4;
1799 while (i-- > 0)
1800 value = (value << 8) | ((*scan++) & 0xff);
1801 return value;
1802 }
1803
1804 static void
1805 copy_threadref (threadref *dest, threadref *src)
1806 {
1807 int i;
1808 unsigned char *csrc, *cdest;
1809
1810 csrc = (unsigned char *) src;
1811 cdest = (unsigned char *) dest;
1812 i = 8;
1813 while (i--)
1814 *cdest++ = *csrc++;
1815 }
1816
1817 static int
1818 threadmatch (threadref *dest, threadref *src)
1819 {
1820 /* Things are broken right now, so just assume we got a match. */
1821 #if 0
1822 unsigned char *srcp, *destp;
1823 int i, result;
1824 srcp = (char *) src;
1825 destp = (char *) dest;
1826
1827 result = 1;
1828 while (i-- > 0)
1829 result &= (*srcp++ == *destp++) ? 1 : 0;
1830 return result;
1831 #endif
1832 return 1;
1833 }
1834
1835 /*
1836 threadid:1, # always request threadid
1837 context_exists:2,
1838 display:4,
1839 unique_name:8,
1840 more_display:16
1841 */
1842
1843 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1844
1845 static char *
1846 pack_threadinfo_request (char *pkt, int mode, threadref *id)
1847 {
1848 *pkt++ = 'q'; /* Info Query */
1849 *pkt++ = 'P'; /* process or thread info */
1850 pkt = pack_int (pkt, mode); /* mode */
1851 pkt = pack_threadid (pkt, id); /* threadid */
1852 *pkt = '\0'; /* terminate */
1853 return pkt;
1854 }
1855
1856 /* These values tag the fields in a thread info response packet. */
1857 /* Tagging the fields allows us to request specific fields and to
1858 add more fields as time goes by. */
1859
1860 #define TAG_THREADID 1 /* Echo the thread identifier. */
1861 #define TAG_EXISTS 2 /* Is this process defined enough to
1862 fetch registers and its stack? */
1863 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
1864 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
1865 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
1866 the process. */
1867
1868 static int
1869 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1870 struct gdb_ext_thread_info *info)
1871 {
1872 struct remote_state *rs = get_remote_state ();
1873 int mask, length;
1874 int tag;
1875 threadref ref;
1876 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
1877 int retval = 1;
1878
1879 /* info->threadid = 0; FIXME: implement zero_threadref. */
1880 info->active = 0;
1881 info->display[0] = '\0';
1882 info->shortname[0] = '\0';
1883 info->more_display[0] = '\0';
1884
1885 /* Assume the characters indicating the packet type have been
1886 stripped. */
1887 pkt = unpack_int (pkt, &mask); /* arg mask */
1888 pkt = unpack_threadid (pkt, &ref);
1889
1890 if (mask == 0)
1891 warning (_("Incomplete response to threadinfo request."));
1892 if (!threadmatch (&ref, expectedref))
1893 { /* This is an answer to a different request. */
1894 warning (_("ERROR RMT Thread info mismatch."));
1895 return 0;
1896 }
1897 copy_threadref (&info->threadid, &ref);
1898
1899 /* Loop on tagged fields , try to bail if somthing goes wrong. */
1900
1901 /* Packets are terminated with nulls. */
1902 while ((pkt < limit) && mask && *pkt)
1903 {
1904 pkt = unpack_int (pkt, &tag); /* tag */
1905 pkt = unpack_byte (pkt, &length); /* length */
1906 if (!(tag & mask)) /* Tags out of synch with mask. */
1907 {
1908 warning (_("ERROR RMT: threadinfo tag mismatch."));
1909 retval = 0;
1910 break;
1911 }
1912 if (tag == TAG_THREADID)
1913 {
1914 if (length != 16)
1915 {
1916 warning (_("ERROR RMT: length of threadid is not 16."));
1917 retval = 0;
1918 break;
1919 }
1920 pkt = unpack_threadid (pkt, &ref);
1921 mask = mask & ~TAG_THREADID;
1922 continue;
1923 }
1924 if (tag == TAG_EXISTS)
1925 {
1926 info->active = stub_unpack_int (pkt, length);
1927 pkt += length;
1928 mask = mask & ~(TAG_EXISTS);
1929 if (length > 8)
1930 {
1931 warning (_("ERROR RMT: 'exists' length too long."));
1932 retval = 0;
1933 break;
1934 }
1935 continue;
1936 }
1937 if (tag == TAG_THREADNAME)
1938 {
1939 pkt = unpack_string (pkt, &info->shortname[0], length);
1940 mask = mask & ~TAG_THREADNAME;
1941 continue;
1942 }
1943 if (tag == TAG_DISPLAY)
1944 {
1945 pkt = unpack_string (pkt, &info->display[0], length);
1946 mask = mask & ~TAG_DISPLAY;
1947 continue;
1948 }
1949 if (tag == TAG_MOREDISPLAY)
1950 {
1951 pkt = unpack_string (pkt, &info->more_display[0], length);
1952 mask = mask & ~TAG_MOREDISPLAY;
1953 continue;
1954 }
1955 warning (_("ERROR RMT: unknown thread info tag."));
1956 break; /* Not a tag we know about. */
1957 }
1958 return retval;
1959 }
1960
1961 static int
1962 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
1963 struct gdb_ext_thread_info *info)
1964 {
1965 struct remote_state *rs = get_remote_state ();
1966 int result;
1967
1968 pack_threadinfo_request (rs->buf, fieldset, threadid);
1969 putpkt (rs->buf);
1970 getpkt (&rs->buf, &rs->buf_size, 0);
1971
1972 if (rs->buf[0] == '\0')
1973 return 0;
1974
1975 result = remote_unpack_thread_info_response (rs->buf + 2,
1976 threadid, info);
1977 return result;
1978 }
1979
1980 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1981
1982 static char *
1983 pack_threadlist_request (char *pkt, int startflag, int threadcount,
1984 threadref *nextthread)
1985 {
1986 *pkt++ = 'q'; /* info query packet */
1987 *pkt++ = 'L'; /* Process LIST or threadLIST request */
1988 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
1989 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
1990 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
1991 *pkt = '\0';
1992 return pkt;
1993 }
1994
1995 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1996
1997 static int
1998 parse_threadlist_response (char *pkt, int result_limit,
1999 threadref *original_echo, threadref *resultlist,
2000 int *doneflag)
2001 {
2002 struct remote_state *rs = get_remote_state ();
2003 char *limit;
2004 int count, resultcount, done;
2005
2006 resultcount = 0;
2007 /* Assume the 'q' and 'M chars have been stripped. */
2008 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2009 /* done parse past here */
2010 pkt = unpack_byte (pkt, &count); /* count field */
2011 pkt = unpack_nibble (pkt, &done);
2012 /* The first threadid is the argument threadid. */
2013 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2014 while ((count-- > 0) && (pkt < limit))
2015 {
2016 pkt = unpack_threadid (pkt, resultlist++);
2017 if (resultcount++ >= result_limit)
2018 break;
2019 }
2020 if (doneflag)
2021 *doneflag = done;
2022 return resultcount;
2023 }
2024
2025 static int
2026 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2027 int *done, int *result_count, threadref *threadlist)
2028 {
2029 struct remote_state *rs = get_remote_state ();
2030 static threadref echo_nextthread;
2031 int result = 1;
2032
2033 /* Trancate result limit to be smaller than the packet size. */
2034 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
2035 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2036
2037 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2038 putpkt (rs->buf);
2039 getpkt (&rs->buf, &rs->buf_size, 0);
2040
2041 if (*rs->buf == '\0')
2042 *result_count = 0;
2043 else
2044 *result_count =
2045 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2046 threadlist, done);
2047
2048 if (!threadmatch (&echo_nextthread, nextthread))
2049 {
2050 /* FIXME: This is a good reason to drop the packet. */
2051 /* Possably, there is a duplicate response. */
2052 /* Possabilities :
2053 retransmit immediatly - race conditions
2054 retransmit after timeout - yes
2055 exit
2056 wait for packet, then exit
2057 */
2058 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2059 return 0; /* I choose simply exiting. */
2060 }
2061 if (*result_count <= 0)
2062 {
2063 if (*done != 1)
2064 {
2065 warning (_("RMT ERROR : failed to get remote thread list."));
2066 result = 0;
2067 }
2068 return result; /* break; */
2069 }
2070 if (*result_count > result_limit)
2071 {
2072 *result_count = 0;
2073 warning (_("RMT ERROR: threadlist response longer than requested."));
2074 return 0;
2075 }
2076 return result;
2077 }
2078
2079 /* This is the interface between remote and threads, remotes upper
2080 interface. */
2081
2082 /* remote_find_new_threads retrieves the thread list and for each
2083 thread in the list, looks up the thread in GDB's internal list,
2084 adding the thread if it does not already exist. This involves
2085 getting partial thread lists from the remote target so, polling the
2086 quit_flag is required. */
2087
2088
2089 /* About this many threadisds fit in a packet. */
2090
2091 #define MAXTHREADLISTRESULTS 32
2092
2093 static int
2094 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2095 int looplimit)
2096 {
2097 int done, i, result_count;
2098 int startflag = 1;
2099 int result = 1;
2100 int loopcount = 0;
2101 static threadref nextthread;
2102 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2103
2104 done = 0;
2105 while (!done)
2106 {
2107 if (loopcount++ > looplimit)
2108 {
2109 result = 0;
2110 warning (_("Remote fetch threadlist -infinite loop-."));
2111 break;
2112 }
2113 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2114 &done, &result_count, resultthreadlist))
2115 {
2116 result = 0;
2117 break;
2118 }
2119 /* Clear for later iterations. */
2120 startflag = 0;
2121 /* Setup to resume next batch of thread references, set nextthread. */
2122 if (result_count >= 1)
2123 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2124 i = 0;
2125 while (result_count--)
2126 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2127 break;
2128 }
2129 return result;
2130 }
2131
2132 static int
2133 remote_newthread_step (threadref *ref, void *context)
2134 {
2135 int pid = ptid_get_pid (inferior_ptid);
2136 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2137
2138 if (!in_thread_list (ptid))
2139 add_thread (ptid);
2140 return 1; /* continue iterator */
2141 }
2142
2143 #define CRAZY_MAX_THREADS 1000
2144
2145 static ptid_t
2146 remote_current_thread (ptid_t oldpid)
2147 {
2148 struct remote_state *rs = get_remote_state ();
2149 char *p = rs->buf;
2150 int tid;
2151 int pid;
2152
2153 putpkt ("qC");
2154 getpkt (&rs->buf, &rs->buf_size, 0);
2155 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2156 return read_ptid (&rs->buf[2], NULL);
2157 else
2158 return oldpid;
2159 }
2160
2161 /* Find new threads for info threads command.
2162 * Original version, using John Metzler's thread protocol.
2163 */
2164
2165 static void
2166 remote_find_new_threads (void)
2167 {
2168 remote_threadlist_iterator (remote_newthread_step, 0,
2169 CRAZY_MAX_THREADS);
2170 }
2171
2172 /*
2173 * Find all threads for info threads command.
2174 * Uses new thread protocol contributed by Cisco.
2175 * Falls back and attempts to use the older method (above)
2176 * if the target doesn't respond to the new method.
2177 */
2178
2179 static void
2180 remote_threads_info (struct target_ops *ops)
2181 {
2182 struct remote_state *rs = get_remote_state ();
2183 char *bufp;
2184 ptid_t new_thread;
2185
2186 if (remote_desc == 0) /* paranoia */
2187 error (_("Command can only be used when connected to the remote target."));
2188
2189 if (use_threadinfo_query)
2190 {
2191 putpkt ("qfThreadInfo");
2192 getpkt (&rs->buf, &rs->buf_size, 0);
2193 bufp = rs->buf;
2194 if (bufp[0] != '\0') /* q packet recognized */
2195 {
2196 while (*bufp++ == 'm') /* reply contains one or more TID */
2197 {
2198 do
2199 {
2200 new_thread = read_ptid (bufp, &bufp);
2201 if (!ptid_equal (new_thread, null_ptid))
2202 {
2203 /* In non-stop mode, we assume new found threads
2204 are running until proven otherwise with a
2205 stop reply. In all-stop, we can only get
2206 here if all threads are stopped. */
2207 int running = non_stop ? 1 : 0;
2208
2209 remote_notice_new_inferior (new_thread, running);
2210 }
2211 }
2212 while (*bufp++ == ','); /* comma-separated list */
2213 putpkt ("qsThreadInfo");
2214 getpkt (&rs->buf, &rs->buf_size, 0);
2215 bufp = rs->buf;
2216 }
2217 return; /* done */
2218 }
2219 }
2220
2221 /* Only qfThreadInfo is supported in non-stop mode. */
2222 if (non_stop)
2223 return;
2224
2225 /* Else fall back to old method based on jmetzler protocol. */
2226 use_threadinfo_query = 0;
2227 remote_find_new_threads ();
2228 return;
2229 }
2230
2231 /*
2232 * Collect a descriptive string about the given thread.
2233 * The target may say anything it wants to about the thread
2234 * (typically info about its blocked / runnable state, name, etc.).
2235 * This string will appear in the info threads display.
2236 *
2237 * Optional: targets are not required to implement this function.
2238 */
2239
2240 static char *
2241 remote_threads_extra_info (struct thread_info *tp)
2242 {
2243 struct remote_state *rs = get_remote_state ();
2244 int result;
2245 int set;
2246 threadref id;
2247 struct gdb_ext_thread_info threadinfo;
2248 static char display_buf[100]; /* arbitrary... */
2249 int n = 0; /* position in display_buf */
2250
2251 if (remote_desc == 0) /* paranoia */
2252 internal_error (__FILE__, __LINE__,
2253 _("remote_threads_extra_info"));
2254
2255 if (ptid_equal (tp->ptid, magic_null_ptid)
2256 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2257 /* This is the main thread which was added by GDB. The remote
2258 server doesn't know about it. */
2259 return NULL;
2260
2261 if (use_threadextra_query)
2262 {
2263 char *b = rs->buf;
2264 char *endb = rs->buf + get_remote_packet_size ();
2265
2266 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2267 b += strlen (b);
2268 write_ptid (b, endb, tp->ptid);
2269
2270 putpkt (rs->buf);
2271 getpkt (&rs->buf, &rs->buf_size, 0);
2272 if (rs->buf[0] != 0)
2273 {
2274 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2275 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2276 display_buf [result] = '\0';
2277 return display_buf;
2278 }
2279 }
2280
2281 /* If the above query fails, fall back to the old method. */
2282 use_threadextra_query = 0;
2283 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2284 | TAG_MOREDISPLAY | TAG_DISPLAY;
2285 int_to_threadref (&id, ptid_get_tid (tp->ptid));
2286 if (remote_get_threadinfo (&id, set, &threadinfo))
2287 if (threadinfo.active)
2288 {
2289 if (*threadinfo.shortname)
2290 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2291 " Name: %s,", threadinfo.shortname);
2292 if (*threadinfo.display)
2293 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2294 " State: %s,", threadinfo.display);
2295 if (*threadinfo.more_display)
2296 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2297 " Priority: %s", threadinfo.more_display);
2298
2299 if (n > 0)
2300 {
2301 /* For purely cosmetic reasons, clear up trailing commas. */
2302 if (',' == display_buf[n-1])
2303 display_buf[n-1] = ' ';
2304 return display_buf;
2305 }
2306 }
2307 return NULL;
2308 }
2309 \f
2310
2311 /* Restart the remote side; this is an extended protocol operation. */
2312
2313 static void
2314 extended_remote_restart (void)
2315 {
2316 struct remote_state *rs = get_remote_state ();
2317
2318 /* Send the restart command; for reasons I don't understand the
2319 remote side really expects a number after the "R". */
2320 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
2321 putpkt (rs->buf);
2322
2323 remote_fileio_reset ();
2324 }
2325 \f
2326 /* Clean up connection to a remote debugger. */
2327
2328 static void
2329 remote_close (int quitting)
2330 {
2331 if (remote_desc == NULL)
2332 return; /* already closed */
2333
2334 /* Make sure we leave stdin registered in the event loop, and we
2335 don't leave the async SIGINT signal handler installed. */
2336 remote_terminal_ours ();
2337
2338 serial_close (remote_desc);
2339 remote_desc = NULL;
2340
2341 /* We don't have a connection to the remote stub anymore. Get rid
2342 of all the inferiors and their threads we were controlling. */
2343 discard_all_inferiors ();
2344
2345 /* We're no longer interested in any of these events. */
2346 discard_pending_stop_replies (-1);
2347
2348 if (remote_async_inferior_event_token)
2349 delete_async_event_handler (&remote_async_inferior_event_token);
2350 if (remote_async_get_pending_events_token)
2351 delete_async_event_handler (&remote_async_get_pending_events_token);
2352
2353 generic_mourn_inferior ();
2354 }
2355
2356 /* Query the remote side for the text, data and bss offsets. */
2357
2358 static void
2359 get_offsets (void)
2360 {
2361 struct remote_state *rs = get_remote_state ();
2362 char *buf;
2363 char *ptr;
2364 int lose, num_segments = 0, do_sections, do_segments;
2365 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
2366 struct section_offsets *offs;
2367 struct symfile_segment_data *data;
2368
2369 if (symfile_objfile == NULL)
2370 return;
2371
2372 putpkt ("qOffsets");
2373 getpkt (&rs->buf, &rs->buf_size, 0);
2374 buf = rs->buf;
2375
2376 if (buf[0] == '\000')
2377 return; /* Return silently. Stub doesn't support
2378 this command. */
2379 if (buf[0] == 'E')
2380 {
2381 warning (_("Remote failure reply: %s"), buf);
2382 return;
2383 }
2384
2385 /* Pick up each field in turn. This used to be done with scanf, but
2386 scanf will make trouble if CORE_ADDR size doesn't match
2387 conversion directives correctly. The following code will work
2388 with any size of CORE_ADDR. */
2389 text_addr = data_addr = bss_addr = 0;
2390 ptr = buf;
2391 lose = 0;
2392
2393 if (strncmp (ptr, "Text=", 5) == 0)
2394 {
2395 ptr += 5;
2396 /* Don't use strtol, could lose on big values. */
2397 while (*ptr && *ptr != ';')
2398 text_addr = (text_addr << 4) + fromhex (*ptr++);
2399
2400 if (strncmp (ptr, ";Data=", 6) == 0)
2401 {
2402 ptr += 6;
2403 while (*ptr && *ptr != ';')
2404 data_addr = (data_addr << 4) + fromhex (*ptr++);
2405 }
2406 else
2407 lose = 1;
2408
2409 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2410 {
2411 ptr += 5;
2412 while (*ptr && *ptr != ';')
2413 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
2414
2415 if (bss_addr != data_addr)
2416 warning (_("Target reported unsupported offsets: %s"), buf);
2417 }
2418 else
2419 lose = 1;
2420 }
2421 else if (strncmp (ptr, "TextSeg=", 8) == 0)
2422 {
2423 ptr += 8;
2424 /* Don't use strtol, could lose on big values. */
2425 while (*ptr && *ptr != ';')
2426 text_addr = (text_addr << 4) + fromhex (*ptr++);
2427 num_segments = 1;
2428
2429 if (strncmp (ptr, ";DataSeg=", 9) == 0)
2430 {
2431 ptr += 9;
2432 while (*ptr && *ptr != ';')
2433 data_addr = (data_addr << 4) + fromhex (*ptr++);
2434 num_segments++;
2435 }
2436 }
2437 else
2438 lose = 1;
2439
2440 if (lose)
2441 error (_("Malformed response to offset query, %s"), buf);
2442 else if (*ptr != '\0')
2443 warning (_("Target reported unsupported offsets: %s"), buf);
2444
2445 offs = ((struct section_offsets *)
2446 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
2447 memcpy (offs, symfile_objfile->section_offsets,
2448 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
2449
2450 data = get_symfile_segment_data (symfile_objfile->obfd);
2451 do_segments = (data != NULL);
2452 do_sections = num_segments == 0;
2453
2454 if (num_segments > 0)
2455 {
2456 segments[0] = text_addr;
2457 segments[1] = data_addr;
2458 }
2459 /* If we have two segments, we can still try to relocate everything
2460 by assuming that the .text and .data offsets apply to the whole
2461 text and data segments. Convert the offsets given in the packet
2462 to base addresses for symfile_map_offsets_to_segments. */
2463 else if (data && data->num_segments == 2)
2464 {
2465 segments[0] = data->segment_bases[0] + text_addr;
2466 segments[1] = data->segment_bases[1] + data_addr;
2467 num_segments = 2;
2468 }
2469 /* If the object file has only one segment, assume that it is text
2470 rather than data; main programs with no writable data are rare,
2471 but programs with no code are useless. Of course the code might
2472 have ended up in the data segment... to detect that we would need
2473 the permissions here. */
2474 else if (data && data->num_segments == 1)
2475 {
2476 segments[0] = data->segment_bases[0] + text_addr;
2477 num_segments = 1;
2478 }
2479 /* There's no way to relocate by segment. */
2480 else
2481 do_segments = 0;
2482
2483 if (do_segments)
2484 {
2485 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
2486 offs, num_segments, segments);
2487
2488 if (ret == 0 && !do_sections)
2489 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2490
2491 if (ret > 0)
2492 do_sections = 0;
2493 }
2494
2495 if (data)
2496 free_symfile_segment_data (data);
2497
2498 if (do_sections)
2499 {
2500 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2501
2502 /* This is a temporary kludge to force data and bss to use the same offsets
2503 because that's what nlmconv does now. The real solution requires changes
2504 to the stub and remote.c that I don't have time to do right now. */
2505
2506 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2507 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2508 }
2509
2510 objfile_relocate (symfile_objfile, offs);
2511 }
2512
2513 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
2514 threads we know are stopped already. This is used during the
2515 initial remote connection in non-stop mode --- threads that are
2516 reported as already being stopped are left stopped. */
2517
2518 static int
2519 set_stop_requested_callback (struct thread_info *thread, void *data)
2520 {
2521 /* If we have a stop reply for this thread, it must be stopped. */
2522 if (peek_stop_reply (thread->ptid))
2523 set_stop_requested (thread->ptid, 1);
2524
2525 return 0;
2526 }
2527
2528 /* Stub for catch_exception. */
2529
2530 struct start_remote_args
2531 {
2532 int from_tty;
2533
2534 /* The current target. */
2535 struct target_ops *target;
2536
2537 /* Non-zero if this is an extended-remote target. */
2538 int extended_p;
2539 };
2540
2541 static void
2542 remote_start_remote (struct ui_out *uiout, void *opaque)
2543 {
2544 struct start_remote_args *args = opaque;
2545 struct remote_state *rs = get_remote_state ();
2546 struct packet_config *noack_config;
2547 char *wait_status = NULL;
2548
2549 immediate_quit++; /* Allow user to interrupt it. */
2550
2551 /* Ack any packet which the remote side has already sent. */
2552 serial_write (remote_desc, "+", 1);
2553
2554 /* The first packet we send to the target is the optional "supported
2555 packets" request. If the target can answer this, it will tell us
2556 which later probes to skip. */
2557 remote_query_supported ();
2558
2559 /* Next, we possibly activate noack mode.
2560
2561 If the QStartNoAckMode packet configuration is set to AUTO,
2562 enable noack mode if the stub reported a wish for it with
2563 qSupported.
2564
2565 If set to TRUE, then enable noack mode even if the stub didn't
2566 report it in qSupported. If the stub doesn't reply OK, the
2567 session ends with an error.
2568
2569 If FALSE, then don't activate noack mode, regardless of what the
2570 stub claimed should be the default with qSupported. */
2571
2572 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
2573
2574 if (noack_config->detect == AUTO_BOOLEAN_TRUE
2575 || (noack_config->detect == AUTO_BOOLEAN_AUTO
2576 && noack_config->support == PACKET_ENABLE))
2577 {
2578 putpkt ("QStartNoAckMode");
2579 getpkt (&rs->buf, &rs->buf_size, 0);
2580 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
2581 rs->noack_mode = 1;
2582 }
2583
2584 if (args->extended_p)
2585 {
2586 /* Tell the remote that we are using the extended protocol. */
2587 putpkt ("!");
2588 getpkt (&rs->buf, &rs->buf_size, 0);
2589 }
2590
2591 /* Next, if the target can specify a description, read it. We do
2592 this before anything involving memory or registers. */
2593 target_find_description ();
2594
2595 /* On OSs where the list of libraries is global to all
2596 processes, we fetch them early. */
2597 if (gdbarch_has_global_solist (target_gdbarch))
2598 solib_add (NULL, args->from_tty, args->target, auto_solib_add);
2599
2600 if (non_stop)
2601 {
2602 if (!rs->non_stop_aware)
2603 error (_("Non-stop mode requested, but remote does not support non-stop"));
2604
2605 putpkt ("QNonStop:1");
2606 getpkt (&rs->buf, &rs->buf_size, 0);
2607
2608 if (strcmp (rs->buf, "OK") != 0)
2609 error ("Remote refused setting non-stop mode with: %s", rs->buf);
2610
2611 /* Find about threads and processes the stub is already
2612 controlling. We default to adding them in the running state.
2613 The '?' query below will then tell us about which threads are
2614 stopped. */
2615 remote_threads_info (args->target);
2616 }
2617 else if (rs->non_stop_aware)
2618 {
2619 /* Don't assume that the stub can operate in all-stop mode.
2620 Request it explicitely. */
2621 putpkt ("QNonStop:0");
2622 getpkt (&rs->buf, &rs->buf_size, 0);
2623
2624 if (strcmp (rs->buf, "OK") != 0)
2625 error ("Remote refused setting all-stop mode with: %s", rs->buf);
2626 }
2627
2628 /* Check whether the target is running now. */
2629 putpkt ("?");
2630 getpkt (&rs->buf, &rs->buf_size, 0);
2631
2632 if (!non_stop)
2633 {
2634 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2635 {
2636 if (args->extended_p)
2637 {
2638 /* We're connected, but not running. Drop out before we
2639 call start_remote. */
2640 target_mark_exited (args->target);
2641 return;
2642 }
2643 else
2644 error (_("The target is not running (try extended-remote?)"));
2645 }
2646 else
2647 {
2648 /* Save the reply for later. */
2649 wait_status = alloca (strlen (rs->buf) + 1);
2650 strcpy (wait_status, rs->buf);
2651 }
2652
2653 /* Let the stub know that we want it to return the thread. */
2654 set_continue_thread (minus_one_ptid);
2655
2656 /* Without this, some commands which require an active target
2657 (such as kill) won't work. This variable serves (at least)
2658 double duty as both the pid of the target process (if it has
2659 such), and as a flag indicating that a target is active.
2660 These functions should be split out into seperate variables,
2661 especially since GDB will someday have a notion of debugging
2662 several processes. */
2663 inferior_ptid = magic_null_ptid;
2664
2665 /* Now, if we have thread information, update inferior_ptid. */
2666 inferior_ptid = remote_current_thread (inferior_ptid);
2667
2668 remote_add_inferior (ptid_get_pid (inferior_ptid));
2669
2670 /* Always add the main thread. */
2671 add_thread_silent (inferior_ptid);
2672
2673 get_offsets (); /* Get text, data & bss offsets. */
2674
2675 /* If we could not find a description using qXfer, and we know
2676 how to do it some other way, try again. This is not
2677 supported for non-stop; it could be, but it is tricky if
2678 there are no stopped threads when we connect. */
2679 if (remote_read_description_p (args->target)
2680 && gdbarch_target_desc (target_gdbarch) == NULL)
2681 {
2682 target_clear_description ();
2683 target_find_description ();
2684 }
2685
2686 /* Use the previously fetched status. */
2687 gdb_assert (wait_status != NULL);
2688 strcpy (rs->buf, wait_status);
2689 rs->cached_wait_status = 1;
2690
2691 immediate_quit--;
2692 start_remote (args->from_tty); /* Initialize gdb process mechanisms. */
2693 }
2694 else
2695 {
2696 /* In non-stop, we will either get an "OK", meaning that there
2697 are no stopped threads at this time; or, a regular stop
2698 reply. In the latter case, there may be more than one thread
2699 stopped --- we pull them all out using the vStopped
2700 mechanism. */
2701 if (strcmp (rs->buf, "OK") != 0)
2702 {
2703 struct stop_reply *stop_reply;
2704 struct cleanup *old_chain;
2705
2706 stop_reply = stop_reply_xmalloc ();
2707 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
2708
2709 remote_parse_stop_reply (rs->buf, stop_reply);
2710 discard_cleanups (old_chain);
2711
2712 /* get_pending_stop_replies acks this one, and gets the rest
2713 out. */
2714 pending_stop_reply = stop_reply;
2715 remote_get_pending_stop_replies ();
2716
2717 /* Make sure that threads that were stopped remain
2718 stopped. */
2719 iterate_over_threads (set_stop_requested_callback, NULL);
2720 }
2721
2722 if (target_can_async_p ())
2723 target_async (inferior_event_handler, 0);
2724
2725 if (thread_count () == 0)
2726 {
2727 if (args->extended_p)
2728 {
2729 /* We're connected, but not running. Drop out before we
2730 call start_remote. */
2731 target_mark_exited (args->target);
2732 return;
2733 }
2734 else
2735 error (_("The target is not running (try extended-remote?)"));
2736 }
2737
2738 if (args->extended_p)
2739 target_mark_running (args->target);
2740
2741 /* Let the stub know that we want it to return the thread. */
2742
2743 /* Force the stub to choose a thread. */
2744 set_general_thread (null_ptid);
2745
2746 /* Query it. */
2747 inferior_ptid = remote_current_thread (minus_one_ptid);
2748 if (ptid_equal (inferior_ptid, minus_one_ptid))
2749 error (_("remote didn't report the current thread in non-stop mode"));
2750
2751 get_offsets (); /* Get text, data & bss offsets. */
2752
2753 /* In non-stop mode, any cached wait status will be stored in
2754 the stop reply queue. */
2755 gdb_assert (wait_status == NULL);
2756 }
2757
2758 /* If we connected to a live target, do some additional setup. */
2759 if (target_has_execution)
2760 {
2761 if (exec_bfd) /* No use without an exec file. */
2762 remote_check_symbols (symfile_objfile);
2763 }
2764
2765 /* If code is shared between processes, then breakpoints are global
2766 too; Insert them now. */
2767 if (gdbarch_has_global_solist (target_gdbarch)
2768 && breakpoints_always_inserted_mode ())
2769 insert_breakpoints ();
2770 }
2771
2772 /* Open a connection to a remote debugger.
2773 NAME is the filename used for communication. */
2774
2775 static void
2776 remote_open (char *name, int from_tty)
2777 {
2778 remote_open_1 (name, from_tty, &remote_ops, 0);
2779 }
2780
2781 /* Open a connection to a remote debugger using the extended
2782 remote gdb protocol. NAME is the filename used for communication. */
2783
2784 static void
2785 extended_remote_open (char *name, int from_tty)
2786 {
2787 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
2788 }
2789
2790 /* Generic code for opening a connection to a remote target. */
2791
2792 static void
2793 init_all_packet_configs (void)
2794 {
2795 int i;
2796 for (i = 0; i < PACKET_MAX; i++)
2797 update_packet_config (&remote_protocol_packets[i]);
2798 }
2799
2800 /* Symbol look-up. */
2801
2802 static void
2803 remote_check_symbols (struct objfile *objfile)
2804 {
2805 struct remote_state *rs = get_remote_state ();
2806 char *msg, *reply, *tmp;
2807 struct minimal_symbol *sym;
2808 int end;
2809
2810 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
2811 return;
2812
2813 /* Make sure the remote is pointing at the right process. */
2814 set_general_process ();
2815
2816 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2817 because we need both at the same time. */
2818 msg = alloca (get_remote_packet_size ());
2819
2820 /* Invite target to request symbol lookups. */
2821
2822 putpkt ("qSymbol::");
2823 getpkt (&rs->buf, &rs->buf_size, 0);
2824 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2825 reply = rs->buf;
2826
2827 while (strncmp (reply, "qSymbol:", 8) == 0)
2828 {
2829 tmp = &reply[8];
2830 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
2831 msg[end] = '\0';
2832 sym = lookup_minimal_symbol (msg, NULL, NULL);
2833 if (sym == NULL)
2834 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
2835 else
2836 {
2837 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
2838
2839 /* If this is a function address, return the start of code
2840 instead of any data function descriptor. */
2841 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2842 sym_addr,
2843 &current_target);
2844
2845 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
2846 paddr_nz (sym_addr), &reply[8]);
2847 }
2848
2849 putpkt (msg);
2850 getpkt (&rs->buf, &rs->buf_size, 0);
2851 reply = rs->buf;
2852 }
2853 }
2854
2855 static struct serial *
2856 remote_serial_open (char *name)
2857 {
2858 static int udp_warning = 0;
2859
2860 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2861 of in ser-tcp.c, because it is the remote protocol assuming that the
2862 serial connection is reliable and not the serial connection promising
2863 to be. */
2864 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2865 {
2866 warning (_("\
2867 The remote protocol may be unreliable over UDP.\n\
2868 Some events may be lost, rendering further debugging impossible."));
2869 udp_warning = 1;
2870 }
2871
2872 return serial_open (name);
2873 }
2874
2875 /* This type describes each known response to the qSupported
2876 packet. */
2877 struct protocol_feature
2878 {
2879 /* The name of this protocol feature. */
2880 const char *name;
2881
2882 /* The default for this protocol feature. */
2883 enum packet_support default_support;
2884
2885 /* The function to call when this feature is reported, or after
2886 qSupported processing if the feature is not supported.
2887 The first argument points to this structure. The second
2888 argument indicates whether the packet requested support be
2889 enabled, disabled, or probed (or the default, if this function
2890 is being called at the end of processing and this feature was
2891 not reported). The third argument may be NULL; if not NULL, it
2892 is a NUL-terminated string taken from the packet following
2893 this feature's name and an equals sign. */
2894 void (*func) (const struct protocol_feature *, enum packet_support,
2895 const char *);
2896
2897 /* The corresponding packet for this feature. Only used if
2898 FUNC is remote_supported_packet. */
2899 int packet;
2900 };
2901
2902 static void
2903 remote_supported_packet (const struct protocol_feature *feature,
2904 enum packet_support support,
2905 const char *argument)
2906 {
2907 if (argument)
2908 {
2909 warning (_("Remote qSupported response supplied an unexpected value for"
2910 " \"%s\"."), feature->name);
2911 return;
2912 }
2913
2914 if (remote_protocol_packets[feature->packet].support
2915 == PACKET_SUPPORT_UNKNOWN)
2916 remote_protocol_packets[feature->packet].support = support;
2917 }
2918
2919 static void
2920 remote_packet_size (const struct protocol_feature *feature,
2921 enum packet_support support, const char *value)
2922 {
2923 struct remote_state *rs = get_remote_state ();
2924
2925 int packet_size;
2926 char *value_end;
2927
2928 if (support != PACKET_ENABLE)
2929 return;
2930
2931 if (value == NULL || *value == '\0')
2932 {
2933 warning (_("Remote target reported \"%s\" without a size."),
2934 feature->name);
2935 return;
2936 }
2937
2938 errno = 0;
2939 packet_size = strtol (value, &value_end, 16);
2940 if (errno != 0 || *value_end != '\0' || packet_size < 0)
2941 {
2942 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2943 feature->name, value);
2944 return;
2945 }
2946
2947 if (packet_size > MAX_REMOTE_PACKET_SIZE)
2948 {
2949 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2950 packet_size, MAX_REMOTE_PACKET_SIZE);
2951 packet_size = MAX_REMOTE_PACKET_SIZE;
2952 }
2953
2954 /* Record the new maximum packet size. */
2955 rs->explicit_packet_size = packet_size;
2956 }
2957
2958 static void
2959 remote_multi_process_feature (const struct protocol_feature *feature,
2960 enum packet_support support, const char *value)
2961 {
2962 struct remote_state *rs = get_remote_state ();
2963 rs->multi_process_aware = (support == PACKET_ENABLE);
2964 }
2965
2966 static void
2967 remote_non_stop_feature (const struct protocol_feature *feature,
2968 enum packet_support support, const char *value)
2969 {
2970 struct remote_state *rs = get_remote_state ();
2971 rs->non_stop_aware = (support == PACKET_ENABLE);
2972 }
2973
2974 static struct protocol_feature remote_protocol_features[] = {
2975 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
2976 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
2977 PACKET_qXfer_auxv },
2978 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
2979 PACKET_qXfer_features },
2980 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
2981 PACKET_qXfer_libraries },
2982 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
2983 PACKET_qXfer_memory_map },
2984 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
2985 PACKET_qXfer_spu_read },
2986 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
2987 PACKET_qXfer_spu_write },
2988 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
2989 PACKET_qXfer_osdata },
2990 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
2991 PACKET_QPassSignals },
2992 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
2993 PACKET_QStartNoAckMode },
2994 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
2995 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
2996 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
2997 PACKET_qXfer_siginfo_read },
2998 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
2999 PACKET_qXfer_siginfo_write },
3000 };
3001
3002 static void
3003 remote_query_supported (void)
3004 {
3005 struct remote_state *rs = get_remote_state ();
3006 char *next;
3007 int i;
3008 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3009
3010 /* The packet support flags are handled differently for this packet
3011 than for most others. We treat an error, a disabled packet, and
3012 an empty response identically: any features which must be reported
3013 to be used will be automatically disabled. An empty buffer
3014 accomplishes this, since that is also the representation for a list
3015 containing no features. */
3016
3017 rs->buf[0] = 0;
3018 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3019 {
3020 if (rs->extended)
3021 putpkt ("qSupported:multiprocess+");
3022 else
3023 putpkt ("qSupported");
3024
3025 getpkt (&rs->buf, &rs->buf_size, 0);
3026
3027 /* If an error occured, warn, but do not return - just reset the
3028 buffer to empty and go on to disable features. */
3029 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3030 == PACKET_ERROR)
3031 {
3032 warning (_("Remote failure reply: %s"), rs->buf);
3033 rs->buf[0] = 0;
3034 }
3035 }
3036
3037 memset (seen, 0, sizeof (seen));
3038
3039 next = rs->buf;
3040 while (*next)
3041 {
3042 enum packet_support is_supported;
3043 char *p, *end, *name_end, *value;
3044
3045 /* First separate out this item from the rest of the packet. If
3046 there's another item after this, we overwrite the separator
3047 (terminated strings are much easier to work with). */
3048 p = next;
3049 end = strchr (p, ';');
3050 if (end == NULL)
3051 {
3052 end = p + strlen (p);
3053 next = end;
3054 }
3055 else
3056 {
3057 *end = '\0';
3058 next = end + 1;
3059
3060 if (end == p)
3061 {
3062 warning (_("empty item in \"qSupported\" response"));
3063 continue;
3064 }
3065 }
3066
3067 name_end = strchr (p, '=');
3068 if (name_end)
3069 {
3070 /* This is a name=value entry. */
3071 is_supported = PACKET_ENABLE;
3072 value = name_end + 1;
3073 *name_end = '\0';
3074 }
3075 else
3076 {
3077 value = NULL;
3078 switch (end[-1])
3079 {
3080 case '+':
3081 is_supported = PACKET_ENABLE;
3082 break;
3083
3084 case '-':
3085 is_supported = PACKET_DISABLE;
3086 break;
3087
3088 case '?':
3089 is_supported = PACKET_SUPPORT_UNKNOWN;
3090 break;
3091
3092 default:
3093 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
3094 continue;
3095 }
3096 end[-1] = '\0';
3097 }
3098
3099 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3100 if (strcmp (remote_protocol_features[i].name, p) == 0)
3101 {
3102 const struct protocol_feature *feature;
3103
3104 seen[i] = 1;
3105 feature = &remote_protocol_features[i];
3106 feature->func (feature, is_supported, value);
3107 break;
3108 }
3109 }
3110
3111 /* If we increased the packet size, make sure to increase the global
3112 buffer size also. We delay this until after parsing the entire
3113 qSupported packet, because this is the same buffer we were
3114 parsing. */
3115 if (rs->buf_size < rs->explicit_packet_size)
3116 {
3117 rs->buf_size = rs->explicit_packet_size;
3118 rs->buf = xrealloc (rs->buf, rs->buf_size);
3119 }
3120
3121 /* Handle the defaults for unmentioned features. */
3122 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3123 if (!seen[i])
3124 {
3125 const struct protocol_feature *feature;
3126
3127 feature = &remote_protocol_features[i];
3128 feature->func (feature, feature->default_support, NULL);
3129 }
3130 }
3131
3132
3133 static void
3134 remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p)
3135 {
3136 struct remote_state *rs = get_remote_state ();
3137
3138 if (name == 0)
3139 error (_("To open a remote debug connection, you need to specify what\n"
3140 "serial device is attached to the remote system\n"
3141 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
3142
3143 /* See FIXME above. */
3144 if (!target_async_permitted)
3145 wait_forever_enabled_p = 1;
3146
3147 /* If we're connected to a running target, target_preopen will kill it.
3148 But if we're connected to a target system with no running process,
3149 then we will still be connected when it returns. Ask this question
3150 first, before target_preopen has a chance to kill anything. */
3151 if (remote_desc != NULL && !target_has_execution)
3152 {
3153 if (!from_tty
3154 || query (_("Already connected to a remote target. Disconnect? ")))
3155 pop_target ();
3156 else
3157 error (_("Still connected."));
3158 }
3159
3160 target_preopen (from_tty);
3161
3162 unpush_target (target);
3163
3164 /* This time without a query. If we were connected to an
3165 extended-remote target and target_preopen killed the running
3166 process, we may still be connected. If we are starting "target
3167 remote" now, the extended-remote target will not have been
3168 removed by unpush_target. */
3169 if (remote_desc != NULL && !target_has_execution)
3170 pop_target ();
3171
3172 /* Make sure we send the passed signals list the next time we resume. */
3173 xfree (last_pass_packet);
3174 last_pass_packet = NULL;
3175
3176 remote_fileio_reset ();
3177 reopen_exec_file ();
3178 reread_symbols ();
3179
3180 remote_desc = remote_serial_open (name);
3181 if (!remote_desc)
3182 perror_with_name (name);
3183
3184 if (baud_rate != -1)
3185 {
3186 if (serial_setbaudrate (remote_desc, baud_rate))
3187 {
3188 /* The requested speed could not be set. Error out to
3189 top level after closing remote_desc. Take care to
3190 set remote_desc to NULL to avoid closing remote_desc
3191 more than once. */
3192 serial_close (remote_desc);
3193 remote_desc = NULL;
3194 perror_with_name (name);
3195 }
3196 }
3197
3198 serial_raw (remote_desc);
3199
3200 /* If there is something sitting in the buffer we might take it as a
3201 response to a command, which would be bad. */
3202 serial_flush_input (remote_desc);
3203
3204 if (from_tty)
3205 {
3206 puts_filtered ("Remote debugging using ");
3207 puts_filtered (name);
3208 puts_filtered ("\n");
3209 }
3210 push_target (target); /* Switch to using remote target now. */
3211
3212 /* Assume that the target is not running, until we learn otherwise. */
3213 if (extended_p)
3214 target_mark_exited (target);
3215
3216 /* Register extra event sources in the event loop. */
3217 remote_async_inferior_event_token
3218 = create_async_event_handler (remote_async_inferior_event_handler,
3219 NULL);
3220 remote_async_get_pending_events_token
3221 = create_async_event_handler (remote_async_get_pending_events_handler,
3222 NULL);
3223
3224 /* Reset the target state; these things will be queried either by
3225 remote_query_supported or as they are needed. */
3226 init_all_packet_configs ();
3227 rs->cached_wait_status = 0;
3228 rs->explicit_packet_size = 0;
3229 rs->noack_mode = 0;
3230 rs->multi_process_aware = 0;
3231 rs->extended = extended_p;
3232 rs->non_stop_aware = 0;
3233 rs->waiting_for_stop_reply = 0;
3234
3235 general_thread = not_sent_ptid;
3236 continue_thread = not_sent_ptid;
3237
3238 /* Probe for ability to use "ThreadInfo" query, as required. */
3239 use_threadinfo_query = 1;
3240 use_threadextra_query = 1;
3241
3242 if (target_async_permitted)
3243 {
3244 /* With this target we start out by owning the terminal. */
3245 remote_async_terminal_ours_p = 1;
3246
3247 /* FIXME: cagney/1999-09-23: During the initial connection it is
3248 assumed that the target is already ready and able to respond to
3249 requests. Unfortunately remote_start_remote() eventually calls
3250 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
3251 around this. Eventually a mechanism that allows
3252 wait_for_inferior() to expect/get timeouts will be
3253 implemented. */
3254 wait_forever_enabled_p = 0;
3255 }
3256
3257 /* First delete any symbols previously loaded from shared libraries. */
3258 no_shared_libraries (NULL, 0);
3259
3260 /* Start afresh. */
3261 init_thread_list ();
3262
3263 /* Start the remote connection. If error() or QUIT, discard this
3264 target (we'd otherwise be in an inconsistent state) and then
3265 propogate the error on up the exception chain. This ensures that
3266 the caller doesn't stumble along blindly assuming that the
3267 function succeeded. The CLI doesn't have this problem but other
3268 UI's, such as MI do.
3269
3270 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
3271 this function should return an error indication letting the
3272 caller restore the previous state. Unfortunately the command
3273 ``target remote'' is directly wired to this function making that
3274 impossible. On a positive note, the CLI side of this problem has
3275 been fixed - the function set_cmd_context() makes it possible for
3276 all the ``target ....'' commands to share a common callback
3277 function. See cli-dump.c. */
3278 {
3279 struct gdb_exception ex;
3280 struct start_remote_args args;
3281
3282 args.from_tty = from_tty;
3283 args.target = target;
3284 args.extended_p = extended_p;
3285
3286 ex = catch_exception (uiout, remote_start_remote, &args, RETURN_MASK_ALL);
3287 if (ex.reason < 0)
3288 {
3289 /* Pop the partially set up target - unless something else did
3290 already before throwing the exception. */
3291 if (remote_desc != NULL)
3292 pop_target ();
3293 if (target_async_permitted)
3294 wait_forever_enabled_p = 1;
3295 throw_exception (ex);
3296 }
3297 }
3298
3299 if (target_async_permitted)
3300 wait_forever_enabled_p = 1;
3301 }
3302
3303 /* This takes a program previously attached to and detaches it. After
3304 this is done, GDB can be used to debug some other program. We
3305 better not have left any breakpoints in the target program or it'll
3306 die when it hits one. */
3307
3308 static void
3309 remote_detach_1 (char *args, int from_tty, int extended)
3310 {
3311 int pid = ptid_get_pid (inferior_ptid);
3312 struct remote_state *rs = get_remote_state ();
3313
3314 if (args)
3315 error (_("Argument given to \"detach\" when remotely debugging."));
3316
3317 if (!target_has_execution)
3318 error (_("No process to detach from."));
3319
3320 /* Tell the remote target to detach. */
3321 if (remote_multi_process_p (rs))
3322 sprintf (rs->buf, "D;%x", pid);
3323 else
3324 strcpy (rs->buf, "D");
3325
3326 putpkt (rs->buf);
3327 getpkt (&rs->buf, &rs->buf_size, 0);
3328
3329 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
3330 ;
3331 else if (rs->buf[0] == '\0')
3332 error (_("Remote doesn't know how to detach"));
3333 else
3334 error (_("Can't detach process."));
3335
3336 if (from_tty)
3337 {
3338 if (remote_multi_process_p (rs))
3339 printf_filtered (_("Detached from remote %s.\n"),
3340 target_pid_to_str (pid_to_ptid (pid)));
3341 else
3342 {
3343 if (extended)
3344 puts_filtered (_("Detached from remote process.\n"));
3345 else
3346 puts_filtered (_("Ending remote debugging.\n"));
3347 }
3348 }
3349
3350 discard_pending_stop_replies (pid);
3351 target_mourn_inferior ();
3352 }
3353
3354 static void
3355 remote_detach (struct target_ops *ops, char *args, int from_tty)
3356 {
3357 remote_detach_1 (args, from_tty, 0);
3358 }
3359
3360 static void
3361 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
3362 {
3363 remote_detach_1 (args, from_tty, 1);
3364 }
3365
3366 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
3367
3368 static void
3369 remote_disconnect (struct target_ops *target, char *args, int from_tty)
3370 {
3371 if (args)
3372 error (_("Argument given to \"disconnect\" when remotely debugging."));
3373
3374 /* Make sure we unpush even the extended remote targets; mourn
3375 won't do it. So call remote_mourn_1 directly instead of
3376 target_mourn_inferior. */
3377 remote_mourn_1 (target);
3378
3379 if (from_tty)
3380 puts_filtered ("Ending remote debugging.\n");
3381 }
3382
3383 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
3384 be chatty about it. */
3385
3386 static void
3387 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
3388 {
3389 struct remote_state *rs = get_remote_state ();
3390 int pid;
3391 char *dummy;
3392 char *wait_status = NULL;
3393 struct inferior *inf;
3394
3395 if (!args)
3396 error_no_arg (_("process-id to attach"));
3397
3398 dummy = args;
3399 pid = strtol (args, &dummy, 0);
3400 /* Some targets don't set errno on errors, grrr! */
3401 if (pid == 0 && args == dummy)
3402 error (_("Illegal process-id: %s."), args);
3403
3404 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3405 error (_("This target does not support attaching to a process"));
3406
3407 sprintf (rs->buf, "vAttach;%x", pid);
3408 putpkt (rs->buf);
3409 getpkt (&rs->buf, &rs->buf_size, 0);
3410
3411 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
3412 {
3413 if (from_tty)
3414 printf_unfiltered (_("Attached to %s\n"),
3415 target_pid_to_str (pid_to_ptid (pid)));
3416
3417 if (!non_stop)
3418 {
3419 /* Save the reply for later. */
3420 wait_status = alloca (strlen (rs->buf) + 1);
3421 strcpy (wait_status, rs->buf);
3422 }
3423 else if (strcmp (rs->buf, "OK") != 0)
3424 error (_("Attaching to %s failed with: %s"),
3425 target_pid_to_str (pid_to_ptid (pid)),
3426 rs->buf);
3427 }
3428 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3429 error (_("This target does not support attaching to a process"));
3430 else
3431 error (_("Attaching to %s failed"),
3432 target_pid_to_str (pid_to_ptid (pid)));
3433
3434 inferior_ptid = pid_to_ptid (pid);
3435
3436 /* Now, if we have thread information, update inferior_ptid. */
3437 inferior_ptid = remote_current_thread (inferior_ptid);
3438
3439 inf = remote_add_inferior (pid);
3440 inf->attach_flag = 1;
3441
3442 if (non_stop)
3443 /* Get list of threads. */
3444 remote_threads_info (target);
3445 else
3446 /* Add the main thread to the thread list. */
3447 add_thread_silent (inferior_ptid);
3448
3449 /* Next, if the target can specify a description, read it. We do
3450 this before anything involving memory or registers. */
3451 target_find_description ();
3452
3453 if (!non_stop)
3454 {
3455 /* Use the previously fetched status. */
3456 gdb_assert (wait_status != NULL);
3457
3458 if (target_can_async_p ())
3459 {
3460 struct stop_reply *stop_reply;
3461 struct cleanup *old_chain;
3462
3463 stop_reply = stop_reply_xmalloc ();
3464 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3465 remote_parse_stop_reply (wait_status, stop_reply);
3466 discard_cleanups (old_chain);
3467 push_stop_reply (stop_reply);
3468
3469 target_async (inferior_event_handler, 0);
3470 }
3471 else
3472 {
3473 gdb_assert (wait_status != NULL);
3474 strcpy (rs->buf, wait_status);
3475 rs->cached_wait_status = 1;
3476 }
3477 }
3478 else
3479 gdb_assert (wait_status == NULL);
3480 }
3481
3482 static void
3483 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
3484 {
3485 extended_remote_attach_1 (ops, args, from_tty);
3486 }
3487
3488 /* Convert hex digit A to a number. */
3489
3490 static int
3491 fromhex (int a)
3492 {
3493 if (a >= '0' && a <= '9')
3494 return a - '0';
3495 else if (a >= 'a' && a <= 'f')
3496 return a - 'a' + 10;
3497 else if (a >= 'A' && a <= 'F')
3498 return a - 'A' + 10;
3499 else
3500 error (_("Reply contains invalid hex digit %d"), a);
3501 }
3502
3503 static int
3504 hex2bin (const char *hex, gdb_byte *bin, int count)
3505 {
3506 int i;
3507
3508 for (i = 0; i < count; i++)
3509 {
3510 if (hex[0] == 0 || hex[1] == 0)
3511 {
3512 /* Hex string is short, or of uneven length.
3513 Return the count that has been converted so far. */
3514 return i;
3515 }
3516 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
3517 hex += 2;
3518 }
3519 return i;
3520 }
3521
3522 /* Convert number NIB to a hex digit. */
3523
3524 static int
3525 tohex (int nib)
3526 {
3527 if (nib < 10)
3528 return '0' + nib;
3529 else
3530 return 'a' + nib - 10;
3531 }
3532
3533 static int
3534 bin2hex (const gdb_byte *bin, char *hex, int count)
3535 {
3536 int i;
3537 /* May use a length, or a nul-terminated string as input. */
3538 if (count == 0)
3539 count = strlen ((char *) bin);
3540
3541 for (i = 0; i < count; i++)
3542 {
3543 *hex++ = tohex ((*bin >> 4) & 0xf);
3544 *hex++ = tohex (*bin++ & 0xf);
3545 }
3546 *hex = 0;
3547 return i;
3548 }
3549 \f
3550 /* Check for the availability of vCont. This function should also check
3551 the response. */
3552
3553 static void
3554 remote_vcont_probe (struct remote_state *rs)
3555 {
3556 char *buf;
3557
3558 strcpy (rs->buf, "vCont?");
3559 putpkt (rs->buf);
3560 getpkt (&rs->buf, &rs->buf_size, 0);
3561 buf = rs->buf;
3562
3563 /* Make sure that the features we assume are supported. */
3564 if (strncmp (buf, "vCont", 5) == 0)
3565 {
3566 char *p = &buf[5];
3567 int support_s, support_S, support_c, support_C;
3568
3569 support_s = 0;
3570 support_S = 0;
3571 support_c = 0;
3572 support_C = 0;
3573 rs->support_vCont_t = 0;
3574 while (p && *p == ';')
3575 {
3576 p++;
3577 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
3578 support_s = 1;
3579 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
3580 support_S = 1;
3581 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
3582 support_c = 1;
3583 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
3584 support_C = 1;
3585 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
3586 rs->support_vCont_t = 1;
3587
3588 p = strchr (p, ';');
3589 }
3590
3591 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3592 BUF will make packet_ok disable the packet. */
3593 if (!support_s || !support_S || !support_c || !support_C)
3594 buf[0] = 0;
3595 }
3596
3597 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
3598 }
3599
3600 /* Resume the remote inferior by using a "vCont" packet. The thread
3601 to be resumed is PTID; STEP and SIGGNAL indicate whether the
3602 resumed thread should be single-stepped and/or signalled. If PTID
3603 equals minus_one_ptid, then all threads are resumed; the thread to
3604 be stepped and/or signalled is given in the global INFERIOR_PTID.
3605 This function returns non-zero iff it resumes the inferior.
3606
3607 This function issues a strict subset of all possible vCont commands at the
3608 moment. */
3609
3610 static int
3611 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
3612 {
3613 struct remote_state *rs = get_remote_state ();
3614 char *p;
3615 char *endp;
3616
3617 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3618 remote_vcont_probe (rs);
3619
3620 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
3621 return 0;
3622
3623 p = rs->buf;
3624 endp = rs->buf + get_remote_packet_size ();
3625
3626 /* If we could generate a wider range of packets, we'd have to worry
3627 about overflowing BUF. Should there be a generic
3628 "multi-part-packet" packet? */
3629
3630 if (ptid_equal (ptid, magic_null_ptid))
3631 {
3632 /* MAGIC_NULL_PTID means that we don't have any active threads,
3633 so we don't have any TID numbers the inferior will
3634 understand. Make sure to only send forms that do not specify
3635 a TID. */
3636 if (step && siggnal != TARGET_SIGNAL_0)
3637 xsnprintf (p, endp - p, "vCont;S%02x", siggnal);
3638 else if (step)
3639 xsnprintf (p, endp - p, "vCont;s");
3640 else if (siggnal != TARGET_SIGNAL_0)
3641 xsnprintf (p, endp - p, "vCont;C%02x", siggnal);
3642 else
3643 xsnprintf (p, endp - p, "vCont;c");
3644 }
3645 else if (ptid_equal (ptid, minus_one_ptid))
3646 {
3647 /* Resume all threads, with preference for INFERIOR_PTID. */
3648 if (step && siggnal != TARGET_SIGNAL_0)
3649 {
3650 /* Step inferior_ptid with signal. */
3651 p += xsnprintf (p, endp - p, "vCont;S%02x:", siggnal);
3652 p = write_ptid (p, endp, inferior_ptid);
3653 /* And continue others. */
3654 p += xsnprintf (p, endp - p, ";c");
3655 }
3656 else if (step)
3657 {
3658 /* Step inferior_ptid. */
3659 p += xsnprintf (p, endp - p, "vCont;s:");
3660 p = write_ptid (p, endp, inferior_ptid);
3661 /* And continue others. */
3662 p += xsnprintf (p, endp - p, ";c");
3663 }
3664 else if (siggnal != TARGET_SIGNAL_0)
3665 {
3666 /* Continue inferior_ptid with signal. */
3667 p += xsnprintf (p, endp - p, "vCont;C%02x:", siggnal);
3668 p = write_ptid (p, endp, inferior_ptid);
3669 /* And continue others. */
3670 p += xsnprintf (p, endp - p, ";c");
3671 }
3672 else
3673 xsnprintf (p, endp - p, "vCont;c");
3674 }
3675 else
3676 {
3677 /* Scheduler locking; resume only PTID. */
3678 if (step && siggnal != TARGET_SIGNAL_0)
3679 {
3680 /* Step ptid with signal. */
3681 p += xsnprintf (p, endp - p, "vCont;S%02x:", siggnal);
3682 p = write_ptid (p, endp, ptid);
3683 }
3684 else if (step)
3685 {
3686 /* Step ptid. */
3687 p += xsnprintf (p, endp - p, "vCont;s:");
3688 p = write_ptid (p, endp, ptid);
3689 }
3690 else if (siggnal != TARGET_SIGNAL_0)
3691 {
3692 /* Continue ptid with signal. */
3693 p += xsnprintf (p, endp - p, "vCont;C%02x:", siggnal);
3694 p = write_ptid (p, endp, ptid);
3695 }
3696 else
3697 {
3698 /* Continue ptid. */
3699 p += xsnprintf (p, endp - p, "vCont;c:");
3700 p = write_ptid (p, endp, ptid);
3701 }
3702 }
3703
3704 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
3705 putpkt (rs->buf);
3706
3707 if (non_stop)
3708 {
3709 /* In non-stop, the stub replies to vCont with "OK". The stop
3710 reply will be reported asynchronously by means of a `%Stop'
3711 notification. */
3712 getpkt (&rs->buf, &rs->buf_size, 0);
3713 if (strcmp (rs->buf, "OK") != 0)
3714 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
3715 }
3716
3717 return 1;
3718 }
3719
3720 /* Tell the remote machine to resume. */
3721
3722 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
3723
3724 static int last_sent_step;
3725
3726 static void
3727 remote_resume (struct target_ops *ops,
3728 ptid_t ptid, int step, enum target_signal siggnal)
3729 {
3730 struct remote_state *rs = get_remote_state ();
3731 char *buf;
3732
3733 last_sent_signal = siggnal;
3734 last_sent_step = step;
3735
3736 /* Update the inferior on signals to silently pass, if they've changed. */
3737 remote_pass_signals ();
3738
3739 /* The vCont packet doesn't need to specify threads via Hc. */
3740 if (remote_vcont_resume (ptid, step, siggnal))
3741 goto done;
3742
3743 /* All other supported resume packets do use Hc, so set the continue
3744 thread. */
3745 if (ptid_equal (ptid, minus_one_ptid))
3746 set_continue_thread (any_thread_ptid);
3747 else
3748 set_continue_thread (ptid);
3749
3750 buf = rs->buf;
3751 if (execution_direction == EXEC_REVERSE)
3752 {
3753 /* We don't pass signals to the target in reverse exec mode. */
3754 if (info_verbose && siggnal != TARGET_SIGNAL_0)
3755 warning (" - Can't pass signal %d to target in reverse: ignored.\n",
3756 siggnal);
3757 strcpy (buf, step ? "bs" : "bc");
3758 }
3759 else if (siggnal != TARGET_SIGNAL_0)
3760 {
3761 buf[0] = step ? 'S' : 'C';
3762 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
3763 buf[2] = tohex (((int) siggnal) & 0xf);
3764 buf[3] = '\0';
3765 }
3766 else
3767 strcpy (buf, step ? "s" : "c");
3768
3769 putpkt (buf);
3770
3771 done:
3772 /* We are about to start executing the inferior, let's register it
3773 with the event loop. NOTE: this is the one place where all the
3774 execution commands end up. We could alternatively do this in each
3775 of the execution commands in infcmd.c. */
3776 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3777 into infcmd.c in order to allow inferior function calls to work
3778 NOT asynchronously. */
3779 if (target_can_async_p ())
3780 target_async (inferior_event_handler, 0);
3781
3782 /* We've just told the target to resume. The remote server will
3783 wait for the inferior to stop, and then send a stop reply. In
3784 the mean time, we can't start another command/query ourselves
3785 because the stub wouldn't be ready to process it. This applies
3786 only to the base all-stop protocol, however. In non-stop (which
3787 only supports vCont), the stub replies with an "OK", and is
3788 immediate able to process further serial input. */
3789 if (!non_stop)
3790 rs->waiting_for_stop_reply = 1;
3791 }
3792 \f
3793
3794 /* Set up the signal handler for SIGINT, while the target is
3795 executing, ovewriting the 'regular' SIGINT signal handler. */
3796 static void
3797 initialize_sigint_signal_handler (void)
3798 {
3799 signal (SIGINT, handle_remote_sigint);
3800 }
3801
3802 /* Signal handler for SIGINT, while the target is executing. */
3803 static void
3804 handle_remote_sigint (int sig)
3805 {
3806 signal (sig, handle_remote_sigint_twice);
3807 mark_async_signal_handler_wrapper (sigint_remote_token);
3808 }
3809
3810 /* Signal handler for SIGINT, installed after SIGINT has already been
3811 sent once. It will take effect the second time that the user sends
3812 a ^C. */
3813 static void
3814 handle_remote_sigint_twice (int sig)
3815 {
3816 signal (sig, handle_remote_sigint);
3817 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
3818 }
3819
3820 /* Perform the real interruption of the target execution, in response
3821 to a ^C. */
3822 static void
3823 async_remote_interrupt (gdb_client_data arg)
3824 {
3825 if (remote_debug)
3826 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
3827
3828 target_stop (inferior_ptid);
3829 }
3830
3831 /* Perform interrupt, if the first attempt did not succeed. Just give
3832 up on the target alltogether. */
3833 void
3834 async_remote_interrupt_twice (gdb_client_data arg)
3835 {
3836 if (remote_debug)
3837 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
3838
3839 interrupt_query ();
3840 }
3841
3842 /* Reinstall the usual SIGINT handlers, after the target has
3843 stopped. */
3844 static void
3845 cleanup_sigint_signal_handler (void *dummy)
3846 {
3847 signal (SIGINT, handle_sigint);
3848 }
3849
3850 /* Send ^C to target to halt it. Target will respond, and send us a
3851 packet. */
3852 static void (*ofunc) (int);
3853
3854 /* The command line interface's stop routine. This function is installed
3855 as a signal handler for SIGINT. The first time a user requests a
3856 stop, we call remote_stop to send a break or ^C. If there is no
3857 response from the target (it didn't stop when the user requested it),
3858 we ask the user if he'd like to detach from the target. */
3859 static void
3860 remote_interrupt (int signo)
3861 {
3862 /* If this doesn't work, try more severe steps. */
3863 signal (signo, remote_interrupt_twice);
3864
3865 gdb_call_async_signal_handler (sigint_remote_token, 1);
3866 }
3867
3868 /* The user typed ^C twice. */
3869
3870 static void
3871 remote_interrupt_twice (int signo)
3872 {
3873 signal (signo, ofunc);
3874 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
3875 signal (signo, remote_interrupt);
3876 }
3877
3878 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
3879 thread, all threads of a remote process, or all threads of all
3880 processes. */
3881
3882 static void
3883 remote_stop_ns (ptid_t ptid)
3884 {
3885 struct remote_state *rs = get_remote_state ();
3886 char *p = rs->buf;
3887 char *endp = rs->buf + get_remote_packet_size ();
3888 struct stop_reply *reply, *next;
3889
3890 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3891 remote_vcont_probe (rs);
3892
3893 if (!rs->support_vCont_t)
3894 error (_("Remote server does not support stopping threads"));
3895
3896 if (ptid_equal (ptid, minus_one_ptid))
3897 p += xsnprintf (p, endp - p, "vCont;t");
3898 else
3899 {
3900 ptid_t nptid;
3901
3902 /* Step inferior_ptid. */
3903 p += xsnprintf (p, endp - p, "vCont;t:");
3904
3905 if (ptid_is_pid (ptid))
3906 /* All (-1) threads of process. */
3907 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3908 else
3909 {
3910 /* Small optimization: if we already have a stop reply for
3911 this thread, no use in telling the stub we want this
3912 stopped. */
3913 if (peek_stop_reply (ptid))
3914 return;
3915
3916 nptid = ptid;
3917 }
3918
3919 p = write_ptid (p, endp, nptid);
3920 }
3921
3922 /* In non-stop, we get an immediate OK reply. The stop reply will
3923 come in asynchronously by notification. */
3924 putpkt (rs->buf);
3925 getpkt (&rs->buf, &rs->buf_size, 0);
3926 if (strcmp (rs->buf, "OK") != 0)
3927 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
3928 }
3929
3930 /* All-stop version of target_stop. Sends a break or a ^C to stop the
3931 remote target. It is undefined which thread of which process
3932 reports the stop. */
3933
3934 static void
3935 remote_stop_as (ptid_t ptid)
3936 {
3937 struct remote_state *rs = get_remote_state ();
3938
3939 /* If the inferior is stopped already, but the core didn't know
3940 about it yet, just ignore the request. The cached wait status
3941 will be collected in remote_wait. */
3942 if (rs->cached_wait_status)
3943 return;
3944
3945 /* Send a break or a ^C, depending on user preference. */
3946
3947 if (remote_break)
3948 serial_send_break (remote_desc);
3949 else
3950 serial_write (remote_desc, "\003", 1);
3951 }
3952
3953 /* This is the generic stop called via the target vector. When a target
3954 interrupt is requested, either by the command line or the GUI, we
3955 will eventually end up here. */
3956
3957 static void
3958 remote_stop (ptid_t ptid)
3959 {
3960 if (remote_debug)
3961 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
3962
3963 if (non_stop)
3964 remote_stop_ns (ptid);
3965 else
3966 remote_stop_as (ptid);
3967 }
3968
3969 /* Ask the user what to do when an interrupt is received. */
3970
3971 static void
3972 interrupt_query (void)
3973 {
3974 target_terminal_ours ();
3975
3976 if (target_can_async_p ())
3977 {
3978 signal (SIGINT, handle_sigint);
3979 deprecated_throw_reason (RETURN_QUIT);
3980 }
3981 else
3982 {
3983 if (query (_("Interrupted while waiting for the program.\n\
3984 Give up (and stop debugging it)? ")))
3985 {
3986 pop_target ();
3987 deprecated_throw_reason (RETURN_QUIT);
3988 }
3989 }
3990
3991 target_terminal_inferior ();
3992 }
3993
3994 /* Enable/disable target terminal ownership. Most targets can use
3995 terminal groups to control terminal ownership. Remote targets are
3996 different in that explicit transfer of ownership to/from GDB/target
3997 is required. */
3998
3999 static void
4000 remote_terminal_inferior (void)
4001 {
4002 if (!target_async_permitted)
4003 /* Nothing to do. */
4004 return;
4005
4006 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
4007 sync_execution here. This function should only be called when
4008 GDB is resuming the inferior in the forground. A background
4009 resume (``run&'') should leave GDB in control of the terminal and
4010 consequently should not call this code. */
4011 if (!sync_execution)
4012 return;
4013 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
4014 calls target_terminal_*() idenpotent. The event-loop GDB talking
4015 to an asynchronous target with a synchronous command calls this
4016 function from both event-top.c and infrun.c/infcmd.c. Once GDB
4017 stops trying to transfer the terminal to the target when it
4018 shouldn't this guard can go away. */
4019 if (!remote_async_terminal_ours_p)
4020 return;
4021 delete_file_handler (input_fd);
4022 remote_async_terminal_ours_p = 0;
4023 initialize_sigint_signal_handler ();
4024 /* NOTE: At this point we could also register our selves as the
4025 recipient of all input. Any characters typed could then be
4026 passed on down to the target. */
4027 }
4028
4029 static void
4030 remote_terminal_ours (void)
4031 {
4032 if (!target_async_permitted)
4033 /* Nothing to do. */
4034 return;
4035
4036 /* See FIXME in remote_terminal_inferior. */
4037 if (!sync_execution)
4038 return;
4039 /* See FIXME in remote_terminal_inferior. */
4040 if (remote_async_terminal_ours_p)
4041 return;
4042 cleanup_sigint_signal_handler (NULL);
4043 add_file_handler (input_fd, stdin_event_handler, 0);
4044 remote_async_terminal_ours_p = 1;
4045 }
4046
4047 void
4048 remote_console_output (char *msg)
4049 {
4050 char *p;
4051
4052 for (p = msg; p[0] && p[1]; p += 2)
4053 {
4054 char tb[2];
4055 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4056 tb[0] = c;
4057 tb[1] = 0;
4058 fputs_unfiltered (tb, gdb_stdtarg);
4059 }
4060 gdb_flush (gdb_stdtarg);
4061 }
4062
4063 typedef struct cached_reg
4064 {
4065 int num;
4066 gdb_byte data[MAX_REGISTER_SIZE];
4067 } cached_reg_t;
4068
4069 DEF_VEC_O(cached_reg_t);
4070
4071 struct stop_reply
4072 {
4073 struct stop_reply *next;
4074
4075 ptid_t ptid;
4076
4077 struct target_waitstatus ws;
4078
4079 VEC(cached_reg_t) *regcache;
4080
4081 int stopped_by_watchpoint_p;
4082 CORE_ADDR watch_data_address;
4083
4084 int solibs_changed;
4085 int replay_event;
4086 };
4087
4088 /* The list of already fetched and acknowledged stop events. */
4089 static struct stop_reply *stop_reply_queue;
4090
4091 static struct stop_reply *
4092 stop_reply_xmalloc (void)
4093 {
4094 struct stop_reply *r = XMALLOC (struct stop_reply);
4095 r->next = NULL;
4096 return r;
4097 }
4098
4099 static void
4100 stop_reply_xfree (struct stop_reply *r)
4101 {
4102 if (r != NULL)
4103 {
4104 VEC_free (cached_reg_t, r->regcache);
4105 xfree (r);
4106 }
4107 }
4108
4109 /* Discard all pending stop replies of inferior PID. If PID is -1,
4110 discard everything. */
4111
4112 static void
4113 discard_pending_stop_replies (int pid)
4114 {
4115 struct stop_reply *prev = NULL, *reply, *next;
4116
4117 /* Discard the in-flight notification. */
4118 if (pending_stop_reply != NULL
4119 && (pid == -1
4120 || ptid_get_pid (pending_stop_reply->ptid) == pid))
4121 {
4122 stop_reply_xfree (pending_stop_reply);
4123 pending_stop_reply = NULL;
4124 }
4125
4126 /* Discard the stop replies we have already pulled with
4127 vStopped. */
4128 for (reply = stop_reply_queue; reply; reply = next)
4129 {
4130 next = reply->next;
4131 if (pid == -1
4132 || ptid_get_pid (reply->ptid) == pid)
4133 {
4134 if (reply == stop_reply_queue)
4135 stop_reply_queue = reply->next;
4136 else
4137 prev->next = reply->next;
4138
4139 stop_reply_xfree (reply);
4140 }
4141 else
4142 prev = reply;
4143 }
4144 }
4145
4146 /* Cleanup wrapper. */
4147
4148 static void
4149 do_stop_reply_xfree (void *arg)
4150 {
4151 struct stop_reply *r = arg;
4152 stop_reply_xfree (r);
4153 }
4154
4155 /* Look for a queued stop reply belonging to PTID. If one is found,
4156 remove it from the queue, and return it. Returns NULL if none is
4157 found. If there are still queued events left to process, tell the
4158 event loop to get back to target_wait soon. */
4159
4160 static struct stop_reply *
4161 queued_stop_reply (ptid_t ptid)
4162 {
4163 struct stop_reply *it, *prev;
4164 struct stop_reply head;
4165
4166 head.next = stop_reply_queue;
4167 prev = &head;
4168
4169 it = head.next;
4170
4171 if (!ptid_equal (ptid, minus_one_ptid))
4172 for (; it; prev = it, it = it->next)
4173 if (ptid_equal (ptid, it->ptid))
4174 break;
4175
4176 if (it)
4177 {
4178 prev->next = it->next;
4179 it->next = NULL;
4180 }
4181
4182 stop_reply_queue = head.next;
4183
4184 if (stop_reply_queue)
4185 /* There's still at least an event left. */
4186 mark_async_event_handler (remote_async_inferior_event_token);
4187
4188 return it;
4189 }
4190
4191 /* Push a fully parsed stop reply in the stop reply queue. Since we
4192 know that we now have at least one queued event left to pass to the
4193 core side, tell the event loop to get back to target_wait soon. */
4194
4195 static void
4196 push_stop_reply (struct stop_reply *new_event)
4197 {
4198 struct stop_reply *event;
4199
4200 if (stop_reply_queue)
4201 {
4202 for (event = stop_reply_queue;
4203 event && event->next;
4204 event = event->next)
4205 ;
4206
4207 event->next = new_event;
4208 }
4209 else
4210 stop_reply_queue = new_event;
4211
4212 mark_async_event_handler (remote_async_inferior_event_token);
4213 }
4214
4215 /* Returns true if we have a stop reply for PTID. */
4216
4217 static int
4218 peek_stop_reply (ptid_t ptid)
4219 {
4220 struct stop_reply *it;
4221
4222 for (it = stop_reply_queue; it; it = it->next)
4223 if (ptid_equal (ptid, it->ptid))
4224 {
4225 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
4226 return 1;
4227 }
4228
4229 return 0;
4230 }
4231
4232 /* Parse the stop reply in BUF. Either the function succeeds, and the
4233 result is stored in EVENT, or throws an error. */
4234
4235 static void
4236 remote_parse_stop_reply (char *buf, struct stop_reply *event)
4237 {
4238 struct remote_arch_state *rsa = get_remote_arch_state ();
4239 ULONGEST addr;
4240 char *p;
4241
4242 event->ptid = null_ptid;
4243 event->ws.kind = TARGET_WAITKIND_IGNORE;
4244 event->ws.value.integer = 0;
4245 event->solibs_changed = 0;
4246 event->replay_event = 0;
4247 event->stopped_by_watchpoint_p = 0;
4248 event->regcache = NULL;
4249
4250 switch (buf[0])
4251 {
4252 case 'T': /* Status with PC, SP, FP, ... */
4253 {
4254 gdb_byte regs[MAX_REGISTER_SIZE];
4255
4256 /* Expedited reply, containing Signal, {regno, reg} repeat. */
4257 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
4258 ss = signal number
4259 n... = register number
4260 r... = register contents
4261 */
4262
4263 p = &buf[3]; /* after Txx */
4264 while (*p)
4265 {
4266 char *p1;
4267 char *p_temp;
4268 int fieldsize;
4269 LONGEST pnum = 0;
4270
4271 /* If the packet contains a register number, save it in
4272 pnum and set p1 to point to the character following it.
4273 Otherwise p1 points to p. */
4274
4275 /* If this packet is an awatch packet, don't parse the 'a'
4276 as a register number. */
4277
4278 if (strncmp (p, "awatch", strlen("awatch")) != 0)
4279 {
4280 /* Read the ``P'' register number. */
4281 pnum = strtol (p, &p_temp, 16);
4282 p1 = p_temp;
4283 }
4284 else
4285 p1 = p;
4286
4287 if (p1 == p) /* No register number present here. */
4288 {
4289 p1 = strchr (p, ':');
4290 if (p1 == NULL)
4291 error (_("Malformed packet(a) (missing colon): %s\n\
4292 Packet: '%s'\n"),
4293 p, buf);
4294 if (strncmp (p, "thread", p1 - p) == 0)
4295 event->ptid = read_ptid (++p1, &p);
4296 else if ((strncmp (p, "watch", p1 - p) == 0)
4297 || (strncmp (p, "rwatch", p1 - p) == 0)
4298 || (strncmp (p, "awatch", p1 - p) == 0))
4299 {
4300 event->stopped_by_watchpoint_p = 1;
4301 p = unpack_varlen_hex (++p1, &addr);
4302 event->watch_data_address = (CORE_ADDR) addr;
4303 }
4304 else if (strncmp (p, "library", p1 - p) == 0)
4305 {
4306 p1++;
4307 p_temp = p1;
4308 while (*p_temp && *p_temp != ';')
4309 p_temp++;
4310
4311 event->solibs_changed = 1;
4312 p = p_temp;
4313 }
4314 else if (strncmp (p, "replaylog", p1 - p) == 0)
4315 {
4316 /* NO_HISTORY event.
4317 p1 will indicate "begin" or "end", but
4318 it makes no difference for now, so ignore it. */
4319 event->replay_event = 1;
4320 p_temp = strchr (p1 + 1, ';');
4321 if (p_temp)
4322 p = p_temp;
4323 }
4324 else
4325 {
4326 /* Silently skip unknown optional info. */
4327 p_temp = strchr (p1 + 1, ';');
4328 if (p_temp)
4329 p = p_temp;
4330 }
4331 }
4332 else
4333 {
4334 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
4335 cached_reg_t cached_reg;
4336
4337 p = p1;
4338
4339 if (*p != ':')
4340 error (_("Malformed packet(b) (missing colon): %s\n\
4341 Packet: '%s'\n"),
4342 p, buf);
4343 ++p;
4344
4345 if (reg == NULL)
4346 error (_("Remote sent bad register number %s: %s\n\
4347 Packet: '%s'\n"),
4348 phex_nz (pnum, 0), p, buf);
4349
4350 cached_reg.num = reg->regnum;
4351
4352 fieldsize = hex2bin (p, cached_reg.data,
4353 register_size (target_gdbarch,
4354 reg->regnum));
4355 p += 2 * fieldsize;
4356 if (fieldsize < register_size (target_gdbarch,
4357 reg->regnum))
4358 warning (_("Remote reply is too short: %s"), buf);
4359
4360 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
4361 }
4362
4363 if (*p != ';')
4364 error (_("Remote register badly formatted: %s\nhere: %s"),
4365 buf, p);
4366 ++p;
4367 }
4368 }
4369 /* fall through */
4370 case 'S': /* Old style status, just signal only. */
4371 if (event->solibs_changed)
4372 event->ws.kind = TARGET_WAITKIND_LOADED;
4373 else if (event->replay_event)
4374 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
4375 else
4376 {
4377 event->ws.kind = TARGET_WAITKIND_STOPPED;
4378 event->ws.value.sig = (enum target_signal)
4379 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
4380 }
4381 break;
4382 case 'W': /* Target exited. */
4383 case 'X':
4384 {
4385 char *p;
4386 int pid;
4387 ULONGEST value;
4388
4389 /* GDB used to accept only 2 hex chars here. Stubs should
4390 only send more if they detect GDB supports multi-process
4391 support. */
4392 p = unpack_varlen_hex (&buf[1], &value);
4393
4394 if (buf[0] == 'W')
4395 {
4396 /* The remote process exited. */
4397 event->ws.kind = TARGET_WAITKIND_EXITED;
4398 event->ws.value.integer = value;
4399 }
4400 else
4401 {
4402 /* The remote process exited with a signal. */
4403 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
4404 event->ws.value.sig = (enum target_signal) value;
4405 }
4406
4407 /* If no process is specified, assume inferior_ptid. */
4408 pid = ptid_get_pid (inferior_ptid);
4409 if (*p == '\0')
4410 ;
4411 else if (*p == ';')
4412 {
4413 p++;
4414
4415 if (p == '\0')
4416 ;
4417 else if (strncmp (p,
4418 "process:", sizeof ("process:") - 1) == 0)
4419 {
4420 ULONGEST upid;
4421 p += sizeof ("process:") - 1;
4422 unpack_varlen_hex (p, &upid);
4423 pid = upid;
4424 }
4425 else
4426 error (_("unknown stop reply packet: %s"), buf);
4427 }
4428 else
4429 error (_("unknown stop reply packet: %s"), buf);
4430 event->ptid = pid_to_ptid (pid);
4431 }
4432 break;
4433 }
4434
4435 if (non_stop && ptid_equal (event->ptid, null_ptid))
4436 error (_("No process or thread specified in stop reply: %s"), buf);
4437 }
4438
4439 /* When the stub wants to tell GDB about a new stop reply, it sends a
4440 stop notification (%Stop). Those can come it at any time, hence,
4441 we have to make sure that any pending putpkt/getpkt sequence we're
4442 making is finished, before querying the stub for more events with
4443 vStopped. E.g., if we started a vStopped sequence immediatelly
4444 upon receiving the %Stop notification, something like this could
4445 happen:
4446
4447 1.1) --> Hg 1
4448 1.2) <-- OK
4449 1.3) --> g
4450 1.4) <-- %Stop
4451 1.5) --> vStopped
4452 1.6) <-- (registers reply to step #1.3)
4453
4454 Obviously, the reply in step #1.6 would be unexpected to a vStopped
4455 query.
4456
4457 To solve this, whenever we parse a %Stop notification sucessfully,
4458 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
4459 doing whatever we were doing:
4460
4461 2.1) --> Hg 1
4462 2.2) <-- OK
4463 2.3) --> g
4464 2.4) <-- %Stop
4465 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
4466 2.5) <-- (registers reply to step #2.3)
4467
4468 Eventualy after step #2.5, we return to the event loop, which
4469 notices there's an event on the
4470 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
4471 associated callback --- the function below. At this point, we're
4472 always safe to start a vStopped sequence. :
4473
4474 2.6) --> vStopped
4475 2.7) <-- T05 thread:2
4476 2.8) --> vStopped
4477 2.9) --> OK
4478 */
4479
4480 static void
4481 remote_get_pending_stop_replies (void)
4482 {
4483 struct remote_state *rs = get_remote_state ();
4484 int ret;
4485
4486 if (pending_stop_reply)
4487 {
4488 /* acknowledge */
4489 putpkt ("vStopped");
4490
4491 /* Now we can rely on it. */
4492 push_stop_reply (pending_stop_reply);
4493 pending_stop_reply = NULL;
4494
4495 while (1)
4496 {
4497 getpkt (&rs->buf, &rs->buf_size, 0);
4498 if (strcmp (rs->buf, "OK") == 0)
4499 break;
4500 else
4501 {
4502 struct cleanup *old_chain;
4503 struct stop_reply *stop_reply = stop_reply_xmalloc ();
4504
4505 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4506 remote_parse_stop_reply (rs->buf, stop_reply);
4507
4508 /* acknowledge */
4509 putpkt ("vStopped");
4510
4511 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
4512 {
4513 /* Now we can rely on it. */
4514 discard_cleanups (old_chain);
4515 push_stop_reply (stop_reply);
4516 }
4517 else
4518 /* We got an unknown stop reply. */
4519 do_cleanups (old_chain);
4520 }
4521 }
4522 }
4523 }
4524
4525
4526 /* Called when it is decided that STOP_REPLY holds the info of the
4527 event that is to be returned to the core. This function always
4528 destroys STOP_REPLY. */
4529
4530 static ptid_t
4531 process_stop_reply (struct stop_reply *stop_reply,
4532 struct target_waitstatus *status)
4533 {
4534 ptid_t ptid;
4535
4536 *status = stop_reply->ws;
4537 ptid = stop_reply->ptid;
4538
4539 /* If no thread/process was reported by the stub, assume the current
4540 inferior. */
4541 if (ptid_equal (ptid, null_ptid))
4542 ptid = inferior_ptid;
4543
4544 if (status->kind != TARGET_WAITKIND_EXITED
4545 && status->kind != TARGET_WAITKIND_SIGNALLED)
4546 {
4547 /* Expedited registers. */
4548 if (stop_reply->regcache)
4549 {
4550 cached_reg_t *reg;
4551 int ix;
4552
4553 for (ix = 0;
4554 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
4555 ix++)
4556 regcache_raw_supply (get_thread_regcache (ptid),
4557 reg->num, reg->data);
4558 VEC_free (cached_reg_t, stop_reply->regcache);
4559 }
4560
4561 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
4562 remote_watch_data_address = stop_reply->watch_data_address;
4563
4564 remote_notice_new_inferior (ptid, 0);
4565 }
4566
4567 stop_reply_xfree (stop_reply);
4568 return ptid;
4569 }
4570
4571 /* The non-stop mode version of target_wait. */
4572
4573 static ptid_t
4574 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status)
4575 {
4576 struct remote_state *rs = get_remote_state ();
4577 struct remote_arch_state *rsa = get_remote_arch_state ();
4578 ptid_t event_ptid = null_ptid;
4579 struct stop_reply *stop_reply;
4580 int ret;
4581
4582 /* If in non-stop mode, get out of getpkt even if a
4583 notification is received. */
4584
4585 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4586 0 /* forever */);
4587 while (1)
4588 {
4589 if (ret != -1)
4590 switch (rs->buf[0])
4591 {
4592 case 'E': /* Error of some sort. */
4593 /* We're out of sync with the target now. Did it continue
4594 or not? We can't tell which thread it was in non-stop,
4595 so just ignore this. */
4596 warning (_("Remote failure reply: %s"), rs->buf);
4597 break;
4598 case 'O': /* Console output. */
4599 remote_console_output (rs->buf + 1);
4600 break;
4601 default:
4602 warning (_("Invalid remote reply: %s"), rs->buf);
4603 break;
4604 }
4605
4606 /* Acknowledge a pending stop reply that may have arrived in the
4607 mean time. */
4608 if (pending_stop_reply != NULL)
4609 remote_get_pending_stop_replies ();
4610
4611 /* If indeed we noticed a stop reply, we're done. */
4612 stop_reply = queued_stop_reply (ptid);
4613 if (stop_reply != NULL)
4614 return process_stop_reply (stop_reply, status);
4615
4616 /* Still no event. If we're in asynchronous mode, then just
4617 return to the event loop. */
4618 if (remote_is_async_p ())
4619 {
4620 status->kind = TARGET_WAITKIND_IGNORE;
4621 return minus_one_ptid;
4622 }
4623
4624 /* Otherwise, asynchronous mode is masked, so do a blocking
4625 wait. */
4626 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4627 1 /* forever */);
4628 }
4629 }
4630
4631 /* Wait until the remote machine stops, then return, storing status in
4632 STATUS just as `wait' would. */
4633
4634 static ptid_t
4635 remote_wait_as (ptid_t ptid, struct target_waitstatus *status)
4636 {
4637 struct remote_state *rs = get_remote_state ();
4638 struct remote_arch_state *rsa = get_remote_arch_state ();
4639 ptid_t event_ptid = null_ptid;
4640 ULONGEST addr;
4641 int solibs_changed = 0;
4642 char *buf, *p;
4643 struct stop_reply *stop_reply;
4644
4645 status->kind = TARGET_WAITKIND_IGNORE;
4646 status->value.integer = 0;
4647
4648 stop_reply = queued_stop_reply (ptid);
4649 if (stop_reply != NULL)
4650 return process_stop_reply (stop_reply, status);
4651
4652 if (rs->cached_wait_status)
4653 /* Use the cached wait status, but only once. */
4654 rs->cached_wait_status = 0;
4655 else
4656 {
4657 int ret;
4658
4659 if (!target_is_async_p ())
4660 {
4661 ofunc = signal (SIGINT, remote_interrupt);
4662 /* If the user hit C-c before this packet, or between packets,
4663 pretend that it was hit right here. */
4664 if (quit_flag)
4665 {
4666 quit_flag = 0;
4667 remote_interrupt (SIGINT);
4668 }
4669 }
4670
4671 /* FIXME: cagney/1999-09-27: If we're in async mode we should
4672 _never_ wait for ever -> test on target_is_async_p().
4673 However, before we do that we need to ensure that the caller
4674 knows how to take the target into/out of async mode. */
4675 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
4676 if (!target_is_async_p ())
4677 signal (SIGINT, ofunc);
4678 }
4679
4680 buf = rs->buf;
4681
4682 remote_stopped_by_watchpoint_p = 0;
4683
4684 /* We got something. */
4685 rs->waiting_for_stop_reply = 0;
4686
4687 switch (buf[0])
4688 {
4689 case 'E': /* Error of some sort. */
4690 /* We're out of sync with the target now. Did it continue or
4691 not? Not is more likely, so report a stop. */
4692 warning (_("Remote failure reply: %s"), buf);
4693 status->kind = TARGET_WAITKIND_STOPPED;
4694 status->value.sig = TARGET_SIGNAL_0;
4695 break;
4696 case 'F': /* File-I/O request. */
4697 remote_fileio_request (buf);
4698 break;
4699 case 'T': case 'S': case 'X': case 'W':
4700 {
4701 struct stop_reply *stop_reply;
4702 struct cleanup *old_chain;
4703
4704 stop_reply = stop_reply_xmalloc ();
4705 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4706 remote_parse_stop_reply (buf, stop_reply);
4707 discard_cleanups (old_chain);
4708 event_ptid = process_stop_reply (stop_reply, status);
4709 break;
4710 }
4711 case 'O': /* Console output. */
4712 remote_console_output (buf + 1);
4713
4714 /* The target didn't really stop; keep waiting. */
4715 rs->waiting_for_stop_reply = 1;
4716
4717 break;
4718 case '\0':
4719 if (last_sent_signal != TARGET_SIGNAL_0)
4720 {
4721 /* Zero length reply means that we tried 'S' or 'C' and the
4722 remote system doesn't support it. */
4723 target_terminal_ours_for_output ();
4724 printf_filtered
4725 ("Can't send signals to this remote system. %s not sent.\n",
4726 target_signal_to_name (last_sent_signal));
4727 last_sent_signal = TARGET_SIGNAL_0;
4728 target_terminal_inferior ();
4729
4730 strcpy ((char *) buf, last_sent_step ? "s" : "c");
4731 putpkt ((char *) buf);
4732
4733 /* We just told the target to resume, so a stop reply is in
4734 order. */
4735 rs->waiting_for_stop_reply = 1;
4736 break;
4737 }
4738 /* else fallthrough */
4739 default:
4740 warning (_("Invalid remote reply: %s"), buf);
4741 /* Keep waiting. */
4742 rs->waiting_for_stop_reply = 1;
4743 break;
4744 }
4745
4746 if (status->kind == TARGET_WAITKIND_IGNORE)
4747 /* Nothing interesting happened. */
4748 return minus_one_ptid;
4749 else if (status->kind != TARGET_WAITKIND_EXITED
4750 && status->kind != TARGET_WAITKIND_SIGNALLED)
4751 {
4752 if (!ptid_equal (event_ptid, null_ptid))
4753 record_currthread (event_ptid);
4754 else
4755 event_ptid = inferior_ptid;
4756 }
4757 else
4758 /* A process exit. Invalidate our notion of current thread. */
4759 record_currthread (minus_one_ptid);
4760
4761 return event_ptid;
4762 }
4763
4764 /* Wait until the remote machine stops, then return, storing status in
4765 STATUS just as `wait' would. */
4766
4767 static ptid_t
4768 remote_wait (struct target_ops *ops,
4769 ptid_t ptid, struct target_waitstatus *status)
4770 {
4771 ptid_t event_ptid;
4772
4773 if (non_stop)
4774 event_ptid = remote_wait_ns (ptid, status);
4775 else
4776 {
4777 /* In synchronous mode, keep waiting until the target stops. In
4778 asynchronous mode, always return to the event loop. */
4779
4780 do
4781 {
4782 event_ptid = remote_wait_as (ptid, status);
4783 }
4784 while (status->kind == TARGET_WAITKIND_IGNORE
4785 && !target_can_async_p ());
4786 }
4787
4788 if (target_can_async_p ())
4789 {
4790 /* If there are are events left in the queue tell the event loop
4791 to return here. */
4792 if (stop_reply_queue)
4793 mark_async_event_handler (remote_async_inferior_event_token);
4794 }
4795
4796 return event_ptid;
4797 }
4798
4799 /* Fetch a single register using a 'p' packet. */
4800
4801 static int
4802 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
4803 {
4804 struct remote_state *rs = get_remote_state ();
4805 char *buf, *p;
4806 char regp[MAX_REGISTER_SIZE];
4807 int i;
4808
4809 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
4810 return 0;
4811
4812 if (reg->pnum == -1)
4813 return 0;
4814
4815 p = rs->buf;
4816 *p++ = 'p';
4817 p += hexnumstr (p, reg->pnum);
4818 *p++ = '\0';
4819 remote_send (&rs->buf, &rs->buf_size);
4820
4821 buf = rs->buf;
4822
4823 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
4824 {
4825 case PACKET_OK:
4826 break;
4827 case PACKET_UNKNOWN:
4828 return 0;
4829 case PACKET_ERROR:
4830 error (_("Could not fetch register \"%s\""),
4831 gdbarch_register_name (get_regcache_arch (regcache), reg->regnum));
4832 }
4833
4834 /* If this register is unfetchable, tell the regcache. */
4835 if (buf[0] == 'x')
4836 {
4837 regcache_raw_supply (regcache, reg->regnum, NULL);
4838 return 1;
4839 }
4840
4841 /* Otherwise, parse and supply the value. */
4842 p = buf;
4843 i = 0;
4844 while (p[0] != 0)
4845 {
4846 if (p[1] == 0)
4847 error (_("fetch_register_using_p: early buf termination"));
4848
4849 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
4850 p += 2;
4851 }
4852 regcache_raw_supply (regcache, reg->regnum, regp);
4853 return 1;
4854 }
4855
4856 /* Fetch the registers included in the target's 'g' packet. */
4857
4858 static int
4859 send_g_packet (void)
4860 {
4861 struct remote_state *rs = get_remote_state ();
4862 int i, buf_len;
4863 char *p;
4864 char *regs;
4865
4866 sprintf (rs->buf, "g");
4867 remote_send (&rs->buf, &rs->buf_size);
4868
4869 /* We can get out of synch in various cases. If the first character
4870 in the buffer is not a hex character, assume that has happened
4871 and try to fetch another packet to read. */
4872 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
4873 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
4874 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
4875 && rs->buf[0] != 'x') /* New: unavailable register value. */
4876 {
4877 if (remote_debug)
4878 fprintf_unfiltered (gdb_stdlog,
4879 "Bad register packet; fetching a new packet\n");
4880 getpkt (&rs->buf, &rs->buf_size, 0);
4881 }
4882
4883 buf_len = strlen (rs->buf);
4884
4885 /* Sanity check the received packet. */
4886 if (buf_len % 2 != 0)
4887 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
4888
4889 return buf_len / 2;
4890 }
4891
4892 static void
4893 process_g_packet (struct regcache *regcache)
4894 {
4895 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4896 struct remote_state *rs = get_remote_state ();
4897 struct remote_arch_state *rsa = get_remote_arch_state ();
4898 int i, buf_len;
4899 char *p;
4900 char *regs;
4901
4902 buf_len = strlen (rs->buf);
4903
4904 /* Further sanity checks, with knowledge of the architecture. */
4905 if (buf_len > 2 * rsa->sizeof_g_packet)
4906 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
4907
4908 /* Save the size of the packet sent to us by the target. It is used
4909 as a heuristic when determining the max size of packets that the
4910 target can safely receive. */
4911 if (rsa->actual_register_packet_size == 0)
4912 rsa->actual_register_packet_size = buf_len;
4913
4914 /* If this is smaller than we guessed the 'g' packet would be,
4915 update our records. A 'g' reply that doesn't include a register's
4916 value implies either that the register is not available, or that
4917 the 'p' packet must be used. */
4918 if (buf_len < 2 * rsa->sizeof_g_packet)
4919 {
4920 rsa->sizeof_g_packet = buf_len / 2;
4921
4922 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
4923 {
4924 if (rsa->regs[i].pnum == -1)
4925 continue;
4926
4927 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
4928 rsa->regs[i].in_g_packet = 0;
4929 else
4930 rsa->regs[i].in_g_packet = 1;
4931 }
4932 }
4933
4934 regs = alloca (rsa->sizeof_g_packet);
4935
4936 /* Unimplemented registers read as all bits zero. */
4937 memset (regs, 0, rsa->sizeof_g_packet);
4938
4939 /* Reply describes registers byte by byte, each byte encoded as two
4940 hex characters. Suck them all up, then supply them to the
4941 register cacheing/storage mechanism. */
4942
4943 p = rs->buf;
4944 for (i = 0; i < rsa->sizeof_g_packet; i++)
4945 {
4946 if (p[0] == 0 || p[1] == 0)
4947 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
4948 internal_error (__FILE__, __LINE__,
4949 "unexpected end of 'g' packet reply");
4950
4951 if (p[0] == 'x' && p[1] == 'x')
4952 regs[i] = 0; /* 'x' */
4953 else
4954 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
4955 p += 2;
4956 }
4957
4958 {
4959 int i;
4960 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
4961 {
4962 struct packet_reg *r = &rsa->regs[i];
4963 if (r->in_g_packet)
4964 {
4965 if (r->offset * 2 >= strlen (rs->buf))
4966 /* This shouldn't happen - we adjusted in_g_packet above. */
4967 internal_error (__FILE__, __LINE__,
4968 "unexpected end of 'g' packet reply");
4969 else if (rs->buf[r->offset * 2] == 'x')
4970 {
4971 gdb_assert (r->offset * 2 < strlen (rs->buf));
4972 /* The register isn't available, mark it as such (at
4973 the same time setting the value to zero). */
4974 regcache_raw_supply (regcache, r->regnum, NULL);
4975 }
4976 else
4977 regcache_raw_supply (regcache, r->regnum,
4978 regs + r->offset);
4979 }
4980 }
4981 }
4982 }
4983
4984 static void
4985 fetch_registers_using_g (struct regcache *regcache)
4986 {
4987 send_g_packet ();
4988 process_g_packet (regcache);
4989 }
4990
4991 static void
4992 remote_fetch_registers (struct target_ops *ops,
4993 struct regcache *regcache, int regnum)
4994 {
4995 struct remote_state *rs = get_remote_state ();
4996 struct remote_arch_state *rsa = get_remote_arch_state ();
4997 int i;
4998
4999 set_general_thread (inferior_ptid);
5000
5001 if (regnum >= 0)
5002 {
5003 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5004 gdb_assert (reg != NULL);
5005
5006 /* If this register might be in the 'g' packet, try that first -
5007 we are likely to read more than one register. If this is the
5008 first 'g' packet, we might be overly optimistic about its
5009 contents, so fall back to 'p'. */
5010 if (reg->in_g_packet)
5011 {
5012 fetch_registers_using_g (regcache);
5013 if (reg->in_g_packet)
5014 return;
5015 }
5016
5017 if (fetch_register_using_p (regcache, reg))
5018 return;
5019
5020 /* This register is not available. */
5021 regcache_raw_supply (regcache, reg->regnum, NULL);
5022
5023 return;
5024 }
5025
5026 fetch_registers_using_g (regcache);
5027
5028 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5029 if (!rsa->regs[i].in_g_packet)
5030 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
5031 {
5032 /* This register is not available. */
5033 regcache_raw_supply (regcache, i, NULL);
5034 }
5035 }
5036
5037 /* Prepare to store registers. Since we may send them all (using a
5038 'G' request), we have to read out the ones we don't want to change
5039 first. */
5040
5041 static void
5042 remote_prepare_to_store (struct regcache *regcache)
5043 {
5044 struct remote_arch_state *rsa = get_remote_arch_state ();
5045 int i;
5046 gdb_byte buf[MAX_REGISTER_SIZE];
5047
5048 /* Make sure the entire registers array is valid. */
5049 switch (remote_protocol_packets[PACKET_P].support)
5050 {
5051 case PACKET_DISABLE:
5052 case PACKET_SUPPORT_UNKNOWN:
5053 /* Make sure all the necessary registers are cached. */
5054 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5055 if (rsa->regs[i].in_g_packet)
5056 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5057 break;
5058 case PACKET_ENABLE:
5059 break;
5060 }
5061 }
5062
5063 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
5064 packet was not recognized. */
5065
5066 static int
5067 store_register_using_P (const struct regcache *regcache, struct packet_reg *reg)
5068 {
5069 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5070 struct remote_state *rs = get_remote_state ();
5071 struct remote_arch_state *rsa = get_remote_arch_state ();
5072 /* Try storing a single register. */
5073 char *buf = rs->buf;
5074 gdb_byte regp[MAX_REGISTER_SIZE];
5075 char *p;
5076
5077 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
5078 return 0;
5079
5080 if (reg->pnum == -1)
5081 return 0;
5082
5083 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5084 p = buf + strlen (buf);
5085 regcache_raw_collect (regcache, reg->regnum, regp);
5086 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
5087 remote_send (&rs->buf, &rs->buf_size);
5088
5089 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
5090 {
5091 case PACKET_OK:
5092 return 1;
5093 case PACKET_ERROR:
5094 error (_("Could not write register \"%s\""),
5095 gdbarch_register_name (gdbarch, reg->regnum));
5096 case PACKET_UNKNOWN:
5097 return 0;
5098 default:
5099 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
5100 }
5101 }
5102
5103 /* Store register REGNUM, or all registers if REGNUM == -1, from the
5104 contents of the register cache buffer. FIXME: ignores errors. */
5105
5106 static void
5107 store_registers_using_G (const struct regcache *regcache)
5108 {
5109 struct remote_state *rs = get_remote_state ();
5110 struct remote_arch_state *rsa = get_remote_arch_state ();
5111 gdb_byte *regs;
5112 char *p;
5113
5114 /* Extract all the registers in the regcache copying them into a
5115 local buffer. */
5116 {
5117 int i;
5118 regs = alloca (rsa->sizeof_g_packet);
5119 memset (regs, 0, rsa->sizeof_g_packet);
5120 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5121 {
5122 struct packet_reg *r = &rsa->regs[i];
5123 if (r->in_g_packet)
5124 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
5125 }
5126 }
5127
5128 /* Command describes registers byte by byte,
5129 each byte encoded as two hex characters. */
5130 p = rs->buf;
5131 *p++ = 'G';
5132 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
5133 updated. */
5134 bin2hex (regs, p, rsa->sizeof_g_packet);
5135 remote_send (&rs->buf, &rs->buf_size);
5136 }
5137
5138 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
5139 of the register cache buffer. FIXME: ignores errors. */
5140
5141 static void
5142 remote_store_registers (struct target_ops *ops,
5143 struct regcache *regcache, int regnum)
5144 {
5145 struct remote_state *rs = get_remote_state ();
5146 struct remote_arch_state *rsa = get_remote_arch_state ();
5147 int i;
5148
5149 set_general_thread (inferior_ptid);
5150
5151 if (regnum >= 0)
5152 {
5153 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5154 gdb_assert (reg != NULL);
5155
5156 /* Always prefer to store registers using the 'P' packet if
5157 possible; we often change only a small number of registers.
5158 Sometimes we change a larger number; we'd need help from a
5159 higher layer to know to use 'G'. */
5160 if (store_register_using_P (regcache, reg))
5161 return;
5162
5163 /* For now, don't complain if we have no way to write the
5164 register. GDB loses track of unavailable registers too
5165 easily. Some day, this may be an error. We don't have
5166 any way to read the register, either... */
5167 if (!reg->in_g_packet)
5168 return;
5169
5170 store_registers_using_G (regcache);
5171 return;
5172 }
5173
5174 store_registers_using_G (regcache);
5175
5176 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5177 if (!rsa->regs[i].in_g_packet)
5178 if (!store_register_using_P (regcache, &rsa->regs[i]))
5179 /* See above for why we do not issue an error here. */
5180 continue;
5181 }
5182 \f
5183
5184 /* Return the number of hex digits in num. */
5185
5186 static int
5187 hexnumlen (ULONGEST num)
5188 {
5189 int i;
5190
5191 for (i = 0; num != 0; i++)
5192 num >>= 4;
5193
5194 return max (i, 1);
5195 }
5196
5197 /* Set BUF to the minimum number of hex digits representing NUM. */
5198
5199 static int
5200 hexnumstr (char *buf, ULONGEST num)
5201 {
5202 int len = hexnumlen (num);
5203 return hexnumnstr (buf, num, len);
5204 }
5205
5206
5207 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
5208
5209 static int
5210 hexnumnstr (char *buf, ULONGEST num, int width)
5211 {
5212 int i;
5213
5214 buf[width] = '\0';
5215
5216 for (i = width - 1; i >= 0; i--)
5217 {
5218 buf[i] = "0123456789abcdef"[(num & 0xf)];
5219 num >>= 4;
5220 }
5221
5222 return width;
5223 }
5224
5225 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
5226
5227 static CORE_ADDR
5228 remote_address_masked (CORE_ADDR addr)
5229 {
5230 int address_size = remote_address_size;
5231 /* If "remoteaddresssize" was not set, default to target address size. */
5232 if (!address_size)
5233 address_size = gdbarch_addr_bit (target_gdbarch);
5234
5235 if (address_size > 0
5236 && address_size < (sizeof (ULONGEST) * 8))
5237 {
5238 /* Only create a mask when that mask can safely be constructed
5239 in a ULONGEST variable. */
5240 ULONGEST mask = 1;
5241 mask = (mask << address_size) - 1;
5242 addr &= mask;
5243 }
5244 return addr;
5245 }
5246
5247 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
5248 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
5249 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
5250 (which may be more than *OUT_LEN due to escape characters). The
5251 total number of bytes in the output buffer will be at most
5252 OUT_MAXLEN. */
5253
5254 static int
5255 remote_escape_output (const gdb_byte *buffer, int len,
5256 gdb_byte *out_buf, int *out_len,
5257 int out_maxlen)
5258 {
5259 int input_index, output_index;
5260
5261 output_index = 0;
5262 for (input_index = 0; input_index < len; input_index++)
5263 {
5264 gdb_byte b = buffer[input_index];
5265
5266 if (b == '$' || b == '#' || b == '}')
5267 {
5268 /* These must be escaped. */
5269 if (output_index + 2 > out_maxlen)
5270 break;
5271 out_buf[output_index++] = '}';
5272 out_buf[output_index++] = b ^ 0x20;
5273 }
5274 else
5275 {
5276 if (output_index + 1 > out_maxlen)
5277 break;
5278 out_buf[output_index++] = b;
5279 }
5280 }
5281
5282 *out_len = input_index;
5283 return output_index;
5284 }
5285
5286 /* Convert BUFFER, escaped data LEN bytes long, into binary data
5287 in OUT_BUF. Return the number of bytes written to OUT_BUF.
5288 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
5289
5290 This function reverses remote_escape_output. It allows more
5291 escaped characters than that function does, in particular because
5292 '*' must be escaped to avoid the run-length encoding processing
5293 in reading packets. */
5294
5295 static int
5296 remote_unescape_input (const gdb_byte *buffer, int len,
5297 gdb_byte *out_buf, int out_maxlen)
5298 {
5299 int input_index, output_index;
5300 int escaped;
5301
5302 output_index = 0;
5303 escaped = 0;
5304 for (input_index = 0; input_index < len; input_index++)
5305 {
5306 gdb_byte b = buffer[input_index];
5307
5308 if (output_index + 1 > out_maxlen)
5309 {
5310 warning (_("Received too much data from remote target;"
5311 " ignoring overflow."));
5312 return output_index;
5313 }
5314
5315 if (escaped)
5316 {
5317 out_buf[output_index++] = b ^ 0x20;
5318 escaped = 0;
5319 }
5320 else if (b == '}')
5321 escaped = 1;
5322 else
5323 out_buf[output_index++] = b;
5324 }
5325
5326 if (escaped)
5327 error (_("Unmatched escape character in target response."));
5328
5329 return output_index;
5330 }
5331
5332 /* Determine whether the remote target supports binary downloading.
5333 This is accomplished by sending a no-op memory write of zero length
5334 to the target at the specified address. It does not suffice to send
5335 the whole packet, since many stubs strip the eighth bit and
5336 subsequently compute a wrong checksum, which causes real havoc with
5337 remote_write_bytes.
5338
5339 NOTE: This can still lose if the serial line is not eight-bit
5340 clean. In cases like this, the user should clear "remote
5341 X-packet". */
5342
5343 static void
5344 check_binary_download (CORE_ADDR addr)
5345 {
5346 struct remote_state *rs = get_remote_state ();
5347
5348 switch (remote_protocol_packets[PACKET_X].support)
5349 {
5350 case PACKET_DISABLE:
5351 break;
5352 case PACKET_ENABLE:
5353 break;
5354 case PACKET_SUPPORT_UNKNOWN:
5355 {
5356 char *p;
5357
5358 p = rs->buf;
5359 *p++ = 'X';
5360 p += hexnumstr (p, (ULONGEST) addr);
5361 *p++ = ',';
5362 p += hexnumstr (p, (ULONGEST) 0);
5363 *p++ = ':';
5364 *p = '\0';
5365
5366 putpkt_binary (rs->buf, (int) (p - rs->buf));
5367 getpkt (&rs->buf, &rs->buf_size, 0);
5368
5369 if (rs->buf[0] == '\0')
5370 {
5371 if (remote_debug)
5372 fprintf_unfiltered (gdb_stdlog,
5373 "binary downloading NOT suppported by target\n");
5374 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
5375 }
5376 else
5377 {
5378 if (remote_debug)
5379 fprintf_unfiltered (gdb_stdlog,
5380 "binary downloading suppported by target\n");
5381 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
5382 }
5383 break;
5384 }
5385 }
5386 }
5387
5388 /* Write memory data directly to the remote machine.
5389 This does not inform the data cache; the data cache uses this.
5390 HEADER is the starting part of the packet.
5391 MEMADDR is the address in the remote memory space.
5392 MYADDR is the address of the buffer in our space.
5393 LEN is the number of bytes.
5394 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
5395 should send data as binary ('X'), or hex-encoded ('M').
5396
5397 The function creates packet of the form
5398 <HEADER><ADDRESS>,<LENGTH>:<DATA>
5399
5400 where encoding of <DATA> is termined by PACKET_FORMAT.
5401
5402 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
5403 are omitted.
5404
5405 Returns the number of bytes transferred, or 0 (setting errno) for
5406 error. Only transfer a single packet. */
5407
5408 static int
5409 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
5410 const gdb_byte *myaddr, int len,
5411 char packet_format, int use_length)
5412 {
5413 struct remote_state *rs = get_remote_state ();
5414 char *p;
5415 char *plen = NULL;
5416 int plenlen = 0;
5417 int todo;
5418 int nr_bytes;
5419 int payload_size;
5420 int payload_length;
5421 int header_length;
5422
5423 if (packet_format != 'X' && packet_format != 'M')
5424 internal_error (__FILE__, __LINE__,
5425 "remote_write_bytes_aux: bad packet format");
5426
5427 if (len <= 0)
5428 return 0;
5429
5430 payload_size = get_memory_write_packet_size ();
5431
5432 /* The packet buffer will be large enough for the payload;
5433 get_memory_packet_size ensures this. */
5434 rs->buf[0] = '\0';
5435
5436 /* Compute the size of the actual payload by subtracting out the
5437 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
5438 */
5439 payload_size -= strlen ("$,:#NN");
5440 if (!use_length)
5441 /* The comma won't be used. */
5442 payload_size += 1;
5443 header_length = strlen (header);
5444 payload_size -= header_length;
5445 payload_size -= hexnumlen (memaddr);
5446
5447 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
5448
5449 strcat (rs->buf, header);
5450 p = rs->buf + strlen (header);
5451
5452 /* Compute a best guess of the number of bytes actually transfered. */
5453 if (packet_format == 'X')
5454 {
5455 /* Best guess at number of bytes that will fit. */
5456 todo = min (len, payload_size);
5457 if (use_length)
5458 payload_size -= hexnumlen (todo);
5459 todo = min (todo, payload_size);
5460 }
5461 else
5462 {
5463 /* Num bytes that will fit. */
5464 todo = min (len, payload_size / 2);
5465 if (use_length)
5466 payload_size -= hexnumlen (todo);
5467 todo = min (todo, payload_size / 2);
5468 }
5469
5470 if (todo <= 0)
5471 internal_error (__FILE__, __LINE__,
5472 _("minumum packet size too small to write data"));
5473
5474 /* If we already need another packet, then try to align the end
5475 of this packet to a useful boundary. */
5476 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
5477 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
5478
5479 /* Append "<memaddr>". */
5480 memaddr = remote_address_masked (memaddr);
5481 p += hexnumstr (p, (ULONGEST) memaddr);
5482
5483 if (use_length)
5484 {
5485 /* Append ",". */
5486 *p++ = ',';
5487
5488 /* Append <len>. Retain the location/size of <len>. It may need to
5489 be adjusted once the packet body has been created. */
5490 plen = p;
5491 plenlen = hexnumstr (p, (ULONGEST) todo);
5492 p += plenlen;
5493 }
5494
5495 /* Append ":". */
5496 *p++ = ':';
5497 *p = '\0';
5498
5499 /* Append the packet body. */
5500 if (packet_format == 'X')
5501 {
5502 /* Binary mode. Send target system values byte by byte, in
5503 increasing byte addresses. Only escape certain critical
5504 characters. */
5505 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
5506 payload_size);
5507
5508 /* If not all TODO bytes fit, then we'll need another packet. Make
5509 a second try to keep the end of the packet aligned. Don't do
5510 this if the packet is tiny. */
5511 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
5512 {
5513 int new_nr_bytes;
5514
5515 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
5516 - memaddr);
5517 if (new_nr_bytes != nr_bytes)
5518 payload_length = remote_escape_output (myaddr, new_nr_bytes,
5519 p, &nr_bytes,
5520 payload_size);
5521 }
5522
5523 p += payload_length;
5524 if (use_length && nr_bytes < todo)
5525 {
5526 /* Escape chars have filled up the buffer prematurely,
5527 and we have actually sent fewer bytes than planned.
5528 Fix-up the length field of the packet. Use the same
5529 number of characters as before. */
5530 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
5531 *plen = ':'; /* overwrite \0 from hexnumnstr() */
5532 }
5533 }
5534 else
5535 {
5536 /* Normal mode: Send target system values byte by byte, in
5537 increasing byte addresses. Each byte is encoded as a two hex
5538 value. */
5539 nr_bytes = bin2hex (myaddr, p, todo);
5540 p += 2 * nr_bytes;
5541 }
5542
5543 putpkt_binary (rs->buf, (int) (p - rs->buf));
5544 getpkt (&rs->buf, &rs->buf_size, 0);
5545
5546 if (rs->buf[0] == 'E')
5547 {
5548 /* There is no correspondance between what the remote protocol
5549 uses for errors and errno codes. We would like a cleaner way
5550 of representing errors (big enough to include errno codes,
5551 bfd_error codes, and others). But for now just return EIO. */
5552 errno = EIO;
5553 return 0;
5554 }
5555
5556 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
5557 fewer bytes than we'd planned. */
5558 return nr_bytes;
5559 }
5560
5561 /* Write memory data directly to the remote machine.
5562 This does not inform the data cache; the data cache uses this.
5563 MEMADDR is the address in the remote memory space.
5564 MYADDR is the address of the buffer in our space.
5565 LEN is the number of bytes.
5566
5567 Returns number of bytes transferred, or 0 (setting errno) for
5568 error. Only transfer a single packet. */
5569
5570 int
5571 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
5572 {
5573 char *packet_format = 0;
5574
5575 /* Check whether the target supports binary download. */
5576 check_binary_download (memaddr);
5577
5578 switch (remote_protocol_packets[PACKET_X].support)
5579 {
5580 case PACKET_ENABLE:
5581 packet_format = "X";
5582 break;
5583 case PACKET_DISABLE:
5584 packet_format = "M";
5585 break;
5586 case PACKET_SUPPORT_UNKNOWN:
5587 internal_error (__FILE__, __LINE__,
5588 _("remote_write_bytes: bad internal state"));
5589 default:
5590 internal_error (__FILE__, __LINE__, _("bad switch"));
5591 }
5592
5593 return remote_write_bytes_aux (packet_format,
5594 memaddr, myaddr, len, packet_format[0], 1);
5595 }
5596
5597 /* Read memory data directly from the remote machine.
5598 This does not use the data cache; the data cache uses this.
5599 MEMADDR is the address in the remote memory space.
5600 MYADDR is the address of the buffer in our space.
5601 LEN is the number of bytes.
5602
5603 Returns number of bytes transferred, or 0 for error. */
5604
5605 /* NOTE: cagney/1999-10-18: This function (and its siblings in other
5606 remote targets) shouldn't attempt to read the entire buffer.
5607 Instead it should read a single packet worth of data and then
5608 return the byte size of that packet to the caller. The caller (its
5609 caller and its callers caller ;-) already contains code for
5610 handling partial reads. */
5611
5612 int
5613 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
5614 {
5615 struct remote_state *rs = get_remote_state ();
5616 int max_buf_size; /* Max size of packet output buffer. */
5617 int origlen;
5618
5619 if (len <= 0)
5620 return 0;
5621
5622 max_buf_size = get_memory_read_packet_size ();
5623 /* The packet buffer will be large enough for the payload;
5624 get_memory_packet_size ensures this. */
5625
5626 origlen = len;
5627 while (len > 0)
5628 {
5629 char *p;
5630 int todo;
5631 int i;
5632
5633 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
5634
5635 /* construct "m"<memaddr>","<len>" */
5636 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
5637 memaddr = remote_address_masked (memaddr);
5638 p = rs->buf;
5639 *p++ = 'm';
5640 p += hexnumstr (p, (ULONGEST) memaddr);
5641 *p++ = ',';
5642 p += hexnumstr (p, (ULONGEST) todo);
5643 *p = '\0';
5644
5645 putpkt (rs->buf);
5646 getpkt (&rs->buf, &rs->buf_size, 0);
5647
5648 if (rs->buf[0] == 'E'
5649 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
5650 && rs->buf[3] == '\0')
5651 {
5652 /* There is no correspondance between what the remote
5653 protocol uses for errors and errno codes. We would like
5654 a cleaner way of representing errors (big enough to
5655 include errno codes, bfd_error codes, and others). But
5656 for now just return EIO. */
5657 errno = EIO;
5658 return 0;
5659 }
5660
5661 /* Reply describes memory byte by byte,
5662 each byte encoded as two hex characters. */
5663
5664 p = rs->buf;
5665 if ((i = hex2bin (p, myaddr, todo)) < todo)
5666 {
5667 /* Reply is short. This means that we were able to read
5668 only part of what we wanted to. */
5669 return i + (origlen - len);
5670 }
5671 myaddr += todo;
5672 memaddr += todo;
5673 len -= todo;
5674 }
5675 return origlen;
5676 }
5677 \f
5678
5679 /* Remote notification handler. */
5680
5681 static void
5682 handle_notification (char *buf, size_t length)
5683 {
5684 if (strncmp (buf, "Stop:", 5) == 0)
5685 {
5686 if (pending_stop_reply)
5687 /* We've already parsed the in-flight stop-reply, but the stub
5688 for some reason thought we didn't, possibly due to timeout
5689 on its side. Just ignore it. */
5690 ;
5691 else
5692 {
5693 struct cleanup *old_chain;
5694 struct stop_reply *reply = stop_reply_xmalloc ();
5695 old_chain = make_cleanup (do_stop_reply_xfree, reply);
5696
5697 remote_parse_stop_reply (buf + 5, reply);
5698
5699 discard_cleanups (old_chain);
5700
5701 /* Be careful to only set it after parsing, since an error
5702 may be thrown then. */
5703 pending_stop_reply = reply;
5704
5705 /* Notify the event loop there's a stop reply to acknowledge
5706 and that there may be more events to fetch. */
5707 mark_async_event_handler (remote_async_get_pending_events_token);
5708 }
5709 }
5710 else
5711 /* We ignore notifications we don't recognize, for compatibility
5712 with newer stubs. */
5713 ;
5714 }
5715
5716 \f
5717 /* Read or write LEN bytes from inferior memory at MEMADDR,
5718 transferring to or from debugger address BUFFER. Write to inferior
5719 if SHOULD_WRITE is nonzero. Returns length of data written or
5720 read; 0 for error. TARGET is unused. */
5721
5722 static int
5723 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
5724 int should_write, struct mem_attrib *attrib,
5725 struct target_ops *target)
5726 {
5727 int res;
5728
5729 set_general_thread (inferior_ptid);
5730
5731 if (should_write)
5732 res = remote_write_bytes (mem_addr, buffer, mem_len);
5733 else
5734 res = remote_read_bytes (mem_addr, buffer, mem_len);
5735
5736 return res;
5737 }
5738
5739 /* Sends a packet with content determined by the printf format string
5740 FORMAT and the remaining arguments, then gets the reply. Returns
5741 whether the packet was a success, a failure, or unknown. */
5742
5743 static enum packet_result
5744 remote_send_printf (const char *format, ...)
5745 {
5746 struct remote_state *rs = get_remote_state ();
5747 int max_size = get_remote_packet_size ();
5748
5749 va_list ap;
5750 va_start (ap, format);
5751
5752 rs->buf[0] = '\0';
5753 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
5754 internal_error (__FILE__, __LINE__, "Too long remote packet.");
5755
5756 if (putpkt (rs->buf) < 0)
5757 error (_("Communication problem with target."));
5758
5759 rs->buf[0] = '\0';
5760 getpkt (&rs->buf, &rs->buf_size, 0);
5761
5762 return packet_check_result (rs->buf);
5763 }
5764
5765 static void
5766 restore_remote_timeout (void *p)
5767 {
5768 int value = *(int *)p;
5769 remote_timeout = value;
5770 }
5771
5772 /* Flash writing can take quite some time. We'll set
5773 effectively infinite timeout for flash operations.
5774 In future, we'll need to decide on a better approach. */
5775 static const int remote_flash_timeout = 1000;
5776
5777 static void
5778 remote_flash_erase (struct target_ops *ops,
5779 ULONGEST address, LONGEST length)
5780 {
5781 int saved_remote_timeout = remote_timeout;
5782 enum packet_result ret;
5783
5784 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5785 &saved_remote_timeout);
5786 remote_timeout = remote_flash_timeout;
5787
5788 ret = remote_send_printf ("vFlashErase:%s,%s",
5789 paddr (address),
5790 phex (length, 4));
5791 switch (ret)
5792 {
5793 case PACKET_UNKNOWN:
5794 error (_("Remote target does not support flash erase"));
5795 case PACKET_ERROR:
5796 error (_("Error erasing flash with vFlashErase packet"));
5797 default:
5798 break;
5799 }
5800
5801 do_cleanups (back_to);
5802 }
5803
5804 static LONGEST
5805 remote_flash_write (struct target_ops *ops,
5806 ULONGEST address, LONGEST length,
5807 const gdb_byte *data)
5808 {
5809 int saved_remote_timeout = remote_timeout;
5810 int ret;
5811 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5812 &saved_remote_timeout);
5813
5814 remote_timeout = remote_flash_timeout;
5815 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
5816 do_cleanups (back_to);
5817
5818 return ret;
5819 }
5820
5821 static void
5822 remote_flash_done (struct target_ops *ops)
5823 {
5824 int saved_remote_timeout = remote_timeout;
5825 int ret;
5826 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5827 &saved_remote_timeout);
5828
5829 remote_timeout = remote_flash_timeout;
5830 ret = remote_send_printf ("vFlashDone");
5831 do_cleanups (back_to);
5832
5833 switch (ret)
5834 {
5835 case PACKET_UNKNOWN:
5836 error (_("Remote target does not support vFlashDone"));
5837 case PACKET_ERROR:
5838 error (_("Error finishing flash operation"));
5839 default:
5840 break;
5841 }
5842 }
5843
5844 static void
5845 remote_files_info (struct target_ops *ignore)
5846 {
5847 puts_filtered ("Debugging a target over a serial line.\n");
5848 }
5849 \f
5850 /* Stuff for dealing with the packets which are part of this protocol.
5851 See comment at top of file for details. */
5852
5853 /* Read a single character from the remote end. */
5854
5855 static int
5856 readchar (int timeout)
5857 {
5858 int ch;
5859
5860 ch = serial_readchar (remote_desc, timeout);
5861
5862 if (ch >= 0)
5863 return ch;
5864
5865 switch ((enum serial_rc) ch)
5866 {
5867 case SERIAL_EOF:
5868 pop_target ();
5869 error (_("Remote connection closed"));
5870 /* no return */
5871 case SERIAL_ERROR:
5872 perror_with_name (_("Remote communication error"));
5873 /* no return */
5874 case SERIAL_TIMEOUT:
5875 break;
5876 }
5877 return ch;
5878 }
5879
5880 /* Send the command in *BUF to the remote machine, and read the reply
5881 into *BUF. Report an error if we get an error reply. Resize
5882 *BUF using xrealloc if necessary to hold the result, and update
5883 *SIZEOF_BUF. */
5884
5885 static void
5886 remote_send (char **buf,
5887 long *sizeof_buf)
5888 {
5889 putpkt (*buf);
5890 getpkt (buf, sizeof_buf, 0);
5891
5892 if ((*buf)[0] == 'E')
5893 error (_("Remote failure reply: %s"), *buf);
5894 }
5895
5896 /* Return a pointer to an xmalloc'ed string representing an escaped
5897 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
5898 etc. The caller is responsible for releasing the returned
5899 memory. */
5900
5901 static char *
5902 escape_buffer (const char *buf, int n)
5903 {
5904 struct cleanup *old_chain;
5905 struct ui_file *stb;
5906 char *str;
5907 long length;
5908
5909 stb = mem_fileopen ();
5910 old_chain = make_cleanup_ui_file_delete (stb);
5911
5912 fputstrn_unfiltered (buf, n, 0, stb);
5913 str = ui_file_xstrdup (stb, &length);
5914 do_cleanups (old_chain);
5915 return str;
5916 }
5917
5918 /* Display a null-terminated packet on stdout, for debugging, using C
5919 string notation. */
5920
5921 static void
5922 print_packet (char *buf)
5923 {
5924 puts_filtered ("\"");
5925 fputstr_filtered (buf, '"', gdb_stdout);
5926 puts_filtered ("\"");
5927 }
5928
5929 int
5930 putpkt (char *buf)
5931 {
5932 return putpkt_binary (buf, strlen (buf));
5933 }
5934
5935 /* Send a packet to the remote machine, with error checking. The data
5936 of the packet is in BUF. The string in BUF can be at most
5937 get_remote_packet_size () - 5 to account for the $, # and checksum,
5938 and for a possible /0 if we are debugging (remote_debug) and want
5939 to print the sent packet as a string. */
5940
5941 static int
5942 putpkt_binary (char *buf, int cnt)
5943 {
5944 struct remote_state *rs = get_remote_state ();
5945 int i;
5946 unsigned char csum = 0;
5947 char *buf2 = alloca (cnt + 6);
5948
5949 int ch;
5950 int tcount = 0;
5951 char *p;
5952
5953 /* Catch cases like trying to read memory or listing threads while
5954 we're waiting for a stop reply. The remote server wouldn't be
5955 ready to handle this request, so we'd hang and timeout. We don't
5956 have to worry about this in synchronous mode, because in that
5957 case it's not possible to issue a command while the target is
5958 running. This is not a problem in non-stop mode, because in that
5959 case, the stub is always ready to process serial input. */
5960 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
5961 error (_("Cannot execute this command while the target is running."));
5962
5963 /* We're sending out a new packet. Make sure we don't look at a
5964 stale cached response. */
5965 rs->cached_wait_status = 0;
5966
5967 /* Copy the packet into buffer BUF2, encapsulating it
5968 and giving it a checksum. */
5969
5970 p = buf2;
5971 *p++ = '$';
5972
5973 for (i = 0; i < cnt; i++)
5974 {
5975 csum += buf[i];
5976 *p++ = buf[i];
5977 }
5978 *p++ = '#';
5979 *p++ = tohex ((csum >> 4) & 0xf);
5980 *p++ = tohex (csum & 0xf);
5981
5982 /* Send it over and over until we get a positive ack. */
5983
5984 while (1)
5985 {
5986 int started_error_output = 0;
5987
5988 if (remote_debug)
5989 {
5990 struct cleanup *old_chain;
5991 char *str;
5992
5993 *p = '\0';
5994 str = escape_buffer (buf2, p - buf2);
5995 old_chain = make_cleanup (xfree, str);
5996 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
5997 gdb_flush (gdb_stdlog);
5998 do_cleanups (old_chain);
5999 }
6000 if (serial_write (remote_desc, buf2, p - buf2))
6001 perror_with_name (_("putpkt: write failed"));
6002
6003 /* If this is a no acks version of the remote protocol, send the
6004 packet and move on. */
6005 if (rs->noack_mode)
6006 break;
6007
6008 /* Read until either a timeout occurs (-2) or '+' is read.
6009 Handle any notification that arrives in the mean time. */
6010 while (1)
6011 {
6012 ch = readchar (remote_timeout);
6013
6014 if (remote_debug)
6015 {
6016 switch (ch)
6017 {
6018 case '+':
6019 case '-':
6020 case SERIAL_TIMEOUT:
6021 case '$':
6022 case '%':
6023 if (started_error_output)
6024 {
6025 putchar_unfiltered ('\n');
6026 started_error_output = 0;
6027 }
6028 }
6029 }
6030
6031 switch (ch)
6032 {
6033 case '+':
6034 if (remote_debug)
6035 fprintf_unfiltered (gdb_stdlog, "Ack\n");
6036 return 1;
6037 case '-':
6038 if (remote_debug)
6039 fprintf_unfiltered (gdb_stdlog, "Nak\n");
6040 case SERIAL_TIMEOUT:
6041 tcount++;
6042 if (tcount > 3)
6043 return 0;
6044 break; /* Retransmit buffer. */
6045 case '$':
6046 {
6047 if (remote_debug)
6048 fprintf_unfiltered (gdb_stdlog,
6049 "Packet instead of Ack, ignoring it\n");
6050 /* It's probably an old response sent because an ACK
6051 was lost. Gobble up the packet and ack it so it
6052 doesn't get retransmitted when we resend this
6053 packet. */
6054 skip_frame ();
6055 serial_write (remote_desc, "+", 1);
6056 continue; /* Now, go look for +. */
6057 }
6058
6059 case '%':
6060 {
6061 int val;
6062
6063 /* If we got a notification, handle it, and go back to looking
6064 for an ack. */
6065 /* We've found the start of a notification. Now
6066 collect the data. */
6067 val = read_frame (&rs->buf, &rs->buf_size);
6068 if (val >= 0)
6069 {
6070 if (remote_debug)
6071 {
6072 struct cleanup *old_chain;
6073 char *str;
6074
6075 str = escape_buffer (rs->buf, val);
6076 old_chain = make_cleanup (xfree, str);
6077 fprintf_unfiltered (gdb_stdlog,
6078 " Notification received: %s\n",
6079 str);
6080 do_cleanups (old_chain);
6081 }
6082 handle_notification (rs->buf, val);
6083 /* We're in sync now, rewait for the ack. */
6084 tcount = 0;
6085 }
6086 else
6087 {
6088 if (remote_debug)
6089 {
6090 if (!started_error_output)
6091 {
6092 started_error_output = 1;
6093 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6094 }
6095 fputc_unfiltered (ch & 0177, gdb_stdlog);
6096 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
6097 }
6098 }
6099 continue;
6100 }
6101 /* fall-through */
6102 default:
6103 if (remote_debug)
6104 {
6105 if (!started_error_output)
6106 {
6107 started_error_output = 1;
6108 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6109 }
6110 fputc_unfiltered (ch & 0177, gdb_stdlog);
6111 }
6112 continue;
6113 }
6114 break; /* Here to retransmit. */
6115 }
6116
6117 #if 0
6118 /* This is wrong. If doing a long backtrace, the user should be
6119 able to get out next time we call QUIT, without anything as
6120 violent as interrupt_query. If we want to provide a way out of
6121 here without getting to the next QUIT, it should be based on
6122 hitting ^C twice as in remote_wait. */
6123 if (quit_flag)
6124 {
6125 quit_flag = 0;
6126 interrupt_query ();
6127 }
6128 #endif
6129 }
6130 return 0;
6131 }
6132
6133 /* Come here after finding the start of a frame when we expected an
6134 ack. Do our best to discard the rest of this packet. */
6135
6136 static void
6137 skip_frame (void)
6138 {
6139 int c;
6140
6141 while (1)
6142 {
6143 c = readchar (remote_timeout);
6144 switch (c)
6145 {
6146 case SERIAL_TIMEOUT:
6147 /* Nothing we can do. */
6148 return;
6149 case '#':
6150 /* Discard the two bytes of checksum and stop. */
6151 c = readchar (remote_timeout);
6152 if (c >= 0)
6153 c = readchar (remote_timeout);
6154
6155 return;
6156 case '*': /* Run length encoding. */
6157 /* Discard the repeat count. */
6158 c = readchar (remote_timeout);
6159 if (c < 0)
6160 return;
6161 break;
6162 default:
6163 /* A regular character. */
6164 break;
6165 }
6166 }
6167 }
6168
6169 /* Come here after finding the start of the frame. Collect the rest
6170 into *BUF, verifying the checksum, length, and handling run-length
6171 compression. NUL terminate the buffer. If there is not enough room,
6172 expand *BUF using xrealloc.
6173
6174 Returns -1 on error, number of characters in buffer (ignoring the
6175 trailing NULL) on success. (could be extended to return one of the
6176 SERIAL status indications). */
6177
6178 static long
6179 read_frame (char **buf_p,
6180 long *sizeof_buf)
6181 {
6182 unsigned char csum;
6183 long bc;
6184 int c;
6185 char *buf = *buf_p;
6186 struct remote_state *rs = get_remote_state ();
6187
6188 csum = 0;
6189 bc = 0;
6190
6191 while (1)
6192 {
6193 c = readchar (remote_timeout);
6194 switch (c)
6195 {
6196 case SERIAL_TIMEOUT:
6197 if (remote_debug)
6198 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
6199 return -1;
6200 case '$':
6201 if (remote_debug)
6202 fputs_filtered ("Saw new packet start in middle of old one\n",
6203 gdb_stdlog);
6204 return -1; /* Start a new packet, count retries. */
6205 case '#':
6206 {
6207 unsigned char pktcsum;
6208 int check_0 = 0;
6209 int check_1 = 0;
6210
6211 buf[bc] = '\0';
6212
6213 check_0 = readchar (remote_timeout);
6214 if (check_0 >= 0)
6215 check_1 = readchar (remote_timeout);
6216
6217 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
6218 {
6219 if (remote_debug)
6220 fputs_filtered ("Timeout in checksum, retrying\n",
6221 gdb_stdlog);
6222 return -1;
6223 }
6224 else if (check_0 < 0 || check_1 < 0)
6225 {
6226 if (remote_debug)
6227 fputs_filtered ("Communication error in checksum\n",
6228 gdb_stdlog);
6229 return -1;
6230 }
6231
6232 /* Don't recompute the checksum; with no ack packets we
6233 don't have any way to indicate a packet retransmission
6234 is necessary. */
6235 if (rs->noack_mode)
6236 return bc;
6237
6238 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
6239 if (csum == pktcsum)
6240 return bc;
6241
6242 if (remote_debug)
6243 {
6244 struct cleanup *old_chain;
6245 char *str;
6246
6247 str = escape_buffer (buf, bc);
6248 old_chain = make_cleanup (xfree, str);
6249 fprintf_unfiltered (gdb_stdlog,
6250 "\
6251 Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
6252 pktcsum, csum, str);
6253 do_cleanups (old_chain);
6254 }
6255 /* Number of characters in buffer ignoring trailing
6256 NULL. */
6257 return -1;
6258 }
6259 case '*': /* Run length encoding. */
6260 {
6261 int repeat;
6262 csum += c;
6263
6264 c = readchar (remote_timeout);
6265 csum += c;
6266 repeat = c - ' ' + 3; /* Compute repeat count. */
6267
6268 /* The character before ``*'' is repeated. */
6269
6270 if (repeat > 0 && repeat <= 255 && bc > 0)
6271 {
6272 if (bc + repeat - 1 >= *sizeof_buf - 1)
6273 {
6274 /* Make some more room in the buffer. */
6275 *sizeof_buf += repeat;
6276 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6277 buf = *buf_p;
6278 }
6279
6280 memset (&buf[bc], buf[bc - 1], repeat);
6281 bc += repeat;
6282 continue;
6283 }
6284
6285 buf[bc] = '\0';
6286 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
6287 return -1;
6288 }
6289 default:
6290 if (bc >= *sizeof_buf - 1)
6291 {
6292 /* Make some more room in the buffer. */
6293 *sizeof_buf *= 2;
6294 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6295 buf = *buf_p;
6296 }
6297
6298 buf[bc++] = c;
6299 csum += c;
6300 continue;
6301 }
6302 }
6303 }
6304
6305 /* Read a packet from the remote machine, with error checking, and
6306 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6307 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6308 rather than timing out; this is used (in synchronous mode) to wait
6309 for a target that is is executing user code to stop. */
6310 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
6311 don't have to change all the calls to getpkt to deal with the
6312 return value, because at the moment I don't know what the right
6313 thing to do it for those. */
6314 void
6315 getpkt (char **buf,
6316 long *sizeof_buf,
6317 int forever)
6318 {
6319 int timed_out;
6320
6321 timed_out = getpkt_sane (buf, sizeof_buf, forever);
6322 }
6323
6324
6325 /* Read a packet from the remote machine, with error checking, and
6326 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6327 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6328 rather than timing out; this is used (in synchronous mode) to wait
6329 for a target that is is executing user code to stop. If FOREVER ==
6330 0, this function is allowed to time out gracefully and return an
6331 indication of this to the caller. Otherwise return the number of
6332 bytes read. If EXPECTING_NOTIF, consider receiving a notification
6333 enough reason to return to the caller. */
6334
6335 static int
6336 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
6337 int expecting_notif)
6338 {
6339 struct remote_state *rs = get_remote_state ();
6340 int c;
6341 int tries;
6342 int timeout;
6343 int val;
6344
6345 /* We're reading a new response. Make sure we don't look at a
6346 previously cached response. */
6347 rs->cached_wait_status = 0;
6348
6349 strcpy (*buf, "timeout");
6350
6351 if (forever)
6352 timeout = watchdog > 0 ? watchdog : -1;
6353 else if (expecting_notif)
6354 timeout = 0; /* There should already be a char in the buffer. If
6355 not, bail out. */
6356 else
6357 timeout = remote_timeout;
6358
6359 #define MAX_TRIES 3
6360
6361 /* Process any number of notifications, and then return when
6362 we get a packet. */
6363 for (;;)
6364 {
6365 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
6366 times. */
6367 for (tries = 1; tries <= MAX_TRIES; tries++)
6368 {
6369 /* This can loop forever if the remote side sends us
6370 characters continuously, but if it pauses, we'll get
6371 SERIAL_TIMEOUT from readchar because of timeout. Then
6372 we'll count that as a retry.
6373
6374 Note that even when forever is set, we will only wait
6375 forever prior to the start of a packet. After that, we
6376 expect characters to arrive at a brisk pace. They should
6377 show up within remote_timeout intervals. */
6378 do
6379 c = readchar (timeout);
6380 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
6381
6382 if (c == SERIAL_TIMEOUT)
6383 {
6384 if (expecting_notif)
6385 return -1; /* Don't complain, it's normal to not get
6386 anything in this case. */
6387
6388 if (forever) /* Watchdog went off? Kill the target. */
6389 {
6390 QUIT;
6391 pop_target ();
6392 error (_("Watchdog timeout has expired. Target detached."));
6393 }
6394 if (remote_debug)
6395 fputs_filtered ("Timed out.\n", gdb_stdlog);
6396 }
6397 else
6398 {
6399 /* We've found the start of a packet or notification.
6400 Now collect the data. */
6401 val = read_frame (buf, sizeof_buf);
6402 if (val >= 0)
6403 break;
6404 }
6405
6406 serial_write (remote_desc, "-", 1);
6407 }
6408
6409 if (tries > MAX_TRIES)
6410 {
6411 /* We have tried hard enough, and just can't receive the
6412 packet/notification. Give up. */
6413 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
6414
6415 /* Skip the ack char if we're in no-ack mode. */
6416 if (!rs->noack_mode)
6417 serial_write (remote_desc, "+", 1);
6418 return -1;
6419 }
6420
6421 /* If we got an ordinary packet, return that to our caller. */
6422 if (c == '$')
6423 {
6424 if (remote_debug)
6425 {
6426 struct cleanup *old_chain;
6427 char *str;
6428
6429 str = escape_buffer (*buf, val);
6430 old_chain = make_cleanup (xfree, str);
6431 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
6432 do_cleanups (old_chain);
6433 }
6434
6435 /* Skip the ack char if we're in no-ack mode. */
6436 if (!rs->noack_mode)
6437 serial_write (remote_desc, "+", 1);
6438 return val;
6439 }
6440
6441 /* If we got a notification, handle it, and go back to looking
6442 for a packet. */
6443 else
6444 {
6445 gdb_assert (c == '%');
6446
6447 if (remote_debug)
6448 {
6449 struct cleanup *old_chain;
6450 char *str;
6451
6452 str = escape_buffer (*buf, val);
6453 old_chain = make_cleanup (xfree, str);
6454 fprintf_unfiltered (gdb_stdlog,
6455 " Notification received: %s\n",
6456 str);
6457 do_cleanups (old_chain);
6458 }
6459
6460 handle_notification (*buf, val);
6461
6462 /* Notifications require no acknowledgement. */
6463
6464 if (expecting_notif)
6465 return -1;
6466 }
6467 }
6468 }
6469
6470 static int
6471 getpkt_sane (char **buf, long *sizeof_buf, int forever)
6472 {
6473 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
6474 }
6475
6476 static int
6477 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
6478 {
6479 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
6480 }
6481
6482 \f
6483 static void
6484 remote_kill (void)
6485 {
6486 /* Use catch_errors so the user can quit from gdb even when we
6487 aren't on speaking terms with the remote system. */
6488 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
6489
6490 /* Don't wait for it to die. I'm not really sure it matters whether
6491 we do or not. For the existing stubs, kill is a noop. */
6492 target_mourn_inferior ();
6493 }
6494
6495 static int
6496 remote_vkill (int pid, struct remote_state *rs)
6497 {
6498 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6499 return -1;
6500
6501 /* Tell the remote target to detach. */
6502 sprintf (rs->buf, "vKill;%x", pid);
6503 putpkt (rs->buf);
6504 getpkt (&rs->buf, &rs->buf_size, 0);
6505
6506 if (packet_ok (rs->buf,
6507 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
6508 return 0;
6509 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6510 return -1;
6511 else
6512 return 1;
6513 }
6514
6515 static void
6516 extended_remote_kill (void)
6517 {
6518 int res;
6519 int pid = ptid_get_pid (inferior_ptid);
6520 struct remote_state *rs = get_remote_state ();
6521
6522 res = remote_vkill (pid, rs);
6523 if (res == -1 && !remote_multi_process_p (rs))
6524 {
6525 /* Don't try 'k' on a multi-process aware stub -- it has no way
6526 to specify the pid. */
6527
6528 putpkt ("k");
6529 #if 0
6530 getpkt (&rs->buf, &rs->buf_size, 0);
6531 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
6532 res = 1;
6533 #else
6534 /* Don't wait for it to die. I'm not really sure it matters whether
6535 we do or not. For the existing stubs, kill is a noop. */
6536 res = 0;
6537 #endif
6538 }
6539
6540 if (res != 0)
6541 error (_("Can't kill process"));
6542
6543 target_mourn_inferior ();
6544 }
6545
6546 static void
6547 remote_mourn (struct target_ops *ops)
6548 {
6549 remote_mourn_1 (ops);
6550 }
6551
6552 /* Worker function for remote_mourn. */
6553 static void
6554 remote_mourn_1 (struct target_ops *target)
6555 {
6556 unpush_target (target);
6557
6558 /* remote_close takes care of cleaning up. */
6559 }
6560
6561 static int
6562 select_new_thread_callback (struct thread_info *th, void* data)
6563 {
6564 if (!is_exited (th->ptid))
6565 {
6566 switch_to_thread (th->ptid);
6567 printf_filtered (_("[Switching to %s]\n"),
6568 target_pid_to_str (inferior_ptid));
6569 return 1;
6570 }
6571 return 0;
6572 }
6573
6574 static void
6575 extended_remote_mourn_1 (struct target_ops *target)
6576 {
6577 struct remote_state *rs = get_remote_state ();
6578
6579 /* In case we got here due to an error, but we're going to stay
6580 connected. */
6581 rs->waiting_for_stop_reply = 0;
6582
6583 /* We're no longer interested in these events. */
6584 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
6585
6586 /* If the current general thread belonged to the process we just
6587 detached from or has exited, the remote side current general
6588 thread becomes undefined. Considering a case like this:
6589
6590 - We just got here due to a detach.
6591 - The process that we're detaching from happens to immediately
6592 report a global breakpoint being hit in non-stop mode, in the
6593 same thread we had selected before.
6594 - GDB attaches to this process again.
6595 - This event happens to be the next event we handle.
6596
6597 GDB would consider that the current general thread didn't need to
6598 be set on the stub side (with Hg), since for all it knew,
6599 GENERAL_THREAD hadn't changed.
6600
6601 Notice that although in all-stop mode, the remote server always
6602 sets the current thread to the thread reporting the stop event,
6603 that doesn't happen in non-stop mode; in non-stop, the stub *must
6604 not* change the current thread when reporting a breakpoint hit,
6605 due to the decoupling of event reporting and event handling.
6606
6607 To keep things simple, we always invalidate our notion of the
6608 current thread. */
6609 record_currthread (minus_one_ptid);
6610
6611 /* Unlike "target remote", we do not want to unpush the target; then
6612 the next time the user says "run", we won't be connected. */
6613
6614 /* Call common code to mark the inferior as not running. */
6615 generic_mourn_inferior ();
6616
6617 if (have_inferiors ())
6618 {
6619 extern void nullify_last_target_wait_ptid ();
6620 /* Multi-process case. The current process has exited, but
6621 there are other processes to debug. Switch to the first
6622 available. */
6623 iterate_over_threads (select_new_thread_callback, NULL);
6624 nullify_last_target_wait_ptid ();
6625 }
6626 else
6627 {
6628 if (!remote_multi_process_p (rs))
6629 {
6630 /* Check whether the target is running now - some remote stubs
6631 automatically restart after kill. */
6632 putpkt ("?");
6633 getpkt (&rs->buf, &rs->buf_size, 0);
6634
6635 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
6636 {
6637 /* Assume that the target has been restarted. Set inferior_ptid
6638 so that bits of core GDB realizes there's something here, e.g.,
6639 so that the user can say "kill" again. */
6640 inferior_ptid = magic_null_ptid;
6641 }
6642 else
6643 {
6644 /* Mark this (still pushed) target as not executable until we
6645 restart it. */
6646 target_mark_exited (target);
6647 }
6648 }
6649 else
6650 /* Always remove execution if this was the last process. */
6651 target_mark_exited (target);
6652 }
6653 }
6654
6655 static void
6656 extended_remote_mourn (struct target_ops *ops)
6657 {
6658 extended_remote_mourn_1 (ops);
6659 }
6660
6661 static int
6662 extended_remote_run (char *args)
6663 {
6664 struct remote_state *rs = get_remote_state ();
6665 char *p;
6666 int len;
6667
6668 /* If the user has disabled vRun support, or we have detected that
6669 support is not available, do not try it. */
6670 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6671 return -1;
6672
6673 strcpy (rs->buf, "vRun;");
6674 len = strlen (rs->buf);
6675
6676 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
6677 error (_("Remote file name too long for run packet"));
6678 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
6679
6680 gdb_assert (args != NULL);
6681 if (*args)
6682 {
6683 struct cleanup *back_to;
6684 int i;
6685 char **argv;
6686
6687 argv = gdb_buildargv (args);
6688 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
6689 for (i = 0; argv[i] != NULL; i++)
6690 {
6691 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
6692 error (_("Argument list too long for run packet"));
6693 rs->buf[len++] = ';';
6694 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
6695 }
6696 do_cleanups (back_to);
6697 }
6698
6699 rs->buf[len++] = '\0';
6700
6701 putpkt (rs->buf);
6702 getpkt (&rs->buf, &rs->buf_size, 0);
6703
6704 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
6705 {
6706 /* We have a wait response; we don't need it, though. All is well. */
6707 return 0;
6708 }
6709 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6710 /* It wasn't disabled before, but it is now. */
6711 return -1;
6712 else
6713 {
6714 if (remote_exec_file[0] == '\0')
6715 error (_("Running the default executable on the remote target failed; "
6716 "try \"set remote exec-file\"?"));
6717 else
6718 error (_("Running \"%s\" on the remote target failed"),
6719 remote_exec_file);
6720 }
6721 }
6722
6723 /* In the extended protocol we want to be able to do things like
6724 "run" and have them basically work as expected. So we need
6725 a special create_inferior function. We support changing the
6726 executable file and the command line arguments, but not the
6727 environment. */
6728
6729 static void
6730 extended_remote_create_inferior_1 (char *exec_file, char *args,
6731 char **env, int from_tty)
6732 {
6733 /* If running asynchronously, register the target file descriptor
6734 with the event loop. */
6735 if (target_can_async_p ())
6736 target_async (inferior_event_handler, 0);
6737
6738 /* Now restart the remote server. */
6739 if (extended_remote_run (args) == -1)
6740 {
6741 /* vRun was not supported. Fail if we need it to do what the
6742 user requested. */
6743 if (remote_exec_file[0])
6744 error (_("Remote target does not support \"set remote exec-file\""));
6745 if (args[0])
6746 error (_("Remote target does not support \"set args\" or run <ARGS>"));
6747
6748 /* Fall back to "R". */
6749 extended_remote_restart ();
6750 }
6751
6752 /* Clean up from the last time we ran, before we mark the target
6753 running again. This will mark breakpoints uninserted, and
6754 get_offsets may insert breakpoints. */
6755 init_thread_list ();
6756 init_wait_for_inferior ();
6757
6758 /* Now mark the inferior as running before we do anything else. */
6759 inferior_ptid = magic_null_ptid;
6760
6761 /* Now, if we have thread information, update inferior_ptid. */
6762 inferior_ptid = remote_current_thread (inferior_ptid);
6763
6764 remote_add_inferior (ptid_get_pid (inferior_ptid));
6765 add_thread_silent (inferior_ptid);
6766
6767 /* Get updated offsets, if the stub uses qOffsets. */
6768 get_offsets ();
6769 }
6770
6771 static void
6772 extended_remote_create_inferior (struct target_ops *ops,
6773 char *exec_file, char *args,
6774 char **env, int from_tty)
6775 {
6776 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
6777 }
6778 \f
6779
6780 /* Insert a breakpoint. On targets that have software breakpoint
6781 support, we ask the remote target to do the work; on targets
6782 which don't, we insert a traditional memory breakpoint. */
6783
6784 static int
6785 remote_insert_breakpoint (struct bp_target_info *bp_tgt)
6786 {
6787 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
6788 If it succeeds, then set the support to PACKET_ENABLE. If it
6789 fails, and the user has explicitly requested the Z support then
6790 report an error, otherwise, mark it disabled and go on. */
6791
6792 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
6793 {
6794 CORE_ADDR addr = bp_tgt->placed_address;
6795 struct remote_state *rs;
6796 char *p;
6797 int bpsize;
6798
6799 gdbarch_breakpoint_from_pc (target_gdbarch, &addr, &bpsize);
6800
6801 rs = get_remote_state ();
6802 p = rs->buf;
6803
6804 *(p++) = 'Z';
6805 *(p++) = '0';
6806 *(p++) = ',';
6807 addr = (ULONGEST) remote_address_masked (addr);
6808 p += hexnumstr (p, addr);
6809 sprintf (p, ",%d", bpsize);
6810
6811 putpkt (rs->buf);
6812 getpkt (&rs->buf, &rs->buf_size, 0);
6813
6814 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
6815 {
6816 case PACKET_ERROR:
6817 return -1;
6818 case PACKET_OK:
6819 bp_tgt->placed_address = addr;
6820 bp_tgt->placed_size = bpsize;
6821 return 0;
6822 case PACKET_UNKNOWN:
6823 break;
6824 }
6825 }
6826
6827 return memory_insert_breakpoint (bp_tgt);
6828 }
6829
6830 static int
6831 remote_remove_breakpoint (struct bp_target_info *bp_tgt)
6832 {
6833 CORE_ADDR addr = bp_tgt->placed_address;
6834 struct remote_state *rs = get_remote_state ();
6835 int bp_size;
6836
6837 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
6838 {
6839 char *p = rs->buf;
6840
6841 *(p++) = 'z';
6842 *(p++) = '0';
6843 *(p++) = ',';
6844
6845 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
6846 p += hexnumstr (p, addr);
6847 sprintf (p, ",%d", bp_tgt->placed_size);
6848
6849 putpkt (rs->buf);
6850 getpkt (&rs->buf, &rs->buf_size, 0);
6851
6852 return (rs->buf[0] == 'E');
6853 }
6854
6855 return memory_remove_breakpoint (bp_tgt);
6856 }
6857
6858 static int
6859 watchpoint_to_Z_packet (int type)
6860 {
6861 switch (type)
6862 {
6863 case hw_write:
6864 return Z_PACKET_WRITE_WP;
6865 break;
6866 case hw_read:
6867 return Z_PACKET_READ_WP;
6868 break;
6869 case hw_access:
6870 return Z_PACKET_ACCESS_WP;
6871 break;
6872 default:
6873 internal_error (__FILE__, __LINE__,
6874 _("hw_bp_to_z: bad watchpoint type %d"), type);
6875 }
6876 }
6877
6878 static int
6879 remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
6880 {
6881 struct remote_state *rs = get_remote_state ();
6882 char *p;
6883 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6884
6885 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
6886 return -1;
6887
6888 sprintf (rs->buf, "Z%x,", packet);
6889 p = strchr (rs->buf, '\0');
6890 addr = remote_address_masked (addr);
6891 p += hexnumstr (p, (ULONGEST) addr);
6892 sprintf (p, ",%x", len);
6893
6894 putpkt (rs->buf);
6895 getpkt (&rs->buf, &rs->buf_size, 0);
6896
6897 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
6898 {
6899 case PACKET_ERROR:
6900 case PACKET_UNKNOWN:
6901 return -1;
6902 case PACKET_OK:
6903 return 0;
6904 }
6905 internal_error (__FILE__, __LINE__,
6906 _("remote_insert_watchpoint: reached end of function"));
6907 }
6908
6909
6910 static int
6911 remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
6912 {
6913 struct remote_state *rs = get_remote_state ();
6914 char *p;
6915 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6916
6917 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
6918 return -1;
6919
6920 sprintf (rs->buf, "z%x,", packet);
6921 p = strchr (rs->buf, '\0');
6922 addr = remote_address_masked (addr);
6923 p += hexnumstr (p, (ULONGEST) addr);
6924 sprintf (p, ",%x", len);
6925 putpkt (rs->buf);
6926 getpkt (&rs->buf, &rs->buf_size, 0);
6927
6928 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
6929 {
6930 case PACKET_ERROR:
6931 case PACKET_UNKNOWN:
6932 return -1;
6933 case PACKET_OK:
6934 return 0;
6935 }
6936 internal_error (__FILE__, __LINE__,
6937 _("remote_remove_watchpoint: reached end of function"));
6938 }
6939
6940
6941 int remote_hw_watchpoint_limit = -1;
6942 int remote_hw_breakpoint_limit = -1;
6943
6944 static int
6945 remote_check_watch_resources (int type, int cnt, int ot)
6946 {
6947 if (type == bp_hardware_breakpoint)
6948 {
6949 if (remote_hw_breakpoint_limit == 0)
6950 return 0;
6951 else if (remote_hw_breakpoint_limit < 0)
6952 return 1;
6953 else if (cnt <= remote_hw_breakpoint_limit)
6954 return 1;
6955 }
6956 else
6957 {
6958 if (remote_hw_watchpoint_limit == 0)
6959 return 0;
6960 else if (remote_hw_watchpoint_limit < 0)
6961 return 1;
6962 else if (ot)
6963 return -1;
6964 else if (cnt <= remote_hw_watchpoint_limit)
6965 return 1;
6966 }
6967 return -1;
6968 }
6969
6970 static int
6971 remote_stopped_by_watchpoint (void)
6972 {
6973 return remote_stopped_by_watchpoint_p;
6974 }
6975
6976 static int
6977 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
6978 {
6979 int rc = 0;
6980 if (remote_stopped_by_watchpoint ())
6981 {
6982 *addr_p = remote_watch_data_address;
6983 rc = 1;
6984 }
6985
6986 return rc;
6987 }
6988
6989
6990 static int
6991 remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
6992 {
6993 CORE_ADDR addr;
6994 struct remote_state *rs;
6995 char *p;
6996
6997 /* The length field should be set to the size of a breakpoint
6998 instruction, even though we aren't inserting one ourselves. */
6999
7000 gdbarch_breakpoint_from_pc
7001 (target_gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
7002
7003 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7004 return -1;
7005
7006 rs = get_remote_state ();
7007 p = rs->buf;
7008
7009 *(p++) = 'Z';
7010 *(p++) = '1';
7011 *(p++) = ',';
7012
7013 addr = remote_address_masked (bp_tgt->placed_address);
7014 p += hexnumstr (p, (ULONGEST) addr);
7015 sprintf (p, ",%x", bp_tgt->placed_size);
7016
7017 putpkt (rs->buf);
7018 getpkt (&rs->buf, &rs->buf_size, 0);
7019
7020 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7021 {
7022 case PACKET_ERROR:
7023 case PACKET_UNKNOWN:
7024 return -1;
7025 case PACKET_OK:
7026 return 0;
7027 }
7028 internal_error (__FILE__, __LINE__,
7029 _("remote_insert_hw_breakpoint: reached end of function"));
7030 }
7031
7032
7033 static int
7034 remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
7035 {
7036 CORE_ADDR addr;
7037 struct remote_state *rs = get_remote_state ();
7038 char *p = rs->buf;
7039
7040 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
7041 return -1;
7042
7043 *(p++) = 'z';
7044 *(p++) = '1';
7045 *(p++) = ',';
7046
7047 addr = remote_address_masked (bp_tgt->placed_address);
7048 p += hexnumstr (p, (ULONGEST) addr);
7049 sprintf (p, ",%x", bp_tgt->placed_size);
7050
7051 putpkt (rs->buf);
7052 getpkt (&rs->buf, &rs->buf_size, 0);
7053
7054 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
7055 {
7056 case PACKET_ERROR:
7057 case PACKET_UNKNOWN:
7058 return -1;
7059 case PACKET_OK:
7060 return 0;
7061 }
7062 internal_error (__FILE__, __LINE__,
7063 _("remote_remove_hw_breakpoint: reached end of function"));
7064 }
7065
7066 /* Table used by the crc32 function to calcuate the checksum. */
7067
7068 static unsigned long crc32_table[256] =
7069 {0, 0};
7070
7071 static unsigned long
7072 crc32 (unsigned char *buf, int len, unsigned int crc)
7073 {
7074 if (!crc32_table[1])
7075 {
7076 /* Initialize the CRC table and the decoding table. */
7077 int i, j;
7078 unsigned int c;
7079
7080 for (i = 0; i < 256; i++)
7081 {
7082 for (c = i << 24, j = 8; j > 0; --j)
7083 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
7084 crc32_table[i] = c;
7085 }
7086 }
7087
7088 while (len--)
7089 {
7090 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
7091 buf++;
7092 }
7093 return crc;
7094 }
7095
7096 /* compare-sections command
7097
7098 With no arguments, compares each loadable section in the exec bfd
7099 with the same memory range on the target, and reports mismatches.
7100 Useful for verifying the image on the target against the exec file.
7101 Depends on the target understanding the new "qCRC:" request. */
7102
7103 /* FIXME: cagney/1999-10-26: This command should be broken down into a
7104 target method (target verify memory) and generic version of the
7105 actual command. This will allow other high-level code (especially
7106 generic_load()) to make use of this target functionality. */
7107
7108 static void
7109 compare_sections_command (char *args, int from_tty)
7110 {
7111 struct remote_state *rs = get_remote_state ();
7112 asection *s;
7113 unsigned long host_crc, target_crc;
7114 extern bfd *exec_bfd;
7115 struct cleanup *old_chain;
7116 char *tmp;
7117 char *sectdata;
7118 const char *sectname;
7119 bfd_size_type size;
7120 bfd_vma lma;
7121 int matched = 0;
7122 int mismatched = 0;
7123
7124 if (!exec_bfd)
7125 error (_("command cannot be used without an exec file"));
7126 if (!current_target.to_shortname ||
7127 strcmp (current_target.to_shortname, "remote") != 0)
7128 error (_("command can only be used with remote target"));
7129
7130 for (s = exec_bfd->sections; s; s = s->next)
7131 {
7132 if (!(s->flags & SEC_LOAD))
7133 continue; /* skip non-loadable section */
7134
7135 size = bfd_get_section_size (s);
7136 if (size == 0)
7137 continue; /* skip zero-length section */
7138
7139 sectname = bfd_get_section_name (exec_bfd, s);
7140 if (args && strcmp (args, sectname) != 0)
7141 continue; /* not the section selected by user */
7142
7143 matched = 1; /* do this section */
7144 lma = s->lma;
7145 /* FIXME: assumes lma can fit into long. */
7146 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
7147 (long) lma, (long) size);
7148 putpkt (rs->buf);
7149
7150 /* Be clever; compute the host_crc before waiting for target
7151 reply. */
7152 sectdata = xmalloc (size);
7153 old_chain = make_cleanup (xfree, sectdata);
7154 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
7155 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
7156
7157 getpkt (&rs->buf, &rs->buf_size, 0);
7158 if (rs->buf[0] == 'E')
7159 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
7160 sectname, paddr (lma), paddr (lma + size));
7161 if (rs->buf[0] != 'C')
7162 error (_("remote target does not support this operation"));
7163
7164 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
7165 target_crc = target_crc * 16 + fromhex (*tmp);
7166
7167 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
7168 sectname, paddr (lma), paddr (lma + size));
7169 if (host_crc == target_crc)
7170 printf_filtered ("matched.\n");
7171 else
7172 {
7173 printf_filtered ("MIS-MATCHED!\n");
7174 mismatched++;
7175 }
7176
7177 do_cleanups (old_chain);
7178 }
7179 if (mismatched > 0)
7180 warning (_("One or more sections of the remote executable does not match\n\
7181 the loaded file\n"));
7182 if (args && !matched)
7183 printf_filtered (_("No loaded section named '%s'.\n"), args);
7184 }
7185
7186 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
7187 into remote target. The number of bytes written to the remote
7188 target is returned, or -1 for error. */
7189
7190 static LONGEST
7191 remote_write_qxfer (struct target_ops *ops, const char *object_name,
7192 const char *annex, const gdb_byte *writebuf,
7193 ULONGEST offset, LONGEST len,
7194 struct packet_config *packet)
7195 {
7196 int i, buf_len;
7197 ULONGEST n;
7198 gdb_byte *wbuf;
7199 struct remote_state *rs = get_remote_state ();
7200 int max_size = get_memory_write_packet_size ();
7201
7202 if (packet->support == PACKET_DISABLE)
7203 return -1;
7204
7205 /* Insert header. */
7206 i = snprintf (rs->buf, max_size,
7207 "qXfer:%s:write:%s:%s:",
7208 object_name, annex ? annex : "",
7209 phex_nz (offset, sizeof offset));
7210 max_size -= (i + 1);
7211
7212 /* Escape as much data as fits into rs->buf. */
7213 buf_len = remote_escape_output
7214 (writebuf, len, (rs->buf + i), &max_size, max_size);
7215
7216 if (putpkt_binary (rs->buf, i + buf_len) < 0
7217 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7218 || packet_ok (rs->buf, packet) != PACKET_OK)
7219 return -1;
7220
7221 unpack_varlen_hex (rs->buf, &n);
7222 return n;
7223 }
7224
7225 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
7226 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
7227 number of bytes read is returned, or 0 for EOF, or -1 for error.
7228 The number of bytes read may be less than LEN without indicating an
7229 EOF. PACKET is checked and updated to indicate whether the remote
7230 target supports this object. */
7231
7232 static LONGEST
7233 remote_read_qxfer (struct target_ops *ops, const char *object_name,
7234 const char *annex,
7235 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
7236 struct packet_config *packet)
7237 {
7238 static char *finished_object;
7239 static char *finished_annex;
7240 static ULONGEST finished_offset;
7241
7242 struct remote_state *rs = get_remote_state ();
7243 unsigned int total = 0;
7244 LONGEST i, n, packet_len;
7245
7246 if (packet->support == PACKET_DISABLE)
7247 return -1;
7248
7249 /* Check whether we've cached an end-of-object packet that matches
7250 this request. */
7251 if (finished_object)
7252 {
7253 if (strcmp (object_name, finished_object) == 0
7254 && strcmp (annex ? annex : "", finished_annex) == 0
7255 && offset == finished_offset)
7256 return 0;
7257
7258 /* Otherwise, we're now reading something different. Discard
7259 the cache. */
7260 xfree (finished_object);
7261 xfree (finished_annex);
7262 finished_object = NULL;
7263 finished_annex = NULL;
7264 }
7265
7266 /* Request only enough to fit in a single packet. The actual data
7267 may not, since we don't know how much of it will need to be escaped;
7268 the target is free to respond with slightly less data. We subtract
7269 five to account for the response type and the protocol frame. */
7270 n = min (get_remote_packet_size () - 5, len);
7271 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
7272 object_name, annex ? annex : "",
7273 phex_nz (offset, sizeof offset),
7274 phex_nz (n, sizeof n));
7275 i = putpkt (rs->buf);
7276 if (i < 0)
7277 return -1;
7278
7279 rs->buf[0] = '\0';
7280 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
7281 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
7282 return -1;
7283
7284 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
7285 error (_("Unknown remote qXfer reply: %s"), rs->buf);
7286
7287 /* 'm' means there is (or at least might be) more data after this
7288 batch. That does not make sense unless there's at least one byte
7289 of data in this reply. */
7290 if (rs->buf[0] == 'm' && packet_len == 1)
7291 error (_("Remote qXfer reply contained no data."));
7292
7293 /* Got some data. */
7294 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
7295
7296 /* 'l' is an EOF marker, possibly including a final block of data,
7297 or possibly empty. If we have the final block of a non-empty
7298 object, record this fact to bypass a subsequent partial read. */
7299 if (rs->buf[0] == 'l' && offset + i > 0)
7300 {
7301 finished_object = xstrdup (object_name);
7302 finished_annex = xstrdup (annex ? annex : "");
7303 finished_offset = offset + i;
7304 }
7305
7306 return i;
7307 }
7308
7309 static LONGEST
7310 remote_xfer_partial (struct target_ops *ops, enum target_object object,
7311 const char *annex, gdb_byte *readbuf,
7312 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
7313 {
7314 struct remote_state *rs;
7315 int i;
7316 char *p2;
7317 char query_type;
7318
7319 set_general_thread (inferior_ptid);
7320
7321 rs = get_remote_state ();
7322
7323 /* Handle memory using the standard memory routines. */
7324 if (object == TARGET_OBJECT_MEMORY)
7325 {
7326 int xfered;
7327 errno = 0;
7328
7329 /* If the remote target is connected but not running, we should
7330 pass this request down to a lower stratum (e.g. the executable
7331 file). */
7332 if (!target_has_execution)
7333 return 0;
7334
7335 if (writebuf != NULL)
7336 xfered = remote_write_bytes (offset, writebuf, len);
7337 else
7338 xfered = remote_read_bytes (offset, readbuf, len);
7339
7340 if (xfered > 0)
7341 return xfered;
7342 else if (xfered == 0 && errno == 0)
7343 return 0;
7344 else
7345 return -1;
7346 }
7347
7348 /* Handle SPU memory using qxfer packets. */
7349 if (object == TARGET_OBJECT_SPU)
7350 {
7351 if (readbuf)
7352 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
7353 &remote_protocol_packets
7354 [PACKET_qXfer_spu_read]);
7355 else
7356 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
7357 &remote_protocol_packets
7358 [PACKET_qXfer_spu_write]);
7359 }
7360
7361 /* Handle extra signal info using qxfer packets. */
7362 if (object == TARGET_OBJECT_SIGNAL_INFO)
7363 {
7364 if (readbuf)
7365 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
7366 &remote_protocol_packets
7367 [PACKET_qXfer_siginfo_read]);
7368 else
7369 return remote_write_qxfer (ops, "siginfo", annex, writebuf, offset, len,
7370 &remote_protocol_packets
7371 [PACKET_qXfer_siginfo_write]);
7372 }
7373
7374 /* Only handle flash writes. */
7375 if (writebuf != NULL)
7376 {
7377 LONGEST xfered;
7378
7379 switch (object)
7380 {
7381 case TARGET_OBJECT_FLASH:
7382 xfered = remote_flash_write (ops, offset, len, writebuf);
7383
7384 if (xfered > 0)
7385 return xfered;
7386 else if (xfered == 0 && errno == 0)
7387 return 0;
7388 else
7389 return -1;
7390
7391 default:
7392 return -1;
7393 }
7394 }
7395
7396 /* Map pre-existing objects onto letters. DO NOT do this for new
7397 objects!!! Instead specify new query packets. */
7398 switch (object)
7399 {
7400 case TARGET_OBJECT_AVR:
7401 query_type = 'R';
7402 break;
7403
7404 case TARGET_OBJECT_AUXV:
7405 gdb_assert (annex == NULL);
7406 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
7407 &remote_protocol_packets[PACKET_qXfer_auxv]);
7408
7409 case TARGET_OBJECT_AVAILABLE_FEATURES:
7410 return remote_read_qxfer
7411 (ops, "features", annex, readbuf, offset, len,
7412 &remote_protocol_packets[PACKET_qXfer_features]);
7413
7414 case TARGET_OBJECT_LIBRARIES:
7415 return remote_read_qxfer
7416 (ops, "libraries", annex, readbuf, offset, len,
7417 &remote_protocol_packets[PACKET_qXfer_libraries]);
7418
7419 case TARGET_OBJECT_MEMORY_MAP:
7420 gdb_assert (annex == NULL);
7421 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
7422 &remote_protocol_packets[PACKET_qXfer_memory_map]);
7423
7424 case TARGET_OBJECT_OSDATA:
7425 /* Should only get here if we're connected. */
7426 gdb_assert (remote_desc);
7427 return remote_read_qxfer
7428 (ops, "osdata", annex, readbuf, offset, len,
7429 &remote_protocol_packets[PACKET_qXfer_osdata]);
7430
7431 default:
7432 return -1;
7433 }
7434
7435 /* Note: a zero OFFSET and LEN can be used to query the minimum
7436 buffer size. */
7437 if (offset == 0 && len == 0)
7438 return (get_remote_packet_size ());
7439 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
7440 large enough let the caller deal with it. */
7441 if (len < get_remote_packet_size ())
7442 return -1;
7443 len = get_remote_packet_size ();
7444
7445 /* Except for querying the minimum buffer size, target must be open. */
7446 if (!remote_desc)
7447 error (_("remote query is only available after target open"));
7448
7449 gdb_assert (annex != NULL);
7450 gdb_assert (readbuf != NULL);
7451
7452 p2 = rs->buf;
7453 *p2++ = 'q';
7454 *p2++ = query_type;
7455
7456 /* We used one buffer char for the remote protocol q command and
7457 another for the query type. As the remote protocol encapsulation
7458 uses 4 chars plus one extra in case we are debugging
7459 (remote_debug), we have PBUFZIZ - 7 left to pack the query
7460 string. */
7461 i = 0;
7462 while (annex[i] && (i < (get_remote_packet_size () - 8)))
7463 {
7464 /* Bad caller may have sent forbidden characters. */
7465 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
7466 *p2++ = annex[i];
7467 i++;
7468 }
7469 *p2 = '\0';
7470 gdb_assert (annex[i] == '\0');
7471
7472 i = putpkt (rs->buf);
7473 if (i < 0)
7474 return i;
7475
7476 getpkt (&rs->buf, &rs->buf_size, 0);
7477 strcpy ((char *) readbuf, rs->buf);
7478
7479 return strlen ((char *) readbuf);
7480 }
7481
7482 static int
7483 remote_search_memory (struct target_ops* ops,
7484 CORE_ADDR start_addr, ULONGEST search_space_len,
7485 const gdb_byte *pattern, ULONGEST pattern_len,
7486 CORE_ADDR *found_addrp)
7487 {
7488 struct remote_state *rs = get_remote_state ();
7489 int max_size = get_memory_write_packet_size ();
7490 struct packet_config *packet =
7491 &remote_protocol_packets[PACKET_qSearch_memory];
7492 /* number of packet bytes used to encode the pattern,
7493 this could be more than PATTERN_LEN due to escape characters */
7494 int escaped_pattern_len;
7495 /* amount of pattern that was encodable in the packet */
7496 int used_pattern_len;
7497 int i;
7498 int found;
7499 ULONGEST found_addr;
7500
7501 /* Don't go to the target if we don't have to.
7502 This is done before checking packet->support to avoid the possibility that
7503 a success for this edge case means the facility works in general. */
7504 if (pattern_len > search_space_len)
7505 return 0;
7506 if (pattern_len == 0)
7507 {
7508 *found_addrp = start_addr;
7509 return 1;
7510 }
7511
7512 /* If we already know the packet isn't supported, fall back to the simple
7513 way of searching memory. */
7514
7515 if (packet->support == PACKET_DISABLE)
7516 {
7517 /* Target doesn't provided special support, fall back and use the
7518 standard support (copy memory and do the search here). */
7519 return simple_search_memory (ops, start_addr, search_space_len,
7520 pattern, pattern_len, found_addrp);
7521 }
7522
7523 /* Insert header. */
7524 i = snprintf (rs->buf, max_size,
7525 "qSearch:memory:%s;%s;",
7526 paddr_nz (start_addr),
7527 phex_nz (search_space_len, sizeof (search_space_len)));
7528 max_size -= (i + 1);
7529
7530 /* Escape as much data as fits into rs->buf. */
7531 escaped_pattern_len =
7532 remote_escape_output (pattern, pattern_len, (rs->buf + i),
7533 &used_pattern_len, max_size);
7534
7535 /* Bail if the pattern is too large. */
7536 if (used_pattern_len != pattern_len)
7537 error ("Pattern is too large to transmit to remote target.");
7538
7539 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
7540 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7541 || packet_ok (rs->buf, packet) != PACKET_OK)
7542 {
7543 /* The request may not have worked because the command is not
7544 supported. If so, fall back to the simple way. */
7545 if (packet->support == PACKET_DISABLE)
7546 {
7547 return simple_search_memory (ops, start_addr, search_space_len,
7548 pattern, pattern_len, found_addrp);
7549 }
7550 return -1;
7551 }
7552
7553 if (rs->buf[0] == '0')
7554 found = 0;
7555 else if (rs->buf[0] == '1')
7556 {
7557 found = 1;
7558 if (rs->buf[1] != ',')
7559 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
7560 unpack_varlen_hex (rs->buf + 2, &found_addr);
7561 *found_addrp = found_addr;
7562 }
7563 else
7564 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
7565
7566 return found;
7567 }
7568
7569 static void
7570 remote_rcmd (char *command,
7571 struct ui_file *outbuf)
7572 {
7573 struct remote_state *rs = get_remote_state ();
7574 char *p = rs->buf;
7575
7576 if (!remote_desc)
7577 error (_("remote rcmd is only available after target open"));
7578
7579 /* Send a NULL command across as an empty command. */
7580 if (command == NULL)
7581 command = "";
7582
7583 /* The query prefix. */
7584 strcpy (rs->buf, "qRcmd,");
7585 p = strchr (rs->buf, '\0');
7586
7587 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
7588 error (_("\"monitor\" command ``%s'' is too long."), command);
7589
7590 /* Encode the actual command. */
7591 bin2hex ((gdb_byte *) command, p, 0);
7592
7593 if (putpkt (rs->buf) < 0)
7594 error (_("Communication problem with target."));
7595
7596 /* get/display the response */
7597 while (1)
7598 {
7599 char *buf;
7600
7601 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
7602 rs->buf[0] = '\0';
7603 getpkt (&rs->buf, &rs->buf_size, 0);
7604 buf = rs->buf;
7605 if (buf[0] == '\0')
7606 error (_("Target does not support this command."));
7607 if (buf[0] == 'O' && buf[1] != 'K')
7608 {
7609 remote_console_output (buf + 1); /* 'O' message from stub. */
7610 continue;
7611 }
7612 if (strcmp (buf, "OK") == 0)
7613 break;
7614 if (strlen (buf) == 3 && buf[0] == 'E'
7615 && isdigit (buf[1]) && isdigit (buf[2]))
7616 {
7617 error (_("Protocol error with Rcmd"));
7618 }
7619 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
7620 {
7621 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
7622 fputc_unfiltered (c, outbuf);
7623 }
7624 break;
7625 }
7626 }
7627
7628 static VEC(mem_region_s) *
7629 remote_memory_map (struct target_ops *ops)
7630 {
7631 VEC(mem_region_s) *result = NULL;
7632 char *text = target_read_stralloc (&current_target,
7633 TARGET_OBJECT_MEMORY_MAP, NULL);
7634
7635 if (text)
7636 {
7637 struct cleanup *back_to = make_cleanup (xfree, text);
7638 result = parse_memory_map (text);
7639 do_cleanups (back_to);
7640 }
7641
7642 return result;
7643 }
7644
7645 static void
7646 packet_command (char *args, int from_tty)
7647 {
7648 struct remote_state *rs = get_remote_state ();
7649
7650 if (!remote_desc)
7651 error (_("command can only be used with remote target"));
7652
7653 if (!args)
7654 error (_("remote-packet command requires packet text as argument"));
7655
7656 puts_filtered ("sending: ");
7657 print_packet (args);
7658 puts_filtered ("\n");
7659 putpkt (args);
7660
7661 getpkt (&rs->buf, &rs->buf_size, 0);
7662 puts_filtered ("received: ");
7663 print_packet (rs->buf);
7664 puts_filtered ("\n");
7665 }
7666
7667 #if 0
7668 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
7669
7670 static void display_thread_info (struct gdb_ext_thread_info *info);
7671
7672 static void threadset_test_cmd (char *cmd, int tty);
7673
7674 static void threadalive_test (char *cmd, int tty);
7675
7676 static void threadlist_test_cmd (char *cmd, int tty);
7677
7678 int get_and_display_threadinfo (threadref *ref);
7679
7680 static void threadinfo_test_cmd (char *cmd, int tty);
7681
7682 static int thread_display_step (threadref *ref, void *context);
7683
7684 static void threadlist_update_test_cmd (char *cmd, int tty);
7685
7686 static void init_remote_threadtests (void);
7687
7688 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
7689
7690 static void
7691 threadset_test_cmd (char *cmd, int tty)
7692 {
7693 int sample_thread = SAMPLE_THREAD;
7694
7695 printf_filtered (_("Remote threadset test\n"));
7696 set_general_thread (sample_thread);
7697 }
7698
7699
7700 static void
7701 threadalive_test (char *cmd, int tty)
7702 {
7703 int sample_thread = SAMPLE_THREAD;
7704 int pid = ptid_get_pid (inferior_ptid);
7705 ptid_t ptid = ptid_build (pid, 0, sample_thread);
7706
7707 if (remote_thread_alive (ptid))
7708 printf_filtered ("PASS: Thread alive test\n");
7709 else
7710 printf_filtered ("FAIL: Thread alive test\n");
7711 }
7712
7713 void output_threadid (char *title, threadref *ref);
7714
7715 void
7716 output_threadid (char *title, threadref *ref)
7717 {
7718 char hexid[20];
7719
7720 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
7721 hexid[16] = 0;
7722 printf_filtered ("%s %s\n", title, (&hexid[0]));
7723 }
7724
7725 static void
7726 threadlist_test_cmd (char *cmd, int tty)
7727 {
7728 int startflag = 1;
7729 threadref nextthread;
7730 int done, result_count;
7731 threadref threadlist[3];
7732
7733 printf_filtered ("Remote Threadlist test\n");
7734 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
7735 &result_count, &threadlist[0]))
7736 printf_filtered ("FAIL: threadlist test\n");
7737 else
7738 {
7739 threadref *scan = threadlist;
7740 threadref *limit = scan + result_count;
7741
7742 while (scan < limit)
7743 output_threadid (" thread ", scan++);
7744 }
7745 }
7746
7747 void
7748 display_thread_info (struct gdb_ext_thread_info *info)
7749 {
7750 output_threadid ("Threadid: ", &info->threadid);
7751 printf_filtered ("Name: %s\n ", info->shortname);
7752 printf_filtered ("State: %s\n", info->display);
7753 printf_filtered ("other: %s\n\n", info->more_display);
7754 }
7755
7756 int
7757 get_and_display_threadinfo (threadref *ref)
7758 {
7759 int result;
7760 int set;
7761 struct gdb_ext_thread_info threadinfo;
7762
7763 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
7764 | TAG_MOREDISPLAY | TAG_DISPLAY;
7765 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
7766 display_thread_info (&threadinfo);
7767 return result;
7768 }
7769
7770 static void
7771 threadinfo_test_cmd (char *cmd, int tty)
7772 {
7773 int athread = SAMPLE_THREAD;
7774 threadref thread;
7775 int set;
7776
7777 int_to_threadref (&thread, athread);
7778 printf_filtered ("Remote Threadinfo test\n");
7779 if (!get_and_display_threadinfo (&thread))
7780 printf_filtered ("FAIL cannot get thread info\n");
7781 }
7782
7783 static int
7784 thread_display_step (threadref *ref, void *context)
7785 {
7786 /* output_threadid(" threadstep ",ref); *//* simple test */
7787 return get_and_display_threadinfo (ref);
7788 }
7789
7790 static void
7791 threadlist_update_test_cmd (char *cmd, int tty)
7792 {
7793 printf_filtered ("Remote Threadlist update test\n");
7794 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
7795 }
7796
7797 static void
7798 init_remote_threadtests (void)
7799 {
7800 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
7801 Fetch and print the remote list of thread identifiers, one pkt only"));
7802 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
7803 _("Fetch and display info about one thread"));
7804 add_com ("tset", class_obscure, threadset_test_cmd,
7805 _("Test setting to a different thread"));
7806 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
7807 _("Iterate through updating all remote thread info"));
7808 add_com ("talive", class_obscure, threadalive_test,
7809 _(" Remote thread alive test "));
7810 }
7811
7812 #endif /* 0 */
7813
7814 /* Convert a thread ID to a string. Returns the string in a static
7815 buffer. */
7816
7817 static char *
7818 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
7819 {
7820 static char buf[64];
7821 struct remote_state *rs = get_remote_state ();
7822
7823 if (ptid_equal (magic_null_ptid, ptid))
7824 {
7825 xsnprintf (buf, sizeof buf, "Thread <main>");
7826 return buf;
7827 }
7828 else if (remote_multi_process_p (rs)
7829 && ptid_get_tid (ptid) != 0 && ptid_get_pid (ptid) != 0)
7830 {
7831 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
7832 ptid_get_pid (ptid), ptid_get_tid (ptid));
7833 return buf;
7834 }
7835 else if (ptid_get_tid (ptid) != 0)
7836 {
7837 xsnprintf (buf, sizeof buf, "Thread %ld",
7838 ptid_get_tid (ptid));
7839 return buf;
7840 }
7841
7842 return normal_pid_to_str (ptid);
7843 }
7844
7845 /* Get the address of the thread local variable in OBJFILE which is
7846 stored at OFFSET within the thread local storage for thread PTID. */
7847
7848 static CORE_ADDR
7849 remote_get_thread_local_address (struct target_ops *ops,
7850 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
7851 {
7852 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
7853 {
7854 struct remote_state *rs = get_remote_state ();
7855 char *p = rs->buf;
7856 char *endp = rs->buf + get_remote_packet_size ();
7857 enum packet_result result;
7858
7859 strcpy (p, "qGetTLSAddr:");
7860 p += strlen (p);
7861 p = write_ptid (p, endp, ptid);
7862 *p++ = ',';
7863 p += hexnumstr (p, offset);
7864 *p++ = ',';
7865 p += hexnumstr (p, lm);
7866 *p++ = '\0';
7867
7868 putpkt (rs->buf);
7869 getpkt (&rs->buf, &rs->buf_size, 0);
7870 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
7871 if (result == PACKET_OK)
7872 {
7873 ULONGEST result;
7874
7875 unpack_varlen_hex (rs->buf, &result);
7876 return result;
7877 }
7878 else if (result == PACKET_UNKNOWN)
7879 throw_error (TLS_GENERIC_ERROR,
7880 _("Remote target doesn't support qGetTLSAddr packet"));
7881 else
7882 throw_error (TLS_GENERIC_ERROR,
7883 _("Remote target failed to process qGetTLSAddr request"));
7884 }
7885 else
7886 throw_error (TLS_GENERIC_ERROR,
7887 _("TLS not supported or disabled on this target"));
7888 /* Not reached. */
7889 return 0;
7890 }
7891
7892 /* Support for inferring a target description based on the current
7893 architecture and the size of a 'g' packet. While the 'g' packet
7894 can have any size (since optional registers can be left off the
7895 end), some sizes are easily recognizable given knowledge of the
7896 approximate architecture. */
7897
7898 struct remote_g_packet_guess
7899 {
7900 int bytes;
7901 const struct target_desc *tdesc;
7902 };
7903 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
7904 DEF_VEC_O(remote_g_packet_guess_s);
7905
7906 struct remote_g_packet_data
7907 {
7908 VEC(remote_g_packet_guess_s) *guesses;
7909 };
7910
7911 static struct gdbarch_data *remote_g_packet_data_handle;
7912
7913 static void *
7914 remote_g_packet_data_init (struct obstack *obstack)
7915 {
7916 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
7917 }
7918
7919 void
7920 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
7921 const struct target_desc *tdesc)
7922 {
7923 struct remote_g_packet_data *data
7924 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
7925 struct remote_g_packet_guess new_guess, *guess;
7926 int ix;
7927
7928 gdb_assert (tdesc != NULL);
7929
7930 for (ix = 0;
7931 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
7932 ix++)
7933 if (guess->bytes == bytes)
7934 internal_error (__FILE__, __LINE__,
7935 "Duplicate g packet description added for size %d",
7936 bytes);
7937
7938 new_guess.bytes = bytes;
7939 new_guess.tdesc = tdesc;
7940 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
7941 }
7942
7943 /* Return 1 if remote_read_description would do anything on this target
7944 and architecture, 0 otherwise. */
7945
7946 static int
7947 remote_read_description_p (struct target_ops *target)
7948 {
7949 struct remote_g_packet_data *data
7950 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
7951
7952 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
7953 return 1;
7954
7955 return 0;
7956 }
7957
7958 static const struct target_desc *
7959 remote_read_description (struct target_ops *target)
7960 {
7961 struct remote_g_packet_data *data
7962 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
7963
7964 /* Do not try this during initial connection, when we do not know
7965 whether there is a running but stopped thread. */
7966 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
7967 return NULL;
7968
7969 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
7970 {
7971 struct remote_g_packet_guess *guess;
7972 int ix;
7973 int bytes = send_g_packet ();
7974
7975 for (ix = 0;
7976 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
7977 ix++)
7978 if (guess->bytes == bytes)
7979 return guess->tdesc;
7980
7981 /* We discard the g packet. A minor optimization would be to
7982 hold on to it, and fill the register cache once we have selected
7983 an architecture, but it's too tricky to do safely. */
7984 }
7985
7986 return NULL;
7987 }
7988
7989 /* Remote file transfer support. This is host-initiated I/O, not
7990 target-initiated; for target-initiated, see remote-fileio.c. */
7991
7992 /* If *LEFT is at least the length of STRING, copy STRING to
7993 *BUFFER, update *BUFFER to point to the new end of the buffer, and
7994 decrease *LEFT. Otherwise raise an error. */
7995
7996 static void
7997 remote_buffer_add_string (char **buffer, int *left, char *string)
7998 {
7999 int len = strlen (string);
8000
8001 if (len > *left)
8002 error (_("Packet too long for target."));
8003
8004 memcpy (*buffer, string, len);
8005 *buffer += len;
8006 *left -= len;
8007
8008 /* NUL-terminate the buffer as a convenience, if there is
8009 room. */
8010 if (*left)
8011 **buffer = '\0';
8012 }
8013
8014 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
8015 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8016 decrease *LEFT. Otherwise raise an error. */
8017
8018 static void
8019 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
8020 int len)
8021 {
8022 if (2 * len > *left)
8023 error (_("Packet too long for target."));
8024
8025 bin2hex (bytes, *buffer, len);
8026 *buffer += 2 * len;
8027 *left -= 2 * len;
8028
8029 /* NUL-terminate the buffer as a convenience, if there is
8030 room. */
8031 if (*left)
8032 **buffer = '\0';
8033 }
8034
8035 /* If *LEFT is large enough, convert VALUE to hex and add it to
8036 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8037 decrease *LEFT. Otherwise raise an error. */
8038
8039 static void
8040 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
8041 {
8042 int len = hexnumlen (value);
8043
8044 if (len > *left)
8045 error (_("Packet too long for target."));
8046
8047 hexnumstr (*buffer, value);
8048 *buffer += len;
8049 *left -= len;
8050
8051 /* NUL-terminate the buffer as a convenience, if there is
8052 room. */
8053 if (*left)
8054 **buffer = '\0';
8055 }
8056
8057 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
8058 value, *REMOTE_ERRNO to the remote error number or zero if none
8059 was included, and *ATTACHMENT to point to the start of the annex
8060 if any. The length of the packet isn't needed here; there may
8061 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
8062
8063 Return 0 if the packet could be parsed, -1 if it could not. If
8064 -1 is returned, the other variables may not be initialized. */
8065
8066 static int
8067 remote_hostio_parse_result (char *buffer, int *retcode,
8068 int *remote_errno, char **attachment)
8069 {
8070 char *p, *p2;
8071
8072 *remote_errno = 0;
8073 *attachment = NULL;
8074
8075 if (buffer[0] != 'F')
8076 return -1;
8077
8078 errno = 0;
8079 *retcode = strtol (&buffer[1], &p, 16);
8080 if (errno != 0 || p == &buffer[1])
8081 return -1;
8082
8083 /* Check for ",errno". */
8084 if (*p == ',')
8085 {
8086 errno = 0;
8087 *remote_errno = strtol (p + 1, &p2, 16);
8088 if (errno != 0 || p + 1 == p2)
8089 return -1;
8090 p = p2;
8091 }
8092
8093 /* Check for ";attachment". If there is no attachment, the
8094 packet should end here. */
8095 if (*p == ';')
8096 {
8097 *attachment = p + 1;
8098 return 0;
8099 }
8100 else if (*p == '\0')
8101 return 0;
8102 else
8103 return -1;
8104 }
8105
8106 /* Send a prepared I/O packet to the target and read its response.
8107 The prepared packet is in the global RS->BUF before this function
8108 is called, and the answer is there when we return.
8109
8110 COMMAND_BYTES is the length of the request to send, which may include
8111 binary data. WHICH_PACKET is the packet configuration to check
8112 before attempting a packet. If an error occurs, *REMOTE_ERRNO
8113 is set to the error number and -1 is returned. Otherwise the value
8114 returned by the function is returned.
8115
8116 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
8117 attachment is expected; an error will be reported if there's a
8118 mismatch. If one is found, *ATTACHMENT will be set to point into
8119 the packet buffer and *ATTACHMENT_LEN will be set to the
8120 attachment's length. */
8121
8122 static int
8123 remote_hostio_send_command (int command_bytes, int which_packet,
8124 int *remote_errno, char **attachment,
8125 int *attachment_len)
8126 {
8127 struct remote_state *rs = get_remote_state ();
8128 int ret, bytes_read;
8129 char *attachment_tmp;
8130
8131 if (!remote_desc
8132 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
8133 {
8134 *remote_errno = FILEIO_ENOSYS;
8135 return -1;
8136 }
8137
8138 putpkt_binary (rs->buf, command_bytes);
8139 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8140
8141 /* If it timed out, something is wrong. Don't try to parse the
8142 buffer. */
8143 if (bytes_read < 0)
8144 {
8145 *remote_errno = FILEIO_EINVAL;
8146 return -1;
8147 }
8148
8149 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
8150 {
8151 case PACKET_ERROR:
8152 *remote_errno = FILEIO_EINVAL;
8153 return -1;
8154 case PACKET_UNKNOWN:
8155 *remote_errno = FILEIO_ENOSYS;
8156 return -1;
8157 case PACKET_OK:
8158 break;
8159 }
8160
8161 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
8162 &attachment_tmp))
8163 {
8164 *remote_errno = FILEIO_EINVAL;
8165 return -1;
8166 }
8167
8168 /* Make sure we saw an attachment if and only if we expected one. */
8169 if ((attachment_tmp == NULL && attachment != NULL)
8170 || (attachment_tmp != NULL && attachment == NULL))
8171 {
8172 *remote_errno = FILEIO_EINVAL;
8173 return -1;
8174 }
8175
8176 /* If an attachment was found, it must point into the packet buffer;
8177 work out how many bytes there were. */
8178 if (attachment_tmp != NULL)
8179 {
8180 *attachment = attachment_tmp;
8181 *attachment_len = bytes_read - (*attachment - rs->buf);
8182 }
8183
8184 return ret;
8185 }
8186
8187 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
8188 remote file descriptor, or -1 if an error occurs (and set
8189 *REMOTE_ERRNO). */
8190
8191 static int
8192 remote_hostio_open (const char *filename, int flags, int mode,
8193 int *remote_errno)
8194 {
8195 struct remote_state *rs = get_remote_state ();
8196 char *p = rs->buf;
8197 int left = get_remote_packet_size () - 1;
8198
8199 remote_buffer_add_string (&p, &left, "vFile:open:");
8200
8201 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8202 strlen (filename));
8203 remote_buffer_add_string (&p, &left, ",");
8204
8205 remote_buffer_add_int (&p, &left, flags);
8206 remote_buffer_add_string (&p, &left, ",");
8207
8208 remote_buffer_add_int (&p, &left, mode);
8209
8210 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
8211 remote_errno, NULL, NULL);
8212 }
8213
8214 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
8215 Return the number of bytes written, or -1 if an error occurs (and
8216 set *REMOTE_ERRNO). */
8217
8218 static int
8219 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
8220 ULONGEST offset, int *remote_errno)
8221 {
8222 struct remote_state *rs = get_remote_state ();
8223 char *p = rs->buf;
8224 int left = get_remote_packet_size ();
8225 int out_len;
8226
8227 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
8228
8229 remote_buffer_add_int (&p, &left, fd);
8230 remote_buffer_add_string (&p, &left, ",");
8231
8232 remote_buffer_add_int (&p, &left, offset);
8233 remote_buffer_add_string (&p, &left, ",");
8234
8235 p += remote_escape_output (write_buf, len, p, &out_len,
8236 get_remote_packet_size () - (p - rs->buf));
8237
8238 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
8239 remote_errno, NULL, NULL);
8240 }
8241
8242 /* Read up to LEN bytes FD on the remote target into READ_BUF
8243 Return the number of bytes read, or -1 if an error occurs (and
8244 set *REMOTE_ERRNO). */
8245
8246 static int
8247 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
8248 ULONGEST offset, int *remote_errno)
8249 {
8250 struct remote_state *rs = get_remote_state ();
8251 char *p = rs->buf;
8252 char *attachment;
8253 int left = get_remote_packet_size ();
8254 int ret, attachment_len;
8255 int read_len;
8256
8257 remote_buffer_add_string (&p, &left, "vFile:pread:");
8258
8259 remote_buffer_add_int (&p, &left, fd);
8260 remote_buffer_add_string (&p, &left, ",");
8261
8262 remote_buffer_add_int (&p, &left, len);
8263 remote_buffer_add_string (&p, &left, ",");
8264
8265 remote_buffer_add_int (&p, &left, offset);
8266
8267 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
8268 remote_errno, &attachment,
8269 &attachment_len);
8270
8271 if (ret < 0)
8272 return ret;
8273
8274 read_len = remote_unescape_input (attachment, attachment_len,
8275 read_buf, len);
8276 if (read_len != ret)
8277 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
8278
8279 return ret;
8280 }
8281
8282 /* Close FD on the remote target. Return 0, or -1 if an error occurs
8283 (and set *REMOTE_ERRNO). */
8284
8285 static int
8286 remote_hostio_close (int fd, int *remote_errno)
8287 {
8288 struct remote_state *rs = get_remote_state ();
8289 char *p = rs->buf;
8290 int left = get_remote_packet_size () - 1;
8291
8292 remote_buffer_add_string (&p, &left, "vFile:close:");
8293
8294 remote_buffer_add_int (&p, &left, fd);
8295
8296 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
8297 remote_errno, NULL, NULL);
8298 }
8299
8300 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
8301 occurs (and set *REMOTE_ERRNO). */
8302
8303 static int
8304 remote_hostio_unlink (const char *filename, int *remote_errno)
8305 {
8306 struct remote_state *rs = get_remote_state ();
8307 char *p = rs->buf;
8308 int left = get_remote_packet_size () - 1;
8309
8310 remote_buffer_add_string (&p, &left, "vFile:unlink:");
8311
8312 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8313 strlen (filename));
8314
8315 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
8316 remote_errno, NULL, NULL);
8317 }
8318
8319 static int
8320 remote_fileio_errno_to_host (int errnum)
8321 {
8322 switch (errnum)
8323 {
8324 case FILEIO_EPERM:
8325 return EPERM;
8326 case FILEIO_ENOENT:
8327 return ENOENT;
8328 case FILEIO_EINTR:
8329 return EINTR;
8330 case FILEIO_EIO:
8331 return EIO;
8332 case FILEIO_EBADF:
8333 return EBADF;
8334 case FILEIO_EACCES:
8335 return EACCES;
8336 case FILEIO_EFAULT:
8337 return EFAULT;
8338 case FILEIO_EBUSY:
8339 return EBUSY;
8340 case FILEIO_EEXIST:
8341 return EEXIST;
8342 case FILEIO_ENODEV:
8343 return ENODEV;
8344 case FILEIO_ENOTDIR:
8345 return ENOTDIR;
8346 case FILEIO_EISDIR:
8347 return EISDIR;
8348 case FILEIO_EINVAL:
8349 return EINVAL;
8350 case FILEIO_ENFILE:
8351 return ENFILE;
8352 case FILEIO_EMFILE:
8353 return EMFILE;
8354 case FILEIO_EFBIG:
8355 return EFBIG;
8356 case FILEIO_ENOSPC:
8357 return ENOSPC;
8358 case FILEIO_ESPIPE:
8359 return ESPIPE;
8360 case FILEIO_EROFS:
8361 return EROFS;
8362 case FILEIO_ENOSYS:
8363 return ENOSYS;
8364 case FILEIO_ENAMETOOLONG:
8365 return ENAMETOOLONG;
8366 }
8367 return -1;
8368 }
8369
8370 static char *
8371 remote_hostio_error (int errnum)
8372 {
8373 int host_error = remote_fileio_errno_to_host (errnum);
8374
8375 if (host_error == -1)
8376 error (_("Unknown remote I/O error %d"), errnum);
8377 else
8378 error (_("Remote I/O error: %s"), safe_strerror (host_error));
8379 }
8380
8381 static void
8382 remote_hostio_close_cleanup (void *opaque)
8383 {
8384 int fd = *(int *) opaque;
8385 int remote_errno;
8386
8387 remote_hostio_close (fd, &remote_errno);
8388 }
8389
8390
8391 static void *
8392 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
8393 {
8394 const char *filename = bfd_get_filename (abfd);
8395 int fd, remote_errno;
8396 int *stream;
8397
8398 gdb_assert (remote_filename_p (filename));
8399
8400 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
8401 if (fd == -1)
8402 {
8403 errno = remote_fileio_errno_to_host (remote_errno);
8404 bfd_set_error (bfd_error_system_call);
8405 return NULL;
8406 }
8407
8408 stream = xmalloc (sizeof (int));
8409 *stream = fd;
8410 return stream;
8411 }
8412
8413 static int
8414 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
8415 {
8416 int fd = *(int *)stream;
8417 int remote_errno;
8418
8419 xfree (stream);
8420
8421 /* Ignore errors on close; these may happen if the remote
8422 connection was already torn down. */
8423 remote_hostio_close (fd, &remote_errno);
8424
8425 return 1;
8426 }
8427
8428 static file_ptr
8429 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
8430 file_ptr nbytes, file_ptr offset)
8431 {
8432 int fd = *(int *)stream;
8433 int remote_errno;
8434 file_ptr pos, bytes;
8435
8436 pos = 0;
8437 while (nbytes > pos)
8438 {
8439 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
8440 offset + pos, &remote_errno);
8441 if (bytes == 0)
8442 /* Success, but no bytes, means end-of-file. */
8443 break;
8444 if (bytes == -1)
8445 {
8446 errno = remote_fileio_errno_to_host (remote_errno);
8447 bfd_set_error (bfd_error_system_call);
8448 return -1;
8449 }
8450
8451 pos += bytes;
8452 }
8453
8454 return pos;
8455 }
8456
8457 static int
8458 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
8459 {
8460 /* FIXME: We should probably implement remote_hostio_stat. */
8461 sb->st_size = INT_MAX;
8462 return 0;
8463 }
8464
8465 int
8466 remote_filename_p (const char *filename)
8467 {
8468 return strncmp (filename, "remote:", 7) == 0;
8469 }
8470
8471 bfd *
8472 remote_bfd_open (const char *remote_file, const char *target)
8473 {
8474 return bfd_openr_iovec (remote_file, target,
8475 remote_bfd_iovec_open, NULL,
8476 remote_bfd_iovec_pread,
8477 remote_bfd_iovec_close,
8478 remote_bfd_iovec_stat);
8479 }
8480
8481 void
8482 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
8483 {
8484 struct cleanup *back_to, *close_cleanup;
8485 int retcode, fd, remote_errno, bytes, io_size;
8486 FILE *file;
8487 gdb_byte *buffer;
8488 int bytes_in_buffer;
8489 int saw_eof;
8490 ULONGEST offset;
8491
8492 if (!remote_desc)
8493 error (_("command can only be used with remote target"));
8494
8495 file = fopen (local_file, "rb");
8496 if (file == NULL)
8497 perror_with_name (local_file);
8498 back_to = make_cleanup_fclose (file);
8499
8500 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
8501 | FILEIO_O_TRUNC),
8502 0700, &remote_errno);
8503 if (fd == -1)
8504 remote_hostio_error (remote_errno);
8505
8506 /* Send up to this many bytes at once. They won't all fit in the
8507 remote packet limit, so we'll transfer slightly fewer. */
8508 io_size = get_remote_packet_size ();
8509 buffer = xmalloc (io_size);
8510 make_cleanup (xfree, buffer);
8511
8512 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8513
8514 bytes_in_buffer = 0;
8515 saw_eof = 0;
8516 offset = 0;
8517 while (bytes_in_buffer || !saw_eof)
8518 {
8519 if (!saw_eof)
8520 {
8521 bytes = fread (buffer + bytes_in_buffer, 1, io_size - bytes_in_buffer,
8522 file);
8523 if (bytes == 0)
8524 {
8525 if (ferror (file))
8526 error (_("Error reading %s."), local_file);
8527 else
8528 {
8529 /* EOF. Unless there is something still in the
8530 buffer from the last iteration, we are done. */
8531 saw_eof = 1;
8532 if (bytes_in_buffer == 0)
8533 break;
8534 }
8535 }
8536 }
8537 else
8538 bytes = 0;
8539
8540 bytes += bytes_in_buffer;
8541 bytes_in_buffer = 0;
8542
8543 retcode = remote_hostio_pwrite (fd, buffer, bytes, offset, &remote_errno);
8544
8545 if (retcode < 0)
8546 remote_hostio_error (remote_errno);
8547 else if (retcode == 0)
8548 error (_("Remote write of %d bytes returned 0!"), bytes);
8549 else if (retcode < bytes)
8550 {
8551 /* Short write. Save the rest of the read data for the next
8552 write. */
8553 bytes_in_buffer = bytes - retcode;
8554 memmove (buffer, buffer + retcode, bytes_in_buffer);
8555 }
8556
8557 offset += retcode;
8558 }
8559
8560 discard_cleanups (close_cleanup);
8561 if (remote_hostio_close (fd, &remote_errno))
8562 remote_hostio_error (remote_errno);
8563
8564 if (from_tty)
8565 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
8566 do_cleanups (back_to);
8567 }
8568
8569 void
8570 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
8571 {
8572 struct cleanup *back_to, *close_cleanup;
8573 int retcode, fd, remote_errno, bytes, io_size;
8574 FILE *file;
8575 gdb_byte *buffer;
8576 ULONGEST offset;
8577
8578 if (!remote_desc)
8579 error (_("command can only be used with remote target"));
8580
8581 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
8582 if (fd == -1)
8583 remote_hostio_error (remote_errno);
8584
8585 file = fopen (local_file, "wb");
8586 if (file == NULL)
8587 perror_with_name (local_file);
8588 back_to = make_cleanup_fclose (file);
8589
8590 /* Send up to this many bytes at once. They won't all fit in the
8591 remote packet limit, so we'll transfer slightly fewer. */
8592 io_size = get_remote_packet_size ();
8593 buffer = xmalloc (io_size);
8594 make_cleanup (xfree, buffer);
8595
8596 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8597
8598 offset = 0;
8599 while (1)
8600 {
8601 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
8602 if (bytes == 0)
8603 /* Success, but no bytes, means end-of-file. */
8604 break;
8605 if (bytes == -1)
8606 remote_hostio_error (remote_errno);
8607
8608 offset += bytes;
8609
8610 bytes = fwrite (buffer, 1, bytes, file);
8611 if (bytes == 0)
8612 perror_with_name (local_file);
8613 }
8614
8615 discard_cleanups (close_cleanup);
8616 if (remote_hostio_close (fd, &remote_errno))
8617 remote_hostio_error (remote_errno);
8618
8619 if (from_tty)
8620 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
8621 do_cleanups (back_to);
8622 }
8623
8624 void
8625 remote_file_delete (const char *remote_file, int from_tty)
8626 {
8627 int retcode, remote_errno;
8628
8629 if (!remote_desc)
8630 error (_("command can only be used with remote target"));
8631
8632 retcode = remote_hostio_unlink (remote_file, &remote_errno);
8633 if (retcode == -1)
8634 remote_hostio_error (remote_errno);
8635
8636 if (from_tty)
8637 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
8638 }
8639
8640 static void
8641 remote_put_command (char *args, int from_tty)
8642 {
8643 struct cleanup *back_to;
8644 char **argv;
8645
8646 if (args == NULL)
8647 error_no_arg (_("file to put"));
8648
8649 argv = gdb_buildargv (args);
8650 back_to = make_cleanup_freeargv (argv);
8651 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8652 error (_("Invalid parameters to remote put"));
8653
8654 remote_file_put (argv[0], argv[1], from_tty);
8655
8656 do_cleanups (back_to);
8657 }
8658
8659 static void
8660 remote_get_command (char *args, int from_tty)
8661 {
8662 struct cleanup *back_to;
8663 char **argv;
8664
8665 if (args == NULL)
8666 error_no_arg (_("file to get"));
8667
8668 argv = gdb_buildargv (args);
8669 back_to = make_cleanup_freeargv (argv);
8670 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8671 error (_("Invalid parameters to remote get"));
8672
8673 remote_file_get (argv[0], argv[1], from_tty);
8674
8675 do_cleanups (back_to);
8676 }
8677
8678 static void
8679 remote_delete_command (char *args, int from_tty)
8680 {
8681 struct cleanup *back_to;
8682 char **argv;
8683
8684 if (args == NULL)
8685 error_no_arg (_("file to delete"));
8686
8687 argv = gdb_buildargv (args);
8688 back_to = make_cleanup_freeargv (argv);
8689 if (argv[0] == NULL || argv[1] != NULL)
8690 error (_("Invalid parameters to remote delete"));
8691
8692 remote_file_delete (argv[0], from_tty);
8693
8694 do_cleanups (back_to);
8695 }
8696
8697 static void
8698 remote_command (char *args, int from_tty)
8699 {
8700 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
8701 }
8702
8703 static int remote_target_can_reverse = 1;
8704
8705 static int
8706 remote_can_execute_reverse (void)
8707 {
8708 return remote_target_can_reverse;
8709 }
8710
8711 static int
8712 remote_supports_non_stop (void)
8713 {
8714 return 1;
8715 }
8716
8717 static int
8718 remote_supports_multi_process (void)
8719 {
8720 struct remote_state *rs = get_remote_state ();
8721 return remote_multi_process_p (rs);
8722 }
8723
8724 static void
8725 init_remote_ops (void)
8726 {
8727 remote_ops.to_shortname = "remote";
8728 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
8729 remote_ops.to_doc =
8730 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
8731 Specify the serial device it is connected to\n\
8732 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
8733 remote_ops.to_open = remote_open;
8734 remote_ops.to_close = remote_close;
8735 remote_ops.to_detach = remote_detach;
8736 remote_ops.to_disconnect = remote_disconnect;
8737 remote_ops.to_resume = remote_resume;
8738 remote_ops.to_wait = remote_wait;
8739 remote_ops.to_fetch_registers = remote_fetch_registers;
8740 remote_ops.to_store_registers = remote_store_registers;
8741 remote_ops.to_prepare_to_store = remote_prepare_to_store;
8742 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
8743 remote_ops.to_files_info = remote_files_info;
8744 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
8745 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
8746 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
8747 remote_ops.to_stopped_data_address = remote_stopped_data_address;
8748 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
8749 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
8750 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
8751 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
8752 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
8753 remote_ops.to_kill = remote_kill;
8754 remote_ops.to_load = generic_load;
8755 remote_ops.to_mourn_inferior = remote_mourn;
8756 remote_ops.to_thread_alive = remote_thread_alive;
8757 remote_ops.to_find_new_threads = remote_threads_info;
8758 remote_ops.to_pid_to_str = remote_pid_to_str;
8759 remote_ops.to_extra_thread_info = remote_threads_extra_info;
8760 remote_ops.to_stop = remote_stop;
8761 remote_ops.to_xfer_partial = remote_xfer_partial;
8762 remote_ops.to_rcmd = remote_rcmd;
8763 remote_ops.to_log_command = serial_log_command;
8764 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
8765 remote_ops.to_stratum = process_stratum;
8766 remote_ops.to_has_all_memory = 1;
8767 remote_ops.to_has_memory = 1;
8768 remote_ops.to_has_stack = 1;
8769 remote_ops.to_has_registers = 1;
8770 remote_ops.to_has_execution = 1;
8771 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
8772 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
8773 remote_ops.to_magic = OPS_MAGIC;
8774 remote_ops.to_memory_map = remote_memory_map;
8775 remote_ops.to_flash_erase = remote_flash_erase;
8776 remote_ops.to_flash_done = remote_flash_done;
8777 remote_ops.to_read_description = remote_read_description;
8778 remote_ops.to_search_memory = remote_search_memory;
8779 remote_ops.to_can_async_p = remote_can_async_p;
8780 remote_ops.to_is_async_p = remote_is_async_p;
8781 remote_ops.to_async = remote_async;
8782 remote_ops.to_async_mask = remote_async_mask;
8783 remote_ops.to_terminal_inferior = remote_terminal_inferior;
8784 remote_ops.to_terminal_ours = remote_terminal_ours;
8785 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8786 remote_ops.to_supports_multi_process = remote_supports_multi_process;
8787 }
8788
8789 /* Set up the extended remote vector by making a copy of the standard
8790 remote vector and adding to it. */
8791
8792 static void
8793 init_extended_remote_ops (void)
8794 {
8795 extended_remote_ops = remote_ops;
8796
8797 extended_remote_ops.to_shortname = "extended-remote";
8798 extended_remote_ops.to_longname =
8799 "Extended remote serial target in gdb-specific protocol";
8800 extended_remote_ops.to_doc =
8801 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
8802 Specify the serial device it is connected to (e.g. /dev/ttya).";
8803 extended_remote_ops.to_open = extended_remote_open;
8804 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
8805 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
8806 extended_remote_ops.to_detach = extended_remote_detach;
8807 extended_remote_ops.to_attach = extended_remote_attach;
8808 extended_remote_ops.to_kill = extended_remote_kill;
8809 }
8810
8811 static int
8812 remote_can_async_p (void)
8813 {
8814 if (!target_async_permitted)
8815 /* We only enable async when the user specifically asks for it. */
8816 return 0;
8817
8818 /* We're async whenever the serial device is. */
8819 return remote_async_mask_value && serial_can_async_p (remote_desc);
8820 }
8821
8822 static int
8823 remote_is_async_p (void)
8824 {
8825 if (!target_async_permitted)
8826 /* We only enable async when the user specifically asks for it. */
8827 return 0;
8828
8829 /* We're async whenever the serial device is. */
8830 return remote_async_mask_value && serial_is_async_p (remote_desc);
8831 }
8832
8833 /* Pass the SERIAL event on and up to the client. One day this code
8834 will be able to delay notifying the client of an event until the
8835 point where an entire packet has been received. */
8836
8837 static void (*async_client_callback) (enum inferior_event_type event_type,
8838 void *context);
8839 static void *async_client_context;
8840 static serial_event_ftype remote_async_serial_handler;
8841
8842 static void
8843 remote_async_serial_handler (struct serial *scb, void *context)
8844 {
8845 /* Don't propogate error information up to the client. Instead let
8846 the client find out about the error by querying the target. */
8847 async_client_callback (INF_REG_EVENT, async_client_context);
8848 }
8849
8850 static void
8851 remote_async_inferior_event_handler (gdb_client_data data)
8852 {
8853 inferior_event_handler (INF_REG_EVENT, NULL);
8854 }
8855
8856 static void
8857 remote_async_get_pending_events_handler (gdb_client_data data)
8858 {
8859 remote_get_pending_stop_replies ();
8860 }
8861
8862 static void
8863 remote_async (void (*callback) (enum inferior_event_type event_type,
8864 void *context), void *context)
8865 {
8866 if (remote_async_mask_value == 0)
8867 internal_error (__FILE__, __LINE__,
8868 _("Calling remote_async when async is masked"));
8869
8870 if (callback != NULL)
8871 {
8872 serial_async (remote_desc, remote_async_serial_handler, NULL);
8873 async_client_callback = callback;
8874 async_client_context = context;
8875 }
8876 else
8877 serial_async (remote_desc, NULL, NULL);
8878 }
8879
8880 static int
8881 remote_async_mask (int new_mask)
8882 {
8883 int curr_mask = remote_async_mask_value;
8884 remote_async_mask_value = new_mask;
8885 return curr_mask;
8886 }
8887
8888 static void
8889 set_remote_cmd (char *args, int from_tty)
8890 {
8891 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
8892 }
8893
8894 static void
8895 show_remote_cmd (char *args, int from_tty)
8896 {
8897 /* We can't just use cmd_show_list here, because we want to skip
8898 the redundant "show remote Z-packet" and the legacy aliases. */
8899 struct cleanup *showlist_chain;
8900 struct cmd_list_element *list = remote_show_cmdlist;
8901
8902 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
8903 for (; list != NULL; list = list->next)
8904 if (strcmp (list->name, "Z-packet") == 0)
8905 continue;
8906 else if (list->type == not_set_cmd)
8907 /* Alias commands are exactly like the original, except they
8908 don't have the normal type. */
8909 continue;
8910 else
8911 {
8912 struct cleanup *option_chain
8913 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
8914 ui_out_field_string (uiout, "name", list->name);
8915 ui_out_text (uiout, ": ");
8916 if (list->type == show_cmd)
8917 do_setshow_command ((char *) NULL, from_tty, list);
8918 else
8919 cmd_func (list, NULL, from_tty);
8920 /* Close the tuple. */
8921 do_cleanups (option_chain);
8922 }
8923
8924 /* Close the tuple. */
8925 do_cleanups (showlist_chain);
8926 }
8927
8928
8929 /* Function to be called whenever a new objfile (shlib) is detected. */
8930 static void
8931 remote_new_objfile (struct objfile *objfile)
8932 {
8933 if (remote_desc != 0) /* Have a remote connection. */
8934 remote_check_symbols (objfile);
8935 }
8936
8937 void
8938 _initialize_remote (void)
8939 {
8940 struct remote_state *rs;
8941
8942 /* architecture specific data */
8943 remote_gdbarch_data_handle =
8944 gdbarch_data_register_post_init (init_remote_state);
8945 remote_g_packet_data_handle =
8946 gdbarch_data_register_pre_init (remote_g_packet_data_init);
8947
8948 /* Initialize the per-target state. At the moment there is only one
8949 of these, not one per target. Only one target is active at a
8950 time. The default buffer size is unimportant; it will be expanded
8951 whenever a larger buffer is needed. */
8952 rs = get_remote_state_raw ();
8953 rs->buf_size = 400;
8954 rs->buf = xmalloc (rs->buf_size);
8955
8956 init_remote_ops ();
8957 add_target (&remote_ops);
8958
8959 init_extended_remote_ops ();
8960 add_target (&extended_remote_ops);
8961
8962 /* Hook into new objfile notification. */
8963 observer_attach_new_objfile (remote_new_objfile);
8964
8965 /* Set up signal handlers. */
8966 sigint_remote_token =
8967 create_async_signal_handler (async_remote_interrupt, NULL);
8968 sigint_remote_twice_token =
8969 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
8970
8971 #if 0
8972 init_remote_threadtests ();
8973 #endif
8974
8975 /* set/show remote ... */
8976
8977 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
8978 Remote protocol specific variables\n\
8979 Configure various remote-protocol specific variables such as\n\
8980 the packets being used"),
8981 &remote_set_cmdlist, "set remote ",
8982 0 /* allow-unknown */, &setlist);
8983 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
8984 Remote protocol specific variables\n\
8985 Configure various remote-protocol specific variables such as\n\
8986 the packets being used"),
8987 &remote_show_cmdlist, "show remote ",
8988 0 /* allow-unknown */, &showlist);
8989
8990 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
8991 Compare section data on target to the exec file.\n\
8992 Argument is a single section name (default: all loaded sections)."),
8993 &cmdlist);
8994
8995 add_cmd ("packet", class_maintenance, packet_command, _("\
8996 Send an arbitrary packet to a remote target.\n\
8997 maintenance packet TEXT\n\
8998 If GDB is talking to an inferior via the GDB serial protocol, then\n\
8999 this command sends the string TEXT to the inferior, and displays the\n\
9000 response packet. GDB supplies the initial `$' character, and the\n\
9001 terminating `#' character and checksum."),
9002 &maintenancelist);
9003
9004 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
9005 Set whether to send break if interrupted."), _("\
9006 Show whether to send break if interrupted."), _("\
9007 If set, a break, instead of a cntrl-c, is sent to the remote target."),
9008 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
9009 &setlist, &showlist);
9010
9011 /* Install commands for configuring memory read/write packets. */
9012
9013 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
9014 Set the maximum number of bytes per memory write packet (deprecated)."),
9015 &setlist);
9016 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
9017 Show the maximum number of bytes per memory write packet (deprecated)."),
9018 &showlist);
9019 add_cmd ("memory-write-packet-size", no_class,
9020 set_memory_write_packet_size, _("\
9021 Set the maximum number of bytes per memory-write packet.\n\
9022 Specify the number of bytes in a packet or 0 (zero) for the\n\
9023 default packet size. The actual limit is further reduced\n\
9024 dependent on the target. Specify ``fixed'' to disable the\n\
9025 further restriction and ``limit'' to enable that restriction."),
9026 &remote_set_cmdlist);
9027 add_cmd ("memory-read-packet-size", no_class,
9028 set_memory_read_packet_size, _("\
9029 Set the maximum number of bytes per memory-read packet.\n\
9030 Specify the number of bytes in a packet or 0 (zero) for the\n\
9031 default packet size. The actual limit is further reduced\n\
9032 dependent on the target. Specify ``fixed'' to disable the\n\
9033 further restriction and ``limit'' to enable that restriction."),
9034 &remote_set_cmdlist);
9035 add_cmd ("memory-write-packet-size", no_class,
9036 show_memory_write_packet_size,
9037 _("Show the maximum number of bytes per memory-write packet."),
9038 &remote_show_cmdlist);
9039 add_cmd ("memory-read-packet-size", no_class,
9040 show_memory_read_packet_size,
9041 _("Show the maximum number of bytes per memory-read packet."),
9042 &remote_show_cmdlist);
9043
9044 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
9045 &remote_hw_watchpoint_limit, _("\
9046 Set the maximum number of target hardware watchpoints."), _("\
9047 Show the maximum number of target hardware watchpoints."), _("\
9048 Specify a negative limit for unlimited."),
9049 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
9050 &remote_set_cmdlist, &remote_show_cmdlist);
9051 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
9052 &remote_hw_breakpoint_limit, _("\
9053 Set the maximum number of target hardware breakpoints."), _("\
9054 Show the maximum number of target hardware breakpoints."), _("\
9055 Specify a negative limit for unlimited."),
9056 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
9057 &remote_set_cmdlist, &remote_show_cmdlist);
9058
9059 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
9060 &remote_address_size, _("\
9061 Set the maximum size of the address (in bits) in a memory packet."), _("\
9062 Show the maximum size of the address (in bits) in a memory packet."), NULL,
9063 NULL,
9064 NULL, /* FIXME: i18n: */
9065 &setlist, &showlist);
9066
9067 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
9068 "X", "binary-download", 1);
9069
9070 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
9071 "vCont", "verbose-resume", 0);
9072
9073 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
9074 "QPassSignals", "pass-signals", 0);
9075
9076 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
9077 "qSymbol", "symbol-lookup", 0);
9078
9079 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
9080 "P", "set-register", 1);
9081
9082 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
9083 "p", "fetch-register", 1);
9084
9085 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
9086 "Z0", "software-breakpoint", 0);
9087
9088 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
9089 "Z1", "hardware-breakpoint", 0);
9090
9091 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
9092 "Z2", "write-watchpoint", 0);
9093
9094 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
9095 "Z3", "read-watchpoint", 0);
9096
9097 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
9098 "Z4", "access-watchpoint", 0);
9099
9100 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
9101 "qXfer:auxv:read", "read-aux-vector", 0);
9102
9103 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
9104 "qXfer:features:read", "target-features", 0);
9105
9106 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
9107 "qXfer:libraries:read", "library-info", 0);
9108
9109 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
9110 "qXfer:memory-map:read", "memory-map", 0);
9111
9112 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
9113 "qXfer:spu:read", "read-spu-object", 0);
9114
9115 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
9116 "qXfer:spu:write", "write-spu-object", 0);
9117
9118 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
9119 "qXfer:osdata:read", "osdata", 0);
9120
9121 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
9122 "qXfer:siginfo:read", "read-siginfo-object", 0);
9123
9124 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
9125 "qXfer:siginfo:write", "write-siginfo-object", 0);
9126
9127 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
9128 "qGetTLSAddr", "get-thread-local-storage-address",
9129 0);
9130
9131 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
9132 "qSupported", "supported-packets", 0);
9133
9134 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
9135 "qSearch:memory", "search-memory", 0);
9136
9137 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
9138 "vFile:open", "hostio-open", 0);
9139
9140 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
9141 "vFile:pread", "hostio-pread", 0);
9142
9143 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
9144 "vFile:pwrite", "hostio-pwrite", 0);
9145
9146 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
9147 "vFile:close", "hostio-close", 0);
9148
9149 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
9150 "vFile:unlink", "hostio-unlink", 0);
9151
9152 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
9153 "vAttach", "attach", 0);
9154
9155 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
9156 "vRun", "run", 0);
9157
9158 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
9159 "QStartNoAckMode", "noack", 0);
9160
9161 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
9162 "vKill", "kill", 0);
9163
9164 /* Keep the old ``set remote Z-packet ...'' working. Each individual
9165 Z sub-packet has its own set and show commands, but users may
9166 have sets to this variable in their .gdbinit files (or in their
9167 documentation). */
9168 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
9169 &remote_Z_packet_detect, _("\
9170 Set use of remote protocol `Z' packets"), _("\
9171 Show use of remote protocol `Z' packets "), _("\
9172 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
9173 packets."),
9174 set_remote_protocol_Z_packet_cmd,
9175 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
9176 &remote_set_cmdlist, &remote_show_cmdlist);
9177
9178 add_prefix_cmd ("remote", class_files, remote_command, _("\
9179 Manipulate files on the remote system\n\
9180 Transfer files to and from the remote target system."),
9181 &remote_cmdlist, "remote ",
9182 0 /* allow-unknown */, &cmdlist);
9183
9184 add_cmd ("put", class_files, remote_put_command,
9185 _("Copy a local file to the remote system."),
9186 &remote_cmdlist);
9187
9188 add_cmd ("get", class_files, remote_get_command,
9189 _("Copy a remote file to the local system."),
9190 &remote_cmdlist);
9191
9192 add_cmd ("delete", class_files, remote_delete_command,
9193 _("Delete a remote file."),
9194 &remote_cmdlist);
9195
9196 remote_exec_file = xstrdup ("");
9197 add_setshow_string_noescape_cmd ("exec-file", class_files,
9198 &remote_exec_file, _("\
9199 Set the remote pathname for \"run\""), _("\
9200 Show the remote pathname for \"run\""), NULL, NULL, NULL,
9201 &remote_set_cmdlist, &remote_show_cmdlist);
9202
9203 /* Eventually initialize fileio. See fileio.c */
9204 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
9205
9206 /* Take advantage of the fact that the LWP field is not used, to tag
9207 special ptids with it set to != 0. */
9208 magic_null_ptid = ptid_build (42000, 1, -1);
9209 not_sent_ptid = ptid_build (42000, 1, -2);
9210 any_thread_ptid = ptid_build (42000, 1, 0);
9211 }
This page took 0.219644 seconds and 4 git commands to generate.